diff --git a/.eslint.json b/.eslint.json index 893286cc..4c7d3bd1 100644 --- a/.eslint.json +++ b/.eslint.json @@ -117,6 +117,8 @@ "no-prototype-builtins": "off", "arrow-body-style": "off", "@typescript-eslint/ban-types": "off", - "react/jsx-closing-bracket-location": "off" + "react/jsx-closing-bracket-location": "off", + "function-paren-newline": "off", + "guard-for-in": "off" } } diff --git a/.eslintignore b/.eslintignore index 9e5993d9..da40aa6b 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,3 @@ bin/* coverage/* +src/global.d.ts \ No newline at end of file diff --git a/.gitignore b/.gitignore index 42bd2b6f..52ba425f 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ DerivedData *.xcuserstate project.xcworkspace ios/.xcode.env.local +ios/Pods # Android/IntelliJ # @@ -50,8 +51,6 @@ buck-out/ *.vscode/ # Ruby / CocoaPods -/ios/Pods/ -/vendor/bundle/ - +vendor/bundle/ .env \ No newline at end of file diff --git a/README.MD b/README.MD index d467b54c..1d6c23b0 100644 --- a/README.MD +++ b/README.MD @@ -17,49 +17,51 @@ ### Install the app -`$ yarn` +$ `yarn` -`$ react-native link` +$ `react-native link` -`$ cd ios && pod install` +$ `cd ios && pod install` ### Run the app in an iOS / Android simulator -`$ yarn start` +$ `yarn start` -`$ yarn ios` +$ `yarn ios` -`$ yarn android` +$ `yarn android` ### Run TypeScript checks -`$ yarn tsc` +$ `yarn tsc` ### Run the tests -`$ yarn test` +$ `yarn test` ### Run the linter -`$ yarn lint` +$ `yarn lint` ### Run Prettier -`$ yarn prettier --write` +$ `yarn prettier --write` ### Architecture - The application state is stored using Redux. -- Login / registration using the Firebase Web SDK. -- redux-saga is used as the Redux middleware for managing the side effects (e.g. data fetching). -- The Redux store is persisted with redux-persist (not necessary the current funcionality of the app, but useful as the application would grow). -- The navigation is done using react-navigation. This library has been added since as the app would grow, there would be a need for navigation fairly quickly. -- Unit tests are written with Jest. -- Reselect (https://github.com/reduxjs/reselect) is used because in a production app because we could compute derived data, allowing Redux to store the minimal possible state. -- Eslint (for TypeScript) is used in the project for checking the JS/TS errors. -- TypeScript is used in the project. -- react-native-vector-icons has been used to improve the UI apprerance using icons in the navigator and in other UI elements. - - Icons: https://infinitered.github.io/ionicons-version-3-search/ +- `redux-saga` is used as the Redux middleware for managing the side effects (e.g. data fetching, login flow, etc). +- The Redux store is persisted with `redux-persist`. This capability is not necessary for the current functionality of the app, but useful as the application would grow. +- The login / registration flow is implemented with `react-native-firebase`. +- The navigation is done using `react-navigation`. This library has been added since as the app would grow, there would be a need for navigation fairly quickly. +- TypeScript is used in the project with strict rules and no usage for `@ts-ignore`. +- ESLint (for TypeScript) is used in the project for checking the JS/TS errors. +- `react-native-vector-icons` is used for improving the UI look-and-feel using icons in the navigator and in other UI elements. + - Icons used: https://infinitered.github.io/ionicons-version-3-search/ +- Environment variables are managed with `react-native-config`. +- The device info is managed with `react-native-device-info` and `react-native-uuid`. +- Images are cached in the app with `react-native-fast-image`. +- Reselect (https://github.com/reduxjs/reselect) should used because in a production app because we could compute derived data, allowing Redux to store the minimal possible state. ### Components @@ -74,7 +76,6 @@ - Divider for elements - Multi-purpose modal - Screen container -- WebView container with `react-native-webview` and `uri-js` ### Changelog @@ -82,31 +83,36 @@ - Upgraded `react`, `react-native` & other dependencies - Enabled Hermes - - Refactored `/screens` and `/components` to use hooks and functional components - Added `react-native-firebase` - Made the TS rules strict (e.g. turn on rules like `noImplicitAny`, no `@ts-ignroe` or `: any` types) and fixed all TS issues + - Added auto-login with token verification with `jwt-decode` + - Refactored `/screens` and `/components` to use hooks and functional components - Improved and extended the types and transformed `networkingApi.js` into `.ts` - Added progress indicators and spinners with `react-native-progress` - Added `react-native-config` + - Added logging with Crashlytics ### WIP features and improvements -- Add logging and tracking service: Bugsnag, Analytics (GA) and Crashlytics with `react-native-firebase`, `react-native-device-info` and `react-native-uuid` -- Create a design system with small component for Text, Heading, Subheading, Divider, Loader, etc +- Test logging service - Login / Register screen: Add image on background like on Harrods's app and validation - UI improvements with `react-native-keyboard-aware-scroll-view` -- Add feature flagging + A/B testing capabilities with Firebase Remote Config + Firebase Realtime Database using with `react-native-firebase` +- Build a CI with AppCenter CI to build and sign the app +- Add CodePush for over-the-air updates +- Create a design system with small components for Text, Heading, Subheading, Divider, Loader, etc + - Use `TextAreaWithLabel` + `PhoneNumberPrefix` + `OptionSwitch` + `HyperLink` + `GenericModal` + `Dropdown` +- Add a WebView container with `react-native-webview` and `uri-js` - Run the app in different environments: dev, prod, uat with `react-native-config` +- Add feature flagging + A/B testing capabilities with Firebase Remote Config + Firebase Realtime Database using with `react-native-firebase` - Render SVGs with `react-native-svg` and `react-native-svg-transformer` -- Animate UI elements with `react-native-reanimated` -- Ask your users to rate the app with `react-native-rate` - Add push notifications with Firebase / Azure / Iterable - Replace `Jest` with `react-native-testing-library` and write tests (e.g. for /components, networkingApi.js and for the navigator) -- Build a CI with AppCenter CI to build and sign the app -- Add CodePush for over-the-air updates - Add `pre-commit` hooks -- Auto-login with token verification with `jwt-decode` +- Add tracking service with Analytics (GA) and `react-native-firebase` + - Use biometric authentication and store user credentials in the KeyChain and KeyStore with `react-native-secure-key-store` +- Animate UI elements with `react-native-reanimated` +- Ask your users to rate the app with `react-native-rate` - Allow to natively share urls with `react-native-share` - Create gradients with `react-native-linear-gradient` - Take pictures with `react-native-camera` diff --git a/__mocks__/@react-native-firebase/analytics.js b/__mocks__/@react-native-firebase/analytics.js new file mode 100644 index 00000000..b32100fc --- /dev/null +++ b/__mocks__/@react-native-firebase/analytics.js @@ -0,0 +1,7 @@ +const analytics = jest.fn().mockReturnValue({ + logEvent: jest.fn(), + logScreenView: jest.fn(), + getAppInstanceId: jest.fn(), +}); + +export default analytics; diff --git a/__mocks__/@react-native-firebase/crashlytics.js b/__mocks__/@react-native-firebase/crashlytics.js new file mode 100644 index 00000000..26872d54 --- /dev/null +++ b/__mocks__/@react-native-firebase/crashlytics.js @@ -0,0 +1,8 @@ +const analytics = () => ({ + log: jest.fn(), + recordError: jest.fn(), + setUserId: jest.fn(), + setAttributes: jest.fn(), +}); + +export default analytics; diff --git a/android/app/BUCK b/android/app/BUCK index f7575e49..e12e5573 100644 --- a/android/app/BUCK +++ b/android/app/BUCK @@ -45,12 +45,12 @@ android_library( android_build_config( name = "build_config", - package = "com.hurt", + package = "com.apply", ) android_resource( name = "res", - package = "com.hurt", + package = "com.apply", res = "src/main/res", ) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7c9bda00..4c0fbfe0 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -141,7 +141,7 @@ android { compileSdkVersion rootProject.ext.compileSdkVersion defaultConfig { - applicationId "com.rndiffapp" + applicationId "com.apply" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 @@ -164,7 +164,7 @@ android { cppFlags "-std=c++17" // Make sure this target name is the same you specify inside the // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable. - targets "rndiffapp_appmodules" + targets "apply_appmodules" } } if (!enableSeparateBuildPerCPUArchitecture) { @@ -270,6 +270,11 @@ dependencies { implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" + implementation platform('com.google.firebase:firebase-bom:30.3.2') + + implementation 'com.google.firebase:firebase-crashlytics' + implementation 'com.google.firebase:firebase-analytics' + debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { exclude group:'com.facebook.fbjni' } @@ -325,4 +330,7 @@ def isNewArchitectureEnabled() { // - Invoke gradle with `-newArchEnabled=true` // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true` return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true" -} \ No newline at end of file +} + +apply plugin: 'com.google.gms.google-services' +apply plugin: 'com.google.firebase.crashlytics' \ No newline at end of file diff --git a/android/app/google-services.json b/android/app/google-services.json new file mode 100644 index 00000000..e30672c5 --- /dev/null +++ b/android/app/google-services.json @@ -0,0 +1,46 @@ +{ + "project_info": { + "project_number": "1035690501200", + "project_id": "apply-rn", + "storage_bucket": "apply-rn.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:1035690501200:android:37610028d2251cb6dd9d55", + "android_client_info": { + "package_name": "com.apply" + } + }, + "oauth_client": [ + { + "client_id": "1035690501200-q2n5b4ri0pn3q26jt8qen7vl4u2h9j5m.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyCySNkIkHbwR2-5vR3JSLVam9yiK3-WFE0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "1035690501200-q2n5b4ri0pn3q26jt8qen7vl4u2h9j5m.apps.googleusercontent.com", + "client_type": 3 + }, + { + "client_id": "1035690501200-dbc7vu6aljpsfuvplkji67qn25du6npt.apps.googleusercontent.com", + "client_type": 2, + "ios_info": { + "bundle_id": "com.apply" + } + } + ] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 32f2eb7b..22ba8ab2 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,59 +1,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/app/src/main/assets/fonts/AvenirLTStd-Black.otf b/android/app/src/main/assets/fonts/AvenirLTStd-Black.otf new file mode 100644 index 00000000..714fdfb9 Binary files /dev/null and b/android/app/src/main/assets/fonts/AvenirLTStd-Black.otf differ diff --git a/android/app/src/main/assets/fonts/AvenirLTStd-Book.otf b/android/app/src/main/assets/fonts/AvenirLTStd-Book.otf new file mode 100644 index 00000000..52ab53e8 Binary files /dev/null and b/android/app/src/main/assets/fonts/AvenirLTStd-Book.otf differ diff --git a/android/app/src/main/assets/fonts/AvenirLTStd-Roman.otf b/android/app/src/main/assets/fonts/AvenirLTStd-Roman.otf new file mode 100644 index 00000000..de238e6b Binary files /dev/null and b/android/app/src/main/assets/fonts/AvenirLTStd-Roman.otf differ diff --git a/android/app/src/main/assets/fonts/TiemposHeadline-Black.otf b/android/app/src/main/assets/fonts/TiemposHeadline-Black.otf new file mode 100644 index 00000000..d1934bf4 Binary files /dev/null and b/android/app/src/main/assets/fonts/TiemposHeadline-Black.otf differ diff --git a/android/app/src/main/assets/fonts/TiemposHeadline-Bold.otf b/android/app/src/main/assets/fonts/TiemposHeadline-Bold.otf new file mode 100644 index 00000000..0531681d Binary files /dev/null and b/android/app/src/main/assets/fonts/TiemposHeadline-Bold.otf differ diff --git a/android/app/src/main/assets/fonts/TiemposHeadline-Light.otf b/android/app/src/main/assets/fonts/TiemposHeadline-Light.otf new file mode 100644 index 00000000..843c8b17 Binary files /dev/null and b/android/app/src/main/assets/fonts/TiemposHeadline-Light.otf differ diff --git a/android/app/src/main/assets/fonts/TiemposHeadline-Regular.otf b/android/app/src/main/assets/fonts/TiemposHeadline-Regular.otf new file mode 100644 index 00000000..52280c56 Binary files /dev/null and b/android/app/src/main/assets/fonts/TiemposHeadline-Regular.otf differ diff --git a/android/app/src/main/java/com/hurt/MainActivity.java b/android/app/src/main/java/com/hurt/MainActivity.java index f608f0ab..0e06c521 100644 --- a/android/app/src/main/java/com/hurt/MainActivity.java +++ b/android/app/src/main/java/com/hurt/MainActivity.java @@ -1,4 +1,4 @@ -package com.hurt; +package com.apply; import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivityDelegate; @@ -7,13 +7,15 @@ public class MainActivity extends ReactActivity { /** - * Returns the name of the main component registered from JavaScript. This is used to schedule + * Returns the name of the main component registered from JavaScript. This is + * used to schedule * rendering of the component. */ @Override protected String getMainComponentName() { - return "Hurt"; + return "Apply"; } + public static class MainActivityDelegate extends ReactActivityDelegate { public MainActivityDelegate(ReactActivity activity, String mainComponentName) { super(activity, mainComponentName); @@ -29,7 +31,8 @@ protected ReactRootView createRootView() { @Override protected boolean isConcurrentRootEnabled() { - // If you opted-in for the New Architecture, we enable Concurrent Root (i.e. React 18). + // If you opted-in for the New Architecture, we enable Concurrent Root (i.e. + // React 18). // More on this on https://reactjs.org/blog/2022/03/29/react-v18.html return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; } diff --git a/android/app/src/main/java/com/hurt/MainApplication.java b/android/app/src/main/java/com/hurt/MainApplication.java index 5b6bcc0c..1a803c8a 100644 --- a/android/app/src/main/java/com/hurt/MainApplication.java +++ b/android/app/src/main/java/com/hurt/MainApplication.java @@ -1,4 +1,4 @@ -package com.hurt; +package com.apply; import android.app.Application; @@ -8,7 +8,7 @@ import com.facebook.react.ReactPackage; import com.facebook.soloader.SoLoader; import com.facebook.react.config.ReactFeatureFlags; -import com.hurt.generated.BasePackageList; +import com.apply.generated.BasePackageList; import com.facebook.react.ReactNativeHost; import com.microsoft.codepush.react.CodePush; @@ -20,7 +20,7 @@ public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override protected String getJSBundleFile() { - return CodePush.getJSBundleFile(); + return CodePush.getJSBundleFile(); } @Override diff --git a/android/app/src/main/java/com/hurt/generated/BasePackageList.java b/android/app/src/main/java/com/hurt/generated/BasePackageList.java index cbbdae6d..fb2c4168 100644 --- a/android/app/src/main/java/com/hurt/generated/BasePackageList.java +++ b/android/app/src/main/java/com/hurt/generated/BasePackageList.java @@ -1,4 +1,4 @@ -package com.hurt.generated; +package com.apply.generated; import java.util.Arrays; import java.util.List; diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index 63cca220..a22cb3e6 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -1,4 +1,4 @@ - Hurt + Apply JTqdPJxGpcqkxtpG9ovzEqD0LnJksa46vOveD diff --git a/android/build.gradle b/android/build.gradle index 9d276d31..199d12d7 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -24,6 +24,8 @@ buildscript { classpath("com.android.tools.build:gradle:7.1.1") classpath("com.facebook.react:react-native-gradle-plugin") classpath("de.undercouch:gradle-download-task:5.0.1") + classpath "com.google.gms:google-services:4.3.13" + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } diff --git a/android/link-assets-manifest.json b/android/link-assets-manifest.json new file mode 100644 index 00000000..dae35c9e --- /dev/null +++ b/android/link-assets-manifest.json @@ -0,0 +1,33 @@ +{ + "migIndex": 1, + "data": [ + { + "path": "src/assets/fonts/AvenirLTStd-Black.otf", + "sha1": "eb534ac4079db239cdd489df7a1aa2b874b5b599" + }, + { + "path": "src/assets/fonts/AvenirLTStd-Book.otf", + "sha1": "db6bfde1c5f1f6d8129df5dce9484d88d3646f0d" + }, + { + "path": "src/assets/fonts/AvenirLTStd-Roman.otf", + "sha1": "a614776d8ee6be9ed01ccc136ac5daed16ba604b" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Black.otf", + "sha1": "dfbebfd75b5a746d431ada72d429ace293e56aba" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Bold.otf", + "sha1": "dfb4ada4e66bbbd4b4b87e9f8e1c09e151ea1c47" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Light.otf", + "sha1": "cc166b979b2296ad4138f137766dba771ba886b8" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Regular.otf", + "sha1": "96c55b97053f962ccc2210d4279caec484074c97" + } + ] +} diff --git a/android/settings.gradle b/android/settings.gradle index 01b3bd31..5dc16e62 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,4 @@ -rootProject.name = 'Hurt' +rootProject.name = 'Apply' apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' diff --git a/babel.config.js b/babel.config.js index e8416b6e..07aa7a10 100644 --- a/babel.config.js +++ b/babel.config.js @@ -2,6 +2,31 @@ module.exports = function (api) { api.cache(true); return { presets: ["module:metro-react-native-babel-preset"], - plugins: ["react-native-reanimated/plugin"], - }; + "plugins": [ + ["@babel/plugin-proposal-export-namespace-from"], + ["module-resolver", { + "root": ['./src'], + "extensions": [ + ".ios.ts", + ".android.ts", + ".ts", + ".ios.tsx", + ".android.tsx", + ".tsx", + ".jsx", + ".js", + ".json" + ], + "alias": { + "@api": "./src/api", + "@components": "./src/components", + "@navigation": "./src/navigation", + "@screens": "./src/screens", + "@store": "./src/store", + "@utils": "./src/utils" + } + }], + ['react-native-reanimated/plugin'], + ] + } }; diff --git a/config/config.json b/config/config.json index 9624f508..5f9082cf 100644 --- a/config/config.json +++ b/config/config.json @@ -1,5 +1,5 @@ { "API": { - "dataURL": "https://raw.githubusercontent.com/GeorgianSorinMaxim/json-data/gh-pages/list-of-universities.json" + "dataURL": "" } } diff --git a/debug.keystore b/debug.keystore deleted file mode 100644 index 6531d4de..00000000 Binary files a/debug.keystore and /dev/null differ diff --git a/env.d.ts b/env.d.ts index dc78bdab..86952b60 100644 --- a/env.d.ts +++ b/env.d.ts @@ -1,5 +1,4 @@ declare module "react-native-config" { - export const UNIVERSITIES_API_URL: string; export const NEWSCATCHER_API_URL: string; export const NEWSCATCHER_API_KEY: string; } diff --git a/index.ts b/index.ts index ea843d93..10bea93b 100644 --- a/index.ts +++ b/index.ts @@ -1,4 +1,4 @@ import { AppRegistry } from "react-native"; import { App } from "./App"; -AppRegistry.registerComponent("Hurt", () => App); +AppRegistry.registerComponent("Apply", () => App); diff --git a/ios/GoogleService-Info.plist b/ios/GoogleService-Info.plist index 796ee40f..7246cd40 100644 --- a/ios/GoogleService-Info.plist +++ b/ios/GoogleService-Info.plist @@ -3,21 +3,21 @@ CLIENT_ID - 864491570252-osdcqvsveivffofvhjj5mr5qhigq79bn.apps.googleusercontent.com + 1035690501200-dbc7vu6aljpsfuvplkji67qn25du6npt.apps.googleusercontent.com REVERSED_CLIENT_ID - com.googleusercontent.apps.864491570252-osdcqvsveivffofvhjj5mr5qhigq79bn + com.googleusercontent.apps.1035690501200-dbc7vu6aljpsfuvplkji67qn25du6npt API_KEY - AIzaSyAUPyBlNr8GcTtemspFZ23Y1BDFLzYRn0E + AIzaSyBTkOjLZ3jpmEYZrpGW_8ydHViVJaLaZSg GCM_SENDER_ID - 864491570252 + 1035690501200 PLIST_VERSION 1 BUNDLE_ID - com.app.Hurt + com.apply PROJECT_ID - reactnative-43696 + apply-rn STORAGE_BUCKET - reactnative-43696.appspot.com + apply-rn.appspot.com IS_ADS_ENABLED IS_ANALYTICS_ENABLED @@ -29,8 +29,6 @@ IS_SIGNIN_ENABLED GOOGLE_APP_ID - 1:864491570252:ios:6217f0f5fb532df700e0e9 - DATABASE_URL - https://reactnative-43696.firebaseio.com + 1:1035690501200:ios:03b43d0cb8b9889cdd9d55 \ No newline at end of file diff --git a/ios/Hurt.xcodeproj/project.pbxproj b/ios/Hurt.xcodeproj/project.pbxproj index 36b65dec..3a25ee38 100644 --- a/ios/Hurt.xcodeproj/project.pbxproj +++ b/ios/Hurt.xcodeproj/project.pbxproj @@ -11,9 +11,16 @@ 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; - 3BF2C45FD7916D6144F2102F /* libPods-Hurt.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 80A17B5AC8BF3CA9C670ED1D /* libPods-Hurt.a */; }; + 19FD9A09A21841BA8CC4A9FB /* TiemposHeadline-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CEB889F35C96405D8D6F7C69 /* TiemposHeadline-Bold.otf */; }; + 3BF2C45FD7916D6144F2102F /* libPods-Apply.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 80A17B5AC8BF3CA9C670ED1D /* libPods-Apply.a */; }; + 76391ECE37074824A0DD7970 /* TiemposHeadline-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = BB5B18CD55C542C2A2E8C0F9 /* TiemposHeadline-Regular.otf */; }; + 7AE7FA1FAFC142ECBF676AD9 /* AvenirLTStd-Roman.otf in Resources */ = {isa = PBXBuildFile; fileRef = F38CAF098A2C425CBE712E37 /* AvenirLTStd-Roman.otf */; }; 7C56388D2575688200C5430E /* Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C56388C2575688200C5430E /* Swift.swift */; }; 7C689719288ACBE40029B66A /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7C689718288ACBE40029B66A /* GoogleService-Info.plist */; }; + 88D28BD73F56477C9653E71A /* TiemposHeadline-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = F532217FA1DB4D518703171E /* TiemposHeadline-Black.otf */; }; + 94DBA2CF71854DA2BEE186D8 /* AvenirLTStd-Book.otf in Resources */ = {isa = PBXBuildFile; fileRef = AEFD6CD7135741A0AF867A27 /* AvenirLTStd-Book.otf */; }; + B2CD7AF5EC714585AC39A78B /* TiemposHeadline-Light.otf in Resources */ = {isa = PBXBuildFile; fileRef = 511C2BDE7A5F48549DAED2DD /* TiemposHeadline-Light.otf */; }; + E84E023634C94F4E95CEB0E7 /* AvenirLTStd-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = D339FDCBA7F04532B27BDA51 /* AvenirLTStd-Black.otf */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -21,33 +28,40 @@ 029B763EB94C488BBBE6B19A /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; 0C79674BA0604B6E8084629D /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 10C0330BC2214F9CB44103EA /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; - 13B07F961A680F5B00A75B9A /* Hurt.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Hurt.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Hurt/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Hurt/AppDelegate.m; sourceTree = ""; }; + 13B07F961A680F5B00A75B9A /* Apply.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Apply.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Apply/AppDelegate.h; sourceTree = ""; }; + 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Apply/AppDelegate.m; sourceTree = ""; }; 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Hurt/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Hurt/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Hurt/main.m; sourceTree = ""; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Apply/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Apply/Info.plist; sourceTree = ""; }; + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Apply/main.m; sourceTree = ""; }; 1C8A077354074B6F85761288 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 20527627706443719625971F /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 242ED162583749B98D5546F1 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3981A2048D2AF4E7631764D3 /* Pods-Hurt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Hurt.debug.xcconfig"; path = "Target Support Files/Pods-Hurt/Pods-Hurt.debug.xcconfig"; sourceTree = ""; }; - 6AAA5A8D9493D1274A06D5C7 /* Pods-Hurt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Hurt.release.xcconfig"; path = "Target Support Files/Pods-Hurt/Pods-Hurt.release.xcconfig"; sourceTree = ""; }; + 3981A2048D2AF4E7631764D3 /* Pods-Apply.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Apply.debug.xcconfig"; path = "Target Support Files/Pods-Apply/Pods-Apply.debug.xcconfig"; sourceTree = ""; }; + 511C2BDE7A5F48549DAED2DD /* TiemposHeadline-Light.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "TiemposHeadline-Light.otf"; path = "../src/assets/fonts/TiemposHeadline-Light.otf"; sourceTree = ""; }; + 6AAA5A8D9493D1274A06D5C7 /* Pods-Apply.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Apply.release.xcconfig"; path = "Target Support Files/Pods-Apply/Pods-Apply.release.xcconfig"; sourceTree = ""; }; 6E09A50E9D8B41CFBFADEEDE /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; - 7C56388B2575688100C5430E /* Hurt-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Hurt-Bridging-Header.h"; sourceTree = ""; }; + 7C56388B2575688100C5430E /* Apply-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Apply-Bridging-Header.h"; sourceTree = ""; }; 7C56388C2575688200C5430E /* Swift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Swift.swift; sourceTree = ""; }; 7C689718288ACBE40029B66A /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; - 80A17B5AC8BF3CA9C670ED1D /* libPods-Hurt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Hurt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 80A17B5AC8BF3CA9C670ED1D /* libPods-Apply.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Apply.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 811F8457239C401492440E8F /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; AA3D1AB3CED44A3AA60A28FF /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; AE5B873EE73B485682BF257E /* Fontisto.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Fontisto.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"; sourceTree = ""; }; + AEFD6CD7135741A0AF867A27 /* AvenirLTStd-Book.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "AvenirLTStd-Book.otf"; path = "../src/assets/fonts/AvenirLTStd-Book.otf"; sourceTree = ""; }; B73C33EE30F049049D772B66 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; + BB5B18CD55C542C2A2E8C0F9 /* TiemposHeadline-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "TiemposHeadline-Regular.otf"; path = "../src/assets/fonts/TiemposHeadline-Regular.otf"; sourceTree = ""; }; CBBA0EB7D46340EA9BFFBC21 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; + CEB889F35C96405D8D6F7C69 /* TiemposHeadline-Bold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "TiemposHeadline-Bold.otf"; path = "../src/assets/fonts/TiemposHeadline-Bold.otf"; sourceTree = ""; }; + D339FDCBA7F04532B27BDA51 /* AvenirLTStd-Black.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "AvenirLTStd-Black.otf"; path = "../src/assets/fonts/AvenirLTStd-Black.otf"; sourceTree = ""; }; D5CB68A300D940FCBF757249 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; E00D7A1E0DB244A4B6CBC707 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; + F38CAF098A2C425CBE712E37 /* AvenirLTStd-Roman.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "AvenirLTStd-Roman.otf"; path = "../src/assets/fonts/AvenirLTStd-Roman.otf"; sourceTree = ""; }; + F532217FA1DB4D518703171E /* TiemposHeadline-Black.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "TiemposHeadline-Black.otf"; path = "../src/assets/fonts/TiemposHeadline-Black.otf"; sourceTree = ""; }; FC6FD6B12A984E8E8A6CFE46 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; FCA7E162FDEE4031B40419E9 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -57,14 +71,14 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3BF2C45FD7916D6144F2102F /* libPods-Hurt.a in Frameworks */, + 3BF2C45FD7916D6144F2102F /* libPods-Apply.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 13B07FAE1A68108700A75B9A /* Hurt */ = { + 13B07FAE1A68108700A75B9A /* Apply */ = { isa = PBXGroup; children = ( 7C689718288ACBE40029B66A /* GoogleService-Info.plist */, @@ -76,7 +90,7 @@ 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 13B07FB71A68108700A75B9A /* main.m */, ); - name = Hurt; + name = Apply; sourceTree = ""; }; 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { @@ -85,7 +99,7 @@ ED297162215061F000B7C4FE /* JavaScriptCore.framework */, ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 2D16E6891FA4F8E400B85C8A /* libReact.a */, - 80A17B5AC8BF3CA9C670ED1D /* libPods-Hurt.a */, + 80A17B5AC8BF3CA9C670ED1D /* libPods-Apply.a */, ); name = Frameworks; sourceTree = ""; @@ -109,6 +123,13 @@ D5CB68A300D940FCBF757249 /* Octicons.ttf */, 242ED162583749B98D5546F1 /* SimpleLineIcons.ttf */, B73C33EE30F049049D772B66 /* Zocial.ttf */, + D339FDCBA7F04532B27BDA51 /* AvenirLTStd-Black.otf */, + AEFD6CD7135741A0AF867A27 /* AvenirLTStd-Book.otf */, + F38CAF098A2C425CBE712E37 /* AvenirLTStd-Roman.otf */, + F532217FA1DB4D518703171E /* TiemposHeadline-Black.otf */, + CEB889F35C96405D8D6F7C69 /* TiemposHeadline-Bold.otf */, + 511C2BDE7A5F48549DAED2DD /* TiemposHeadline-Light.otf */, + BB5B18CD55C542C2A2E8C0F9 /* TiemposHeadline-Regular.otf */, ); name = Resources; sourceTree = ""; @@ -116,8 +137,8 @@ 77BEF283F1253462444E21B4 /* Pods */ = { isa = PBXGroup; children = ( - 3981A2048D2AF4E7631764D3 /* Pods-Hurt.debug.xcconfig */, - 6AAA5A8D9493D1274A06D5C7 /* Pods-Hurt.release.xcconfig */, + 3981A2048D2AF4E7631764D3 /* Pods-Apply.debug.xcconfig */, + 6AAA5A8D9493D1274A06D5C7 /* Pods-Apply.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -133,13 +154,13 @@ isa = PBXGroup; children = ( 7C56388C2575688200C5430E /* Swift.swift */, - 13B07FAE1A68108700A75B9A /* Hurt */, + 13B07FAE1A68108700A75B9A /* Apply */, 832341AE1AAA6A7D00B99B32 /* Libraries */, 83CBBA001A601CBA00E9B192 /* Products */, 2D16E6871FA4F8E400B85C8A /* Frameworks */, 36E7272131624A7393A121D9 /* Resources */, 77BEF283F1253462444E21B4 /* Pods */, - 7C56388B2575688100C5430E /* Hurt-Bridging-Header.h */, + 7C56388B2575688100C5430E /* Apply-Bridging-Header.h */, ); indentWidth = 2; sourceTree = ""; @@ -149,7 +170,7 @@ 83CBBA001A601CBA00E9B192 /* Products */ = { isa = PBXGroup; children = ( - 13B07F961A680F5B00A75B9A /* Hurt.app */, + 13B07F961A680F5B00A75B9A /* Apply.app */, ); name = Products; sourceTree = ""; @@ -157,9 +178,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 13B07F861A680F5B00A75B9A /* Hurt */ = { + 13B07F861A680F5B00A75B9A /* Apply */ = { isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Hurt" */; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Apply" */; buildPhases = ( E396426523DEF5E4EA240C1C /* [CP] Check Pods Manifest.lock */, FD4C38642228810C00325AF5 /* Start Packager */, @@ -176,9 +197,9 @@ ); dependencies = ( ); - name = Hurt; + name = Apply; productName = "Hello World"; - productReference = 13B07F961A680F5B00A75B9A /* Hurt.app */; + productReference = 13B07F961A680F5B00A75B9A /* Apply.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -195,7 +216,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Hurt" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Apply" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; @@ -209,7 +230,7 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 13B07F861A680F5B00A75B9A /* Hurt */, + 13B07F861A680F5B00A75B9A /* Apply */, ); }; /* End PBXProject section */ @@ -222,6 +243,13 @@ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 7C689719288ACBE40029B66A /* GoogleService-Info.plist in Resources */, + E84E023634C94F4E95CEB0E7 /* AvenirLTStd-Black.otf in Resources */, + 94DBA2CF71854DA2BEE186D8 /* AvenirLTStd-Book.otf in Resources */, + 7AE7FA1FAFC142ECBF676AD9 /* AvenirLTStd-Roman.otf in Resources */, + 88D28BD73F56477C9653E71A /* TiemposHeadline-Black.otf in Resources */, + 19FD9A09A21841BA8CC4A9FB /* TiemposHeadline-Bold.otf in Resources */, + B2CD7AF5EC714585AC39A78B /* TiemposHeadline-Light.otf in Resources */, + 76391ECE37074824A0DD7970 /* TiemposHeadline-Regular.otf in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -248,7 +276,7 @@ files = ( ); inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Hurt/Pods-Hurt-resources.sh", + "${PODS_ROOT}/Target Support Files/Pods-Apply/Pods-Apply-resources.sh", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", @@ -291,7 +319,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Hurt/Pods-Hurt-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Apply/Pods-Apply-resources.sh\"\n"; showEnvVarsInLog = 0; }; 365B068287B98EE7B26E2E9A /* [CP] Embed Pods Frameworks */ = { @@ -300,7 +328,7 @@ files = ( ); inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Hurt/Pods-Hurt-frameworks.sh", + "${PODS_ROOT}/Target Support Files/Pods-Apply/Pods-Apply-frameworks.sh", "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog", "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL", "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes", @@ -313,7 +341,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Hurt/Pods-Hurt-frameworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Apply/Pods-Apply-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; 9078EC8E85CDF8B1F057E915 /* [CP-User] [RNFB] Crashlytics Configuration */ = { @@ -345,7 +373,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Hurt-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-Apply-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -406,7 +434,7 @@ 13B07FB21A68108700A75B9A /* Base */, ); name = LaunchScreen.xib; - path = Hurt; + path = Apply; sourceTree = ""; }; /* End PBXVariantGroup section */ @@ -414,14 +442,14 @@ /* Begin XCBuildConfiguration section */ 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3981A2048D2AF4E7631764D3 /* Pods-Hurt.debug.xcconfig */; + baseConfigurationReference = 3981A2048D2AF4E7631764D3 /* Pods-Apply.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = ""; - INFOPLIST_FILE = Hurt/Info.plist; + INFOPLIST_FILE = Apply/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", @@ -483,9 +511,9 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = com.app.Hurt; - PRODUCT_NAME = Hurt; - SWIFT_OBJC_BRIDGING_HEADER = "Hurt-Bridging-Header.h"; + PRODUCT_BUNDLE_IDENTIFIER = com.app.Apply; + PRODUCT_NAME = Apply; + SWIFT_OBJC_BRIDGING_HEADER = "Apply-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; @@ -494,13 +522,13 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6AAA5A8D9493D1274A06D5C7 /* Pods-Hurt.release.xcconfig */; + baseConfigurationReference = 6AAA5A8D9493D1274A06D5C7 /* Pods-Apply.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; - INFOPLIST_FILE = Hurt/Info.plist; + INFOPLIST_FILE = Apply/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", @@ -555,9 +583,9 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = com.app.Hurt; - PRODUCT_NAME = Hurt; - SWIFT_OBJC_BRIDGING_HEADER = "Hurt-Bridging-Header.h"; + PRODUCT_BUNDLE_IDENTIFIER = com.app.Apply; + PRODUCT_NAME = Apply; + SWIFT_OBJC_BRIDGING_HEADER = "Apply-Bridging-Header.h"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; @@ -669,7 +697,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Hurt" */ = { + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Apply" */ = { isa = XCConfigurationList; buildConfigurations = ( 13B07F941A680F5B00A75B9A /* Debug */, @@ -678,7 +706,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Hurt" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Apply" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/ios/Hurt.xcodeproj/xcshareddata/xcschemes/Hurt.xcscheme b/ios/Hurt.xcodeproj/xcshareddata/xcschemes/Hurt.xcscheme index cb460fdb..d936c389 100644 --- a/ios/Hurt.xcodeproj/xcshareddata/xcschemes/Hurt.xcscheme +++ b/ios/Hurt.xcodeproj/xcshareddata/xcschemes/Hurt.xcscheme @@ -29,9 +29,9 @@ + BuildableName = "Apply.app" + BlueprintName = "Apply" + ReferencedContainer = "container:Apply.xcodeproj"> + BuildableName = "ApplyTests.xctest" + BlueprintName = "ApplyTests" + ReferencedContainer = "container:Apply.xcodeproj"> @@ -61,9 +61,9 @@ + BuildableName = "ApplyTests.xctest" + BlueprintName = "ApplyTests" + ReferencedContainer = "container:Apply.xcodeproj"> @@ -71,9 +71,9 @@ + BuildableName = "Apply.app" + BlueprintName = "Apply" + ReferencedContainer = "container:Apply.xcodeproj"> @@ -94,9 +94,9 @@ + BuildableName = "Apply.app" + BlueprintName = "Apply" + ReferencedContainer = "container:Apply.xcodeproj"> @@ -113,9 +113,9 @@ + BuildableName = "Apply.app" + BlueprintName = "Apply" + ReferencedContainer = "container:Apply.xcodeproj"> diff --git a/ios/Hurt.xcworkspace/contents.xcworkspacedata b/ios/Hurt.xcworkspace/contents.xcworkspacedata index 20fb7396..674160b7 100644 --- a/ios/Hurt.xcworkspace/contents.xcworkspacedata +++ b/ios/Hurt.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:Apply.xcodeproj"> diff --git a/ios/Hurt/AppDelegate.m b/ios/Hurt/AppDelegate.m index 8616cdf5..d3f9d984 100644 --- a/ios/Hurt/AppDelegate.m +++ b/ios/Hurt/AppDelegate.m @@ -45,7 +45,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( [bridge moduleForClass:[RCTDevLoadingView class]]; #endif - RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"Hurt" initialProperties:nil]; + RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"Apply" initialProperties:nil]; rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; diff --git a/ios/Hurt/Info.plist b/ios/Hurt/Info.plist index 68410db7..0d0070f2 100644 --- a/ios/Hurt/Info.plist +++ b/ios/Hurt/Info.plist @@ -1,96 +1,106 @@ - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - Hurt - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - NSAppTransportSecurity - NSExceptionDomains + CFBundleDevelopmentRegion + en + CFBundleDisplayName + Apply + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + NSAppTransportSecurity - localhost + NSAllowsArbitraryLoads + + + NSCalendarsUsageDescription + Allow Apply to access your calendar + NSCameraUsageDescription + Allow Apply to use the camera + NSContactsUsageDescription + Allow Apply experiences to access your contacts + NSLocationAlwaysAndWhenInUseUsageDescription + Allow Apply to use your location + NSLocationAlwaysUsageDescription + Allow Apply to use your location + NSLocationWhenInUseUsageDescription + Allow Apply to use your location + NSMicrophoneUsageDescription + Allow Apply to access your microphone + NSMotionUsageDescription + Allow Apply to access your device's accelerometer + NSPhotoLibraryAddUsageDescription + Give Apply periences permission to save photos + NSPhotoLibraryUsageDescription + Give Apply periences permission to access your photos + NSRemindersUsageDescription + Allow Apply to access your reminders + UIAppFonts + + AntDesign.ttf + Entypo.ttf + EvilIcons.ttf + Feather.ttf + FontAwesome.ttf + FontAwesome5_Brands.ttf + FontAwesome5_Regular.ttf + FontAwesome5_Solid.ttf + Fontisto.ttf + Foundation.ttf + Ionicons.ttf + MaterialCommunityIcons.ttf + MaterialIcons.ttf + Octicons.ttf + SimpleLineIcons.ttf + Zocial.ttf + AvenirLTStd-Black.otf + AvenirLTStd-Book.otf + AvenirLTStd-Roman.otf + TiemposHeadline-Black.otf + TiemposHeadline-Bold.otf + TiemposHeadline-Light.otf + TiemposHeadline-Regular.otf + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + CodePushDeploymentKey + Wbd9qVA2-4Fddl0vwp-VYd0m-Gm2Wc446bJbE + CFBundleURLTypes + - NSExceptionAllowsInsecureHTTPLoads - + CFBundleURLSchemes + + bankapp + - + - NSCalendarsUsageDescription - Allow Hurt to access your calendar - NSCameraUsageDescription - Allow Hurt to use the camera - NSContactsUsageDescription - Allow Hurt experiences to access your contacts - NSLocationAlwaysAndWhenInUseUsageDescription - Allow Hurt to use your location - NSLocationAlwaysUsageDescription - Allow Hurt to use your location - NSLocationWhenInUseUsageDescription - Allow Hurt to use your location - NSMicrophoneUsageDescription - Allow Hurt to access your microphone - NSMotionUsageDescription - Allow Hurt to access your device's accelerometer - NSPhotoLibraryAddUsageDescription - Give Hurt periences permission to save photos - NSPhotoLibraryUsageDescription - Give Hurt periences permission to access your photos - NSRemindersUsageDescription - Allow Hurt to access your reminders - UIAppFonts - - AntDesign.ttf - Entypo.ttf - EvilIcons.ttf - Feather.ttf - FontAwesome.ttf - FontAwesome5_Brands.ttf - FontAwesome5_Regular.ttf - FontAwesome5_Solid.ttf - Fontisto.ttf - Foundation.ttf - Ionicons.ttf - MaterialCommunityIcons.ttf - MaterialIcons.ttf - Octicons.ttf - SimpleLineIcons.ttf - Zocial.ttf - - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - CodePushDeploymentKey - Wbd9qVA2-4Fddl0vwp-VYd0m-Gm2Wc446bJbE - - + \ No newline at end of file diff --git a/ios/Podfile b/ios/Podfile index 33ffb388..5b877dc2 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -4,7 +4,7 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ platform :ios, '12.4' install! 'cocoapods', :deterministic_uuids => false -target 'Hurt' do +target 'Apply' do config = use_native_modules! flags = get_default_flags() diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 8dfabaa0..f32c8b36 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1169,6 +1169,8 @@ PODS: - RCTTypeSafety - React - ReactCommon/turbomodule/core + - react-native-webview (11.23.0): + - React-Core - React-perflogger (0.69.1) - React-RCTActionSheet (0.69.1): - React-Core/RCTActionSheetHeaders (= 0.69.1) @@ -1387,6 +1389,7 @@ DEPENDENCIES: - react-native-flipper (from `../node_modules/react-native-flipper`) - react-native-pdf (from `../node_modules/react-native-pdf`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - react-native-webview (from `../node_modules/react-native-webview`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) @@ -1526,6 +1529,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-pdf" react-native-safe-area-context: :path: "../node_modules/react-native-safe-area-context" + react-native-webview: + :path: "../node_modules/react-native-webview" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" React-RCTActionSheet: @@ -1663,6 +1668,7 @@ SPEC CHECKSUMS: react-native-flipper: 839f62f0b7cd1c28088030b0b04b72d0f88d5d85 react-native-pdf: de35db0d8f1e5d37e65e887554f7d4bd062af56b react-native-safe-area-context: 6c12e3859b6f27b25de4fee8201cfb858432d8de + react-native-webview: e771bc375f789ebfa02a26939a57dbc6fa897336 React-perflogger: c9161ff0f1c769993cd11d2751e4331ff4ceb7cd React-RCTActionSheet: 2d885b0bea76a5254ef852939273edd8de116180 React-RCTAnimation: 353fa4fc3c19060068832dd32e555182ec07be45 diff --git a/ios/Pods/Local Podspecs/FBReactNativeSpec.podspec.json b/ios/Pods/Local Podspecs/FBReactNativeSpec.podspec.json index 5500f77e..ff3b9802 100644 --- a/ios/Pods/Local Podspecs/FBReactNativeSpec.podspec.json +++ b/ios/Pods/Local Podspecs/FBReactNativeSpec.podspec.json @@ -20,12 +20,24 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\"" }, "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "RCTRequired": ["0.69.1"], - "RCTTypeSafety": ["0.69.1"], - "React-Core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "RCTRequired": [ + "0.69.1" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "React-Core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ] }, "prepare_command": "mkdir -p ../../../../ios/build/generated/ios/./FBReactNativeSpec && touch -a ../../../../ios/build/generated/ios/./FBReactNativeSpec/FBReactNativeSpec.h ../../../../ios/build/generated/ios/./FBReactNativeSpec/FBReactNativeSpec-generated.mm", "script_phases": { diff --git a/ios/Pods/Local Podspecs/RCTTypeSafety.podspec.json b/ios/Pods/Local Podspecs/RCTTypeSafety.podspec.json index 76e0a0b8..4606a966 100644 --- a/ios/Pods/Local Podspecs/RCTTypeSafety.podspec.json +++ b/ios/Pods/Local Podspecs/RCTTypeSafety.podspec.json @@ -20,8 +20,14 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/Libraries/TypeSafety\"" }, "dependencies": { - "FBLazyVector": ["0.69.1"], - "RCTRequired": ["0.69.1"], - "React-Core": ["0.69.1"] + "FBLazyVector": [ + "0.69.1" + ], + "RCTRequired": [ + "0.69.1" + ], + "React-Core": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json index 777e7d72..5f450bcd 100644 --- a/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json +++ b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json @@ -16,6 +16,8 @@ }, "source_files": "ios/**/*.{h,m}", "dependencies": { - "React-Core": [] + "React-Core": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json b/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json index c131e03d..8cd0535d 100644 --- a/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json +++ b/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json @@ -15,6 +15,8 @@ }, "source_files": "ios/**/*.{h,m}", "dependencies": { - "React": [] + "React": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNDeviceInfo.podspec.json b/ios/Pods/Local Podspecs/RNDeviceInfo.podspec.json index c061dbdd..7e0f5b28 100644 --- a/ios/Pods/Local Podspecs/RNDeviceInfo.podspec.json +++ b/ios/Pods/Local Podspecs/RNDeviceInfo.podspec.json @@ -15,6 +15,8 @@ }, "source_files": "ios/**/*.{h,m}", "dependencies": { - "React-Core": [] + "React-Core": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNFastImage.podspec.json b/ios/Pods/Local Podspecs/RNFastImage.podspec.json index afcaed96..06636a54 100644 --- a/ios/Pods/Local Podspecs/RNFastImage.podspec.json +++ b/ios/Pods/Local Podspecs/RNFastImage.podspec.json @@ -19,8 +19,14 @@ }, "source_files": "ios/**/*.{h,m}", "dependencies": { - "React-Core": [], - "SDWebImage": ["~> 5.11.1"], - "SDWebImageWebPCoder": ["~> 0.8.4"] + "React-Core": [ + + ], + "SDWebImage": [ + "~> 5.11.1" + ], + "SDWebImageWebPCoder": [ + "~> 0.8.4" + ] } } diff --git a/ios/Pods/Local Podspecs/RNGestureHandler.podspec.json b/ios/Pods/Local Podspecs/RNGestureHandler.podspec.json index da8cd3f5..494bd573 100644 --- a/ios/Pods/Local Podspecs/RNGestureHandler.podspec.json +++ b/ios/Pods/Local Podspecs/RNGestureHandler.podspec.json @@ -18,6 +18,8 @@ "tvos": "9.0" }, "dependencies": { - "React-Core": [] + "React-Core": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNSVG.podspec.json b/ios/Pods/Local Podspecs/RNSVG.podspec.json index 5e5a5b66..4d8bc7f5 100644 --- a/ios/Pods/Local Podspecs/RNSVG.podspec.json +++ b/ios/Pods/Local Podspecs/RNSVG.podspec.json @@ -26,6 +26,8 @@ }, "requires_arc": true, "dependencies": { - "React-Core": [] + "React-Core": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNScreens.podspec.json b/ios/Pods/Local Podspecs/RNScreens.podspec.json index 6bc81667..762097c6 100644 --- a/ios/Pods/Local Podspecs/RNScreens.podspec.json +++ b/ios/Pods/Local Podspecs/RNScreens.podspec.json @@ -19,7 +19,11 @@ "source_files": "ios/**/*.{h,m,mm}", "requires_arc": true, "dependencies": { - "React-Core": [], - "React-RCTImage": [] + "React-Core": [ + + ], + "React-RCTImage": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/RNVectorIcons.podspec.json b/ios/Pods/Local Podspecs/RNVectorIcons.podspec.json index f475068d..67cce519 100644 --- a/ios/Pods/Local Podspecs/RNVectorIcons.podspec.json +++ b/ios/Pods/Local Podspecs/RNVectorIcons.podspec.json @@ -19,6 +19,8 @@ "resources": "Fonts/*.ttf", "preserve_paths": "**/*.js", "dependencies": { - "React-Core": [] + "React-Core": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/React-Core.podspec.json b/ios/Pods/Local Podspecs/React-Core.podspec.json index 981600dd..5ddfe5c4 100644 --- a/ios/Pods/Local Podspecs/React-Core.podspec.json +++ b/ios/Pods/Local Podspecs/React-Core.podspec.json @@ -13,7 +13,9 @@ "tag": "v0.69.1" }, "resource_bundles": { - "AccessibilityResources": ["React/AccessibilityResources/*.lproj"] + "AccessibilityResources": [ + "React/AccessibilityResources/*.lproj" + ] }, "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation", "header_dir": "React", @@ -27,13 +29,27 @@ }, "default_subspecs": "Default", "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-cxxreact": ["0.69.1"], - "React-perflogger": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-jsiexecutor": ["0.69.1"], - "Yoga": [], - "glog": [] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-cxxreact": [ + "0.69.1" + ], + "React-perflogger": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-jsiexecutor": [ + "0.69.1" + ], + "Yoga": [ + + ], + "glog": [ + + ] }, "subspecs": [ { @@ -56,93 +72,123 @@ "React/Inspector/*.{h,mm,m}" ], "dependencies": { - "React-Core/Default": ["0.69.1"], - "React-Core/RCTWebSocket": ["0.69.1"], - "React-jsinspector": ["0.69.1"] + "React-Core/Default": [ + "0.69.1" + ], + "React-Core/RCTWebSocket": [ + "0.69.1" + ], + "React-jsinspector": [ + "0.69.1" + ] } }, { "name": "RCTWebSocket", "source_files": "Libraries/WebSocket/*.{h,m}", "dependencies": { - "React-Core/Default": ["0.69.1"] + "React-Core/Default": [ + "0.69.1" + ] } }, { "name": "CoreModulesHeaders", "source_files": "React/CoreModules/**/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTActionSheetHeaders", "source_files": "Libraries/ActionSheetIOS/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTAnimationHeaders", "source_files": "Libraries/NativeAnimation/{Drivers/*,Nodes/*,*}.{h}", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTBlobHeaders", "source_files": "Libraries/Blob/{RCTBlobManager,RCTFileReaderModule}.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTImageHeaders", "source_files": "Libraries/Image/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTLinkingHeaders", "source_files": "Libraries/LinkingIOS/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTNetworkHeaders", "source_files": "Libraries/Network/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTPushNotificationHeaders", "source_files": "Libraries/PushNotificationIOS/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTSettingsHeaders", "source_files": "Libraries/Settings/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTTextHeaders", "source_files": "Libraries/Text/**/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } }, { "name": "RCTVibrationHeaders", "source_files": "Libraries/Vibration/*.h", "dependencies": { - "React-Core/Default": [] + "React-Core/Default": [ + + ] } } ] diff --git a/ios/Pods/Local Podspecs/React-CoreModules.podspec.json b/ios/Pods/Local Podspecs/React-CoreModules.podspec.json index c5a2ebf2..6c7e4b51 100644 --- a/ios/Pods/Local Podspecs/React-CoreModules.podspec.json +++ b/ios/Pods/Local Podspecs/React-CoreModules.podspec.json @@ -21,12 +21,26 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/React/CoreModules\" \"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "React-Codegen": ["0.69.1"], - "RCT-Folly": ["2021.06.28.00-v2"], - "RCTTypeSafety": ["0.69.1"], - "React-Core/CoreModulesHeaders": ["0.69.1"], - "React-RCTImage": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"] + "React-Codegen": [ + "0.69.1" + ], + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "React-Core/CoreModulesHeaders": [ + "0.69.1" + ], + "React-RCTImage": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTActionSheet.podspec.json b/ios/Pods/Local Podspecs/React-RCTActionSheet.podspec.json index 0235ebc5..c84698fc 100644 --- a/ios/Pods/Local Podspecs/React-RCTActionSheet.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTActionSheet.podspec.json @@ -14,9 +14,15 @@ "tag": "v0.69.1" }, "source_files": "*.{m}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTActionSheet", "dependencies": { - "React-Core/RCTActionSheetHeaders": ["0.69.1"] + "React-Core/RCTActionSheetHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTAnimation.podspec.json b/ios/Pods/Local Podspecs/React-RCTAnimation.podspec.json index a56f6a8d..2b01bd05 100644 --- a/ios/Pods/Local Podspecs/React-RCTAnimation.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTAnimation.podspec.json @@ -14,7 +14,11 @@ "tag": "v0.69.1" }, "source_files": "**/*.{h,m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTAnimation", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -22,11 +26,23 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "RCTTypeSafety": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTAnimationHeaders": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTAnimationHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTBlob.podspec.json b/ios/Pods/Local Podspecs/React-RCTBlob.podspec.json index c2a35335..07f8feae 100644 --- a/ios/Pods/Local Podspecs/React-RCTBlob.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTBlob.podspec.json @@ -14,7 +14,11 @@ "tag": "v0.69.1" }, "source_files": "*.{h,m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTBlob", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -22,12 +26,26 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTBlobHeaders": ["0.69.1"], - "React-Core/RCTWebSocket": ["0.69.1"], - "React-RCTNetwork": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTBlobHeaders": [ + "0.69.1" + ], + "React-Core/RCTWebSocket": [ + "0.69.1" + ], + "React-RCTNetwork": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTImage.podspec.json b/ios/Pods/Local Podspecs/React-RCTImage.podspec.json index 9e0fe260..afc2651e 100644 --- a/ios/Pods/Local Podspecs/React-RCTImage.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTImage.podspec.json @@ -15,7 +15,11 @@ "tag": "v0.69.1" }, "source_files": "*.{m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTImage", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -23,12 +27,26 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "RCTTypeSafety": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTImageHeaders": ["0.69.1"], - "React-RCTNetwork": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTImageHeaders": [ + "0.69.1" + ], + "React-RCTNetwork": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTLinking.podspec.json b/ios/Pods/Local Podspecs/React-RCTLinking.podspec.json index fd5292b3..2d2205f0 100644 --- a/ios/Pods/Local Podspecs/React-RCTLinking.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTLinking.podspec.json @@ -15,7 +15,11 @@ "tag": "v0.69.1" }, "source_files": "*.{m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTLinking", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -23,9 +27,17 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "React-Codegen": ["0.69.1"], - "React-Core/RCTLinkingHeaders": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"] + "React-Codegen": [ + "0.69.1" + ], + "React-Core/RCTLinkingHeaders": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTNetwork.podspec.json b/ios/Pods/Local Podspecs/React-RCTNetwork.podspec.json index 0fb59b27..6fad0a44 100644 --- a/ios/Pods/Local Podspecs/React-RCTNetwork.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTNetwork.podspec.json @@ -14,7 +14,11 @@ "tag": "v0.69.1" }, "source_files": "*.{m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTNetwork", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -23,11 +27,23 @@ }, "frameworks": "MobileCoreServices", "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "RCTTypeSafety": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTNetworkHeaders": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTNetworkHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTSettings.podspec.json b/ios/Pods/Local Podspecs/React-RCTSettings.podspec.json index 0e525084..21bccfcc 100644 --- a/ios/Pods/Local Podspecs/React-RCTSettings.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTSettings.podspec.json @@ -15,7 +15,11 @@ "tag": "v0.69.1" }, "source_files": "*.{m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTSettings", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -23,11 +27,23 @@ "HEADER_SEARCH_PATHS": "\"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen/React_Codegen.framework/Headers\"" }, "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "RCTTypeSafety": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTSettingsHeaders": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "RCTTypeSafety": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTSettingsHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTText.podspec.json b/ios/Pods/Local Podspecs/React-RCTText.podspec.json index 388198d8..932f13cc 100644 --- a/ios/Pods/Local Podspecs/React-RCTText.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTText.podspec.json @@ -14,9 +14,15 @@ "tag": "v0.69.1" }, "source_files": "**/*.{h,m}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTText", "dependencies": { - "React-Core/RCTTextHeaders": ["0.69.1"] + "React-Core/RCTTextHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-RCTVibration.podspec.json b/ios/Pods/Local Podspecs/React-RCTVibration.podspec.json index 6eff3f05..6da40738 100644 --- a/ios/Pods/Local Podspecs/React-RCTVibration.podspec.json +++ b/ios/Pods/Local Podspecs/React-RCTVibration.podspec.json @@ -15,7 +15,11 @@ "tag": "v0.69.1" }, "source_files": "*.{m,mm}", - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "header_dir": "RCTVibration", "pod_target_xcconfig": { "USE_HEADERMAP": "YES", @@ -24,10 +28,20 @@ }, "frameworks": "AudioToolbox", "dependencies": { - "RCT-Folly": ["2021.06.28.00-v2"], - "React-Codegen": ["0.69.1"], - "ReactCommon/turbomodule/core": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-Core/RCTVibrationHeaders": ["0.69.1"] + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "React-Codegen": [ + "0.69.1" + ], + "ReactCommon/turbomodule/core": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-Core/RCTVibrationHeaders": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-cxxreact.podspec.json b/ios/Pods/Local Podspecs/React-cxxreact.podspec.json index 5688956f..2c23e8fc 100644 --- a/ios/Pods/Local Podspecs/React-cxxreact.podspec.json +++ b/ios/Pods/Local Podspecs/React-cxxreact.podspec.json @@ -21,15 +21,35 @@ }, "header_dir": "cxxreact", "dependencies": { - "boost": ["1.76.0"], - "DoubleConversion": [], - "RCT-Folly": ["2021.06.28.00-v2"], - "glog": [], - "React-jsinspector": ["0.69.1"], - "React-callinvoker": ["0.69.1"], - "React-runtimeexecutor": ["0.69.1"], - "React-perflogger": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-logger": ["0.69.1"] + "boost": [ + "1.76.0" + ], + "DoubleConversion": [ + + ], + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "glog": [ + + ], + "React-jsinspector": [ + "0.69.1" + ], + "React-callinvoker": [ + "0.69.1" + ], + "React-runtimeexecutor": [ + "0.69.1" + ], + "React-perflogger": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-logger": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/React-jsi.podspec.json b/ios/Pods/Local Podspecs/React-jsi.podspec.json index 17ffc4fe..4fc42e4c 100644 --- a/ios/Pods/Local Podspecs/React-jsi.podspec.json +++ b/ios/Pods/Local Podspecs/React-jsi.podspec.json @@ -22,10 +22,18 @@ "header_dir": "jsi", "default_subspecs": "Default", "dependencies": { - "boost": ["1.76.0"], - "DoubleConversion": [], - "RCT-Folly": ["2021.06.28.00-v2"], - "glog": [] + "boost": [ + "1.76.0" + ], + "DoubleConversion": [ + + ], + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "glog": [ + + ] }, "subspecs": [ { diff --git a/ios/Pods/Local Podspecs/React-jsiexecutor.podspec.json b/ios/Pods/Local Podspecs/React-jsiexecutor.podspec.json index 46b37365..d482b20d 100644 --- a/ios/Pods/Local Podspecs/React-jsiexecutor.podspec.json +++ b/ios/Pods/Local Podspecs/React-jsiexecutor.podspec.json @@ -19,11 +19,23 @@ }, "header_dir": "jsireact", "dependencies": { - "React-cxxreact": ["0.69.1"], - "React-jsi": ["0.69.1"], - "React-perflogger": ["0.69.1"], - "RCT-Folly": ["2021.06.28.00-v2"], - "DoubleConversion": [], - "glog": [] + "React-cxxreact": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "React-perflogger": [ + "0.69.1" + ], + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "DoubleConversion": [ + + ], + "glog": [ + + ] } } diff --git a/ios/Pods/Local Podspecs/React.podspec.json b/ios/Pods/Local Podspecs/React.podspec.json index 612383d1..c5fee9bf 100644 --- a/ios/Pods/Local Podspecs/React.podspec.json +++ b/ios/Pods/Local Podspecs/React.podspec.json @@ -13,20 +13,48 @@ "git": "https://github.com/facebook/react-native.git", "tag": "v0.69.1" }, - "preserve_paths": ["package.json", "LICENSE", "LICENSE-docs"], + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], "cocoapods_version": ">= 1.10.1", "dependencies": { - "React-Core": ["0.69.1"], - "React-Core/DevSupport": ["0.69.1"], - "React-Core/RCTWebSocket": ["0.69.1"], - "React-RCTActionSheet": ["0.69.1"], - "React-RCTAnimation": ["0.69.1"], - "React-RCTBlob": ["0.69.1"], - "React-RCTImage": ["0.69.1"], - "React-RCTLinking": ["0.69.1"], - "React-RCTNetwork": ["0.69.1"], - "React-RCTSettings": ["0.69.1"], - "React-RCTText": ["0.69.1"], - "React-RCTVibration": ["0.69.1"] + "React-Core": [ + "0.69.1" + ], + "React-Core/DevSupport": [ + "0.69.1" + ], + "React-Core/RCTWebSocket": [ + "0.69.1" + ], + "React-RCTActionSheet": [ + "0.69.1" + ], + "React-RCTAnimation": [ + "0.69.1" + ], + "React-RCTBlob": [ + "0.69.1" + ], + "React-RCTImage": [ + "0.69.1" + ], + "React-RCTLinking": [ + "0.69.1" + ], + "React-RCTNetwork": [ + "0.69.1" + ], + "React-RCTSettings": [ + "0.69.1" + ], + "React-RCTText": [ + "0.69.1" + ], + "React-RCTVibration": [ + "0.69.1" + ] } } diff --git a/ios/Pods/Local Podspecs/ReactCommon.podspec.json b/ios/Pods/Local Podspecs/ReactCommon.podspec.json index 7fce5b1e..f385cc7f 100644 --- a/ios/Pods/Local Podspecs/ReactCommon.podspec.json +++ b/ios/Pods/Local Podspecs/ReactCommon.podspec.json @@ -21,7 +21,9 @@ "CLANG_CXX_LANGUAGE_STANDARD": "c++17" }, "dependencies": { - "React-logger": ["0.69.1"] + "React-logger": [ + "0.69.1" + ] }, "subspecs": [ { @@ -31,15 +33,33 @@ { "name": "turbomodule", "dependencies": { - "React-bridging": ["0.69.1"], - "React-callinvoker": ["0.69.1"], - "React-perflogger": ["0.69.1"], - "React-Core": ["0.69.1"], - "React-cxxreact": ["0.69.1"], - "React-jsi": ["0.69.1"], - "RCT-Folly": ["2021.06.28.00-v2"], - "DoubleConversion": [], - "glog": [] + "React-bridging": [ + "0.69.1" + ], + "React-callinvoker": [ + "0.69.1" + ], + "React-perflogger": [ + "0.69.1" + ], + "React-Core": [ + "0.69.1" + ], + "React-cxxreact": [ + "0.69.1" + ], + "React-jsi": [ + "0.69.1" + ], + "RCT-Folly": [ + "2021.06.28.00-v2" + ], + "DoubleConversion": [ + + ], + "glog": [ + + ] }, "subspecs": [ { @@ -56,7 +76,9 @@ "react/nativemodule/samples/platform/ios/**/*.{mm,cpp,h}" ], "dependencies": { - "ReactCommon/turbomodule/core": ["0.69.1"] + "ReactCommon/turbomodule/core": [ + "0.69.1" + ] } } ] diff --git a/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json index 6263139d..2ce96528 100644 --- a/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json +++ b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json @@ -21,10 +21,20 @@ "CLANG_CXX_LANGUAGE_STANDARD": "c++17" }, "dependencies": { - "React": [], - "RCT-Folly": [], - "RCTRequired": [], - "RCTTypeSafety": [], - "ReactCommon/turbomodule/core": [] + "React": [ + + ], + "RCT-Folly": [ + + ], + "RCTRequired": [ + + ], + "RCTTypeSafety": [ + + ], + "ReactCommon/turbomodule/core": [ + + ] } } diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 8dfabaa0..f32c8b36 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -1169,6 +1169,8 @@ PODS: - RCTTypeSafety - React - ReactCommon/turbomodule/core + - react-native-webview (11.23.0): + - React-Core - React-perflogger (0.69.1) - React-RCTActionSheet (0.69.1): - React-Core/RCTActionSheetHeaders (= 0.69.1) @@ -1387,6 +1389,7 @@ DEPENDENCIES: - react-native-flipper (from `../node_modules/react-native-flipper`) - react-native-pdf (from `../node_modules/react-native-pdf`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - react-native-webview (from `../node_modules/react-native-webview`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) @@ -1526,6 +1529,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-pdf" react-native-safe-area-context: :path: "../node_modules/react-native-safe-area-context" + react-native-webview: + :path: "../node_modules/react-native-webview" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" React-RCTActionSheet: @@ -1663,6 +1668,7 @@ SPEC CHECKSUMS: react-native-flipper: 839f62f0b7cd1c28088030b0b04b72d0f88d5d85 react-native-pdf: de35db0d8f1e5d37e65e887554f7d4bd062af56b react-native-safe-area-context: 6c12e3859b6f27b25de4fee8201cfb858432d8de + react-native-webview: e771bc375f789ebfa02a26939a57dbc6fa897336 React-perflogger: c9161ff0f1c769993cd11d2751e4331ff4ceb7cd React-RCTActionSheet: 2d885b0bea76a5254ef852939273edd8de116180 React-RCTAnimation: 353fa4fc3c19060068832dd32e555182ec07be45 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 9641c93e..f677f6ce 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -9,11404 +9,11386 @@ /* Begin PBXAggregateTarget section */ 072CEA044D2EF26F03496D5996BBF59F /* Firebase */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00025140 /* Build configuration list for PBXAggregateTarget "Firebase" */; + buildConfigurationList = 46EB2E00025060 /* Build configuration list for PBXAggregateTarget "Firebase" */; buildPhases = ( ); dependencies = ( - 46EB2E00049F10 /* PBXTargetDependency */, - 46EB2E00049EF0 /* PBXTargetDependency */, - 46EB2E00049F30 /* PBXTargetDependency */, - 46EB2E00049F50 /* PBXTargetDependency */, - 46EB2E00049F70 /* PBXTargetDependency */, - 46EB2E00049F90 /* PBXTargetDependency */, - 46EB2E00049FB0 /* PBXTargetDependency */, - 46EB2E00049FD0 /* PBXTargetDependency */, + 46EB2E00049E00 /* PBXTargetDependency */, + 46EB2E00049DE0 /* PBXTargetDependency */, + 46EB2E00049E20 /* PBXTargetDependency */, + 46EB2E00049E40 /* PBXTargetDependency */, + 46EB2E00049E60 /* PBXTargetDependency */, + 46EB2E00049E80 /* PBXTargetDependency */, + 46EB2E00049EA0 /* PBXTargetDependency */, + 46EB2E00049EC0 /* PBXTargetDependency */, ); name = Firebase; - productName = Firebase; }; 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00039380 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; + buildConfigurationList = 46EB2E00039110 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; buildPhases = ( ); dependencies = ( - 46EB2E0004B4F0 /* PBXTargetDependency */, + 46EB2E0004B3E0 /* PBXTargetDependency */, ); name = "React-RCTActionSheet"; - productName = "React-RCTActionSheet"; }; 1BEE828C124E6416179B904A9F66D794 /* React */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00037480 /* Build configuration list for PBXAggregateTarget "React" */; + buildConfigurationList = 46EB2E00037210 /* Build configuration list for PBXAggregateTarget "React" */; buildPhases = ( ); dependencies = ( - 46EB2E0004B0B0 /* PBXTargetDependency */, - 46EB2E0004B0D0 /* PBXTargetDependency */, - 46EB2E0004B0F0 /* PBXTargetDependency */, - 46EB2E0004B110 /* PBXTargetDependency */, - 46EB2E0004B130 /* PBXTargetDependency */, - 46EB2E0004B150 /* PBXTargetDependency */, - 46EB2E0004B170 /* PBXTargetDependency */, - 46EB2E0004B190 /* PBXTargetDependency */, - 46EB2E0004B1B0 /* PBXTargetDependency */, - 46EB2E0004B1D0 /* PBXTargetDependency */, + 46EB2E0004AFA0 /* PBXTargetDependency */, + 46EB2E0004AFC0 /* PBXTargetDependency */, + 46EB2E0004AFE0 /* PBXTargetDependency */, + 46EB2E0004B000 /* PBXTargetDependency */, + 46EB2E0004B020 /* PBXTargetDependency */, + 46EB2E0004B040 /* PBXTargetDependency */, + 46EB2E0004B060 /* PBXTargetDependency */, + 46EB2E0004B080 /* PBXTargetDependency */, + 46EB2E0004B0A0 /* PBXTargetDependency */, + 46EB2E0004B0C0 /* PBXTargetDependency */, ); name = React; - productName = React; }; 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E0003A5A0 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; + buildConfigurationList = 46EB2E0003A330 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; buildPhases = ( ); dependencies = ( ); name = "React-callinvoker"; - productName = "React-callinvoker"; }; 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E0003B1E0 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; + buildConfigurationList = 46EB2E0003AF70 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; buildPhases = ( ); dependencies = ( - 46EB2E0004BE30 /* PBXTargetDependency */, + 46EB2E0004BD20 /* PBXTargetDependency */, ); name = "React-runtimeexecutor"; - productName = "React-runtimeexecutor"; }; 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E0002E910 /* Build configuration list for PBXAggregateTarget "Flipper-Glog" */; + buildConfigurationList = 46EB2E0002E830 /* Build configuration list for PBXAggregateTarget "Flipper-Glog" */; buildPhases = ( - 46EB2E00048FD0 /* [CP] Copy XCFrameworks */, + 46EB2E00048EA0 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); name = "Flipper-Glog"; - productName = "Flipper-Glog"; }; 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00025060 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; + buildConfigurationList = 46EB2E00024F80 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; buildPhases = ( ); dependencies = ( ); name = FBLazyVector; - productName = FBLazyVector; }; 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00047100 /* Build configuration list for PBXAggregateTarget "hermes-engine" */; + buildConfigurationList = 46EB2E00046E90 /* Build configuration list for PBXAggregateTarget "hermes-engine" */; buildPhases = ( - 46EB2E00049000 /* [CP] Copy XCFrameworks */, + 46EB2E00048ED0 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); name = "hermes-engine"; - productName = "hermes-engine"; }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E0002FE80 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = 46EB2E0002FDA0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( - 46EB2E00048FE0 /* [CP] Copy XCFrameworks */, + 46EB2E00048EB0 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 46EB2E0004A710 /* PBXTargetDependency */, - 46EB2E0004A730 /* PBXTargetDependency */, + 46EB2E0004A600 /* PBXTargetDependency */, + 46EB2E0004A620 /* PBXTargetDependency */, ); name = GoogleAppMeasurement; - productName = GoogleAppMeasurement; }; B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00031350 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; + buildConfigurationList = 46EB2E000310E0 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; buildPhases = ( - 46EB2E00048FF0 /* [CP] Copy XCFrameworks */, + 46EB2E00048EC0 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); name = "OpenSSL-Universal"; - productName = "OpenSSL-Universal"; }; C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E000250D0 /* Build configuration list for PBXAggregateTarget "FBReactNativeSpec" */; + buildConfigurationList = 46EB2E00024FF0 /* Build configuration list for PBXAggregateTarget "FBReactNativeSpec" */; buildPhases = ( - 46EB2E00048FB0 /* [CP-User] Generate Specs */, + 46EB2E00048E80 /* [CP-User] Generate Specs */, ); dependencies = ( - 46EB2E00049E30 /* PBXTargetDependency */, - 46EB2E00049E50 /* PBXTargetDependency */, - 46EB2E00049E70 /* PBXTargetDependency */, - 46EB2E00049E90 /* PBXTargetDependency */, - 46EB2E00049EB0 /* PBXTargetDependency */, - 46EB2E00049ED0 /* PBXTargetDependency */, + 46EB2E00049D20 /* PBXTargetDependency */, + 46EB2E00049D40 /* PBXTargetDependency */, + 46EB2E00049D60 /* PBXTargetDependency */, + 46EB2E00049D80 /* PBXTargetDependency */, + 46EB2E00049DA0 /* PBXTargetDependency */, + 46EB2E00049DC0 /* PBXTargetDependency */, ); name = FBReactNativeSpec; - productName = FBReactNativeSpec; }; C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00025430 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; + buildConfigurationList = 46EB2E00025350 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; buildPhases = ( - 46EB2E00048FC0 /* [CP] Copy XCFrameworks */, + 46EB2E00048E90 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 46EB2E0004A010 /* PBXTargetDependency */, - 46EB2E0004A030 /* PBXTargetDependency */, - 46EB2E0004A090 /* PBXTargetDependency */, - 46EB2E0004A050 /* PBXTargetDependency */, - 46EB2E0004A070 /* PBXTargetDependency */, + 46EB2E00049F00 /* PBXTargetDependency */, + 46EB2E00049F20 /* PBXTargetDependency */, + 46EB2E00049F80 /* PBXTargetDependency */, + 46EB2E00049F40 /* PBXTargetDependency */, + 46EB2E00049F60 /* PBXTargetDependency */, ); name = FirebaseAnalytics; - productName = FirebaseAnalytics; }; E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E00034430 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; + buildConfigurationList = 46EB2E000341C0 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; buildPhases = ( ); dependencies = ( ); name = RCTRequired; - productName = RCTRequired; }; EFEA55B1B776B6EB4B16F363BFE64D1A /* boost */ = { isa = PBXAggregateTarget; - buildConfigurationList = 46EB2E0003DF80 /* Build configuration list for PBXAggregateTarget "boost" */; + buildConfigurationList = 46EB2E0003DD10 /* Build configuration list for PBXAggregateTarget "boost" */; buildPhases = ( ); dependencies = ( ); name = boost; - productName = boost; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 46EB2E00022B60 /* BVLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000780 /* BVLinearGradient.m */; }; - 46EB2E00022B70 /* BVLinearGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007A0 /* BVLinearGradientLayer.m */; }; - 46EB2E00022B80 /* BVLinearGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007C0 /* BVLinearGradientManager.m */; }; - 46EB2E00022B90 /* BVLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000770 /* BVLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00022BA0 /* BVLinearGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000790 /* BVLinearGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00022BB0 /* BVLinearGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000007B0 /* BVLinearGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00022C10 /* BVLinearGradient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022C00 /* BVLinearGradient-dummy.m */; }; - 46EB2E00022CA0 /* MF_Base64Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007E0 /* MF_Base64Additions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 46EB2E00022CB0 /* MF_Base64Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000007D0 /* MF_Base64Additions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00022D10 /* Base64-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022D00 /* Base64-dummy.m */; }; - 46EB2E00022DA0 /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000800 /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022DB0 /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000810 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022DC0 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000820 /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022DD0 /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000830 /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022DE0 /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000840 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022DF0 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000850 /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E00 /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000860 /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E10 /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000870 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E20 /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000880 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E30 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000890 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E40 /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008A0 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E50 /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008B0 /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E60 /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008C0 /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E70 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008E0 /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E80 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008F0 /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022E90 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000900 /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022EA0 /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000910 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022EB0 /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000920 /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022EC0 /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000930 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022ED0 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000940 /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022EE0 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000950 /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022EF0 /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000960 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F00 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000970 /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F10 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000980 /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F20 /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000990 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F30 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009A0 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F40 /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009B0 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F50 /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009C0 /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F60 /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009D0 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F70 /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009E0 /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F80 /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009F0 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022F90 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A00 /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FA0 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A10 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FB0 /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A20 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FC0 /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A30 /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FD0 /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A40 /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FE0 /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A50 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00022FF0 /* cpu-aarch64-fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A60 /* cpu-aarch64-fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023000 /* cpu-aarch64-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A70 /* cpu-aarch64-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023010 /* cpu-aarch64-win.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A80 /* cpu-aarch64-win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023020 /* cpu-arm-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A90 /* cpu-arm-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023030 /* cpu-arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AB0 /* cpu-arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023040 /* cpu-intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AC0 /* cpu-intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023050 /* cpu-ppc64le.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AD0 /* cpu-ppc64le.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023060 /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AE0 /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023070 /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AF0 /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023080 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B10 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023090 /* refcount_c11.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B20 /* refcount_c11.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230A0 /* refcount_lock.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B30 /* refcount_lock.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230B0 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B40 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230C0 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B50 /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230D0 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B60 /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230E0 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B70 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000230F0 /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B80 /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023100 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B90 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023110 /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BA0 /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023120 /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BB0 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023130 /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BC0 /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023140 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BD0 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023150 /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BE0 /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023160 /* a_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BF0 /* a_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023170 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C00 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023180 /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C10 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023190 /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C20 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231A0 /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C30 /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231B0 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C40 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231C0 /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C50 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231D0 /* a_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C60 /* a_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231E0 /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C70 /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000231F0 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C80 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023200 /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C90 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023210 /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CA0 /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023220 /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CB0 /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023230 /* a_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CC0 /* a_utf8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023240 /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CE0 /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023250 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CF0 /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023260 /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D10 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023270 /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D20 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023280 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D30 /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023290 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D40 /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232A0 /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D50 /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232B0 /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D60 /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232C0 /* time_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D70 /* time_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232D0 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D80 /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232E0 /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D90 /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000232F0 /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DA0 /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023300 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DB0 /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023310 /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DC0 /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023320 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DD0 /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023330 /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DE0 /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023340 /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E00 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023350 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E10 /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023360 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E20 /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023370 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E30 /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023380 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E40 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023390 /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E50 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233A0 /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E60 /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233B0 /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E70 /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233C0 /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E80 /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233D0 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E90 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233E0 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EA0 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000233F0 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EB0 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023400 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000ED0 /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023410 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EE0 /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023420 /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F00 /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023430 /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F10 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023440 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F20 /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023450 /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F30 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023460 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F40 /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023470 /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F50 /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023480 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F60 /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023490 /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F70 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234A0 /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F80 /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234B0 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F90 /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234C0 /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FB0 /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234D0 /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FC0 /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234E0 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FD0 /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000234F0 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001000 /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023500 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001030 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023510 /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001040 /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023520 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001050 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023530 /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001060 /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023540 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001070 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023550 /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001080 /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023560 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010A0 /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023570 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010B0 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023580 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010C0 /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023590 /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010D0 /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235A0 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010E0 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235B0 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001100 /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235C0 /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001110 /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235D0 /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001130 /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235E0 /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001140 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000235F0 /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001150 /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023600 /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001160 /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023610 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001180 /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023620 /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001190 /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023630 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011A0 /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023640 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011B0 /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023650 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011C0 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023660 /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011D0 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023670 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011E0 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023680 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011F0 /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023690 /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001200 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236A0 /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001210 /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236B0 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001220 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236C0 /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001230 /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236D0 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001240 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236E0 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001250 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000236F0 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001260 /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023700 /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001280 /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023710 /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001290 /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023720 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012A0 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023730 /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012B0 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023740 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012C0 /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023750 /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012D0 /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023760 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012E0 /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023770 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012F0 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023780 /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001300 /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023790 /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001310 /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237A0 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001320 /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237B0 /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001330 /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237C0 /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001340 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237D0 /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001350 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237E0 /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001370 /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000237F0 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001380 /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023800 /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001390 /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023810 /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013A0 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023820 /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013B0 /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023830 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013C0 /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023840 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013D0 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023850 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013F0 /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023860 /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001400 /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023870 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001410 /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023880 /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001420 /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023890 /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001430 /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238A0 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001440 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238B0 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001470 /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238C0 /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001490 /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238D0 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014A0 /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238E0 /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014B0 /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000238F0 /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014C0 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023900 /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014F0 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023910 /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001500 /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023920 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001510 /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023930 /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001520 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023940 /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001540 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023950 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001550 /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023960 /* p256-x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001570 /* p256-x86_64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023970 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001590 /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023980 /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015B0 /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023990 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015C0 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239A0 /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015D0 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239B0 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015E0 /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239C0 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015F0 /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239D0 /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001600 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239E0 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001610 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000239F0 /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001630 /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A00 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001640 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A10 /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001650 /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A20 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001670 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A30 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001680 /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A40 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001690 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A50 /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016A0 /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A60 /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016B0 /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A70 /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016C0 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A80 /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016E0 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023A90 /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016F0 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AA0 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001700 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AB0 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001710 /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AC0 /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001750 /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AD0 /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001760 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AE0 /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001770 /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023AF0 /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001790 /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B00 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017A0 /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B10 /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017B0 /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B20 /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017C0 /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B30 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017D0 /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B40 /* sha1-altivec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017F0 /* sha1-altivec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B50 /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001800 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B60 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001810 /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B70 /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001820 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B80 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001840 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023B90 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001850 /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BA0 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001860 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BB0 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001870 /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BC0 /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018A0 /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BD0 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018B0 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BE0 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018D0 /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023BF0 /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018E0 /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C00 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018F0 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C10 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001900 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C20 /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001910 /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C30 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001920 /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C40 /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001930 /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C50 /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001940 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C60 /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001950 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C70 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001970 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C80 /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001980 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023C90 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019A0 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CA0 /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019B0 /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CB0 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019C0 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CC0 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019E0 /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CD0 /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019F0 /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CE0 /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A00 /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023CF0 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A20 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D00 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A30 /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D10 /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A40 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D20 /* fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A50 /* fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D30 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A60 /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D40 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A70 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D50 /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A80 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D60 /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A90 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D70 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AA0 /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D80 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AB0 /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023D90 /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AC0 /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DA0 /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AD0 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DB0 /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AF0 /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DC0 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B00 /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DD0 /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B10 /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DE0 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B20 /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023DF0 /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B30 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E00 /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B40 /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E10 /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B50 /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E20 /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B60 /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E30 /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B70 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E40 /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B80 /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E50 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B90 /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E60 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BB0 /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E70 /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BC0 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E80 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BD0 /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023E90 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BE0 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023EA0 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BF0 /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023EB0 /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C00 /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023EC0 /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C10 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023ED0 /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C20 /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023EE0 /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C30 /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023EF0 /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C40 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F00 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C50 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F10 /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C60 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F20 /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C70 /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F30 /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C80 /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F40 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C90 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F50 /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CA0 /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F60 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CB0 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F70 /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CC0 /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F80 /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CD0 /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023F90 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CE0 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FA0 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CF0 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FB0 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D00 /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FC0 /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D10 /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FD0 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D20 /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FE0 /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D30 /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00023FF0 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D40 /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024000 /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D50 /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024010 /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D60 /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024020 /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D70 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024030 /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D80 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024040 /* x_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D90 /* x_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024050 /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DA0 /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024060 /* x_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DB0 /* x_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024070 /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DC0 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024080 /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DD0 /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024090 /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DE0 /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240A0 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DF0 /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240B0 /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E00 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240C0 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E10 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240D0 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E20 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240E0 /* pcy_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E50 /* pcy_cache.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000240F0 /* pcy_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E60 /* pcy_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024100 /* pcy_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E70 /* pcy_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024110 /* pcy_map.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E80 /* pcy_map.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024120 /* pcy_node.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E90 /* pcy_node.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024130 /* pcy_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EA0 /* pcy_tree.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024140 /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EB0 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024150 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EC0 /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024160 /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001ED0 /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024170 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EE0 /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024180 /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EF0 /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024190 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F00 /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241A0 /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F10 /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241B0 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F20 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241C0 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F30 /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241D0 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F40 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241E0 /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F50 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000241F0 /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F60 /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024200 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F70 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024210 /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F80 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024220 /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F90 /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024230 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FA0 /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024240 /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FB0 /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024250 /* v3_pci.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FC0 /* v3_pci.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024260 /* v3_pcia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FD0 /* v3_pcia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024270 /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FE0 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024280 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FF0 /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E00024290 /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002000 /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000242A0 /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002010 /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000242B0 /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002020 /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000242C0 /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002030 /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000242D0 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002080 /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46EB2E000242E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000008D0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000242F0 /* cpu-arm-linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AA0 /* cpu-arm-linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024300 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B00 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024310 /* charmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CD0 /* charmap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024320 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D00 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024330 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DF0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024340 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EC0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024350 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EF0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024360 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FA0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024370 /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FE0 /* conf_def.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024380 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FF0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024390 /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001010 /* curve25519_tables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243A0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001020 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243B0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001090 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243C0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000010F0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243D0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001120 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001170 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000243F0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001270 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024400 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001360 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024410 /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000013E0 /* rsaz_exp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024420 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001450 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024430 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001460 /* delocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024440 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001480 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024450 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000014D0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024460 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000014E0 /* md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024470 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001530 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024480 /* p256-x86_64-table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001560 /* p256-x86_64-table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024490 /* p256-x86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001580 /* p256-x86_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244A0 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000015A0 /* p256_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244B0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001620 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244C0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001660 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244D0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000016D0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244E0 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001720 /* fork_detect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000244F0 /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001730 /* getrandom_fillin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024500 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001740 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024510 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001780 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024520 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000017E0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024530 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001830 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024540 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001880 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024550 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001890 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024560 /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000018C0 /* obj_dat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024570 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001960 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024580 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001990 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024590 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000019D0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245A0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A10 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245B0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AE0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245C0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BA0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245D0 /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E30 /* ext_dat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E40 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000245F0 /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002040 /* curve25519_32.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024600 /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002050 /* curve25519_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024610 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002060 /* p256_32.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024620 /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002070 /* p256_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024630 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020A0 /* aead.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024640 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020B0 /* aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024650 /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020C0 /* arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024660 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020D0 /* asn1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024670 /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020E0 /* asn1t.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024680 /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020F0 /* asn1_mac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024690 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002100 /* base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246A0 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002110 /* base64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246B0 /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002120 /* bio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246C0 /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002130 /* blake2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246D0 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002140 /* blowfish.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246E0 /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002150 /* bn.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000246F0 /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002160 /* boringssl_prefix_symbols.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024700 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002170 /* buf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024710 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002180 /* buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024720 /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002190 /* bytestring.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024730 /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021A0 /* cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024740 /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021B0 /* chacha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024750 /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021C0 /* cipher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024760 /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021D0 /* cmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024770 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021E0 /* conf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024780 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021F0 /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024790 /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002200 /* crypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247A0 /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002210 /* curve25519.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247B0 /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002220 /* des.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247C0 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002230 /* dh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247D0 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002240 /* digest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247E0 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002250 /* dsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000247F0 /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002260 /* dtls1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024800 /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002270 /* ec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024810 /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002280 /* ecdh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024820 /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002290 /* ecdsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024830 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022A0 /* ec_key.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024840 /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022B0 /* engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024850 /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022C0 /* err.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024860 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022D0 /* evp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024870 /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022E0 /* evp_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024880 /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022F0 /* ex_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024890 /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002300 /* e_os2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248A0 /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002310 /* hkdf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248B0 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002320 /* hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248C0 /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002330 /* hpke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248D0 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002340 /* hrss.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248E0 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002350 /* is_boringssl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000248F0 /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002360 /* lhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024900 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002370 /* md4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024910 /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002380 /* md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024920 /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002390 /* mem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024930 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023A0 /* nid.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024940 /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023B0 /* obj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024950 /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023C0 /* objects.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024960 /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023D0 /* obj_mac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024970 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023E0 /* opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024980 /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023F0 /* opensslv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024990 /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002400 /* ossl_typ.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249A0 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002410 /* pem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249B0 /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002420 /* pkcs12.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249C0 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002430 /* pkcs7.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249D0 /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002440 /* pkcs8.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249E0 /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002450 /* poly1305.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000249F0 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002460 /* pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A00 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002470 /* rand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A10 /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002480 /* rc4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A20 /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002490 /* ripemd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A30 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024A0 /* rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A40 /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024B0 /* safestack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A50 /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024C0 /* sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A60 /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024D0 /* siphash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A70 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024E0 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A80 /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024F0 /* srtp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024A90 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002500 /* ssl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AA0 /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002510 /* ssl3.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AB0 /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002520 /* stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AC0 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002530 /* thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AD0 /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002540 /* tls1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AE0 /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002550 /* trust_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024AF0 /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002560 /* type_check.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024B00 /* umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002570 /* umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024B10 /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002580 /* x509.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024B20 /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002590 /* x509v3.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024B30 /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025A0 /* x509_vfy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024B90 /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024B80 /* BoringSSL-GRPC-dummy.m */; }; - 46EB2E00024C20 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000025C0 /* GCDAsyncSocket.m */; }; - 46EB2E00024C30 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000025E0 /* GCDAsyncUdpSocket.m */; }; - 46EB2E00024C40 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025B0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024C50 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025D0 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024CB0 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024CA0 /* CocoaAsyncSocket-dummy.m */; }; - 46EB2E00024D40 /* CodePush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002600 /* CodePush.m */; }; - 46EB2E00024D50 /* CodePushConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002610 /* CodePushConfig.m */; }; - 46EB2E00024D60 /* CodePushDownloadHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002620 /* CodePushDownloadHandler.m */; }; - 46EB2E00024D70 /* CodePushErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002630 /* CodePushErrorUtils.m */; }; - 46EB2E00024D80 /* CodePushPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002640 /* CodePushPackage.m */; }; - 46EB2E00024D90 /* CodePushTelemetryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002650 /* CodePushTelemetryManager.m */; }; - 46EB2E00024DA0 /* CodePushUpdateUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002660 /* CodePushUpdateUtils.m */; }; - 46EB2E00024DB0 /* CodePushUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002670 /* CodePushUtils.m */; }; - 46EB2E00024DC0 /* RCTConvert+CodePushInstallMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002680 /* RCTConvert+CodePushInstallMode.m */; }; - 46EB2E00024DD0 /* RCTConvert+CodePushUpdateState.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002690 /* RCTConvert+CodePushUpdateState.m */; }; - 46EB2E00024DE0 /* CodePush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025F0 /* CodePush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024E40 /* CodePush-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024E30 /* CodePush-dummy.m */; }; - 46EB2E00024ED0 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026A0 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024EE0 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026C0 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024EF0 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026E0 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F00 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002700 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F10 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002720 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F20 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002740 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F30 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002760 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F40 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002790 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E00024F50 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000026B0 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024F60 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000026D0 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024F70 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000026F0 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024F80 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002710 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024F90 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002730 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024FA0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002750 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024FB0 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002770 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024FC0 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002780 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024FD0 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000027A0 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00024FE0 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000027B0 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025040 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00025030 /* DoubleConversion-dummy.m */; }; - 46EB2E00025220 /* ABTConditionalUserPropertyController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002810 /* ABTConditionalUserPropertyController.m */; }; - 46EB2E00025230 /* ABTExperimentPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002830 /* ABTExperimentPayload.m */; }; - 46EB2E00025240 /* FIRExperimentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002840 /* FIRExperimentController.m */; }; - 46EB2E00025250 /* FIRLifecycleEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002850 /* FIRLifecycleEvents.m */; }; - 46EB2E00025260 /* ABTConditionalUserPropertyController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002800 /* ABTConditionalUserPropertyController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025270 /* ABTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002820 /* ABTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025280 /* ABTExperimentPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002860 /* ABTExperimentPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025290 /* FirebaseABTestingInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002870 /* FirebaseABTestingInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252A0 /* FirebaseABTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002880 /* FirebaseABTesting.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252B0 /* FIRExperimentController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002890 /* FIRExperimentController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252C0 /* FIRLifecycleEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028A0 /* FIRLifecycleEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252D0 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028B0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252E0 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028C0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000252F0 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028D0 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025300 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028E0 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025310 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028F0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025320 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002900 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025330 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002910 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025340 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002920 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025350 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002930 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025360 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002940 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025370 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002950 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025380 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002960 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025390 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002970 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000253A0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002980 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000253B0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002990 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000253C0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029A0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025410 /* FirebaseABTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00025400 /* FirebaseABTesting-dummy.m */; }; - 46EB2E00025520 /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029B0 /* FIRActionCodeSettings.m */; }; - 46EB2E00025530 /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029C0 /* FIRAuth.m */; }; - 46EB2E00025540 /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029D0 /* FIRAuthDataResult.m */; }; - 46EB2E00025550 /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A00 /* FIRAuthDispatcher.m */; }; - 46EB2E00025560 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.m */; }; - 46EB2E00025570 /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A50 /* FIRAuthSerialTaskQueue.m */; }; - 46EB2E00025580 /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A60 /* FIRAuthSettings.m */; }; - 46EB2E00025590 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A70 /* FIRAuthTokenResult.m */; }; - 46EB2E000255A0 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AA0 /* FIREmailAuthProvider.m */; }; - 46EB2E000255B0 /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.m */; }; - 46EB2E000255C0 /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AE0 /* FIRFacebookAuthCredential.m */; }; - 46EB2E000255D0 /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AF0 /* FIRFacebookAuthProvider.m */; }; - 46EB2E000255E0 /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B00 /* FIRAuthCredential.m */; }; - 46EB2E000255F0 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B20 /* FIRAuthProvider.m */; }; - 46EB2E00025600 /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B40 /* FIRGameCenterAuthCredential.m */; }; - 46EB2E00025610 /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B50 /* FIRGameCenterAuthProvider.m */; }; - 46EB2E00025620 /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B70 /* FIRGitHubAuthCredential.m */; }; - 46EB2E00025630 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B80 /* FIRGitHubAuthProvider.m */; }; - 46EB2E00025640 /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BA0 /* FIRGoogleAuthCredential.m */; }; - 46EB2E00025650 /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BB0 /* FIRGoogleAuthProvider.m */; }; - 46EB2E00025660 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BC0 /* FIROAuthCredential.m */; }; - 46EB2E00025670 /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BE0 /* FIROAuthProvider.m */; }; - 46EB2E00025680 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BF0 /* FIRPhoneAuthCredential.m */; }; - 46EB2E00025690 /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C10 /* FIRPhoneAuthProvider.m */; }; - 46EB2E000256A0 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C30 /* FIRTwitterAuthCredential.m */; }; - 46EB2E000256B0 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C40 /* FIRTwitterAuthProvider.m */; }; - 46EB2E000256C0 /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.m */; }; - 46EB2E000256D0 /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C80 /* FIRAuthBackend.m */; }; - 46EB2E000256E0 /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CA0 /* FIRAuthRequestConfiguration.m */; }; - 46EB2E000256F0 /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CE0 /* FIRIdentityToolkitRequest.m */; }; - 46EB2E00025700 /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D00 /* FIRCreateAuthURIRequest.m */; }; - 46EB2E00025710 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D20 /* FIRCreateAuthURIResponse.m */; }; - 46EB2E00025720 /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D40 /* FIRDeleteAccountRequest.m */; }; - 46EB2E00025730 /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D60 /* FIRDeleteAccountResponse.m */; }; - 46EB2E00025740 /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D80 /* FIREmailLinkSignInRequest.m */; }; - 46EB2E00025750 /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DA0 /* FIREmailLinkSignInResponse.m */; }; - 46EB2E00025760 /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DC0 /* FIRGetAccountInfoRequest.m */; }; - 46EB2E00025770 /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DE0 /* FIRGetAccountInfoResponse.m */; }; - 46EB2E00025780 /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.m */; }; - 46EB2E00025790 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.m */; }; - 46EB2E000257A0 /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E40 /* FIRGetProjectConfigRequest.m */; }; - 46EB2E000257B0 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E60 /* FIRGetProjectConfigResponse.m */; }; - 46EB2E000257C0 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E80 /* FIRResetPasswordRequest.m */; }; - 46EB2E000257D0 /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EA0 /* FIRResetPasswordResponse.m */; }; - 46EB2E000257E0 /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EC0 /* FIRSecureTokenRequest.m */; }; - 46EB2E000257F0 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EE0 /* FIRSecureTokenResponse.m */; }; - 46EB2E00025800 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F00 /* FIRSendVerificationCodeRequest.m */; }; - 46EB2E00025810 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F20 /* FIRSendVerificationCodeResponse.m */; }; - 46EB2E00025820 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F40 /* FIRSetAccountInfoRequest.m */; }; - 46EB2E00025830 /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F60 /* FIRSetAccountInfoResponse.m */; }; - 46EB2E00025840 /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.m */; }; - 46EB2E00025850 /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.m */; }; - 46EB2E00025860 /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FC0 /* FIRSignUpNewUserRequest.m */; }; - 46EB2E00025870 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FE0 /* FIRSignUpNewUserResponse.m */; }; - 46EB2E00025880 /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003000 /* FIRVerifyAssertionRequest.m */; }; - 46EB2E00025890 /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003020 /* FIRVerifyAssertionResponse.m */; }; - 46EB2E000258A0 /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003040 /* FIRVerifyClientRequest.m */; }; - 46EB2E000258B0 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003060 /* FIRVerifyClientResponse.m */; }; - 46EB2E000258C0 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003080 /* FIRVerifyCustomTokenRequest.m */; }; - 46EB2E000258D0 /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.m */; }; - 46EB2E000258E0 /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030C0 /* FIRVerifyPasswordRequest.m */; }; - 46EB2E000258F0 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030E0 /* FIRVerifyPasswordResponse.m */; }; - 46EB2E00025900 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.m */; }; - 46EB2E00025910 /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.m */; }; - 46EB2E00025920 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.m */; }; - 46EB2E00025930 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.m */; }; - 46EB2E00025940 /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.m */; }; - 46EB2E00025950 /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.m */; }; - 46EB2E00025960 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.m */; }; - 46EB2E00025970 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.m */; }; - 46EB2E00025980 /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003200 /* FIRStartMFASignInRequest.m */; }; - 46EB2E00025990 /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003220 /* FIRStartMFASignInResponse.m */; }; - 46EB2E000259A0 /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003240 /* FIRWithdrawMFARequest.m */; }; - 46EB2E000259B0 /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003260 /* FIRWithdrawMFAResponse.m */; }; - 46EB2E000259C0 /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.m */; }; - 46EB2E000259D0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; - 46EB2E000259E0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; - 46EB2E000259F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; - 46EB2E00025A00 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; - 46EB2E00025A10 /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003330 /* FIRMultiFactor.m */; }; - 46EB2E00025A20 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003350 /* FIRMultiFactorAssertion.m */; }; - 46EB2E00025A30 /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003360 /* FIRMultiFactorConstants.m */; }; - 46EB2E00025A40 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003380 /* FIRMultiFactorInfo.m */; }; - 46EB2E00025A50 /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033A0 /* FIRMultiFactorResolver.m */; }; - 46EB2E00025A60 /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033C0 /* FIRMultiFactorSession.m */; }; - 46EB2E00025A70 /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion.m */; }; - 46EB2E00025A80 /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033F0 /* FIRPhoneMultiFactorGenerator.m */; }; - 46EB2E00025A90 /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003410 /* FIRPhoneMultiFactorInfo.m */; }; - 46EB2E00025AA0 /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003640 /* FIRAuthKeychainServices.m */; }; - 46EB2E00025AB0 /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003660 /* FIRAuthUserDefaults.m */; }; - 46EB2E00025AC0 /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003680 /* FIRAuthAPNSToken.m */; }; - 46EB2E00025AD0 /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036A0 /* FIRAuthAPNSTokenManager.m */; }; - 46EB2E00025AE0 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036C0 /* FIRAuthAppCredential.m */; }; - 46EB2E00025AF0 /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036E0 /* FIRAuthAppCredentialManager.m */; }; - 46EB2E00025B00 /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003700 /* FIRAuthNotificationManager.m */; }; - 46EB2E00025B10 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003720 /* FIRAuthStoredUserManager.m */; }; - 46EB2E00025B20 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003740 /* FIRSecureTokenService.m */; }; - 46EB2E00025B30 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003750 /* FIRAdditionalUserInfo.m */; }; - 46EB2E00025B40 /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003770 /* FIRUser.m */; }; - 46EB2E00025B50 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003790 /* FIRUserInfoImpl.m */; }; - 46EB2E00025B60 /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000037A0 /* FIRUserMetadata.m */; }; - 46EB2E00025B70 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.m */; }; - 46EB2E00025B80 /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003800 /* FIRAuthErrorUtils.m */; }; - 46EB2E00025B90 /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003820 /* FIRAuthExceptionUtils.m */; }; - 46EB2E00025BA0 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003850 /* FIRAuthURLPresenter.m */; }; - 46EB2E00025BB0 /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003870 /* FIRAuthWebUtils.m */; }; - 46EB2E00025BC0 /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003890 /* FIRAuthWebView.m */; }; - 46EB2E00025BD0 /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000038B0 /* FIRAuthWebViewController.m */; }; - 46EB2E00025BE0 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000038D0 /* NSData+FIRBase64.m */; }; - 46EB2E00025BF0 /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029E0 /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C00 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029F0 /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C10 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A10 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C20 /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A30 /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C30 /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A40 /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C40 /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A80 /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C50 /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A90 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C60 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AB0 /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C70 /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AD0 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C80 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B10 /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025C90 /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B30 /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CA0 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B60 /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CB0 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B90 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CC0 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BD0 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CD0 /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C00 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CE0 /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C20 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025CF0 /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C50 /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D00 /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C70 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D10 /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C90 /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D20 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CB0 /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D30 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CC0 /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D40 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CD0 /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D50 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CF0 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D60 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D10 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D70 /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D30 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D80 /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D50 /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025D90 /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D70 /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DA0 /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D90 /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DB0 /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DB0 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DC0 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DD0 /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DD0 /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DF0 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DE0 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E10 /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025DF0 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E30 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E00 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E50 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E10 /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E70 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E20 /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E90 /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E30 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EB0 /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E40 /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002ED0 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E50 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EF0 /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E60 /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F10 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E70 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F30 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E80 /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F50 /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025E90 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F70 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025EA0 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F90 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025EB0 /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FB0 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025EC0 /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FD0 /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025ED0 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FF0 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025EE0 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003010 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025EF0 /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003030 /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F00 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003050 /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F10 /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003070 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F20 /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003090 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F30 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030B0 /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F40 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030D0 /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F50 /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030F0 /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F60 /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003110 /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F70 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003130 /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F80 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003150 /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025F90 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003170 /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FA0 /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003190 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FB0 /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031B0 /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FC0 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031D0 /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FD0 /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031F0 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FE0 /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003210 /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00025FF0 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003230 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026000 /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003250 /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026010 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003270 /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026020 /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003280 /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026030 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032A0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026040 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026050 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032E0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026060 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026070 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003320 /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026080 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003340 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026090 /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003370 /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260A0 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003390 /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260B0 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000033B0 /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260C0 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000033D0 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260D0 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003400 /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260E0 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003420 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000260F0 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003430 /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026100 /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003440 /* FIRAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026110 /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003450 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026120 /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003460 /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026130 /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003470 /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026140 /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003480 /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026150 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003490 /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026160 /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034A0 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026170 /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034B0 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026180 /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034C0 /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026190 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034D0 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261A0 /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034E0 /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261B0 /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034F0 /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261C0 /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003500 /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261D0 /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003510 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261E0 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003520 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000261F0 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003530 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026200 /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003540 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026210 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003550 /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026220 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003560 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026230 /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003570 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026240 /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003580 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026250 /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003590 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026260 /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035A0 /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026270 /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035B0 /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026280 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035C0 /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026290 /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035D0 /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262A0 /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035E0 /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262B0 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035F0 /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262C0 /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003600 /* FIRUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262D0 /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003610 /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262E0 /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003620 /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000262F0 /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003630 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026300 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003650 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026310 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003670 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026320 /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003690 /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026330 /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036B0 /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026340 /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036D0 /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026350 /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036F0 /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026360 /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003710 /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026370 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003730 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026380 /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003760 /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026390 /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003780 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263A0 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037B0 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263B0 /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037C0 /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263C0 /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037D0 /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263D0 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037F0 /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263E0 /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003810 /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000263F0 /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003830 /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026400 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003840 /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026410 /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003860 /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026420 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003880 /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026430 /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038A0 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026440 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038C0 /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026450 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038E0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026460 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038F0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026470 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003900 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026480 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003910 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026490 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003920 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264A0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003930 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264B0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003940 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264C0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003950 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264D0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003960 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264E0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003970 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000264F0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003980 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026500 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003990 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026510 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039A0 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026560 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026550 /* FirebaseAuth-dummy.m */; }; - 46EB2E000265F0 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000039C0 /* FIRAnalyticsConfiguration.m */; }; - 46EB2E00026600 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000039D0 /* FIRApp.m */; }; - 46EB2E00026610 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000039F0 /* FIRBundleUtil.m */; }; - 46EB2E00026620 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A00 /* FIRComponent.m */; }; - 46EB2E00026630 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A10 /* FIRComponentContainer.m */; }; - 46EB2E00026640 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A30 /* FIRComponentType.m */; }; - 46EB2E00026650 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A40 /* FIRConfiguration.m */; }; - 46EB2E00026660 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A60 /* FIRCoreDiagnosticsConnector.m */; }; - 46EB2E00026670 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A70 /* FIRDependency.m */; }; - 46EB2E00026680 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A90 /* FIRDiagnosticsData.m */; }; - 46EB2E00026690 /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AB0 /* FIRFirebaseUserAgent.m */; }; - 46EB2E000266A0 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AC0 /* FIRHeartbeatInfo.m */; }; - 46EB2E000266B0 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AD0 /* FIRHeartbeatLogger.m */; }; - 46EB2E000266C0 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AE0 /* FIRLogger.m */; }; - 46EB2E000266D0 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AF0 /* FIROptions.m */; }; - 46EB2E000266E0 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B00 /* FIRVersion.m */; }; - 46EB2E000266F0 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039B0 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026700 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039E0 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026710 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A20 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026720 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A50 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026730 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A80 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026740 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AA0 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026750 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B10 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026760 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B20 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026770 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B30 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026780 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B40 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026790 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B50 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267A0 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B60 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267B0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B70 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267C0 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B80 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267D0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B90 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267E0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BA0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000267F0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BB0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026800 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BC0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026810 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BD0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026820 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BE0 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026830 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BF0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026840 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C00 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026850 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C10 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026860 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C20 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026870 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C30 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026880 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C40 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000268E0 /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000268D0 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026900 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000268F0 /* FirebaseCore-dummy.m */; }; - 46EB2E00026990 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C50 /* FIRCoreDiagnostics.m */; }; - 46EB2E000269A0 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C60 /* firebasecore.nanopb.c */; }; - 46EB2E000269B0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C70 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000269C0 /* FIRCoreDiagnostics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C80 /* FIRCoreDiagnostics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000269D0 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C90 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000269E0 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CA0 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026A30 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026A20 /* FirebaseCoreDiagnostics-dummy.m */; }; - 46EB2E00026AC0 /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CB0 /* dummy.m */; }; - 46EB2E00026AD0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CC0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026AE0 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CD0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026AF0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CE0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B00 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CF0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B10 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D00 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B20 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D10 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B30 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D20 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B40 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D30 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B50 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D40 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B60 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D50 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B70 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D60 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026B80 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D70 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026BE0 /* FirebaseCoreExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026BD0 /* FirebaseCoreExtension-dummy.m */; }; - 46EB2E00026C70 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D80 /* Heartbeat.swift */; }; - 46EB2E00026C80 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D90 /* HeartbeatController.swift */; }; - 46EB2E00026C90 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DA0 /* HeartbeatsBundle.swift */; }; - 46EB2E00026CA0 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DB0 /* HeartbeatsPayload.swift */; }; - 46EB2E00026CB0 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DC0 /* HeartbeatStorage.swift */; }; - 46EB2E00026CC0 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DD0 /* RingBuffer.swift */; }; - 46EB2E00026CD0 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DE0 /* Storage.swift */; }; - 46EB2E00026CE0 /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DF0 /* StorageFactory.swift */; }; - 46EB2E00026CF0 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E00 /* WeakContainer.swift */; }; - 46EB2E00026D00 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E10 /* _ObjC_HeartbeatController.swift */; }; - 46EB2E00026D10 /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E20 /* _ObjC_HeartbeatsPayload.swift */; }; - 46EB2E00026D70 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00026D60 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00026DB0 /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026DA0 /* FirebaseCoreInternal-dummy.m */; }; - 46EB2E00026E40 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E40 /* FIRCLSApplication.m */; }; - 46EB2E00026E50 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E60 /* FIRCLSBinaryImage.m */; }; - 46EB2E00026E60 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E80 /* FIRCLSContext.m */; }; - 46EB2E00026E70 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E90 /* FIRCLSCrashedMarkerFile.c */; }; - 46EB2E00026E80 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003ED0 /* FIRCLSHost.m */; }; - 46EB2E00026E90 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EE0 /* FIRCLSProcess.c */; }; - 46EB2E00026EA0 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F10 /* FIRCLSUserLogging.m */; }; - 46EB2E00026EB0 /* FIRCLSAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F30 /* FIRCLSAnalyticsManager.m */; }; - 46EB2E00026EC0 /* FIRCLSExistingReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F50 /* FIRCLSExistingReportManager.m */; }; - 46EB2E00026ED0 /* FIRCLSManagerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F70 /* FIRCLSManagerData.m */; }; - 46EB2E00026EE0 /* FIRCLSMetricKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F90 /* FIRCLSMetricKitManager.m */; }; - 46EB2E00026EF0 /* FIRCLSNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FB0 /* FIRCLSNotificationManager.m */; }; - 46EB2E00026F00 /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FD0 /* FIRCLSReportManager.m */; }; - 46EB2E00026F10 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004000 /* FIRCLSReportUploader.m */; }; - 46EB2E00026F20 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004030 /* FIRCLSDataCollectionArbiter.m */; }; - 46EB2E00026F30 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004050 /* FIRCLSDataCollectionToken.m */; }; - 46EB2E00026F40 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004070 /* FIRCLSUserDefaults.m */; }; - 46EB2E00026F50 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004090 /* FIRCrashlytics.m */; }; - 46EB2E00026F60 /* FIRCrashlyticsReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040A0 /* FIRCrashlyticsReport.m */; }; - 46EB2E00026F70 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040B0 /* FIRExceptionModel.m */; }; - 46EB2E00026F80 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040C0 /* FIRStackFrame.m */; }; - 46EB2E00026F90 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040E0 /* FIRCLSException.mm */; }; - 46EB2E00026FA0 /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004100 /* FIRCLSHandler.m */; }; - 46EB2E00026FB0 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004110 /* FIRCLSMachException.c */; }; - 46EB2E00026FC0 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004130 /* FIRCLSSignal.c */; }; - 46EB2E00026FD0 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004150 /* FIRCLSAllocate.c */; }; - 46EB2E00026FE0 /* FIRCLSCallStackTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004180 /* FIRCLSCallStackTree.m */; }; - 46EB2E00026FF0 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000041C0 /* FIRCLSFile.m */; }; - 46EB2E00027000 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000041D0 /* FIRCLSInternalLogging.c */; }; - 46EB2E00027010 /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004200 /* FIRCLSLogger.m */; }; - 46EB2E00027020 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004210 /* FIRCLSProfiling.c */; }; - 46EB2E00027030 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004230 /* FIRCLSThreadState.c */; }; - 46EB2E00027040 /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004260 /* FIRCLSUtility.m */; }; - 46EB2E00027050 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.m */; }; - 46EB2E00027060 /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042A0 /* FIRCLSFileManager.m */; }; - 46EB2E00027070 /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.m */; }; - 46EB2E00027080 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042E0 /* FIRCLSInternalReport.m */; }; - 46EB2E00027090 /* FIRCLSLaunchMarkerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004300 /* FIRCLSLaunchMarkerModel.m */; }; - 46EB2E000270A0 /* FIRCLSOnDemandModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004320 /* FIRCLSOnDemandModel.m */; }; - 46EB2E000270B0 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004340 /* FIRCLSSettings.m */; }; - 46EB2E000270C0 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004360 /* FIRCLSSymbolResolver.m */; }; - 46EB2E000270D0 /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004380 /* FIRCLSRecordApplication.m */; }; - 46EB2E000270E0 /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043A0 /* FIRCLSRecordBase.m */; }; - 46EB2E000270F0 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043C0 /* FIRCLSRecordHost.m */; }; - 46EB2E00027100 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043E0 /* FIRCLSRecordIdentity.m */; }; - 46EB2E00027110 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004400 /* FIRCLSReportAdapter.m */; }; - 46EB2E00027120 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004430 /* FIRCLSAsyncOperation.m */; }; - 46EB2E00027130 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004460 /* FIRCLSProcessReportOperation.m */; }; - 46EB2E00027140 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004480 /* FIRCLSDemangleOperation.mm */; }; - 46EB2E00027150 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; - 46EB2E00027160 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044C0 /* FIRCLSSymbolicationOperation.m */; }; - 46EB2E00027170 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044E0 /* FIRCLSThreadArrayOperation.m */; }; - 46EB2E00027180 /* FIRCLSSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045A0 /* FIRCLSSettingsManager.m */; }; - 46EB2E00027190 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.m */; }; - 46EB2E000271A0 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; - 46EB2E000271B0 /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004600 /* FIRCLSNetworkOperation.m */; }; - 46EB2E000271C0 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004610 /* FIRCLSCompactUnwind.c */; }; - 46EB2E000271D0 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004640 /* FIRCLSDataParsing.c */; }; - 46EB2E000271E0 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004660 /* FIRCLSDwarfExpressionMachine.c */; }; - 46EB2E000271F0 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004680 /* FIRCLSDwarfUnwind.c */; }; - 46EB2E00027200 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000046B0 /* FIRCLSUnwind.c */; }; - 46EB2E00027210 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000046E0 /* FIRCLSUnwind_arm.c */; }; - 46EB2E00027220 /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000046F0 /* FIRCLSUnwind_x86.c */; }; - 46EB2E00027230 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004710 /* crashlytics.nanopb.c */; }; - 46EB2E00027240 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004740 /* FIRCLSByteUtility.m */; }; - 46EB2E00027250 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004760 /* FIRCLSConstants.m */; }; - 46EB2E00027260 /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004780 /* FIRCLSFABHost.m */; }; - 46EB2E00027270 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047A0 /* FIRCLSCodeMapping.m */; }; - 46EB2E00027280 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047C0 /* FIRCLSdSYM.m */; }; - 46EB2E00027290 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047E0 /* FIRCLSMachO.m */; }; - 46EB2E000272A0 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004800 /* FIRCLSMachOBinary.m */; }; - 46EB2E000272B0 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004820 /* FIRCLSMachOSlice.m */; }; - 46EB2E000272C0 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004840 /* FIRCLSFABNetworkClient.m */; }; - 46EB2E000272D0 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 46EB2E000272E0 /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004880 /* FIRCLSNetworkResponseHandler.m */; }; - 46EB2E000272F0 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048A0 /* FIRCLSURLBuilder.m */; }; - 46EB2E00027300 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048C0 /* FIRCLSCompoundOperation.m */; }; - 46EB2E00027310 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048E0 /* FIRCLSFABAsyncOperation.m */; }; - 46EB2E00027320 /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004920 /* FIRCLSUUID.m */; }; - 46EB2E00027330 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E30 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027340 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E50 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027350 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E70 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027360 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027370 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EB0 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027380 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EC0 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027390 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EF0 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273A0 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F00 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273B0 /* FIRCLSAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F20 /* FIRCLSAnalyticsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273C0 /* FIRCLSExistingReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F40 /* FIRCLSExistingReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273D0 /* FIRCLSManagerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F60 /* FIRCLSManagerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273E0 /* FIRCLSMetricKitManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F80 /* FIRCLSMetricKitManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000273F0 /* FIRCLSNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FA0 /* FIRCLSNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027400 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FC0 /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027410 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FE0 /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027420 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FF0 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027430 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004010 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027440 /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004020 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027450 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004040 /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027460 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004060 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027470 /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004080 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027480 /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000040D0 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027490 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000040F0 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274A0 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004120 /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274B0 /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004140 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274C0 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004160 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274D0 /* FIRCLSCallStackTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004170 /* FIRCLSCallStackTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274E0 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004190 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000274F0 /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041A0 /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027500 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041B0 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027510 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041E0 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027520 /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041F0 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027530 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004220 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027540 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004240 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027550 /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004250 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027560 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004270 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027570 /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004290 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027580 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042B0 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027590 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042D0 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275A0 /* FIRCLSLaunchMarkerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042F0 /* FIRCLSLaunchMarkerModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275B0 /* FIRCLSOnDemandModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004310 /* FIRCLSOnDemandModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275C0 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004330 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275D0 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004350 /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275E0 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004370 /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000275F0 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004390 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027600 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043B0 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027610 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043D0 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027620 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043F0 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027630 /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004410 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027640 /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004420 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027650 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004440 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027660 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004450 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027670 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004470 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027680 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004490 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027690 /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044B0 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276A0 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044D0 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276B0 /* FIRCLSExistingReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044F0 /* FIRCLSExistingReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276C0 /* FIRCLSOnDemandModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004500 /* FIRCLSOnDemandModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276D0 /* FIRCrashlyticsReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004510 /* FIRCrashlyticsReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276E0 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004520 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000276F0 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004530 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027700 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004540 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027710 /* FIRCrashlyticsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004550 /* FIRCrashlyticsReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027720 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004560 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027730 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004570 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027740 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004580 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027750 /* FIRCLSSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004590 /* FIRCLSSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027760 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045B0 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027770 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045D0 /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027780 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045F0 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027790 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004620 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277A0 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004630 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277B0 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004650 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277C0 /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277D0 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004690 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277E0 /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046A0 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000277F0 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046C0 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027800 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046D0 /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027810 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004700 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027820 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004720 /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027830 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004730 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027840 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004750 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027850 /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004770 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027860 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004790 /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027870 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047B0 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027880 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047D0 /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027890 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047F0 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278A0 /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004810 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278B0 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004830 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278C0 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004850 /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278D0 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004870 /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278E0 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004890 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000278F0 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048B0 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027900 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048D0 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027910 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048F0 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027920 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004900 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027930 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004910 /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027940 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004930 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027950 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004940 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027960 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004950 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027970 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004960 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027980 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004970 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027990 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004980 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279A0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004990 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279B0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049A0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279C0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049B0 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279D0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049C0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279E0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049D0 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000279F0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049E0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A00 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049F0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A10 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A00 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A20 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A10 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A30 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A20 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A40 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A30 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027A50 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A40 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00027AA0 /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00027A90 /* FirebaseCrashlytics-dummy.m */; }; - 46EB2E00027B30 /* FIRDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A50 /* FIRDatabase.m */; }; - 46EB2E00027B40 /* FIRDatabaseComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A70 /* FIRDatabaseComponent.m */; }; - 46EB2E00027B50 /* FIRDatabaseConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A90 /* FIRDatabaseConfig.m */; }; - 46EB2E00027B60 /* FIRDatabaseQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AA0 /* FIRDatabaseQuery.m */; }; - 46EB2E00027B70 /* FIRDataSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AB0 /* FIRDataSnapshot.m */; }; - 46EB2E00027B80 /* FIRMutableData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AC0 /* FIRMutableData.m */; }; - 46EB2E00027B90 /* FIRServerValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AD0 /* FIRServerValue.m */; }; - 46EB2E00027BA0 /* FIRTransactionResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AE0 /* FIRTransactionResult.m */; }; - 46EB2E00027BB0 /* FConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B70 /* FConstants.m */; }; - 46EB2E00027BC0 /* FCompoundHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B90 /* FCompoundHash.m */; }; - 46EB2E00027BD0 /* FListenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BB0 /* FListenProvider.m */; }; - 46EB2E00027BE0 /* FPersistentConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BD0 /* FPersistentConnection.m */; }; - 46EB2E00027BF0 /* FQueryParams.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BF0 /* FQueryParams.m */; }; - 46EB2E00027C00 /* FQuerySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C10 /* FQuerySpec.m */; }; - 46EB2E00027C10 /* FRangeMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C30 /* FRangeMerge.m */; }; - 46EB2E00027C20 /* FRepo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C50 /* FRepo.m */; }; - 46EB2E00027C30 /* FRepoInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C70 /* FRepoInfo.m */; }; - 46EB2E00027C40 /* FRepoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C90 /* FRepoManager.m */; }; - 46EB2E00027C50 /* FServerValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CC0 /* FServerValues.m */; }; - 46EB2E00027C60 /* FSnapshotHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CE0 /* FSnapshotHolder.m */; }; - 46EB2E00027C70 /* FSparseSnapshotTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D00 /* FSparseSnapshotTree.m */; }; - 46EB2E00027C80 /* FSyncPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D20 /* FSyncPoint.m */; }; - 46EB2E00027C90 /* FSyncTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D40 /* FSyncTree.m */; }; - 46EB2E00027CA0 /* FWriteRecord.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D60 /* FWriteRecord.m */; }; - 46EB2E00027CB0 /* FWriteTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D80 /* FWriteTree.m */; }; - 46EB2E00027CC0 /* FWriteTreeRef.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DA0 /* FWriteTreeRef.m */; }; - 46EB2E00027CD0 /* FAckUserWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DC0 /* FAckUserWrite.m */; }; - 46EB2E00027CE0 /* FMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DE0 /* FMerge.m */; }; - 46EB2E00027CF0 /* FOperationSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E10 /* FOperationSource.m */; }; - 46EB2E00027D00 /* FOverwrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E30 /* FOverwrite.m */; }; - 46EB2E00027D10 /* FImmutableTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E50 /* FImmutableTree.m */; }; - 46EB2E00027D20 /* FIRRetryHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E70 /* FIRRetryHelper.m */; }; - 46EB2E00027D30 /* FPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E90 /* FPath.m */; }; - 46EB2E00027D40 /* FTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EB0 /* FTree.m */; }; - 46EB2E00027D50 /* FTreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004ED0 /* FTreeNode.m */; }; - 46EB2E00027D60 /* FCacheNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EF0 /* FCacheNode.m */; }; - 46EB2E00027D70 /* FCancelEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F10 /* FCancelEvent.m */; }; - 46EB2E00027D80 /* FChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F30 /* FChange.m */; }; - 46EB2E00027D90 /* FChildEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F50 /* FChildEventRegistration.m */; }; - 46EB2E00027DA0 /* FDataEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F70 /* FDataEvent.m */; }; - 46EB2E00027DB0 /* FEventRaiser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FA0 /* FEventRaiser.m */; }; - 46EB2E00027DC0 /* FChildChangeAccumulator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FD0 /* FChildChangeAccumulator.m */; }; - 46EB2E00027DD0 /* FIndexedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005000 /* FIndexedFilter.m */; }; - 46EB2E00027DE0 /* FLimitedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005020 /* FLimitedFilter.m */; }; - 46EB2E00027DF0 /* FKeepSyncedEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005050 /* FKeepSyncedEventRegistration.m */; }; - 46EB2E00027E00 /* FValueEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005070 /* FValueEventRegistration.m */; }; - 46EB2E00027E10 /* FView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005090 /* FView.m */; }; - 46EB2E00027E20 /* FViewCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050B0 /* FViewCache.m */; }; - 46EB2E00027E30 /* FClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050D0 /* FClock.m */; }; - 46EB2E00027E40 /* FEventGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050F0 /* FEventGenerator.m */; }; - 46EB2E00027E50 /* FIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005110 /* FIndex.m */; }; - 46EB2E00027E60 /* FIRDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005130 /* FIRDatabaseReference.m */; }; - 46EB2E00027E70 /* FKeyIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005150 /* FKeyIndex.m */; }; - 46EB2E00027E80 /* FListenComplete.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005170 /* FListenComplete.m */; }; - 46EB2E00027E90 /* FMaxNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005190 /* FMaxNode.m */; }; - 46EB2E00027EA0 /* FNamedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051B0 /* FNamedNode.m */; }; - 46EB2E00027EB0 /* FPathIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051D0 /* FPathIndex.m */; }; - 46EB2E00027EC0 /* FPriorityIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051F0 /* FPriorityIndex.m */; }; - 46EB2E00027ED0 /* FRangedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005210 /* FRangedFilter.m */; }; - 46EB2E00027EE0 /* FTransformedEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005230 /* FTransformedEnumerator.m */; }; - 46EB2E00027EF0 /* FValueIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005250 /* FValueIndex.m */; }; - 46EB2E00027F00 /* FViewProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005270 /* FViewProcessor.m */; }; - 46EB2E00027F10 /* FViewProcessorResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005290 /* FViewProcessorResult.m */; }; - 46EB2E00027F20 /* FIRDatabaseConnectionContextProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.m */; }; - 46EB2E00027F30 /* FCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052D0 /* FCachePolicy.m */; }; - 46EB2E00027F40 /* FLevelDBStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052F0 /* FLevelDBStorageEngine.m */; }; - 46EB2E00027F50 /* FPendingPut.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005310 /* FPendingPut.m */; }; - 46EB2E00027F60 /* FPersistenceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005330 /* FPersistenceManager.m */; }; - 46EB2E00027F70 /* FPruneForest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005350 /* FPruneForest.m */; }; - 46EB2E00027F80 /* FTrackedQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005380 /* FTrackedQuery.m */; }; - 46EB2E00027F90 /* FTrackedQueryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000053A0 /* FTrackedQueryManager.m */; }; - 46EB2E00027FA0 /* FConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005450 /* FConnection.m */; }; - 46EB2E00027FB0 /* FWebSocketConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005470 /* FWebSocketConnection.m */; }; - 46EB2E00027FC0 /* FChildrenNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005490 /* FChildrenNode.m */; }; - 46EB2E00027FD0 /* FCompoundWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054B0 /* FCompoundWrite.m */; }; - 46EB2E00027FE0 /* FEmptyNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054D0 /* FEmptyNode.m */; }; - 46EB2E00027FF0 /* FIndexedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054F0 /* FIndexedNode.m */; }; - 46EB2E00028000 /* FLeafNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005510 /* FLeafNode.m */; }; - 46EB2E00028010 /* FSnapshotUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005540 /* FSnapshotUtilities.m */; }; - 46EB2E00028020 /* FArraySortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005560 /* FArraySortedDictionary.m */; }; - 46EB2E00028030 /* FImmutableSortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005580 /* FImmutableSortedDictionary.m */; }; - 46EB2E00028040 /* FImmutableSortedSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000055A0 /* FImmutableSortedSet.m */; }; - 46EB2E00028050 /* FLLRBEmptyNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000055C0 /* FLLRBEmptyNode.m */; }; - 46EB2E00028060 /* FLLRBValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000055F0 /* FLLRBValueNode.m */; }; - 46EB2E00028070 /* FTreeSortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005610 /* FTreeSortedDictionary.m */; }; - 46EB2E00028080 /* FTreeSortedDictionaryEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.m */; }; - 46EB2E00028090 /* FSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005660 /* FSRWebSocket.m */; }; - 46EB2E000280A0 /* NSData+SRB64Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005680 /* NSData+SRB64Additions.m */; }; - 46EB2E000280B0 /* FAtomicNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000056B0 /* FAtomicNumber.m */; }; - 46EB2E000280C0 /* FEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000056D0 /* FEventEmitter.m */; }; - 46EB2E000280D0 /* FNextPushId.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000056F0 /* FNextPushId.m */; }; - 46EB2E000280E0 /* FParsedUrl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005710 /* FParsedUrl.m */; }; - 46EB2E000280F0 /* FStringUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005730 /* FStringUtilities.m */; }; - 46EB2E00028100 /* FUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005760 /* FUtilities.m */; }; - 46EB2E00028110 /* FValidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005780 /* FValidation.m */; }; - 46EB2E00028120 /* FTupleBoolBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057A0 /* FTupleBoolBlock.m */; }; - 46EB2E00028130 /* FTupleCallbackStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057C0 /* FTupleCallbackStatus.m */; }; - 46EB2E00028140 /* FTupleFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057E0 /* FTupleFirebase.m */; }; - 46EB2E00028150 /* FTupleNodePath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005800 /* FTupleNodePath.m */; }; - 46EB2E00028160 /* FTupleObjectNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005820 /* FTupleObjectNode.m */; }; - 46EB2E00028170 /* FTupleObjects.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005840 /* FTupleObjects.m */; }; - 46EB2E00028180 /* FTupleOnDisconnect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005860 /* FTupleOnDisconnect.m */; }; - 46EB2E00028190 /* FTuplePathValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005880 /* FTuplePathValue.m */; }; - 46EB2E000281A0 /* FTupleRemovedQueriesEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058A0 /* FTupleRemovedQueriesEvents.m */; }; - 46EB2E000281B0 /* FTupleSetIdPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058C0 /* FTupleSetIdPath.m */; }; - 46EB2E000281C0 /* FTupleStringNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058E0 /* FTupleStringNode.m */; }; - 46EB2E000281D0 /* FTupleTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005900 /* FTupleTransaction.m */; }; - 46EB2E000281E0 /* FTupleTSN.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005920 /* FTupleTSN.m */; }; - 46EB2E000281F0 /* FTupleUserCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005940 /* FTupleUserCallback.m */; }; - 46EB2E00028200 /* APLevelDB.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005950 /* APLevelDB.mm */; }; - 46EB2E00028210 /* fbase64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005960 /* fbase64.c */; }; - 46EB2E00028220 /* FIRDatabaseComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A60 /* FIRDatabaseComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028230 /* FIRDatabaseConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A80 /* FIRDatabaseConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028240 /* FIRDatabaseQuery_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AF0 /* FIRDatabaseQuery_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028250 /* FIRDatabaseReference_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B00 /* FIRDatabaseReference_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028260 /* FIRDatabase_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B10 /* FIRDatabase_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028270 /* FIRDataSnapshot_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B20 /* FIRDataSnapshot_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028280 /* FIRMutableData_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B30 /* FIRMutableData_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028290 /* FIRTransactionResult_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B40 /* FIRTransactionResult_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282A0 /* FTypedefs_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B50 /* FTypedefs_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282B0 /* FConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B60 /* FConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282C0 /* FCompoundHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B80 /* FCompoundHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282D0 /* FListenProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BA0 /* FListenProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282E0 /* FPersistentConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BC0 /* FPersistentConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000282F0 /* FQueryParams.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BE0 /* FQueryParams.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028300 /* FQuerySpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C00 /* FQuerySpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028310 /* FRangeMerge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C20 /* FRangeMerge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028320 /* FRepo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C40 /* FRepo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028330 /* FRepoInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C60 /* FRepoInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028340 /* FRepoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C80 /* FRepoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028350 /* FRepo_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CA0 /* FRepo_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028360 /* FServerValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CB0 /* FServerValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028370 /* FSnapshotHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CD0 /* FSnapshotHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028380 /* FSparseSnapshotTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CF0 /* FSparseSnapshotTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028390 /* FSyncPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D10 /* FSyncPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283A0 /* FSyncTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D30 /* FSyncTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283B0 /* FWriteRecord.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D50 /* FWriteRecord.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283C0 /* FWriteTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D70 /* FWriteTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283D0 /* FWriteTreeRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D90 /* FWriteTreeRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283E0 /* FAckUserWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DB0 /* FAckUserWrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000283F0 /* FMerge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DD0 /* FMerge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028400 /* FOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DF0 /* FOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028410 /* FOperationSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E00 /* FOperationSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028420 /* FOverwrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E20 /* FOverwrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028430 /* FImmutableTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E40 /* FImmutableTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028440 /* FIRRetryHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E60 /* FIRRetryHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028450 /* FPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E80 /* FPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028460 /* FTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EA0 /* FTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028470 /* FTreeNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EC0 /* FTreeNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028480 /* FCacheNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EE0 /* FCacheNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028490 /* FCancelEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F00 /* FCancelEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284A0 /* FChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F20 /* FChange.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284B0 /* FChildEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F40 /* FChildEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284C0 /* FDataEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F60 /* FDataEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284D0 /* FEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F80 /* FEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284E0 /* FEventRaiser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F90 /* FEventRaiser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000284F0 /* FEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FB0 /* FEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028500 /* FChildChangeAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FC0 /* FChildChangeAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028510 /* FCompleteChildSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FE0 /* FCompleteChildSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028520 /* FIndexedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FF0 /* FIndexedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028530 /* FLimitedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005010 /* FLimitedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028540 /* FNodeFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005030 /* FNodeFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028550 /* FKeepSyncedEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005040 /* FKeepSyncedEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028560 /* FValueEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005060 /* FValueEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028570 /* FView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005080 /* FView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028580 /* FViewCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050A0 /* FViewCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028590 /* FClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050C0 /* FClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285A0 /* FEventGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050E0 /* FEventGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285B0 /* FIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005100 /* FIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285C0 /* FIRDatabaseConfig_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005120 /* FIRDatabaseConfig_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285D0 /* FKeyIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005140 /* FKeyIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285E0 /* FListenComplete.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005160 /* FListenComplete.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000285F0 /* FMaxNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005180 /* FMaxNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028600 /* FNamedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051A0 /* FNamedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028610 /* FPathIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051C0 /* FPathIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028620 /* FPriorityIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051E0 /* FPriorityIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028630 /* FRangedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005200 /* FRangedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028640 /* FTransformedEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005220 /* FTransformedEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028650 /* FValueIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005240 /* FValueIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028660 /* FViewProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005260 /* FViewProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028670 /* FViewProcessorResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005280 /* FViewProcessorResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028680 /* FIRDatabaseConnectionContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052A0 /* FIRDatabaseConnectionContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028690 /* FCachePolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052C0 /* FCachePolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286A0 /* FLevelDBStorageEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052E0 /* FLevelDBStorageEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286B0 /* FPendingPut.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005300 /* FPendingPut.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286C0 /* FPersistenceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005320 /* FPersistenceManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286D0 /* FPruneForest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005340 /* FPruneForest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286E0 /* FStorageEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005360 /* FStorageEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000286F0 /* FTrackedQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005370 /* FTrackedQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028700 /* FTrackedQueryManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005390 /* FTrackedQueryManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028710 /* FIRDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053B0 /* FIRDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028720 /* FIRDatabaseQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053C0 /* FIRDatabaseQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028730 /* FIRDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053D0 /* FIRDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028740 /* FIRDataEventType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053E0 /* FIRDataEventType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028750 /* FIRDataSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053F0 /* FIRDataSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028760 /* FirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005400 /* FirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028770 /* FIRMutableData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005410 /* FIRMutableData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028780 /* FIRServerValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005420 /* FIRServerValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028790 /* FIRTransactionResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005430 /* FIRTransactionResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287A0 /* FConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005440 /* FConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287B0 /* FWebSocketConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005460 /* FWebSocketConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287C0 /* FChildrenNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005480 /* FChildrenNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287D0 /* FCompoundWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054A0 /* FCompoundWrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287E0 /* FEmptyNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054C0 /* FEmptyNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000287F0 /* FIndexedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054E0 /* FIndexedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028800 /* FLeafNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005500 /* FLeafNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028810 /* FNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005520 /* FNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028820 /* FSnapshotUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005530 /* FSnapshotUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028830 /* FArraySortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005550 /* FArraySortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028840 /* FImmutableSortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005570 /* FImmutableSortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028850 /* FImmutableSortedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005590 /* FImmutableSortedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028860 /* FLLRBEmptyNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055B0 /* FLLRBEmptyNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028870 /* FLLRBNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055D0 /* FLLRBNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028880 /* FLLRBValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055E0 /* FLLRBValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028890 /* FTreeSortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005600 /* FTreeSortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288A0 /* FTreeSortedDictionaryEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005620 /* FTreeSortedDictionaryEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288B0 /* fbase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005640 /* fbase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288C0 /* FSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005650 /* FSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288D0 /* NSData+SRB64Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005670 /* NSData+SRB64Additions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288E0 /* APLevelDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005690 /* APLevelDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000288F0 /* FAtomicNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056A0 /* FAtomicNumber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028900 /* FEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056C0 /* FEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028910 /* FNextPushId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056E0 /* FNextPushId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028920 /* FParsedUrl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005700 /* FParsedUrl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028930 /* FStringUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005720 /* FStringUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028940 /* FTypedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005740 /* FTypedefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028950 /* FUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005750 /* FUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028960 /* FValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005770 /* FValidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028970 /* FTupleBoolBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005790 /* FTupleBoolBlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028980 /* FTupleCallbackStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057B0 /* FTupleCallbackStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028990 /* FTupleFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057D0 /* FTupleFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289A0 /* FTupleNodePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057F0 /* FTupleNodePath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289B0 /* FTupleObjectNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005810 /* FTupleObjectNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289C0 /* FTupleObjects.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005830 /* FTupleObjects.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289D0 /* FTupleOnDisconnect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005850 /* FTupleOnDisconnect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289E0 /* FTuplePathValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005870 /* FTuplePathValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000289F0 /* FTupleRemovedQueriesEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005890 /* FTupleRemovedQueriesEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A00 /* FTupleSetIdPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058B0 /* FTupleSetIdPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A10 /* FTupleStringNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058D0 /* FTupleStringNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A20 /* FTupleTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058F0 /* FTupleTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A30 /* FTupleTSN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005910 /* FTupleTSN.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A40 /* FTupleUserCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005930 /* FTupleUserCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A50 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005970 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A60 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005980 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A70 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005990 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A80 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059A0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028A90 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059B0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AA0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059C0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AB0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059D0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AC0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059E0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AD0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059F0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AE0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A00 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028AF0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A10 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028B00 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A20 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028B10 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A30 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028B20 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A40 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028B30 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A50 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00028B80 /* FirebaseDatabase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00028B70 /* FirebaseDatabase-dummy.m */; }; - 46EB2E00028C10 /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C90 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C20 /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CA0 /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C30 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CB0 /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C40 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CC0 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C50 /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CD0 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C60 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CE0 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C70 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CF0 /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C80 /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D00 /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028C90 /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D10 /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CA0 /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D20 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CB0 /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D30 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CC0 /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D40 /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CD0 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D50 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CE0 /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D60 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028CF0 /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D70 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D00 /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D80 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D10 /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D90 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D20 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DA0 /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D30 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DB0 /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D40 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DC0 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D50 /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DD0 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D60 /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DE0 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D70 /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DF0 /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D80 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E00 /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028D90 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E10 /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DA0 /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006200 /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DB0 /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006210 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DC0 /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066A0 /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DD0 /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066E0 /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DE0 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006880 /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028DF0 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068B0 /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E00 /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068D0 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E10 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068E0 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E20 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006900 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E30 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006940 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E40 /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069B0 /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 46EB2E00028E50 /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E20 /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028E60 /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E30 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028E70 /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E40 /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028E80 /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E50 /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028E90 /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E60 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028EA0 /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E70 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028EB0 /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E80 /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028EC0 /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E90 /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028ED0 /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EA0 /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028EE0 /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EB0 /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028EF0 /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EC0 /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F00 /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005ED0 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F10 /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EE0 /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F20 /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EF0 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F30 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F00 /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F40 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F10 /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F50 /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F20 /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F60 /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F30 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F70 /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F40 /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F80 /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F50 /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028F90 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F60 /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FA0 /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F70 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FB0 /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F80 /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FC0 /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F90 /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FD0 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FA0 /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FE0 /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FB0 /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00028FF0 /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FC0 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029000 /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FD0 /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029010 /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FE0 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029020 /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FF0 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029030 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006000 /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029040 /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006010 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029050 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006020 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029060 /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006030 /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029070 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006040 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029080 /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006050 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029090 /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006060 /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290A0 /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006070 /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290B0 /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006080 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290C0 /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006090 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290D0 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060A0 /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290E0 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060B0 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000290F0 /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060C0 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029100 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060D0 /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029110 /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060E0 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029120 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060F0 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029130 /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006100 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029140 /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006110 /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029150 /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006120 /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029160 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006130 /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029170 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006140 /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029180 /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006150 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029190 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006160 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291A0 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006170 /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291B0 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006180 /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291C0 /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006190 /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291D0 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061A0 /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291E0 /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061B0 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000291F0 /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061C0 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029200 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061D0 /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029210 /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061E0 /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029220 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061F0 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029230 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006220 /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029240 /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006230 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029250 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006240 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029260 /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006250 /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029270 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006260 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029280 /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006270 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029290 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006280 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292A0 /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006290 /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292B0 /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062A0 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292C0 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062B0 /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292D0 /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062C0 /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292E0 /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062D0 /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000292F0 /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062E0 /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029300 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062F0 /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029310 /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006300 /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029320 /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006310 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029330 /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006320 /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029340 /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006330 /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029350 /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006340 /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029360 /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006350 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029370 /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006360 /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029380 /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006370 /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029390 /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006380 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293A0 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006390 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293B0 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063A0 /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293C0 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063B0 /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293D0 /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063C0 /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293E0 /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063D0 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000293F0 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063E0 /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029400 /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063F0 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029410 /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006400 /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029420 /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006410 /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029430 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006420 /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029440 /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006430 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029450 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006440 /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029460 /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006450 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029470 /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006460 /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029480 /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006470 /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029490 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006480 /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294A0 /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006490 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294B0 /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064A0 /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294C0 /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064B0 /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294D0 /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064C0 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294E0 /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064D0 /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000294F0 /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064E0 /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029500 /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064F0 /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029510 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006500 /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029520 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006510 /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029530 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006520 /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029540 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006530 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029550 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006540 /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029560 /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006550 /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029570 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006560 /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029580 /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006570 /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029590 /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006580 /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295A0 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006590 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295B0 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065A0 /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295C0 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065B0 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295D0 /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065C0 /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295E0 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065D0 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000295F0 /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065E0 /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029600 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065F0 /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029610 /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006600 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029620 /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006610 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029630 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006620 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029640 /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006630 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029650 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006640 /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029660 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006650 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029670 /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006660 /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029680 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006670 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029690 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006680 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296A0 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006690 /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296B0 /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066B0 /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296C0 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066C0 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296D0 /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066D0 /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296E0 /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066F0 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000296F0 /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006700 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029700 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006710 /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029710 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006720 /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029720 /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006730 /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029730 /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006740 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029740 /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006750 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029750 /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006760 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029760 /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006770 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029770 /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006780 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029780 /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006790 /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029790 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067A0 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297A0 /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067B0 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297B0 /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067C0 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297C0 /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067D0 /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297D0 /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067E0 /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297E0 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067F0 /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000297F0 /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006800 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029800 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006810 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029810 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006820 /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029820 /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006830 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029830 /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006840 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029840 /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006850 /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029850 /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006860 /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029860 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006870 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029870 /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006890 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029880 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068A0 /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029890 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068C0 /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298A0 /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068F0 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298B0 /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006910 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298C0 /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006920 /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298D0 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006930 /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298E0 /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006950 /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000298F0 /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006960 /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029900 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006970 /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029910 /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006980 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029920 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006990 /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029930 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069A0 /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029940 /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069C0 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029950 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069D0 /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029960 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069E0 /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029970 /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069F0 /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029980 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A00 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E00029990 /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A10 /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000299A0 /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A20 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000299B0 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A30 /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 46EB2E000299C0 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A60 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000299D0 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A70 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000299E0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A80 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000299F0 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A90 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A00 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AA0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A10 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AB0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A20 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AC0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A30 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AD0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A40 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AE0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A50 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AF0 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A60 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B00 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A70 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B10 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A80 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B20 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029A90 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B30 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AA0 /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B40 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AB0 /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B50 /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AC0 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B60 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AD0 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B70 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AE0 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B80 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029AF0 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B90 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B00 /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BA0 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B10 /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BB0 /* FIRFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B20 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BC0 /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B30 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BD0 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B40 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BE0 /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B50 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BF0 /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B60 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C00 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B70 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C10 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B80 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C20 /* FIRQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029B90 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C30 /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BA0 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C40 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BB0 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C50 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BC0 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C60 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BD0 /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C70 /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BE0 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C80 /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029BF0 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A40 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029C40 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00029C30 /* FirebaseFirestore-dummy.m */; }; - 46EB2E00029CD0 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A60 /* FIRInstallationsErrorUtil.m */; }; - 46EB2E00029CE0 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A80 /* FIRInstallationsHTTPError.m */; }; - 46EB2E00029CF0 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A90 /* FIRInstallations.m */; }; - 46EB2E00029D00 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AA0 /* FIRInstallationsAuthTokenResult.m */; }; - 46EB2E00029D10 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AD0 /* FIRInstallationsItem.m */; }; - 46EB2E00029D20 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AF0 /* FIRInstallationsLogger.m */; }; - 46EB2E00029D30 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B10 /* FIRInstallationsIIDStore.m */; }; - 46EB2E00029D40 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.m */; }; - 46EB2E00029D50 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B50 /* FIRInstallationsAPIService.m */; }; - 46EB2E00029D60 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 46EB2E00029D70 /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B90 /* FIRCurrentDateProvider.m */; }; - 46EB2E00029D80 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BB0 /* FIRInstallationsBackoffController.m */; }; - 46EB2E00029D90 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BD0 /* FIRInstallationsIDController.m */; }; - 46EB2E00029DA0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.m */; }; - 46EB2E00029DB0 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C20 /* FIRInstallationsStore.m */; }; - 46EB2E00029DC0 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.m */; }; - 46EB2E00029DD0 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C60 /* FIRInstallationsStoredItem.m */; }; - 46EB2E00029DE0 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A50 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029DF0 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A70 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E00 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AB0 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E10 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AC0 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E20 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AE0 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E30 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B00 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E40 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B20 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E50 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B40 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E60 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B60 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E70 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B80 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E80 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BA0 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029E90 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BC0 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029EA0 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BE0 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029EB0 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C00 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029EC0 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C10 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029ED0 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C30 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029EE0 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C50 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029EF0 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C70 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F00 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C80 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F10 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C90 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F20 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CA0 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F30 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CB0 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F40 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CC0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F50 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CD0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F60 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CE0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F70 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CF0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F80 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D00 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029F90 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D10 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FA0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D20 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FB0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D30 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FC0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D40 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FD0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D50 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FE0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D60 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00029FF0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D70 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A040 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002A030 /* FirebaseInstallations-dummy.m */; }; - 46EB2E0002A0D0 /* FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D90 /* FIRMessaging.m */; }; - 46EB2E0002A0E0 /* FIRMessagingAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DB0 /* FIRMessagingAnalytics.m */; }; - 46EB2E0002A0F0 /* FIRMessagingConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DE0 /* FIRMessagingConstants.m */; }; - 46EB2E0002A100 /* FIRMessagingContextManagerService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E00 /* FIRMessagingContextManagerService.m */; }; - 46EB2E0002A110 /* FIRMessagingExtensionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E20 /* FIRMessagingExtensionHelper.m */; }; - 46EB2E0002A120 /* FIRMessagingLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E40 /* FIRMessagingLogger.m */; }; - 46EB2E0002A130 /* FIRMessagingPendingTopicsList.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E60 /* FIRMessagingPendingTopicsList.m */; }; - 46EB2E0002A140 /* FIRMessagingPersistentSyncMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.m */; }; - 46EB2E0002A150 /* FIRMessagingPubSub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EA0 /* FIRMessagingPubSub.m */; }; - 46EB2E0002A160 /* FIRMessagingRemoteNotificationsProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.m */; }; - 46EB2E0002A170 /* FIRMessagingRmqManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EE0 /* FIRMessagingRmqManager.m */; }; - 46EB2E0002A180 /* FIRMessagingSyncMessageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F00 /* FIRMessagingSyncMessageManager.m */; }; - 46EB2E0002A190 /* FIRMessagingTopicOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F20 /* FIRMessagingTopicOperation.m */; }; - 46EB2E0002A1A0 /* FIRMessagingUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F50 /* FIRMessagingUtilities.m */; }; - 46EB2E0002A1B0 /* NSDictionary+FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F80 /* NSDictionary+FIRMessaging.m */; }; - 46EB2E0002A1C0 /* NSError+FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FA0 /* NSError+FIRMessaging.m */; }; - 46EB2E0002A1D0 /* me.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FB0 /* me.nanopb.c */; }; - 46EB2E0002A1E0 /* FIRMessagingAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007010 /* FIRMessagingAPNSInfo.m */; }; - 46EB2E0002A1F0 /* FIRMessagingAuthKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007030 /* FIRMessagingAuthKeychain.m */; }; - 46EB2E0002A200 /* FIRMessagingAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007050 /* FIRMessagingAuthService.m */; }; - 46EB2E0002A210 /* FIRMessagingBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.m */; }; - 46EB2E0002A220 /* FIRMessagingCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007090 /* FIRMessagingCheckinPreferences.m */; }; - 46EB2E0002A230 /* FIRMessagingCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070B0 /* FIRMessagingCheckinService.m */; }; - 46EB2E0002A240 /* FIRMessagingCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070D0 /* FIRMessagingCheckinStore.m */; }; - 46EB2E0002A250 /* FIRMessagingKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070F0 /* FIRMessagingKeychain.m */; }; - 46EB2E0002A260 /* FIRMessagingTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.m */; }; - 46EB2E0002A270 /* FIRMessagingTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007130 /* FIRMessagingTokenFetchOperation.m */; }; - 46EB2E0002A280 /* FIRMessagingTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007150 /* FIRMessagingTokenInfo.m */; }; - 46EB2E0002A290 /* FIRMessagingTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007170 /* FIRMessagingTokenManager.m */; }; - 46EB2E0002A2A0 /* FIRMessagingTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007190 /* FIRMessagingTokenOperation.m */; }; - 46EB2E0002A2B0 /* FIRMessagingTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000071B0 /* FIRMessagingTokenStore.m */; }; - 46EB2E0002A2C0 /* FirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D80 /* FirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A2D0 /* FIRMessagingAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DA0 /* FIRMessagingAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A2E0 /* FIRMessagingCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DC0 /* FIRMessagingCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A2F0 /* FIRMessagingConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DD0 /* FIRMessagingConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A300 /* FIRMessagingContextManagerService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DF0 /* FIRMessagingContextManagerService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A310 /* FIRMessagingDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E10 /* FIRMessagingDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A320 /* FIRMessagingLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E30 /* FIRMessagingLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A330 /* FIRMessagingPendingTopicsList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E50 /* FIRMessagingPendingTopicsList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A340 /* FIRMessagingPersistentSyncMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E70 /* FIRMessagingPersistentSyncMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A350 /* FIRMessagingPubSub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E90 /* FIRMessagingPubSub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A360 /* FIRMessagingRemoteNotificationsProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EB0 /* FIRMessagingRemoteNotificationsProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A370 /* FIRMessagingRmqManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006ED0 /* FIRMessagingRmqManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A380 /* FIRMessagingSyncMessageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EF0 /* FIRMessagingSyncMessageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A390 /* FIRMessagingTopicOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F10 /* FIRMessagingTopicOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3A0 /* FIRMessagingTopicsCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F30 /* FIRMessagingTopicsCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3B0 /* FIRMessagingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F40 /* FIRMessagingUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3C0 /* FIRMessaging_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F60 /* FIRMessaging_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3D0 /* NSDictionary+FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F70 /* NSDictionary+FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3E0 /* NSError+FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F90 /* NSError+FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A3F0 /* me.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FC0 /* me.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A400 /* FirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FD0 /* FirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A410 /* FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FE0 /* FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A420 /* FIRMessagingExtensionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FF0 /* FIRMessagingExtensionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A430 /* FIRMessagingAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007000 /* FIRMessagingAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A440 /* FIRMessagingAuthKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007020 /* FIRMessagingAuthKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A450 /* FIRMessagingAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007040 /* FIRMessagingAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A460 /* FIRMessagingBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007060 /* FIRMessagingBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A470 /* FIRMessagingCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007080 /* FIRMessagingCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A480 /* FIRMessagingCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070A0 /* FIRMessagingCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A490 /* FIRMessagingCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070C0 /* FIRMessagingCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4A0 /* FIRMessagingKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070E0 /* FIRMessagingKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4B0 /* FIRMessagingTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007100 /* FIRMessagingTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4C0 /* FIRMessagingTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007120 /* FIRMessagingTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4D0 /* FIRMessagingTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007140 /* FIRMessagingTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4E0 /* FIRMessagingTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007160 /* FIRMessagingTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A4F0 /* FIRMessagingTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007180 /* FIRMessagingTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A500 /* FIRMessagingTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071A0 /* FIRMessagingTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A510 /* FIRMessagingInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071C0 /* FIRMessagingInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A520 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071D0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A530 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071E0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A540 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071F0 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A550 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007200 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A560 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007210 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A570 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007220 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A580 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007230 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A590 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007240 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5A0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007250 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5B0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007260 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5C0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007270 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5D0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007280 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5E0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007290 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A5F0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072A0 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A600 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072B0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A610 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072C0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A620 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072D0 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A670 /* FirebaseMessaging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002A660 /* FirebaseMessaging-dummy.m */; }; - 46EB2E0002A700 /* FIRConfigValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000072E0 /* FIRConfigValue.m */; }; - 46EB2E0002A710 /* FIRRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000072F0 /* FIRRemoteConfig.m */; }; - 46EB2E0002A720 /* FIRRemoteConfigComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007310 /* FIRRemoteConfigComponent.m */; }; - 46EB2E0002A730 /* RCNConfigContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007390 /* RCNConfigContent.m */; }; - 46EB2E0002A740 /* RCNConfigDBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073B0 /* RCNConfigDBManager.m */; }; - 46EB2E0002A750 /* RCNConfigExperiment.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073E0 /* RCNConfigExperiment.m */; }; - 46EB2E0002A760 /* RCNConfigFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073F0 /* RCNConfigFetch.m */; }; - 46EB2E0002A770 /* RCNConfigSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007400 /* RCNConfigSettings.m */; }; - 46EB2E0002A780 /* RCNConstants3P.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007420 /* RCNConstants3P.m */; }; - 46EB2E0002A790 /* RCNDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007440 /* RCNDevice.m */; }; - 46EB2E0002A7A0 /* RCNPersonalization.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007460 /* RCNPersonalization.m */; }; - 46EB2E0002A7B0 /* RCNUserDefaultsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007480 /* RCNUserDefaultsManager.m */; }; - 46EB2E0002A7C0 /* FIRRemoteConfigComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007300 /* FIRRemoteConfigComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A7D0 /* FIRRemoteConfig_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007320 /* FIRRemoteConfig_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A7E0 /* RCNConfigFetch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007330 /* RCNConfigFetch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A7F0 /* RCNConfigSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007340 /* RCNConfigSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A800 /* FirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007350 /* FirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A810 /* FIRRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007360 /* FIRRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A820 /* RCNConfigConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007370 /* RCNConfigConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A830 /* RCNConfigContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007380 /* RCNConfigContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A840 /* RCNConfigDBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073A0 /* RCNConfigDBManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A850 /* RCNConfigDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073C0 /* RCNConfigDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A860 /* RCNConfigExperiment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073D0 /* RCNConfigExperiment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A870 /* RCNConfigValue_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007410 /* RCNConfigValue_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A880 /* RCNDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007430 /* RCNDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A890 /* RCNPersonalization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007450 /* RCNPersonalization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8A0 /* RCNUserDefaultsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007470 /* RCNUserDefaultsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8B0 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007490 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8C0 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074A0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8D0 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074B0 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8E0 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074C0 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A8F0 /* ABTExperimentPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074D0 /* ABTExperimentPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A900 /* FirebaseABTestingInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074E0 /* FirebaseABTestingInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A910 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074F0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A920 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007500 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A930 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007510 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A940 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007520 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A950 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007530 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A960 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007540 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A970 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007550 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A980 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007560 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A990 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007570 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A9A0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007580 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A9B0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007590 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A9C0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075A0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002A9D0 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075B0 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AA20 /* FirebaseRemoteConfig-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AA10 /* FirebaseRemoteConfig-dummy.m */; }; - 46EB2E0002AAB0 /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000075C0 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AAC0 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000075E0 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AAD0 /* FlipperBase64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007610 /* FlipperBase64.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AAE0 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007650 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AAF0 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000076A0 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB00 /* FlipperRSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007700 /* FlipperRSocket.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB10 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007720 /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB20 /* FlipperSocketProvider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007750 /* FlipperSocketProvider.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB30 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007770 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB40 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000077A0 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB50 /* FlipperURLSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000077D0 /* FlipperURLSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB60 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000077F0 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 46EB2E0002AB70 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075D0 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AB80 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075F0 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AB90 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007600 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABA0 /* FlipperBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007620 /* FlipperBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABB0 /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007630 /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABC0 /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007640 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABD0 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007660 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABE0 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007670 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ABF0 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007680 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC00 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007690 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC10 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076B0 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC20 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076C0 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC30 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076D0 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC40 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076E0 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC50 /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076F0 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC60 /* FlipperRSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007710 /* FlipperRSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC70 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007730 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC80 /* FlipperSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007740 /* FlipperSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AC90 /* FlipperSocketProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007760 /* FlipperSocketProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACA0 /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007780 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACB0 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007790 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACC0 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077B0 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACD0 /* FlipperTransportTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077C0 /* FlipperTransportTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACE0 /* FlipperURLSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077E0 /* FlipperURLSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002ACF0 /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007800 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AD00 /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007810 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AD60 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AD50 /* Flipper-dummy.m */; }; - 46EB2E0002ADF0 /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007820 /* ontop_combined_all_macho_gas.S */; }; - 46EB2E0002AE00 /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007830 /* make_combined_all_macho_gas.S */; }; - 46EB2E0002AE10 /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007840 /* jump_combined_all_macho_gas.S */; }; - 46EB2E0002AE70 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AE60 /* Flipper-Boost-iOSX-dummy.m */; }; - 46EB2E0002AF00 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007850 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF10 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007870 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF20 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007890 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF30 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078B0 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF40 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078D0 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF50 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078F0 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF60 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007910 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF70 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007940 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 46EB2E0002AF80 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007860 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AF90 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007880 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFA0 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078A0 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFB0 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078C0 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFC0 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078E0 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFD0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007900 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFE0 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007920 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002AFF0 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007930 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B000 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007950 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B010 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007960 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B070 /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002B060 /* Flipper-DoubleConversion-dummy.m */; }; - 46EB2E0002B100 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007970 /* format.cc */; }; - 46EB2E0002B110 /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007980 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B120 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007990 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B130 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079A0 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B140 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079B0 /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B150 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079C0 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B160 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079D0 /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B170 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079E0 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B180 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079F0 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B190 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A00 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B1A0 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A10 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B1B0 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A20 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B1C0 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A30 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002B220 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002B210 /* Flipper-Fmt-dummy.m */; }; - 46EB2E0002B2B0 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000096E0 /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B2C0 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000096F0 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B2D0 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000097B0 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B2E0 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000097E0 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B2F0 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000097F0 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B300 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009800 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B310 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009810 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B320 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009820 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B330 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009830 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B340 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009840 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B350 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009850 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B360 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009860 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B370 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009870 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B380 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009880 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B390 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009890 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3A0 /* FollyMemcpy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098A0 /* FollyMemcpy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3B0 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098B0 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3C0 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098C0 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3D0 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098D0 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3E0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098E0 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B3F0 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098F0 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B400 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009900 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B410 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009910 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B420 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009920 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B430 /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009930 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B440 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009940 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B450 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009950 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B460 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009960 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B470 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009970 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B480 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009980 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B490 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009990 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4A0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099A0 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4B0 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099B0 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4C0 /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099C0 /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4D0 /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099D0 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4E0 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099E0 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B4F0 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099F0 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B500 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A00 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B510 /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A10 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B520 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A20 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B530 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A30 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B540 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A40 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B550 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A50 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B560 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A60 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B570 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A70 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B580 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A80 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B590 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A90 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5A0 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AA0 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5B0 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AB0 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5C0 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AC0 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5D0 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AD0 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5E0 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AE0 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B5F0 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AF0 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B600 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B00 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B610 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B10 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B620 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B20 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B630 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B30 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B640 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B40 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B650 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B50 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B660 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B60 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B670 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B70 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B680 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B80 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B690 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B90 /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6A0 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BA0 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6B0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BB0 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6C0 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BC0 /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6D0 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BD0 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6E0 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BE0 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B6F0 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BF0 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B700 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C00 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B710 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C10 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B720 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C20 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B730 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C30 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B740 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C40 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B750 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C50 /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B760 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C60 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B770 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C70 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B780 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C80 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B790 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C90 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7A0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CA0 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7B0 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CB0 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7C0 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CC0 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7D0 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CD0 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7E0 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CE0 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B7F0 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CF0 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B800 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D00 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B810 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D10 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B820 /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D20 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B830 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D30 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B840 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D40 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B850 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D50 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B860 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D60 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B870 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D70 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B880 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D80 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B890 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D90 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8A0 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DA0 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8B0 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DB0 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8C0 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DC0 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8D0 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DD0 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8E0 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DE0 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B8F0 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DF0 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B900 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E00 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B910 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E10 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B920 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E20 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B930 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E30 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B940 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E40 /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B950 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E50 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B960 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E60 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B970 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E70 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B980 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E80 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B990 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E90 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9A0 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EA0 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9B0 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EB0 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9C0 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EC0 /* Exception.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9D0 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009ED0 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9E0 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EE0 /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002B9F0 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EF0 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA00 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F00 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA10 /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F10 /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA20 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F20 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA30 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F30 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA40 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F40 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA50 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F50 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA60 /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F60 /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA70 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F70 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA80 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F80 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BA90 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F90 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAA0 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FA0 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAB0 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FB0 /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAC0 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FC0 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAD0 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FD0 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAE0 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FE0 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BAF0 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FF0 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB00 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A000 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB10 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A010 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB20 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A020 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB30 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A030 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB40 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A040 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB50 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A050 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB60 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A060 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB70 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A070 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB80 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A080 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BB90 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A090 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBA0 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0A0 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBB0 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A470 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBC0 /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A480 /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBD0 /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A490 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBE0 /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4A0 /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BBF0 /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4B0 /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC00 /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4C0 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC10 /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4D0 /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC20 /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4E0 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC30 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4F0 /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC40 /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A500 /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC50 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A770 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC60 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A780 /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC70 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A790 /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC80 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7A0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BC90 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7B0 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCA0 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7C0 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCB0 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7D0 /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCC0 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7E0 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCD0 /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9F0 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCE0 /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA00 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BCF0 /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA10 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD00 /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA20 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD10 /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA30 /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD20 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA40 /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD30 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA50 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD40 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA60 /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD50 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA70 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD60 /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA80 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD70 /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA90 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD80 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAA0 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BD90 /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAB0 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDA0 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAC0 /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDB0 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAD0 /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDC0 /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAE0 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDD0 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAF0 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDE0 /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB00 /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BDF0 /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB10 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE00 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB20 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE10 /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB30 /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE20 /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB40 /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE30 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB50 /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE40 /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB60 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE50 /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB70 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE60 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB80 /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE70 /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB90 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE80 /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABA0 /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BE90 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC30 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BEA0 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC50 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BEB0 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC90 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BEC0 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACB0 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BED0 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACF0 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BEE0 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD00 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BEF0 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD40 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF00 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE00 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF10 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE60 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF20 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE80 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF30 /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEA0 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF40 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEC0 /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF50 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEE0 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF60 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF00 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF70 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF20 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF80 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF40 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BF90 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF60 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFA0 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF80 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFB0 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFA0 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFC0 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFD0 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFD0 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B010 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFE0 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B020 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002BFF0 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A40 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C000 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A50 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C010 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A60 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C020 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A70 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C030 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A80 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C040 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A90 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C050 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AA0 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C060 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AB0 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C070 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AC0 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C080 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AD0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C090 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AE0 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0A0 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AF0 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0B0 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B00 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0C0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B10 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0D0 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B20 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0E0 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B30 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C0F0 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B40 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C100 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B50 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C110 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B60 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C120 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B70 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C130 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B80 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C140 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B90 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C150 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BA0 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C160 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BB0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C170 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BC0 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C180 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BD0 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C190 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BE0 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1A0 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BF0 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1B0 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C00 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1C0 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C10 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1D0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C20 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1E0 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C30 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C1F0 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C40 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C200 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C50 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C210 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C60 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C220 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C70 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C230 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C80 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C240 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C90 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C250 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CA0 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C260 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CB0 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C270 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CC0 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C280 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CD0 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C290 /* FollyMemcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CE0 /* FollyMemcpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2A0 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CF0 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2B0 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D00 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2C0 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D10 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2D0 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D20 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2E0 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D30 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C2F0 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D40 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C300 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D50 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C310 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D60 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C320 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D70 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C330 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D80 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C340 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D90 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C350 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DA0 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C360 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DB0 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C370 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DC0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C380 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DD0 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C390 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DE0 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3A0 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DF0 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3B0 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E00 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3C0 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E10 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3D0 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E20 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3E0 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E30 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C3F0 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E40 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C400 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E50 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C410 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E60 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C420 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E70 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C430 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E80 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C440 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E90 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C450 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EA0 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C460 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EB0 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C470 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EC0 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C480 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007ED0 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C490 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EE0 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4A0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EF0 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4B0 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F00 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4C0 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F10 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4D0 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F20 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4E0 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F30 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C4F0 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F40 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C500 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F50 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C510 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F60 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C520 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F70 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C530 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F80 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C540 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F90 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C550 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FA0 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C560 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FB0 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C570 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FC0 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C580 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FD0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C590 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FE0 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5A0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FF0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5B0 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008000 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5C0 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008010 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5D0 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008020 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5E0 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008030 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C5F0 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008040 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C600 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008050 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C610 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008060 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C620 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008070 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C630 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008080 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C640 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008090 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C650 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080A0 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C660 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080B0 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C670 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080C0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C680 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080D0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C690 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080E0 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6A0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080F0 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6B0 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008100 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6C0 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008110 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6D0 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008120 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6E0 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008130 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C6F0 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008140 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C700 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008150 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C710 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008160 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C720 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008170 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C730 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008180 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C740 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008190 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C750 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081A0 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C760 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081B0 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C770 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081C0 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C780 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081D0 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C790 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081E0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7A0 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081F0 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7B0 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008200 /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7C0 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008210 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7D0 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008220 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7E0 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008230 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C7F0 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008240 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C800 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008250 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C810 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008260 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C820 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008270 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C830 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008280 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C840 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008290 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C850 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082A0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C860 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082B0 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C870 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082C0 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C880 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082D0 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C890 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082E0 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8A0 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082F0 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8B0 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008300 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8C0 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008310 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8D0 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008320 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8E0 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008330 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C8F0 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008340 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C900 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008350 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C910 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008360 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C920 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008370 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C930 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008380 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C940 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008390 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C950 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083A0 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C960 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083B0 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C970 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083C0 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C980 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083D0 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C990 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083E0 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9A0 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083F0 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9B0 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008400 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9C0 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008410 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9D0 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008420 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9E0 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008430 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002C9F0 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008440 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA00 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008450 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA10 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008460 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA20 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008470 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA30 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008480 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA40 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008490 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA50 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084A0 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA60 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084B0 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA70 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084C0 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA80 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084D0 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CA90 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084E0 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAA0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084F0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAB0 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008500 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAC0 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008510 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAD0 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008520 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAE0 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008530 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CAF0 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008540 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB00 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008550 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB10 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008560 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB20 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008570 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB30 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008580 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB40 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008590 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB50 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085A0 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB60 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085B0 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB70 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085C0 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB80 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085D0 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CB90 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085E0 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBA0 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085F0 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBB0 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008600 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBC0 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008610 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBD0 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008620 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBE0 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008630 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CBF0 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008640 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC00 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008650 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC10 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008660 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC20 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008670 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC30 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008680 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC40 /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008690 /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC50 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086A0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC60 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086B0 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC70 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086C0 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC80 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086D0 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CC90 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086E0 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCA0 /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086F0 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCB0 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008700 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCC0 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008710 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCD0 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008720 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCE0 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008730 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CCF0 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008740 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD00 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008750 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD10 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008760 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD20 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008770 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD30 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008780 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD40 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008790 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD50 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087A0 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD60 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087B0 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD70 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087C0 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD80 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087D0 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CD90 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087E0 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDA0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087F0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDB0 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008800 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDC0 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008810 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDD0 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008820 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDE0 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008830 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CDF0 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008840 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE00 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008850 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE10 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008860 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE20 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008870 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE30 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008880 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE40 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008890 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE50 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088A0 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE60 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088B0 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE70 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088C0 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE80 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088D0 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CE90 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088E0 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CEA0 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088F0 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CEB0 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008900 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CEC0 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008910 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CED0 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008920 /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CEE0 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008930 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CEF0 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008940 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF00 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008950 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF10 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008960 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF20 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008970 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF30 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008980 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF40 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008990 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF50 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089A0 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF60 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089B0 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF70 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089C0 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF80 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089D0 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CF90 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089E0 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFA0 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089F0 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFB0 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A00 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFC0 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A10 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFD0 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A20 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFE0 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A30 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002CFF0 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A40 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D000 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A50 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D010 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A60 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D020 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A70 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D030 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A80 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D040 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A90 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D050 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AA0 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D060 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AB0 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D070 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AC0 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D080 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AD0 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D090 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AE0 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0A0 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AF0 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0B0 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B00 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0C0 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B10 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0D0 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B20 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0E0 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B30 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D0F0 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B40 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D100 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B50 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D110 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B60 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D120 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B70 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D130 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B80 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D140 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B90 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D150 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BA0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D160 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BB0 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D170 /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BC0 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D180 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BD0 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D190 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BE0 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1A0 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BF0 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1B0 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C00 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1C0 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C10 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1D0 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C20 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1E0 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C30 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D1F0 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C40 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D200 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C50 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D210 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C60 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D220 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C70 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D230 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C80 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D240 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C90 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D250 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CA0 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D260 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CB0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D270 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CC0 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D280 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CD0 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D290 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CE0 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2A0 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CF0 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2B0 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D00 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2C0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D10 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2D0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D20 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2E0 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D30 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D2F0 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D40 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D300 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D50 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D310 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D60 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D320 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D70 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D330 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D80 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D340 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D90 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D350 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DA0 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DB0 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D370 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DC0 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D380 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DD0 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D390 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DE0 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3A0 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DF0 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3B0 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E00 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3C0 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E10 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3D0 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E20 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3E0 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E30 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D3F0 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E40 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D400 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E50 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D410 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E60 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D420 /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E70 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D430 /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E80 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D440 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E90 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D450 /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EA0 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D460 /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EB0 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D470 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EC0 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D480 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008ED0 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D490 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EE0 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4A0 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EF0 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4B0 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F00 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4C0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F10 /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4D0 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F20 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4E0 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F30 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D4F0 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F40 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D500 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F50 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D510 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F60 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D520 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F70 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D530 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F80 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D540 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F90 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D550 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FA0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D560 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FB0 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D570 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FC0 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D580 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FD0 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D590 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FE0 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5A0 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FF0 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5B0 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009000 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5C0 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009010 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5D0 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009020 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5E0 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009030 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D5F0 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009040 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D600 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009050 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D610 /* OpenSSLTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009060 /* OpenSSLTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D620 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009070 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D630 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009080 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D640 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009090 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D650 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090A0 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D660 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090B0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D670 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090C0 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D680 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090D0 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D690 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090E0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6A0 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090F0 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6B0 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009100 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6C0 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009110 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6D0 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009120 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6E0 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009130 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D6F0 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009140 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D700 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009150 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D710 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009160 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D720 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009170 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D730 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009180 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D740 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009190 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D750 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091A0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D760 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091B0 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D770 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091C0 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D780 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091D0 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D790 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091E0 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7A0 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091F0 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7B0 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009200 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7C0 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009210 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7D0 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009220 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7E0 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009230 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D7F0 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009240 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D800 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009250 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D810 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009260 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D820 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009270 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D830 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009280 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D840 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009290 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D850 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092A0 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D860 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092B0 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D870 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092C0 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D880 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092D0 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D890 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092E0 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8A0 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092F0 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8B0 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009300 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8C0 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009310 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8D0 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009320 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8E0 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009330 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D8F0 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009340 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D900 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009350 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D910 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009360 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D920 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009370 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D930 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009380 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D940 /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009390 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D950 /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093A0 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D960 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093B0 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D970 /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093C0 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D980 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093D0 /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D990 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093E0 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9A0 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093F0 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9B0 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009400 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9C0 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009410 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9D0 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009420 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9E0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009430 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002D9F0 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009440 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA00 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009450 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA10 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009460 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA20 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009470 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA30 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009480 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA40 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009490 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA50 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094A0 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA60 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094B0 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA70 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094C0 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA80 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094D0 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DA90 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094E0 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAA0 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094F0 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAB0 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009500 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAC0 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009510 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAD0 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009520 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAE0 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009530 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DAF0 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009540 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB00 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009550 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB10 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009560 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB20 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009570 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB30 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009580 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB40 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009590 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB50 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095A0 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB60 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095B0 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB70 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095C0 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB80 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095D0 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DB90 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095E0 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBA0 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095F0 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBB0 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009600 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBC0 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009610 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBD0 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009620 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBE0 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009630 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DBF0 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009640 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC00 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009650 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC10 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009660 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC20 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009670 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC30 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009680 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC40 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009690 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC50 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096A0 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC60 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096B0 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC70 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096C0 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC80 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096D0 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DC90 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009700 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCA0 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009710 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCB0 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009720 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCC0 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009730 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCD0 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009740 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCE0 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009750 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DCF0 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009760 /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD00 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009770 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD10 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009780 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD20 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009790 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD30 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097A0 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD40 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097C0 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD50 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097D0 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD60 /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0B0 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD70 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0C0 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD80 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0D0 /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DD90 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0E0 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDA0 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0F0 /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDB0 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A100 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDC0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A110 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDD0 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A120 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDE0 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A130 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DDF0 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A140 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE00 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A150 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE10 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A160 /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE20 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A170 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE30 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A180 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE40 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A190 /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE50 /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1A0 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE60 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1B0 /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE70 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1C0 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE80 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1D0 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DE90 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1E0 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DEA0 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1F0 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DEB0 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A200 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DEC0 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A210 /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DED0 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A220 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DEE0 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A230 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DEF0 /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A240 /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF00 /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A250 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF10 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A260 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF20 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A270 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF30 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A280 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF40 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A290 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF50 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2A0 /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF60 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2B0 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF70 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2C0 /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF80 /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2D0 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DF90 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2E0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFA0 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2F0 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFB0 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A300 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFC0 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A310 /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFD0 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A320 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFE0 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A330 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002DFF0 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A340 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E000 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A350 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E010 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A360 /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E020 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A370 /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E030 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A380 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E040 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A390 /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E050 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3A0 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E060 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3B0 /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E070 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3C0 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E080 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3D0 /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E090 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3E0 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0A0 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3F0 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0B0 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A400 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0C0 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A410 /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0D0 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A420 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0E0 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A430 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E0F0 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A440 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E100 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A450 /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E110 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A460 /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E120 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A510 /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E130 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A520 /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E140 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A530 /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E150 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A540 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E160 /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A550 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E170 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A560 /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E180 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A570 /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E190 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A580 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1A0 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A590 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1B0 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5A0 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1C0 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5B0 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1D0 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5C0 /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1E0 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5D0 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E1F0 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5E0 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E200 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5F0 /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E210 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A600 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E220 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A610 /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E230 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A620 /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E240 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A630 /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E250 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A640 /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E260 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A650 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E270 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A660 /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E280 /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A670 /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E290 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A680 /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2A0 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A690 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2B0 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6A0 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2C0 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6B0 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2D0 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6C0 /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2E0 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6D0 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E2F0 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6E0 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E300 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6F0 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E310 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A700 /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E320 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A710 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E330 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A720 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E340 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A730 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E350 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A740 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E360 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A750 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E370 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A760 /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E380 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7F0 /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E390 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A800 /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3A0 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A810 /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3B0 /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A820 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3C0 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A830 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3D0 /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A840 /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3E0 /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A850 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E3F0 /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A860 /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E400 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A870 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E410 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A880 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E420 /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A890 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E430 /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8A0 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E440 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8B0 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E450 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8C0 /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E460 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8D0 /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E470 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8E0 /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E480 /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8F0 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E490 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A900 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4A0 /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A910 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4B0 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A920 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4C0 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A930 /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4D0 /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A940 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4E0 /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A950 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E4F0 /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A960 /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E500 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A970 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E510 /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A980 /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E520 /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A990 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E530 /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9A0 /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E540 /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9B0 /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E550 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9C0 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E560 /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9D0 /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E570 /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9E0 /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E580 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABB0 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E590 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABC0 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5A0 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABD0 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5B0 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABE0 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5C0 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABF0 /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5D0 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC00 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5E0 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC10 /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E5F0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC20 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E600 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC40 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E610 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC60 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E620 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC70 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E630 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC80 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E640 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACA0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E650 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACC0 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E660 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACD0 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E670 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACE0 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E680 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD10 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E690 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD20 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6A0 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD30 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6B0 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD50 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6C0 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD60 /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6D0 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD70 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6E0 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD80 /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E6F0 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD90 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E700 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADA0 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E710 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADB0 /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E720 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADC0 /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E730 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADD0 /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E740 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADE0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E750 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADF0 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E760 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE10 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E770 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE20 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E780 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE30 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E790 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE40 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7A0 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE50 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7B0 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE70 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7C0 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE90 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7D0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEB0 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7E0 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AED0 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E7F0 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEF0 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E800 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF10 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E810 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF30 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E820 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF50 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E830 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF70 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E840 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF90 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E850 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFB0 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E860 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFC0 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E870 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFE0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E880 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFF0 /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E890 /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B000 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002E8F0 /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002E8E0 /* Flipper-Folly-dummy.m */; }; - 46EB2E0002EA00 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B050 /* PTChannel.m */; }; - 46EB2E0002EA10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B080 /* PTProtocol.m */; }; - 46EB2E0002EA20 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0A0 /* PTUSBHub.m */; }; - 46EB2E0002EA30 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B030 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EA40 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B040 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EA50 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B060 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EA60 /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B070 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EA70 /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B090 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EAD0 /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002EAC0 /* Flipper-PeerTalk-dummy.m */; }; - 46EB2E0002EB60 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0B0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EB70 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0C0 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EB80 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0D0 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EB90 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0E0 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBA0 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0F0 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBB0 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B120 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBC0 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B130 /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBD0 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B140 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBE0 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B160 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EBF0 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B180 /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC00 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1A0 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC10 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1C0 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC20 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1E0 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC30 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B200 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC40 /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B230 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC50 /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B250 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC60 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B270 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC70 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2A0 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC80 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2C0 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EC90 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2E0 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECA0 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B300 /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECB0 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B320 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECC0 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B340 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECD0 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B380 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECE0 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3A0 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ECF0 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3C0 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED00 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3E0 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED10 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B410 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED20 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B440 /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED30 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B460 /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED40 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B490 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED50 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4B0 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED60 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4D0 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED70 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4F0 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED80 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B510 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002ED90 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B530 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDA0 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B550 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDB0 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B570 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDC0 /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B590 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDD0 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5B0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDE0 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5D0 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EDF0 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5F0 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE00 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B610 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE10 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B630 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE20 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B650 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE30 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B680 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE40 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6A0 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE50 /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6C0 /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE60 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B730 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE70 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B760 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE80 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B820 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EE90 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B880 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EEA0 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8C0 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EEB0 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B910 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EEC0 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B940 /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EED0 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B960 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EEE0 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9B0 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EEF0 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9D0 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EF00 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9F0 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EF10 /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA10 /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EF20 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA40 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EF30 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA60 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 46EB2E0002EF40 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B100 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EF50 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B110 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EF60 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B150 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EF70 /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B170 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EF80 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B190 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EF90 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1B0 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFA0 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1D0 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFB0 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1F0 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFC0 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B210 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFD0 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B220 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFE0 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B240 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002EFF0 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B260 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F000 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B280 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F010 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B290 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F020 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2B0 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F030 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2D0 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F040 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2F0 /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F050 /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B310 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F060 /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B330 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F070 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B350 /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F080 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B360 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F090 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B370 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0A0 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B390 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0B0 /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3B0 /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0C0 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3D0 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0D0 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3F0 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0E0 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B400 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F0F0 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B420 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F100 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B430 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F110 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B450 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F120 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B470 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F130 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B480 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F140 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4A0 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F150 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4C0 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F160 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4E0 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F170 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B500 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F180 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B520 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F190 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B540 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1A0 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B560 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1B0 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B580 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1C0 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5A0 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1D0 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5C0 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1E0 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5E0 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F1F0 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B600 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F200 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B620 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F210 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B640 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F220 /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B660 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F230 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B670 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F240 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B690 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F250 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6B0 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F260 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6D0 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F270 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6E0 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F280 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6F0 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F290 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B700 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2A0 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B710 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2B0 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B720 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2C0 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B740 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2D0 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B750 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2E0 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B770 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F2F0 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B780 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F300 /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B790 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F310 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7A0 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F320 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7B0 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F330 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7C0 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F340 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7D0 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F350 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7E0 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F360 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7F0 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F370 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B800 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F380 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B810 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F390 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B830 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3A0 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B840 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3B0 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B850 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3C0 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B860 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3D0 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B870 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3E0 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B890 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F3F0 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8A0 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F400 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8B0 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F410 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8D0 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F420 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8E0 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F430 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8F0 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F440 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B900 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F450 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B920 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F460 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B930 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F470 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B950 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F480 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B970 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F490 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B980 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4A0 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B990 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4B0 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9A0 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4C0 /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9C0 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4D0 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9E0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4E0 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA00 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F4F0 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA20 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F500 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA30 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F510 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA50 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F520 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA70 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F580 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002F570 /* Flipper-RSocket-dummy.m */; }; - 46EB2E0002F610 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAB0 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F620 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F630 /* FlipperPlatformWebSocket.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB10 /* FlipperPlatformWebSocket.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F640 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB50 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F650 /* FlipperWebSocket.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB70 /* FlipperWebSocket.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F660 /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB90 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F670 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F680 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBE0 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F690 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC00 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F6A0 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA90 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F6B0 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAA0 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F6C0 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAC0 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F6D0 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAD0 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F6E0 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAF0 /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F6F0 /* FlipperPlatformWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB00 /* FlipperPlatformWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F700 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB20 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F710 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB30 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F720 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB40 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F730 /* FlipperWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB60 /* FlipperWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F740 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB80 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F750 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBA0 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F760 /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBB0 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F770 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBD0 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F780 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBF0 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F790 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC10 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F7A0 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F7B0 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC40 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F7C0 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC70 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F7D0 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCB0 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F7E0 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC90 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F7F0 /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCA0 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F800 /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCE0 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F810 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCD0 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F820 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD20 /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F830 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD40 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F840 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD60 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F850 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD80 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F860 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDA0 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F870 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDD0 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F880 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDF0 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F890 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE20 /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F8A0 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE40 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F8B0 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE70 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F8C0 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F8D0 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEB0 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F8E0 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD00 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F8F0 /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD10 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F900 /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD30 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F910 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD50 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F920 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD70 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F930 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD90 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F940 /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDB0 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F950 /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDC0 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F960 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDE0 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F970 /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE00 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F980 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE10 /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F990 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE30 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F9A0 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE50 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F9B0 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE60 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F9C0 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE80 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F9D0 /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEA0 /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002F9E0 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEE0 /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002F9F0 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF00 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FA00 /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF20 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FA10 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF40 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FA20 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF60 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FA30 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BED0 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FA40 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEF0 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FA50 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF10 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FA60 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF30 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FA70 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF50 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FA80 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF90 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FA90 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFB0 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FAA0 /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF80 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FAB0 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFA0 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FAC0 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFD0 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FAD0 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C000 /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FAE0 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C030 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FAF0 /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C070 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FB00 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C090 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FB10 /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFF0 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB20 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C010 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB30 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C020 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB40 /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C040 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB50 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C050 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB60 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C060 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB70 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C080 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB80 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0A0 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FB90 /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0D0 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FBA0 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0C0 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FBB0 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C100 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FBC0 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FBD0 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0F0 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FBE0 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C110 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FBF0 /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C150 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FC00 /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C170 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FC10 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C190 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FC20 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1B0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FC30 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1D0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 46EB2E0002FC40 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C140 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FC50 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C160 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FC60 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C180 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FC70 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1A0 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FC80 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1C0 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FCE0 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FCD0 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FD10 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FD00 /* FlipperKit-dummy.m */; }; - 46EB2E0002FDA0 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1F0 /* GTMSessionFetcher.m */; }; - 46EB2E0002FDB0 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C200 /* GTMSessionFetcherLogging.m */; }; - 46EB2E0002FDC0 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C210 /* GTMSessionFetcherService.m */; }; - 46EB2E0002FDD0 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C220 /* GTMSessionUploadFetcher.m */; }; - 46EB2E0002FDE0 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C230 /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FDF0 /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C240 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FE00 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C250 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FE10 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C260 /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0002FE60 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FE50 /* GTMSessionFetcher-dummy.m */; }; - 46EB2E0002FF70 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C270 /* GDTCORAssert.m */; }; - 46EB2E0002FF80 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C280 /* GDTCORClock.m */; }; - 46EB2E0002FF90 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C290 /* GDTCORConsoleLogger.m */; }; - 46EB2E0002FFA0 /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2A0 /* GDTCORDirectorySizeTracker.m */; }; - 46EB2E0002FFB0 /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2B0 /* GDTCOREndpoints.m */; }; - 46EB2E0002FFC0 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2C0 /* GDTCOREvent.m */; }; - 46EB2E0002FFD0 /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2D0 /* GDTCORFlatFileStorage+Promises.m */; }; - 46EB2E0002FFE0 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2E0 /* GDTCORFlatFileStorage.m */; }; - 46EB2E0002FFF0 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2F0 /* GDTCORLifecycle.m */; }; - 46EB2E00030000 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C300 /* GDTCORPlatform.m */; }; - 46EB2E00030010 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C310 /* GDTCORReachability.m */; }; - 46EB2E00030020 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C320 /* GDTCORRegistrar.m */; }; - 46EB2E00030030 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C330 /* GDTCORStorageEventSelector.m */; }; - 46EB2E00030040 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C340 /* GDTCORTransformer.m */; }; - 46EB2E00030050 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C350 /* GDTCORTransport.m */; }; - 46EB2E00030060 /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C360 /* GDTCORUploadBatch.m */; }; - 46EB2E00030070 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C370 /* GDTCORUploadCoordinator.m */; }; - 46EB2E00030080 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C550 /* GDTCCTCompressionHelper.m */; }; - 46EB2E00030090 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C560 /* GDTCCTNanopbHelpers.m */; }; - 46EB2E000300A0 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C570 /* GDTCCTUploader.m */; }; - 46EB2E000300B0 /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C580 /* GDTCCTUploadOperation.m */; }; - 46EB2E000300C0 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C590 /* GDTCOREvent+GDTCCTSupport.m */; }; - 46EB2E000300D0 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5E0 /* cct.nanopb.c */; }; - 46EB2E000300E0 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C380 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000300F0 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C390 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030100 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3A0 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030110 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3B0 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030120 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3C0 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030130 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3D0 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030140 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3E0 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030150 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3F0 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030160 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C400 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030170 /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C410 /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030180 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C420 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030190 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C430 /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301A0 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C440 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301B0 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C450 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301C0 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C460 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301D0 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C470 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301E0 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C480 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000301F0 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C490 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030200 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4A0 /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030210 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4B0 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030220 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4C0 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030230 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4D0 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030240 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4E0 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030250 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4F0 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030260 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C500 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030270 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C510 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030280 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C520 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030290 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C530 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302A0 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C540 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302B0 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5A0 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302C0 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5B0 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302D0 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5C0 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302E0 /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5D0 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000302F0 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5F0 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030300 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C600 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030350 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00030340 /* GoogleDataTransport-dummy.m */; }; - 46EB2E000303E0 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C670 /* GULAppDelegateSwizzler.m */; }; - 46EB2E000303F0 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C680 /* GULSceneDelegateSwizzler.m */; }; - 46EB2E00030400 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C620 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030410 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C630 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030420 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C640 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030430 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C650 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030440 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C660 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030450 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C690 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030460 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6B0 /* GULHeartbeatDateStorage.m */; }; - 46EB2E00030470 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6C0 /* GULHeartbeatDateStorageUserDefaults.m */; }; - 46EB2E00030480 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6D0 /* GULSecureCoding.m */; }; - 46EB2E00030490 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C770 /* GULKeychainStorage.m */; }; - 46EB2E000304A0 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C780 /* GULKeychainUtils.m */; }; - 46EB2E000304B0 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C790 /* GULAppEnvironmentUtil.m */; }; - 46EB2E000304C0 /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7A0 /* GULURLSessionDataResponse.m */; }; - 46EB2E000304D0 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7B0 /* NSURLSession+GULPromises.m */; }; - 46EB2E000304E0 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6E0 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000304F0 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6F0 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030500 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C700 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030510 /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C710 /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030520 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C720 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030530 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C730 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030540 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C740 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030550 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C750 /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030560 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C760 /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030570 /* GULObjectSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7E0 /* GULObjectSwizzler.m */; }; - 46EB2E00030580 /* GULSwizzledObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7F0 /* GULSwizzledObject.m */; }; - 46EB2E00030590 /* GULObjectSwizzler+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7D0 /* GULObjectSwizzler+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000305A0 /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C800 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000305B0 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C810 /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000305C0 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C830 /* GULLogger.m */; }; - 46EB2E000305D0 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C840 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000305E0 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C850 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000305F0 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C870 /* GULSwizzler.m */; }; - 46EB2E00030600 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C880 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030610 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C890 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030620 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8B0 /* GULNSData+zlib.m */; }; - 46EB2E00030630 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8C0 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030640 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8E0 /* GULMutableDictionary.m */; }; - 46EB2E00030650 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8F0 /* GULNetwork.m */; }; - 46EB2E00030660 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C900 /* GULNetworkConstants.m */; }; - 46EB2E00030670 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C920 /* GULNetworkURLSession.m */; }; - 46EB2E00030680 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C910 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030690 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C930 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306A0 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C940 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306B0 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C950 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306C0 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C960 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306D0 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C970 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306E0 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C980 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000306F0 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9B0 /* GULReachabilityChecker.m */; }; - 46EB2E00030700 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9A0 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030710 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9C0 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030720 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9D0 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030730 /* GULProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA00 /* GULProxy.m */; }; - 46EB2E00030740 /* GULRuntimeClassDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA20 /* GULRuntimeClassDiff.m */; }; - 46EB2E00030750 /* GULRuntimeClassSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA40 /* GULRuntimeClassSnapshot.m */; }; - 46EB2E00030760 /* GULRuntimeDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA60 /* GULRuntimeDiff.m */; }; - 46EB2E00030770 /* GULRuntimeSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA80 /* GULRuntimeSnapshot.m */; }; - 46EB2E00030780 /* GULRuntimeStateHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAA0 /* GULRuntimeStateHelper.m */; }; - 46EB2E00030790 /* GULSwizzler+Unswizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAB0 /* GULSwizzler+Unswizzle.m */; }; - 46EB2E000307A0 /* GULSwizzlingCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAD0 /* GULSwizzlingCache.m */; }; - 46EB2E000307B0 /* GULProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9F0 /* GULProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000307C0 /* GULRuntimeClassDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA10 /* GULRuntimeClassDiff.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000307D0 /* GULRuntimeClassSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA30 /* GULRuntimeClassSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000307E0 /* GULRuntimeDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA50 /* GULRuntimeDiff.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000307F0 /* GULRuntimeSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA70 /* GULRuntimeSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030800 /* GULRuntimeStateHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA90 /* GULRuntimeStateHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030810 /* GULSwizzlingCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAC0 /* GULSwizzlingCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030820 /* GULSwizzlingCache_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAE0 /* GULSwizzlingCache_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030830 /* GULSwizzler+Unswizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAF0 /* GULSwizzler+Unswizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030840 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB10 /* GULUserDefaults.m */; }; - 46EB2E00030850 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB20 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000308B0 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000308A0 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000308D0 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000308C0 /* GoogleUtilities-dummy.m */; }; - 46EB2E00030960 /* JWTAlgorithmErrorDescription+Subclass.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.m */; }; - 46EB2E00030970 /* JWTAlgorithmErrorDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.m */; }; - 46EB2E00030980 /* JWTAlgorithmFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB90 /* JWTAlgorithmFactory.m */; }; - 46EB2E00030990 /* JWTAlgorithmNone.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBB0 /* JWTAlgorithmNone.m */; }; - 46EB2E000309A0 /* JWTAlgorithmAsymmetricBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.m */; }; - 46EB2E000309B0 /* JWTAlgorithmESBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBF0 /* JWTAlgorithmESBase.m */; }; - 46EB2E000309C0 /* JWTAlgorithmDataHolder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.m */; }; - 46EB2E000309D0 /* JWTAlgorithmDataHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC30 /* JWTAlgorithmDataHolder.m */; }; - 46EB2E000309E0 /* JWTAlgorithmDataHolderChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.m */; }; - 46EB2E000309F0 /* JWTAlgorithmHSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC70 /* JWTAlgorithmHSBase.m */; }; - 46EB2E00030A00 /* JWTAlgorithmRSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC90 /* JWTAlgorithmRSBase.m */; }; - 46EB2E00030A10 /* JWTCryptoKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCC0 /* JWTCryptoKey.m */; }; - 46EB2E00030A20 /* JWTCryptoKeyExtractor+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.m */; }; - 46EB2E00030A30 /* JWTCryptoKeyExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD00 /* JWTCryptoKeyExtractor.m */; }; - 46EB2E00030A40 /* JWTCryptoSecurity+ErrorHandling.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.m */; }; - 46EB2E00030A50 /* JWTCryptoSecurity+ExternalRepresentation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.m */; }; - 46EB2E00030A60 /* JWTCryptoSecurity+Extraction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.m */; }; - 46EB2E00030A70 /* JWTCryptoSecurity.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD80 /* JWTCryptoSecurity.m */; }; - 46EB2E00030A80 /* JWTClaim.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDA0 /* JWTClaim.m */; }; - 46EB2E00030A90 /* JWTClaimBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDC0 /* JWTClaimBase.m */; }; - 46EB2E00030AA0 /* JWTClaimSerializerBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDE0 /* JWTClaimSerializerBase.m */; }; - 46EB2E00030AB0 /* JWTClaimSerializerVariations.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE00 /* JWTClaimSerializerVariations.m */; }; - 46EB2E00030AC0 /* JWTClaimsProviderBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE20 /* JWTClaimsProviderBase.m */; }; - 46EB2E00030AD0 /* JWTClaimsSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE40 /* JWTClaimsSet.m */; }; - 46EB2E00030AE0 /* JWTClaimsSetBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE60 /* JWTClaimsSetBase.m */; }; - 46EB2E00030AF0 /* JWTClaimsSetCoordinatorBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE80 /* JWTClaimsSetCoordinatorBase.m */; }; - 46EB2E00030B00 /* JWTClaimsSetDSLBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEA0 /* JWTClaimsSetDSLBase.m */; }; - 46EB2E00030B10 /* JWTClaimsSetSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEC0 /* JWTClaimsSetSerializer.m */; }; - 46EB2E00030B20 /* JWTClaimsSetSerializerBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEE0 /* JWTClaimsSetSerializerBase.m */; }; - 46EB2E00030B30 /* JWTClaimsSetVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF10 /* JWTClaimsSetVerifier.m */; }; - 46EB2E00030B40 /* JWTClaimsSetVerifierBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF30 /* JWTClaimsSetVerifierBase.m */; }; - 46EB2E00030B50 /* JWTClaimVariations.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF50 /* JWTClaimVariations.m */; }; - 46EB2E00030B60 /* JWTClaimVerifierBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF70 /* JWTClaimVerifierBase.m */; }; - 46EB2E00030B70 /* JWTClaimVerifierVariations.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF90 /* JWTClaimVerifierVariations.m */; }; - 46EB2E00030B80 /* JWTBuilder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFB0 /* JWTBuilder+FluentStyle.m */; }; - 46EB2E00030B90 /* JWTCoding+ResultTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFD0 /* JWTCoding+ResultTypes.m */; }; - 46EB2E00030BA0 /* JWTCoding+VersionOne.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFF0 /* JWTCoding+VersionOne.m */; }; - 46EB2E00030BB0 /* JWTCoding+VersionThree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D010 /* JWTCoding+VersionThree.m */; }; - 46EB2E00030BC0 /* JWTCoding+VersionTwo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D030 /* JWTCoding+VersionTwo.m */; }; - 46EB2E00030BD0 /* JWTCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D050 /* JWTCoding.m */; }; - 46EB2E00030BE0 /* JWTCodingBuilder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D070 /* JWTCodingBuilder+FluentStyle.m */; }; - 46EB2E00030BF0 /* JWTBase64Coder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0A0 /* JWTBase64Coder.m */; }; - 46EB2E00030C00 /* JWTErrorDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0D0 /* JWTErrorDescription.m */; }; - 46EB2E00030C10 /* JWTAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB30 /* JWTAlgorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C20 /* JWTAlgorithmErrorDescription+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB40 /* JWTAlgorithmErrorDescription+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C30 /* JWTAlgorithmErrorDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB60 /* JWTAlgorithmErrorDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C40 /* JWTAlgorithmFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB80 /* JWTAlgorithmFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C50 /* JWTAlgorithmNone.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBA0 /* JWTAlgorithmNone.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C60 /* JWTAlgorithmAsymmetricBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBC0 /* JWTAlgorithmAsymmetricBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C70 /* JWTAlgorithmESBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBE0 /* JWTAlgorithmESBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C80 /* JWTAlgorithmDataHolder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC00 /* JWTAlgorithmDataHolder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030C90 /* JWTAlgorithmDataHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC20 /* JWTAlgorithmDataHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CA0 /* JWTAlgorithmDataHolderChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC40 /* JWTAlgorithmDataHolderChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CB0 /* JWTAlgorithmHSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC60 /* JWTAlgorithmHSBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CC0 /* JWTAlgorithmRSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC80 /* JWTAlgorithmRSBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CD0 /* JWTRSAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCA0 /* JWTRSAlgorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CE0 /* JWTCryptoKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCB0 /* JWTCryptoKey.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030CF0 /* JWTCryptoKeyExtractor+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCD0 /* JWTCryptoKeyExtractor+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D00 /* JWTCryptoKeyExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCF0 /* JWTCryptoKeyExtractor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D10 /* JWTCryptoSecurity+ErrorHandling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD10 /* JWTCryptoSecurity+ErrorHandling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D20 /* JWTCryptoSecurity+ExternalRepresentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD30 /* JWTCryptoSecurity+ExternalRepresentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D30 /* JWTCryptoSecurity+Extraction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD50 /* JWTCryptoSecurity+Extraction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D40 /* JWTCryptoSecurity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD70 /* JWTCryptoSecurity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D50 /* JWTClaim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD90 /* JWTClaim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D60 /* JWTClaimBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDB0 /* JWTClaimBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D70 /* JWTClaimSerializerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDD0 /* JWTClaimSerializerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D80 /* JWTClaimSerializerVariations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDF0 /* JWTClaimSerializerVariations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030D90 /* JWTClaimsProviderBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE10 /* JWTClaimsProviderBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DA0 /* JWTClaimsSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE30 /* JWTClaimsSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DB0 /* JWTClaimsSetBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE50 /* JWTClaimsSetBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DC0 /* JWTClaimsSetCoordinatorBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE70 /* JWTClaimsSetCoordinatorBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DD0 /* JWTClaimsSetDSLBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE90 /* JWTClaimsSetDSLBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DE0 /* JWTClaimsSetSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEB0 /* JWTClaimsSetSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030DF0 /* JWTClaimsSetSerializerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CED0 /* JWTClaimsSetSerializerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E00 /* JWTClaimsSetsProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEF0 /* JWTClaimsSetsProtocols.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E10 /* JWTClaimsSetVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF00 /* JWTClaimsSetVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E20 /* JWTClaimsSetVerifierBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF20 /* JWTClaimsSetVerifierBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E30 /* JWTClaimVariations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF40 /* JWTClaimVariations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E40 /* JWTClaimVerifierBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF60 /* JWTClaimVerifierBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E50 /* JWTClaimVerifierVariations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF80 /* JWTClaimVerifierVariations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E60 /* JWTBuilder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFA0 /* JWTBuilder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E70 /* JWTCoding+ResultTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFC0 /* JWTCoding+ResultTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E80 /* JWTCoding+VersionOne.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFE0 /* JWTCoding+VersionOne.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030E90 /* JWTCoding+VersionThree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D000 /* JWTCoding+VersionThree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030EA0 /* JWTCoding+VersionTwo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D020 /* JWTCoding+VersionTwo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030EB0 /* JWTCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D040 /* JWTCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030EC0 /* JWTCodingBuilder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D060 /* JWTCodingBuilder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030ED0 /* JWT.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D080 /* JWT.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030EE0 /* JWTBase64Coder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D090 /* JWTBase64Coder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030EF0 /* JWTDeprecations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0B0 /* JWTDeprecations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030F00 /* JWTErrorDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0C0 /* JWTErrorDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00030F60 /* JWT-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00030F50 /* JWT-dummy.m */; }; - 46EB2E00030FF0 /* fs-poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0F0 /* fs-poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031000 /* idna.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D100 /* idna.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031010 /* inet.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D110 /* inet.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031020 /* strscpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D120 /* strscpy.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031030 /* threadpool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D130 /* threadpool.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031040 /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D140 /* timer.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031050 /* uv-data-getter-setters.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D150 /* uv-data-getter-setters.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031060 /* uv-common.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D160 /* uv-common.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031070 /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D170 /* version.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031080 /* async.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D180 /* async.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031090 /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D190 /* core.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310A0 /* dl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1A0 /* dl.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310B0 /* fs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1B0 /* fs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310C0 /* getaddrinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1C0 /* getaddrinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310D0 /* getnameinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1D0 /* getnameinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310E0 /* loop.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1E0 /* loop.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000310F0 /* loop-watcher.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1F0 /* loop-watcher.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031100 /* pipe.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D200 /* pipe.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031110 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D210 /* poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031120 /* process.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D220 /* process.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031130 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D230 /* signal.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031140 /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D240 /* stream.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031150 /* tcp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D250 /* tcp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031160 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D260 /* thread.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031170 /* tty.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D270 /* tty.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031180 /* udp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D280 /* udp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E00031190 /* bsd-ifaddrs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D290 /* bsd-ifaddrs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311A0 /* darwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2A0 /* darwin.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311B0 /* fsevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2B0 /* fsevents.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311C0 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2C0 /* kqueue.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311D0 /* darwin-proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2D0 /* darwin-proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311E0 /* proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2E0 /* proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 46EB2E000311F0 /* heap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2F0 /* heap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031200 /* idna.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D300 /* idna.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031210 /* queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D310 /* queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031220 /* strscpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D320 /* strscpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031230 /* uv-common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D330 /* uv-common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031240 /* atomic-ops.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D340 /* atomic-ops.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031250 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D350 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031260 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D360 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031270 /* uv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D380 /* uv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031280 /* errno.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D390 /* errno.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031290 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3A0 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000312A0 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3B0 /* version.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000312B0 /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3C0 /* tree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000312C0 /* unix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3D0 /* unix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000312D0 /* darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3E0 /* darwin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031330 /* Libuv-gRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00031320 /* Libuv-gRPC-dummy.m */; }; - 46EB2E00031440 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3F0 /* FBLPromise+All.m */; }; - 46EB2E00031450 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D400 /* FBLPromise+Always.m */; }; - 46EB2E00031460 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D410 /* FBLPromise+Any.m */; }; - 46EB2E00031470 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D420 /* FBLPromise+Async.m */; }; - 46EB2E00031480 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D430 /* FBLPromise+Await.m */; }; - 46EB2E00031490 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D440 /* FBLPromise+Catch.m */; }; - 46EB2E000314A0 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D450 /* FBLPromise+Delay.m */; }; - 46EB2E000314B0 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D460 /* FBLPromise+Do.m */; }; - 46EB2E000314C0 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D470 /* FBLPromise+Race.m */; }; - 46EB2E000314D0 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D480 /* FBLPromise+Recover.m */; }; - 46EB2E000314E0 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D490 /* FBLPromise+Reduce.m */; }; - 46EB2E000314F0 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4A0 /* FBLPromise+Retry.m */; }; - 46EB2E00031500 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4B0 /* FBLPromise+Testing.m */; }; - 46EB2E00031510 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4C0 /* FBLPromise+Then.m */; }; - 46EB2E00031520 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4D0 /* FBLPromise+Timeout.m */; }; - 46EB2E00031530 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4E0 /* FBLPromise+Validate.m */; }; - 46EB2E00031540 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4F0 /* FBLPromise+Wrap.m */; }; - 46EB2E00031550 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D500 /* FBLPromise.m */; }; - 46EB2E00031560 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D510 /* FBLPromiseError.m */; }; - 46EB2E00031570 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D520 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031580 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D530 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031590 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D540 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315A0 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D550 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315B0 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D560 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315C0 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D570 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315D0 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D580 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315E0 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D590 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000315F0 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5A0 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031600 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5B0 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031610 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5C0 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031620 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5D0 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031630 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5E0 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031640 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5F0 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031650 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D600 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031660 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D610 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031670 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D620 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031680 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D630 /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031690 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D640 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000316A0 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D650 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000316B0 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D660 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031710 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00031700 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031730 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00031720 /* PromisesObjC-dummy.m */; }; - 46EB2E000317C0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D670 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000317D0 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D680 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000317E0 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D690 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000317F0 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6A0 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031800 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6B0 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031810 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6C0 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031820 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6D0 /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031830 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6E0 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031840 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6F0 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031850 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D700 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031860 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D710 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031870 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D720 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031880 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D730 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031890 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D740 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318A0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D750 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318B0 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D760 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318C0 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D770 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318D0 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D780 /* Exception.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318E0 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D790 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000318F0 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7A0 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031900 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7B0 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031910 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7D0 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00031920 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7C0 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031930 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7E0 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031940 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7F0 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031950 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D800 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031960 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D810 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031970 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D820 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031980 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D830 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031990 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D840 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319A0 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D850 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319B0 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D860 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319C0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D870 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319D0 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D880 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319E0 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D890 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000319F0 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8A0 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A00 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8B0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A10 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8C0 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A20 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8D0 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A30 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8E0 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A40 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8F0 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A50 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D900 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A60 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D910 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A70 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D920 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A80 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D930 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031A90 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D940 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AA0 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D950 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AB0 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D960 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AC0 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D970 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AD0 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D980 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AE0 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D990 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031AF0 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9A0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B00 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9B0 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B10 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9C0 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B20 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9D0 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B30 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9E0 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B40 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9F0 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B50 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA00 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B60 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA10 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B70 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA20 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B80 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA30 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031B90 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA40 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BA0 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA50 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BB0 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA60 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BC0 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA70 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BD0 /* FollyMemcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA80 /* FollyMemcpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BE0 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA90 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031BF0 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAA0 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C00 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAB0 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C10 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAC0 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C20 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAD0 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C30 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAE0 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C40 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAF0 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C50 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB00 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C60 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB10 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C70 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB20 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C80 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB30 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031C90 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB40 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CA0 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB50 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CB0 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB60 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CC0 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB70 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CD0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB80 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CE0 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB90 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031CF0 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBA0 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D00 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBB0 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D10 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBC0 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D20 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBD0 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D30 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBE0 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D40 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBF0 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D50 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC00 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D60 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC10 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D70 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC20 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D80 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC30 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031D90 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC40 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DA0 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC50 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DB0 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC60 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DC0 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC70 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DD0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC80 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DE0 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC90 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031DF0 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCA0 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E00 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCB0 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E10 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCC0 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E20 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCD0 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E30 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCE0 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E40 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCF0 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E50 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD00 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E60 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD10 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E70 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD20 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E80 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD30 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031E90 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD40 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031EA0 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD50 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031EB0 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD60 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031EC0 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD70 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031ED0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD80 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031EE0 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD90 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031EF0 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDA0 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F00 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDB0 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F10 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDC0 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F20 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDD0 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F30 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDE0 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F40 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDF0 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F50 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE00 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F60 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE10 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F70 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE20 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F80 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE30 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031F90 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE40 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FA0 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE50 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FB0 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE60 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FC0 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE70 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FD0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE80 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FE0 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE90 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00031FF0 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEA0 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032000 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEB0 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032010 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEC0 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032020 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DED0 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032030 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEE0 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032040 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEF0 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032050 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF00 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032060 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF10 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032070 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF20 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032080 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF30 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032090 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF40 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320A0 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF50 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320B0 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF60 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320C0 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF70 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320D0 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF80 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320E0 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF90 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000320F0 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFA0 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032100 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFB0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032110 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFC0 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032120 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFD0 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032130 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFE0 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032140 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFF0 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032150 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E000 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032160 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E010 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032170 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E020 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032180 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E030 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032190 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E040 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321A0 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E050 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321B0 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E060 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321C0 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E070 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321D0 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E080 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321E0 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E090 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000321F0 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0A0 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032200 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0B0 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032210 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0C0 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032220 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0D0 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032230 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0E0 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032240 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0F0 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032250 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E100 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032260 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E110 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032270 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E120 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032280 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E130 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032290 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E140 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322A0 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E150 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322B0 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E160 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322C0 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E170 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322D0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E180 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322E0 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E190 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000322F0 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1A0 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032300 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1B0 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032310 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1C0 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032320 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1D0 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032330 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1E0 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032340 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1F0 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032350 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E200 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032360 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E210 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032370 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E220 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032380 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E230 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032390 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E240 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323A0 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E250 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323B0 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E260 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323C0 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E270 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323D0 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E280 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323E0 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E290 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000323F0 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2A0 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032400 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2B0 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032410 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2C0 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032420 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2D0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032430 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2E0 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032440 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2F0 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032450 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E300 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032460 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E310 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032470 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E320 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032480 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E330 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032490 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E340 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324A0 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E350 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324B0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E360 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324C0 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E370 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324D0 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E380 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324E0 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E390 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000324F0 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3A0 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032500 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3B0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032510 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3C0 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032520 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3D0 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032530 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3E0 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032540 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3F0 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032550 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E400 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032560 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E410 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032570 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E420 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032580 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E430 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032590 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E440 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325A0 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E450 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325B0 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E460 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325C0 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E470 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325D0 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E480 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325E0 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E490 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000325F0 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4A0 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032600 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4B0 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032610 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4C0 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032620 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4D0 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032630 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4E0 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032640 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4F0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032650 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E500 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032660 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E510 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032670 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E520 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032680 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E530 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032690 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E540 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326A0 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E550 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326B0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E560 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326C0 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E570 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326D0 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E580 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326E0 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E590 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000326F0 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5A0 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032700 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5B0 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032710 /* TcpInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5C0 /* TcpInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032720 /* TcpInfoTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5D0 /* TcpInfoTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032730 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5E0 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032740 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5F0 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032750 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E600 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032760 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E610 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032770 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E620 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032780 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E630 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032790 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E640 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327A0 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E650 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327B0 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E660 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327C0 /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E670 /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327D0 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E680 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327E0 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E690 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000327F0 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6A0 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032800 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6B0 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032810 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6C0 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032820 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6D0 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032830 /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6E0 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032840 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6F0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032850 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E700 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032860 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E710 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032870 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E720 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032880 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E730 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032890 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E740 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328A0 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E750 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328B0 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E760 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328C0 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E770 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328D0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E780 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328E0 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E790 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000328F0 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7A0 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032900 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7B0 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032910 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7C0 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032920 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7D0 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032930 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7E0 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032940 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7F0 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032950 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E800 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032960 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E810 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032970 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E820 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032980 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E830 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032990 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E840 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000329A0 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E850 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000329B0 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E870 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000329C0 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8B0 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000329D0 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8E0 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000329E0 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E920 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E000329F0 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E960 /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A00 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E980 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A10 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9B0 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A20 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9F0 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A30 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA10 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A40 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA40 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A50 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA70 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A60 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAB0 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A70 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAD0 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A80 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAF0 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032A90 /* IOThreadPoolDeadlockDetectorObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB30 /* IOThreadPoolDeadlockDetectorObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AA0 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB50 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AB0 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB70 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AC0 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB90 /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AD0 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBB0 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AE0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBF0 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032AF0 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC20 /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B00 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC40 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B10 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC60 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B20 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC80 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B30 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECA0 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B40 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED40 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B50 /* DeadlockDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED80 /* DeadlockDetector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B60 /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDC0 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B70 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDF0 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B80 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE10 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032B90 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE30 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BA0 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE60 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BB0 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF00 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BC0 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF40 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BD0 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFB0 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BE0 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F030 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032BF0 /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F070 /* Rcu.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C00 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0A0 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C10 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F100 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C20 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F130 /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C30 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F190 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C40 /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1E0 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C50 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F230 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C60 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F290 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C70 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2D0 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C80 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2F0 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032C90 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F310 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CA0 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F330 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CB0 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F370 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CC0 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3A0 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CD0 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3C0 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CE0 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3E0 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032CF0 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F410 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D00 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F430 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D10 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F450 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D20 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F480 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D30 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4B0 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D40 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4C0 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D50 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4D0 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D60 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4E0 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D70 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4F0 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D80 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F500 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032D90 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F510 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DA0 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F520 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DB0 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F530 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DC0 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F540 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DD0 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F550 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DE0 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F560 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032DF0 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F570 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E00 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F580 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E10 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F600 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E20 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F630 /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E30 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6D0 /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E40 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F700 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E50 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F790 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E60 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7E0 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E70 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F800 /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E80 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F820 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032E90 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010230 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; - 46EB2E00032EA0 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E880 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032EB0 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E890 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032EC0 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8A0 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032ED0 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8C0 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032EE0 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8D0 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032EF0 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8F0 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F00 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E900 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F10 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E910 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F20 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E930 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F30 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E940 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F40 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E950 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F50 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E970 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F60 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E990 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F70 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9A0 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F80 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9C0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032F90 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9D0 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FA0 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9E0 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FB0 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA00 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FC0 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA20 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FD0 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA30 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FE0 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA50 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00032FF0 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA60 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033000 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA80 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033010 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA90 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033020 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAA0 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033030 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAC0 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033040 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAE0 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033050 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB00 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033060 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB10 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033070 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB20 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033080 /* IOThreadPoolDeadlockDetectorObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB40 /* IOThreadPoolDeadlockDetectorObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033090 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB60 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330A0 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB80 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330B0 /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBA0 /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330C0 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBC0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330D0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBD0 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330E0 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBE0 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000330F0 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC00 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033100 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC10 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033110 /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC30 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033120 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC50 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033130 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC70 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033140 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC90 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033150 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECB0 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033160 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECC0 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033170 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECD0 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033180 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECE0 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033190 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECF0 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331A0 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED00 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331B0 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED10 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331C0 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED20 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331D0 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED30 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331E0 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED50 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000331F0 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED60 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033200 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED70 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033210 /* DeadlockDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED90 /* DeadlockDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033220 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDA0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033230 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDB0 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033240 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDD0 /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033250 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDE0 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033260 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE00 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033270 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE20 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033280 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE40 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033290 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE50 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332A0 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE70 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332B0 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE80 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE90 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332D0 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEA0 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332E0 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEB0 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000332F0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEC0 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033300 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EED0 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033310 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEE0 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033320 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEF0 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033330 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF10 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033340 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF20 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033350 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF30 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033360 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF50 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033370 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF60 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033380 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF70 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033390 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF80 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333A0 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF90 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333B0 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFA0 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333C0 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFC0 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333D0 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFD0 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333E0 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFE0 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000333F0 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFF0 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033400 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F000 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033410 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F010 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033420 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F020 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033430 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F040 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033440 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F050 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033450 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F060 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033460 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F080 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033470 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F090 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033480 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0B0 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033490 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0C0 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334A0 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0D0 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334B0 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0E0 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334C0 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0F0 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334D0 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F110 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334E0 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F120 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000334F0 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F140 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033500 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F150 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033510 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F160 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033520 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F170 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033530 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F180 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033540 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1A0 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033550 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1B0 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033560 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1C0 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033570 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1D0 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033580 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1F0 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033590 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F200 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335A0 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F210 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335B0 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F220 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335C0 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F240 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335D0 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F250 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335E0 /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F260 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000335F0 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F270 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033600 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F280 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033610 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2A0 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033620 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2B0 /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033630 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2C0 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033640 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2E0 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033650 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F300 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033660 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F320 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033670 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F340 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033680 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F350 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033690 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F360 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336A0 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F380 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336B0 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F390 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336C0 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3B0 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336D0 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3D0 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336E0 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3F0 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000336F0 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F400 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033700 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F420 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033710 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F440 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033720 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F460 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033730 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F470 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033740 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F490 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033750 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4A0 /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033760 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F590 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033770 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5A0 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033780 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5B0 /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033790 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5C0 /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337A0 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5D0 /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337B0 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5E0 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337C0 /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5F0 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337D0 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F610 /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337E0 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F620 /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000337F0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F640 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033800 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F650 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033810 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F660 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033820 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F670 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033830 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F680 /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033840 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F690 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033850 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6A0 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033860 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6B0 /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033870 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6C0 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033880 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6E0 /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033890 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6F0 /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338A0 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F710 /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338B0 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F720 /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338C0 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F730 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338D0 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F740 /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338E0 /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F750 /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000338F0 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F760 /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033900 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F770 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033910 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F780 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033920 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7A0 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033930 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7B0 /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033940 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7C0 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033950 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7D0 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033960 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7F0 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033970 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F810 /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033980 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F830 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033990 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F840 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339A0 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F850 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339B0 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F860 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339C0 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F870 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339D0 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F880 /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339E0 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F890 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000339F0 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8A0 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A00 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8B0 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A10 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8C0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A20 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8D0 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A30 /* Bser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8E0 /* Bser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A40 /* AtomicQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8F0 /* AtomicQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A50 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F900 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A60 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F910 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A70 /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F920 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A80 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F930 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033A90 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F940 /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AA0 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F950 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AB0 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F960 /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AC0 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F970 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AD0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F980 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AE0 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F990 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033AF0 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9A0 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B00 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9B0 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B10 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9C0 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B20 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9D0 /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B30 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9E0 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B40 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9F0 /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B50 /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA00 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B60 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA10 /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B70 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA20 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B80 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA30 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033B90 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA40 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BA0 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA50 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BB0 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA60 /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BC0 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA70 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BD0 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA80 /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BE0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA90 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033BF0 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAA0 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C00 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAB0 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C10 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAC0 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C20 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAD0 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C30 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAE0 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C40 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAF0 /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C50 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB00 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C60 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB10 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C70 /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB20 /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C80 /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB30 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033C90 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB40 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CA0 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB50 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CB0 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB60 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CC0 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB70 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CD0 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB80 /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CE0 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB90 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033CF0 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBA0 /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D00 /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBB0 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D10 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBC0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D20 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBD0 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D30 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBE0 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D40 /* SmallUnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBF0 /* SmallUnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D50 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC00 /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D60 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC10 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D70 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC20 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D80 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC30 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033D90 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC40 /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DA0 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC50 /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DB0 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC60 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DC0 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC70 /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DD0 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC80 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DE0 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC90 /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033DF0 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCA0 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E00 /* Blake2xb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCB0 /* Blake2xb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E10 /* LtHashInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCC0 /* LtHashInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E20 /* LtHash-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCD0 /* LtHash-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E30 /* LtHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCE0 /* LtHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E40 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCF0 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E50 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD00 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E60 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD10 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E70 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD20 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E80 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD30 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033E90 /* ExceptionAbi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD40 /* ExceptionAbi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033EA0 /* ExceptionCounterLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD50 /* ExceptionCounterLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033EB0 /* ExceptionTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD60 /* ExceptionTracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033EC0 /* ExceptionTracerLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD70 /* ExceptionTracerLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033ED0 /* SmartExceptionTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD80 /* SmartExceptionTracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033EE0 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD90 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033EF0 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDA0 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F00 /* FlatCombining.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDB0 /* FlatCombining.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F10 /* FlatCombiningExamples.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDC0 /* FlatCombiningExamples.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F20 /* FlatCombiningTestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDD0 /* FlatCombiningTestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F30 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDE0 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F40 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDF0 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F50 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE00 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F60 /* AsyncBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE10 /* AsyncBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F70 /* AsyncIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE20 /* AsyncIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F80 /* FsUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE30 /* FsUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033F90 /* HugePages.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE40 /* HugePages.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FA0 /* IoUring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE50 /* IoUring.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FB0 /* IoUringBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE60 /* IoUringBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FC0 /* SimpleAsyncIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE70 /* SimpleAsyncIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FD0 /* AsyncBaseTestLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE80 /* AsyncBaseTestLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FE0 /* IoTestTempFileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE90 /* IoTestTempFileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00033FF0 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEA0 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034000 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEB0 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034010 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEC0 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034020 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FED0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034030 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEE0 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034040 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEF0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034050 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF00 /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034060 /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF10 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034070 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF20 /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034080 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF30 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034090 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF40 /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340A0 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF50 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340B0 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF60 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340C0 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF70 /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340D0 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF80 /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340E0 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF90 /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000340F0 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFA0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034100 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFB0 /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034110 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFC0 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034120 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFD0 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034130 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFE0 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034140 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFF0 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034150 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010000 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034160 /* SettingsImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010010 /* SettingsImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034170 /* Settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010020 /* Settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034180 /* SettingsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010030 /* SettingsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034190 /* a.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010040 /* a.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341A0 /* b.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010050 /* b.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341B0 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010060 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341C0 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010070 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341D0 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010080 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341E0 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010090 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000341F0 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100A0 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034200 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100B0 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034210 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100C0 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034220 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100D0 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034230 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100E0 /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034240 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100F0 /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034250 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010100 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034260 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010110 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034270 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010120 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034280 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010130 /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034290 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010140 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342A0 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010150 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342B0 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010160 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342C0 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010170 /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342D0 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010180 /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342E0 /* SignalHandlerTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010190 /* SignalHandlerTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000342F0 /* SymbolizerTestUtils-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101A0 /* SymbolizerTestUtils-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034300 /* SymbolizerTestUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101B0 /* SymbolizerTestUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034310 /* CodingTestUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101C0 /* CodingTestUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034320 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101D0 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034330 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101E0 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034340 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101F0 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034350 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010200 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034360 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010210 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034370 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010220 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034380 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010240 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000343E0 /* RCT-Folly-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000343D0 /* RCT-Folly-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034410 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034400 /* RCT-Folly-dummy.m */; }; - 46EB2E00034510 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010270 /* RCTConvertHelpers.mm */; }; - 46EB2E00034520 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010290 /* RCTTypedModuleConstants.mm */; }; - 46EB2E00034530 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010260 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034540 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010280 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000345A0 /* RCTTypeSafety-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00034590 /* RCTTypeSafety-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000345D0 /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000345C0 /* RCTTypeSafety-dummy.m */; }; - 46EB2E00034660 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000102B0 /* RNCAsyncStorage.m */; }; - 46EB2E00034670 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102A0 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034680 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102C0 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000346E0 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000346D0 /* RNCAsyncStorage-dummy.m */; }; - 46EB2E00034770 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000102E0 /* RNCMaskedView.m */; }; - 46EB2E00034780 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010300 /* RNCMaskedViewManager.m */; }; - 46EB2E00034790 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102D0 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000347A0 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102F0 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034800 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000347F0 /* RNCMaskedView-dummy.m */; }; - 46EB2E00034890 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010320 /* RNCPicker.m */; }; - 46EB2E000348A0 /* RNCPickerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010340 /* RNCPickerLabel.m */; }; - 46EB2E000348B0 /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010360 /* RNCPickerManager.m */; }; - 46EB2E000348C0 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010310 /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000348D0 /* RNCPickerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010330 /* RNCPickerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000348E0 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010350 /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034940 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034930 /* RNCPicker-dummy.m */; }; - 46EB2E000349D0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010380 /* DeviceUID.m */; }; - 46EB2E000349E0 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103A0 /* EnvironmentUtil.m */; }; - 46EB2E000349F0 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103C0 /* RNDeviceInfo.m */; }; - 46EB2E00034A00 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010370 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034A10 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010390 /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034A20 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103B0 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034A80 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034A70 /* RNDeviceInfo-dummy.m */; }; - 46EB2E00034B10 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103E0 /* RNFBAnalyticsModule.m */; }; - 46EB2E00034B20 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103D0 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034B80 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034B70 /* RNFBAnalytics-dummy.m */; }; - 46EB2E00034C10 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010400 /* RCTConvert+FIRApp.m */; }; - 46EB2E00034C20 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010420 /* RCTConvert+FIROptions.m */; }; - 46EB2E00034C30 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010440 /* RNFBAppModule.m */; }; - 46EB2E00034C40 /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010460 /* RNFBJSON.m */; }; - 46EB2E00034C50 /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010480 /* RNFBMeta.m */; }; - 46EB2E00034C60 /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104A0 /* RNFBPreferences.m */; }; - 46EB2E00034C70 /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104C0 /* RNFBRCTEventEmitter.m */; }; - 46EB2E00034C80 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104E0 /* RNFBSharedUtils.m */; }; - 46EB2E00034C90 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010500 /* RNFBUtilsModule.m */; }; - 46EB2E00034CA0 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010520 /* RNFBVersion.m */; }; - 46EB2E00034CB0 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103F0 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034CC0 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010410 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034CD0 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010430 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034CE0 /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010450 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034CF0 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010470 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034D00 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010490 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034D10 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104B0 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034D20 /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104D0 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034D30 /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104F0 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034D40 /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010510 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034DA0 /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034D90 /* RNFBApp-dummy.m */; }; - 46EB2E00034E30 /* RNFBAuthModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010540 /* RNFBAuthModule.m */; }; - 46EB2E00034E40 /* RNFBAuthModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010530 /* RNFBAuthModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034EA0 /* RNFBAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034E90 /* RNFBAuth-dummy.m */; }; - 46EB2E00034F30 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010560 /* RNFBCrashlyticsInitProvider.m */; }; - 46EB2E00034F40 /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010580 /* RNFBCrashlyticsModule.m */; }; - 46EB2E00034F50 /* RNFBCrashlyticsNativeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105A0 /* RNFBCrashlyticsNativeHelper.m */; }; - 46EB2E00034F60 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010550 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034F70 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010570 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034F80 /* RNFBCrashlyticsNativeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010590 /* RNFBCrashlyticsNativeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00034FE0 /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034FD0 /* RNFBCrashlytics-dummy.m */; }; - 46EB2E00035070 /* RNFBDatabaseCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105C0 /* RNFBDatabaseCommon.m */; }; - 46EB2E00035080 /* RNFBDatabaseModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105E0 /* RNFBDatabaseModule.m */; }; - 46EB2E00035090 /* RNFBDatabaseOnDisconnectModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010600 /* RNFBDatabaseOnDisconnectModule.m */; }; - 46EB2E000350A0 /* RNFBDatabaseQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010620 /* RNFBDatabaseQuery.m */; }; - 46EB2E000350B0 /* RNFBDatabaseQueryModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010640 /* RNFBDatabaseQueryModule.m */; }; - 46EB2E000350C0 /* RNFBDatabaseReferenceModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010660 /* RNFBDatabaseReferenceModule.m */; }; - 46EB2E000350D0 /* RNFBDatabaseTransactionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010680 /* RNFBDatabaseTransactionModule.m */; }; - 46EB2E000350E0 /* RNFBDatabaseCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105B0 /* RNFBDatabaseCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000350F0 /* RNFBDatabaseModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105D0 /* RNFBDatabaseModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035100 /* RNFBDatabaseOnDisconnectModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105F0 /* RNFBDatabaseOnDisconnectModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035110 /* RNFBDatabaseQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010610 /* RNFBDatabaseQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035120 /* RNFBDatabaseQueryModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010630 /* RNFBDatabaseQueryModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035130 /* RNFBDatabaseReferenceModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010650 /* RNFBDatabaseReferenceModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035140 /* RNFBDatabaseTransactionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010670 /* RNFBDatabaseTransactionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000351A0 /* RNFBDatabase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035190 /* RNFBDatabase-dummy.m */; }; - 46EB2E00035230 /* RCTConvert+FIRLoggerLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106A0 /* RCTConvert+FIRLoggerLevel.m */; }; - 46EB2E00035240 /* RNFBFirestoreCollectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106C0 /* RNFBFirestoreCollectionModule.m */; }; - 46EB2E00035250 /* RNFBFirestoreCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106E0 /* RNFBFirestoreCommon.m */; }; - 46EB2E00035260 /* RNFBFirestoreDocumentModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010700 /* RNFBFirestoreDocumentModule.m */; }; - 46EB2E00035270 /* RNFBFirestoreModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010720 /* RNFBFirestoreModule.m */; }; - 46EB2E00035280 /* RNFBFirestoreQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010740 /* RNFBFirestoreQuery.m */; }; - 46EB2E00035290 /* RNFBFirestoreSerialize.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010760 /* RNFBFirestoreSerialize.m */; }; - 46EB2E000352A0 /* RNFBFirestoreTransactionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010780 /* RNFBFirestoreTransactionModule.m */; }; - 46EB2E000352B0 /* RCTConvert+FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010690 /* RCTConvert+FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000352C0 /* RNFBFirestoreCollectionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106B0 /* RNFBFirestoreCollectionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000352D0 /* RNFBFirestoreCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106D0 /* RNFBFirestoreCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000352E0 /* RNFBFirestoreDocumentModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106F0 /* RNFBFirestoreDocumentModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000352F0 /* RNFBFirestoreModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010710 /* RNFBFirestoreModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035300 /* RNFBFirestoreQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010730 /* RNFBFirestoreQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035310 /* RNFBFirestoreSerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010750 /* RNFBFirestoreSerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035320 /* RNFBFirestoreTransactionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010770 /* RNFBFirestoreTransactionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035380 /* RNFBFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035370 /* RNFBFirestore-dummy.m */; }; - 46EB2E00035410 /* RNFBMessaging+AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107A0 /* RNFBMessaging+AppDelegate.m */; }; - 46EB2E00035420 /* RNFBMessaging+FIRMessagingDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107C0 /* RNFBMessaging+FIRMessagingDelegate.m */; }; - 46EB2E00035430 /* RNFBMessaging+NSNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107E0 /* RNFBMessaging+NSNotificationCenter.m */; }; - 46EB2E00035440 /* RNFBMessaging+UNUserNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010800 /* RNFBMessaging+UNUserNotificationCenter.m */; }; - 46EB2E00035450 /* RNFBMessagingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010820 /* RNFBMessagingModule.m */; }; - 46EB2E00035460 /* RNFBMessagingSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010840 /* RNFBMessagingSerializer.m */; }; - 46EB2E00035470 /* RNFBMessaging+AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010790 /* RNFBMessaging+AppDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035480 /* RNFBMessaging+FIRMessagingDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107B0 /* RNFBMessaging+FIRMessagingDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035490 /* RNFBMessaging+NSNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107D0 /* RNFBMessaging+NSNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000354A0 /* RNFBMessaging+UNUserNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107F0 /* RNFBMessaging+UNUserNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000354B0 /* RNFBMessagingModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010810 /* RNFBMessagingModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000354C0 /* RNFBMessagingSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010830 /* RNFBMessagingSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035520 /* RNFBMessaging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035510 /* RNFBMessaging-dummy.m */; }; - 46EB2E000355B0 /* RNFBConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010860 /* RNFBConfigModule.m */; }; - 46EB2E000355C0 /* RNFBConfigModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010850 /* RNFBConfigModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035620 /* RNFBRemoteConfig-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035610 /* RNFBRemoteConfig-dummy.m */; }; - 46EB2E000356B0 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010880 /* FFFastImageSource.m */; }; - 46EB2E000356C0 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000108A0 /* FFFastImageView.m */; }; - 46EB2E000356D0 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000108C0 /* FFFastImageViewManager.m */; }; - 46EB2E000356E0 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000108E0 /* RCTConvert+FFFastImage.m */; }; - 46EB2E000356F0 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010870 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035700 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010890 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035710 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108B0 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035720 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108D0 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035780 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035770 /* RNFastImage-dummy.m */; }; - 46EB2E00035810 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010910 /* RNFlingHandler.m */; }; - 46EB2E00035820 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010930 /* RNForceTouchHandler.m */; }; - 46EB2E00035830 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010950 /* RNLongPressHandler.m */; }; - 46EB2E00035840 /* RNManualHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010970 /* RNManualHandler.m */; }; - 46EB2E00035850 /* RNNativeViewHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010990 /* RNNativeViewHandler.mm */; }; - 46EB2E00035860 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109B0 /* RNPanHandler.m */; }; - 46EB2E00035870 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109D0 /* RNPinchHandler.m */; }; - 46EB2E00035880 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109F0 /* RNRotationHandler.m */; }; - 46EB2E00035890 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A10 /* RNTapHandler.m */; }; - 46EB2E000358A0 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A30 /* RNGestureHandler.m */; }; - 46EB2E000358B0 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A60 /* RNGestureHandlerButton.m */; }; - 46EB2E000358C0 /* RNGestureHandlerButtonComponentView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A80 /* RNGestureHandlerButtonComponentView.mm */; }; - 46EB2E000358D0 /* RNGestureHandlerButtonManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AA0 /* RNGestureHandlerButtonManager.m */; }; - 46EB2E000358E0 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AD0 /* RNGestureHandlerEvents.m */; }; - 46EB2E000358F0 /* RNGestureHandlerManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AF0 /* RNGestureHandlerManager.mm */; }; - 46EB2E00035900 /* RNGestureHandlerModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B10 /* RNGestureHandlerModule.mm */; }; - 46EB2E00035910 /* RNGestureHandlerPointerTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B30 /* RNGestureHandlerPointerTracker.m */; }; - 46EB2E00035920 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B50 /* RNGestureHandlerRegistry.m */; }; - 46EB2E00035930 /* RNGestureHandlerRootViewComponentView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B60 /* RNGestureHandlerRootViewComponentView.mm */; }; - 46EB2E00035940 /* RNManualActivationRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BB0 /* RNManualActivationRecognizer.m */; }; - 46EB2E00035950 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BD0 /* RNRootViewGestureRecognizer.m */; }; - 46EB2E00035960 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010900 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035970 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010920 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035980 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010940 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035990 /* RNManualHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010960 /* RNManualHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359A0 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010980 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359B0 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109A0 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359C0 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109C0 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359D0 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109E0 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359E0 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A00 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000359F0 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A20 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A00 /* RNGestureHandlerActionType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A40 /* RNGestureHandlerActionType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A10 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A50 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A20 /* RNGestureHandlerButtonComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A70 /* RNGestureHandlerButtonComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A30 /* RNGestureHandlerButtonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A90 /* RNGestureHandlerButtonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A40 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AB0 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A50 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AC0 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A60 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AE0 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A70 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B00 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A80 /* RNGestureHandlerPointerTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B20 /* RNGestureHandlerPointerTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035A90 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B40 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035AA0 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B70 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035AB0 /* RNGestureHandlerStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B80 /* RNGestureHandlerStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035AC0 /* RNGHTouchEventType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B90 /* RNGHTouchEventType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035AD0 /* RNManualActivationRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BA0 /* RNManualActivationRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035AE0 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BC0 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035B40 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035B30 /* RNGestureHandler-dummy.m */; }; - 46EB2E00035BD0 /* RNRate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BF0 /* RNRate.m */; }; - 46EB2E00035BE0 /* RNRate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BE0 /* RNRate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00035C40 /* RNRate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035C30 /* RNRate-dummy.m */; }; - 46EB2E00035CD0 /* REAAnimationsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C30 /* REAAnimationsManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035CE0 /* REASnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C50 /* REASnapshot.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035CF0 /* REAUIManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C70 /* REAUIManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D00 /* NativeMethods.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CA0 /* NativeMethods.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D10 /* NativeProxy.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CC0 /* NativeProxy.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D20 /* REAInitializer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CE0 /* REAInitializer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D30 /* REAIOSErrorHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D00 /* REAIOSErrorHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D40 /* REAIOSLogger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D20 /* REAIOSLogger.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D50 /* REAIOSScheduler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D40 /* REAIOSScheduler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D60 /* UIResponder+Reanimated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D60 /* UIResponder+Reanimated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D70 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D90 /* REAAlwaysNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D80 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DB0 /* REABezierNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035D90 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DD0 /* REABlockNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DA0 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DF0 /* REACallFuncNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DB0 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E10 /* REAClockNodes.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DC0 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E30 /* REAConcatNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DD0 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E50 /* REACondNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DE0 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E70 /* READebugNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035DF0 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E90 /* REAEventNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E00 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EB0 /* REAFunctionNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E10 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010ED0 /* REAJSCallNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EF0 /* REANode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E30 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F10 /* REAOperatorNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E40 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F30 /* REAParamNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E50 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F50 /* REAPropsNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E60 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F70 /* REASetNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E70 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F90 /* REAStyleNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E80 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FB0 /* REATransformNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035E90 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FD0 /* REAValueNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035EA0 /* REAEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FF0 /* REAEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035EB0 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011010 /* REAModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035EC0 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011030 /* REANodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035ED0 /* ReanimatedSensor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011080 /* ReanimatedSensor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035EE0 /* ReanimatedSensorContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110A0 /* ReanimatedSensorContainer.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035EF0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110E0 /* RCTConvert+REATransition.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F00 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011100 /* REAAllTransitions.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F10 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011120 /* REATransition.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F20 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011140 /* REATransitionAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F30 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011160 /* REATransitionManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F40 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011180 /* REATransitionValues.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F50 /* AnimatedSensorModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000111C0 /* AnimatedSensorModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F60 /* LayoutAnimationsProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000111E0 /* LayoutAnimationsProxy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F70 /* NativeReanimatedModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011200 /* NativeReanimatedModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F80 /* NativeReanimatedModuleSpec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011210 /* NativeReanimatedModuleSpec.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035F90 /* EventHandlerRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011230 /* EventHandlerRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FA0 /* MapperRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011240 /* MapperRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FB0 /* WorkletsCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011250 /* WorkletsCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FC0 /* FrozenObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011270 /* FrozenObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FD0 /* MutableValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011280 /* MutableValue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FE0 /* MutableValueSetterProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011290 /* MutableValueSetterProxy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00035FF0 /* RemoteObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000112A0 /* RemoteObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036000 /* ShareableValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000112B0 /* ShareableValue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036010 /* FeaturesConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000112D0 /* FeaturesConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036020 /* JSIStoreValueUser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000112E0 /* JSIStoreValueUser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036030 /* Mapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000112F0 /* Mapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036040 /* RuntimeDecorator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011300 /* RuntimeDecorator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036050 /* Scheduler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011310 /* Scheduler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036060 /* WorkletEventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011320 /* WorkletEventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00036070 /* REAAnimationsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C20 /* REAAnimationsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036080 /* REASnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C40 /* REASnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036090 /* REAUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C60 /* REAUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360A0 /* NativeMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C90 /* NativeMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360B0 /* NativeProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CB0 /* NativeProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360C0 /* REAInitializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CD0 /* REAInitializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360D0 /* REAIOSErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CF0 /* REAIOSErrorHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360E0 /* REAIOSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D10 /* REAIOSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000360F0 /* REAIOSScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D30 /* REAIOSScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036100 /* UIResponder+Reanimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D50 /* UIResponder+Reanimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036110 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D80 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036120 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DA0 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036130 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DC0 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036140 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DE0 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036150 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E00 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036160 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E20 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036170 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E40 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036180 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E60 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036190 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E80 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361A0 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EA0 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361B0 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EC0 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361C0 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EE0 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361D0 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F00 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361E0 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F20 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000361F0 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F40 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036200 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F60 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036210 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F80 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036220 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FA0 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036230 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FC0 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036240 /* REAEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FE0 /* REAEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036250 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011000 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036260 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011020 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036270 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011040 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036280 /* RNGestureHandlerStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011050 /* RNGestureHandlerStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036290 /* ReanimatedSensor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011070 /* ReanimatedSensor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362A0 /* ReanimatedSensorContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011090 /* ReanimatedSensorContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362B0 /* ReanimatedSensorType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000110B0 /* ReanimatedSensorType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362C0 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000110D0 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362D0 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000110F0 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362E0 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011110 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000362F0 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011130 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036300 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011150 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036310 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011170 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036320 /* AnimatedSensorModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011350 /* AnimatedSensorModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036330 /* LayoutAnimationsProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011370 /* LayoutAnimationsProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036340 /* NativeReanimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011390 /* NativeReanimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036350 /* NativeReanimatedModuleSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113A0 /* NativeReanimatedModuleSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036360 /* EventHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113C0 /* EventHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036370 /* MapperRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113D0 /* MapperRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036380 /* WorkletsCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113E0 /* WorkletsCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036390 /* FrozenObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011400 /* FrozenObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363A0 /* HostFunctionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011410 /* HostFunctionHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363B0 /* MutableValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011420 /* MutableValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363C0 /* MutableValueSetterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011430 /* MutableValueSetterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363D0 /* RemoteObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011440 /* RemoteObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363E0 /* RuntimeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011450 /* RuntimeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000363F0 /* ShareableValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011460 /* ShareableValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036400 /* SharedParent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011470 /* SharedParent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036410 /* ValueWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011480 /* ValueWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036420 /* ErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114A0 /* ErrorHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036430 /* FeaturesConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114C0 /* FeaturesConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036440 /* JSIStoreValueUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114D0 /* JSIStoreValueUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036450 /* Mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114E0 /* Mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036460 /* PlatformDepMethodsHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114F0 /* PlatformDepMethodsHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036470 /* ReanimatedHiddenHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011500 /* ReanimatedHiddenHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036480 /* RuntimeDecorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011510 /* RuntimeDecorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036490 /* Scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011520 /* Scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000364A0 /* WorkletEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011530 /* WorkletEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036500 /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000364F0 /* RNReanimated-dummy.m */; }; - 46EB2E00036590 /* RNSVGBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011560 /* RNSVGBrush.m */; }; - 46EB2E000365A0 /* RNSVGContextBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011590 /* RNSVGContextBrush.m */; }; - 46EB2E000365B0 /* RNSVGPainter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115B0 /* RNSVGPainter.m */; }; - 46EB2E000365C0 /* RNSVGPainterBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115D0 /* RNSVGPainterBrush.m */; }; - 46EB2E000365D0 /* RNSVGSolidColorBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115F0 /* RNSVGSolidColorBrush.m */; }; - 46EB2E000365E0 /* RNSVGClipPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011620 /* RNSVGClipPath.m */; }; - 46EB2E000365F0 /* RNSVGDefs.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011640 /* RNSVGDefs.m */; }; - 46EB2E00036600 /* RNSVGForeignObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011660 /* RNSVGForeignObject.m */; }; - 46EB2E00036610 /* RNSVGGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011680 /* RNSVGGroup.m */; }; - 46EB2E00036620 /* RNSVGImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000116A0 /* RNSVGImage.m */; }; - 46EB2E00036630 /* RNSVGLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000116C0 /* RNSVGLinearGradient.m */; }; - 46EB2E00036640 /* RNSVGMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000116E0 /* RNSVGMarker.m */; }; - 46EB2E00036650 /* RNSVGMask.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011700 /* RNSVGMask.m */; }; - 46EB2E00036660 /* RNSVGPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011720 /* RNSVGPath.m */; }; - 46EB2E00036670 /* RNSVGPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011740 /* RNSVGPattern.m */; }; - 46EB2E00036680 /* RNSVGRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011760 /* RNSVGRadialGradient.m */; }; - 46EB2E00036690 /* RNSVGSvgView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011780 /* RNSVGSvgView.m */; }; - 46EB2E000366A0 /* RNSVGSymbol.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117A0 /* RNSVGSymbol.m */; }; - 46EB2E000366B0 /* RNSVGUse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117C0 /* RNSVGUse.m */; }; - 46EB2E000366C0 /* RNSVGNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117F0 /* RNSVGNode.m */; }; - 46EB2E000366D0 /* RNSVGRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011810 /* RNSVGRenderable.m */; }; - 46EB2E000366E0 /* RNSVGCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011850 /* RNSVGCircle.m */; }; - 46EB2E000366F0 /* RNSVGEllipse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011870 /* RNSVGEllipse.m */; }; - 46EB2E00036700 /* RNSVGLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011890 /* RNSVGLine.m */; }; - 46EB2E00036710 /* RNSVGRect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000118B0 /* RNSVGRect.m */; }; - 46EB2E00036720 /* RNSVGFontData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000118E0 /* RNSVGFontData.m */; }; - 46EB2E00036730 /* RNSVGGlyphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011900 /* RNSVGGlyphContext.m */; }; - 46EB2E00036740 /* RNSVGPropHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011920 /* RNSVGPropHelper.m */; }; - 46EB2E00036750 /* RNSVGText.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011940 /* RNSVGText.m */; }; - 46EB2E00036760 /* RNSVGTextPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011960 /* RNSVGTextPath.m */; }; - 46EB2E00036770 /* RNSVGTextProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011980 /* RNSVGTextProperties.m */; }; - 46EB2E00036780 /* RNSVGTopAlignedLabel.ios.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119A0 /* RNSVGTopAlignedLabel.ios.m */; }; - 46EB2E00036790 /* RNSVGTSpan.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119C0 /* RNSVGTSpan.m */; }; - 46EB2E000367A0 /* RCTConvert+RNSVG.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119F0 /* RCTConvert+RNSVG.m */; }; - 46EB2E000367B0 /* RNSVGBezierElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A10 /* RNSVGBezierElement.m */; }; - 46EB2E000367C0 /* RNSVGLength.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A40 /* RNSVGLength.m */; }; - 46EB2E000367D0 /* RNSVGMarkerPosition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A60 /* RNSVGMarkerPosition.m */; }; - 46EB2E000367E0 /* RNSVGPathMeasure.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A80 /* RNSVGPathMeasure.m */; }; - 46EB2E000367F0 /* RNSVGPathParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AA0 /* RNSVGPathParser.m */; }; - 46EB2E00036800 /* RNSVGViewBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AF0 /* RNSVGViewBox.m */; }; - 46EB2E00036810 /* RNSVGCircleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B20 /* RNSVGCircleManager.m */; }; - 46EB2E00036820 /* RNSVGClipPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B40 /* RNSVGClipPathManager.m */; }; - 46EB2E00036830 /* RNSVGDefsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B60 /* RNSVGDefsManager.m */; }; - 46EB2E00036840 /* RNSVGEllipseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B80 /* RNSVGEllipseManager.m */; }; - 46EB2E00036850 /* RNSVGForeignObjectManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BA0 /* RNSVGForeignObjectManager.m */; }; - 46EB2E00036860 /* RNSVGGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BC0 /* RNSVGGroupManager.m */; }; - 46EB2E00036870 /* RNSVGImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BE0 /* RNSVGImageManager.m */; }; - 46EB2E00036880 /* RNSVGLinearGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C00 /* RNSVGLinearGradientManager.m */; }; - 46EB2E00036890 /* RNSVGLineManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C20 /* RNSVGLineManager.m */; }; - 46EB2E000368A0 /* RNSVGMarkerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C40 /* RNSVGMarkerManager.m */; }; - 46EB2E000368B0 /* RNSVGMaskManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C60 /* RNSVGMaskManager.m */; }; - 46EB2E000368C0 /* RNSVGNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C80 /* RNSVGNodeManager.m */; }; - 46EB2E000368D0 /* RNSVGPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CA0 /* RNSVGPathManager.m */; }; - 46EB2E000368E0 /* RNSVGPatternManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CC0 /* RNSVGPatternManager.m */; }; - 46EB2E000368F0 /* RNSVGRadialGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CE0 /* RNSVGRadialGradientManager.m */; }; - 46EB2E00036900 /* RNSVGRectManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D00 /* RNSVGRectManager.m */; }; - 46EB2E00036910 /* RNSVGRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D20 /* RNSVGRenderableManager.m */; }; - 46EB2E00036920 /* RNSVGSvgViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D40 /* RNSVGSvgViewManager.m */; }; - 46EB2E00036930 /* RNSVGSymbolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D60 /* RNSVGSymbolManager.m */; }; - 46EB2E00036940 /* RNSVGTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D80 /* RNSVGTextManager.m */; }; - 46EB2E00036950 /* RNSVGTextPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DA0 /* RNSVGTextPathManager.m */; }; - 46EB2E00036960 /* RNSVGTSpanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DC0 /* RNSVGTSpanManager.m */; }; - 46EB2E00036970 /* RNSVGUseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DE0 /* RNSVGUseManager.m */; }; - 46EB2E00036980 /* RNSVGBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011550 /* RNSVGBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036990 /* RNSVGBrushType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011570 /* RNSVGBrushType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369A0 /* RNSVGContextBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011580 /* RNSVGContextBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369B0 /* RNSVGPainter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115A0 /* RNSVGPainter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369C0 /* RNSVGPainterBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115C0 /* RNSVGPainterBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369D0 /* RNSVGSolidColorBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115E0 /* RNSVGSolidColorBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369E0 /* RNSVGClipPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011610 /* RNSVGClipPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000369F0 /* RNSVGDefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011630 /* RNSVGDefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A00 /* RNSVGForeignObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011650 /* RNSVGForeignObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A10 /* RNSVGGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011670 /* RNSVGGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A20 /* RNSVGImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011690 /* RNSVGImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A30 /* RNSVGLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116B0 /* RNSVGLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A40 /* RNSVGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116D0 /* RNSVGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A50 /* RNSVGMask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116F0 /* RNSVGMask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A60 /* RNSVGPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011710 /* RNSVGPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A70 /* RNSVGPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011730 /* RNSVGPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A80 /* RNSVGRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011750 /* RNSVGRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036A90 /* RNSVGSvgView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011770 /* RNSVGSvgView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AA0 /* RNSVGSymbol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011790 /* RNSVGSymbol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AB0 /* RNSVGUse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117B0 /* RNSVGUse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AC0 /* RNSVGContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117D0 /* RNSVGContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AD0 /* RNSVGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117E0 /* RNSVGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AE0 /* RNSVGRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011800 /* RNSVGRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036AF0 /* RNSVGUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011820 /* RNSVGUIKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B00 /* RNSVGCircle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011840 /* RNSVGCircle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B10 /* RNSVGEllipse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011860 /* RNSVGEllipse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B20 /* RNSVGLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011880 /* RNSVGLine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B30 /* RNSVGRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118A0 /* RNSVGRect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B40 /* RNSVGFontData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118D0 /* RNSVGFontData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B50 /* RNSVGGlyphContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118F0 /* RNSVGGlyphContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B60 /* RNSVGPropHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011910 /* RNSVGPropHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B70 /* RNSVGText.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011930 /* RNSVGText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B80 /* RNSVGTextPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011950 /* RNSVGTextPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036B90 /* RNSVGTextProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011970 /* RNSVGTextProperties.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BA0 /* RNSVGTopAlignedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011990 /* RNSVGTopAlignedLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BB0 /* RNSVGTSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000119B0 /* RNSVGTSpan.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BC0 /* RCTConvert+RNSVG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000119E0 /* RCTConvert+RNSVG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BD0 /* RNSVGBezierElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A00 /* RNSVGBezierElement.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BE0 /* RNSVGCGFCRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A20 /* RNSVGCGFCRule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036BF0 /* RNSVGLength.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A30 /* RNSVGLength.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C00 /* RNSVGMarkerPosition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A50 /* RNSVGMarkerPosition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C10 /* RNSVGPathMeasure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A70 /* RNSVGPathMeasure.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C20 /* RNSVGPathParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A90 /* RNSVGPathParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C30 /* RNSVGUnits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AB0 /* RNSVGUnits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C40 /* RNSVGVBMOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AC0 /* RNSVGVBMOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C50 /* RNSVGVectorEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AD0 /* RNSVGVectorEffect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C60 /* RNSVGViewBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AE0 /* RNSVGViewBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C70 /* RNSVGCircleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B10 /* RNSVGCircleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C80 /* RNSVGClipPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B30 /* RNSVGClipPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036C90 /* RNSVGDefsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B50 /* RNSVGDefsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CA0 /* RNSVGEllipseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B70 /* RNSVGEllipseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CB0 /* RNSVGForeignObjectManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B90 /* RNSVGForeignObjectManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CC0 /* RNSVGGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BB0 /* RNSVGGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CD0 /* RNSVGImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BD0 /* RNSVGImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CE0 /* RNSVGLinearGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BF0 /* RNSVGLinearGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036CF0 /* RNSVGLineManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C10 /* RNSVGLineManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D00 /* RNSVGMarkerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C30 /* RNSVGMarkerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D10 /* RNSVGMaskManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C50 /* RNSVGMaskManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D20 /* RNSVGNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C70 /* RNSVGNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D30 /* RNSVGPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C90 /* RNSVGPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D40 /* RNSVGPatternManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CB0 /* RNSVGPatternManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D50 /* RNSVGRadialGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CD0 /* RNSVGRadialGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D60 /* RNSVGRectManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CF0 /* RNSVGRectManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D70 /* RNSVGRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D10 /* RNSVGRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D80 /* RNSVGSvgViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D30 /* RNSVGSvgViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036D90 /* RNSVGSymbolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D50 /* RNSVGSymbolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036DA0 /* RNSVGTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D70 /* RNSVGTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036DB0 /* RNSVGTextPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D90 /* RNSVGTextPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036DC0 /* RNSVGTSpanManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DB0 /* RNSVGTSpanManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036DD0 /* RNSVGUseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DD0 /* RNSVGUseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036E30 /* RNSVG-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00036E20 /* RNSVG-dummy.m */; }; - 46EB2E00036EC0 /* RNSConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E00 /* RNSConvert.mm */; }; - 46EB2E00036ED0 /* RNSFullWindowOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E30 /* RNSFullWindowOverlay.mm */; }; - 46EB2E00036EE0 /* RNSScreen.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E50 /* RNSScreen.mm */; }; - 46EB2E00036EF0 /* RNSScreenContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E70 /* RNSScreenContainer.mm */; }; - 46EB2E00036F00 /* RNSScreenNavigationContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E90 /* RNSScreenNavigationContainer.mm */; }; - 46EB2E00036F10 /* RNSScreenStack.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EB0 /* RNSScreenStack.mm */; }; - 46EB2E00036F20 /* RNSScreenStackAnimator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011ED0 /* RNSScreenStackAnimator.mm */; }; - 46EB2E00036F30 /* RNSScreenStackHeaderConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EF0 /* RNSScreenStackHeaderConfig.mm */; }; - 46EB2E00036F40 /* RNSScreenStackHeaderSubview.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F10 /* RNSScreenStackHeaderSubview.mm */; }; - 46EB2E00036F50 /* RNSScreenViewEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F30 /* RNSScreenViewEvent.mm */; }; - 46EB2E00036F60 /* RNSScreenWindowTraits.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F50 /* RNSScreenWindowTraits.mm */; }; - 46EB2E00036F70 /* RNSSearchBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F70 /* RNSSearchBar.mm */; }; - 46EB2E00036F80 /* UIViewController+RNScreens.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F90 /* UIViewController+RNScreens.mm */; }; - 46EB2E00036F90 /* UIWindow+RNScreens.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FB0 /* UIWindow+RNScreens.mm */; }; - 46EB2E00036FA0 /* RNSUIBarButtonItem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FE0 /* RNSUIBarButtonItem.mm */; }; - 46EB2E00036FB0 /* RNSConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DF0 /* RNSConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036FC0 /* RNSEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E10 /* RNSEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036FD0 /* RNSFullWindowOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E20 /* RNSFullWindowOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036FE0 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E40 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00036FF0 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E60 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037000 /* RNSScreenNavigationContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E80 /* RNSScreenNavigationContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037010 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EA0 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037020 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EC0 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037030 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EE0 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037040 /* RNSScreenStackHeaderSubview.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F00 /* RNSScreenStackHeaderSubview.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037050 /* RNSScreenViewEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F20 /* RNSScreenViewEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037060 /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F40 /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037070 /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F60 /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037080 /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F80 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037090 /* UIWindow+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FA0 /* UIWindow+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000370A0 /* RNSUIBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FD0 /* RNSUIBarButtonItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037100 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000370F0 /* RNScreens-dummy.m */; }; - 46EB2E00037190 /* EmailShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012000 /* EmailShare.m */; }; - 46EB2E000371A0 /* FacebookStories.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012020 /* FacebookStories.m */; }; - 46EB2E000371B0 /* GenericShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012040 /* GenericShare.m */; }; - 46EB2E000371C0 /* GooglePlusShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012060 /* GooglePlusShare.m */; }; - 46EB2E000371D0 /* InstagramShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012080 /* InstagramShare.m */; }; - 46EB2E000371E0 /* InstagramStories.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000120A0 /* InstagramStories.m */; }; - 46EB2E000371F0 /* RNShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000120C0 /* RNShare.m */; }; - 46EB2E00037200 /* RNShareActivityItemSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000120E0 /* RNShareActivityItemSource.m */; }; - 46EB2E00037210 /* RNShareUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012100 /* RNShareUtils.m */; }; - 46EB2E00037220 /* TelegramShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012120 /* TelegramShare.m */; }; - 46EB2E00037230 /* ViberShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012140 /* ViberShare.m */; }; - 46EB2E00037240 /* WhatsAppShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012160 /* WhatsAppShare.m */; }; - 46EB2E00037250 /* EmailShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FF0 /* EmailShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037260 /* FacebookStories.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012010 /* FacebookStories.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037270 /* GenericShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012030 /* GenericShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037280 /* GooglePlusShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012050 /* GooglePlusShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037290 /* InstagramShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012070 /* InstagramShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372A0 /* InstagramStories.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012090 /* InstagramStories.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372B0 /* RNShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120B0 /* RNShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372C0 /* RNShareActivityItemSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120D0 /* RNShareActivityItemSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372D0 /* RNShareUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120F0 /* RNShareUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372E0 /* TelegramShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012110 /* TelegramShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000372F0 /* ViberShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012130 /* ViberShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037300 /* WhatsAppShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012150 /* WhatsAppShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037360 /* RNShare-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00037350 /* RNShare-dummy.m */; }; - 46EB2E000373F0 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012180 /* RNVectorIconsManager.m */; }; - 46EB2E00037400 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012170 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037460 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00037450 /* RNVectorIcons-dummy.m */; }; - 46EB2E00037560 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012190 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -Wno-nullability-completeness -std=c++17"; }; }; - 46EB2E00037570 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121A0 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000375D0 /* React-Codegen-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000375C0 /* React-Codegen-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037600 /* React-Codegen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000375F0 /* React-Codegen-dummy.m */; }; - 46EB2E00037710 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022050 /* en.lproj */; }; - 46EB2E00037740 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121C0 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037750 /* RCTAccessibilityManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121D0 /* RCTAccessibilityManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037760 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121E0 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037770 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121F0 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037780 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012200 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037790 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012210 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377A0 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012220 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377B0 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012230 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377C0 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012240 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377D0 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012250 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377E0 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012260 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000377F0 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012270 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037800 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012280 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037810 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012290 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037820 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122A0 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037830 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122B0 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037840 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122C0 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037850 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122D0 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037860 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122E0 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037870 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122F0 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037880 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012300 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037890 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012310 /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378A0 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012320 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378B0 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012330 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378C0 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012340 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378D0 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012350 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378E0 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012360 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000378F0 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012370 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037900 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012380 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00037910 /* RCTAppSetupUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000123C0 /* RCTAppSetupUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037920 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000123F0 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037930 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012420 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037940 /* RCTBridgeModuleDecorator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012470 /* RCTBridgeModuleDecorator.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037950 /* RCTBundleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012480 /* RCTBundleManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037960 /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124A0 /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037970 /* RCTCallableJSModules.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124B0 /* RCTCallableJSModules.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037980 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124D0 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037990 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124F0 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379A0 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012510 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379B0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012530 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379C0 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012560 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379D0 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012590 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379E0 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125A0 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000379F0 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125D0 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A00 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125F0 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A10 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012640 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A20 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012670 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A30 /* RCTJSThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012690 /* RCTJSThread.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A40 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126B0 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A50 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126D0 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A60 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126F0 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A70 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012720 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A80 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012740 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037A90 /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012750 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AA0 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012770 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AB0 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012790 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AC0 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000127C0 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AD0 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000127E0 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AE0 /* RCTPerformanceLoggerLabels.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012800 /* RCTPerformanceLoggerLabels.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037AF0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012830 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B00 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012850 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B10 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012870 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B20 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012890 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B30 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000128D0 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B40 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000128F0 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B50 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012930 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B60 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012950 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B70 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012970 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B80 /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012980 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037B90 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000129A0 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BA0 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000129D0 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BB0 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A10 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BC0 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A40 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BD0 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A60 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BE0 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A90 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037BF0 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AC0 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C00 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AE0 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C10 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B00 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C20 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B30 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C30 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B50 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C40 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B60 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C50 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B90 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C60 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BB0 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C70 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BD0 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C80 /* RCTDefaultCxxLogFunction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C00 /* RCTDefaultCxxLogFunction.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037C90 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C40 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CA0 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C60 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CB0 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C80 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CC0 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CA0 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CD0 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CD0 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CE0 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D00 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037CF0 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D20 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D00 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D40 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D10 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D60 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D20 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D80 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D30 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DA0 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D40 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DC0 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D50 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DE0 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D60 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E00 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D70 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E40 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D80 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EB0 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037D90 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EE0 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DA0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F00 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DB0 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F40 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DC0 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F80 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DD0 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FA0 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DE0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FC0 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037DF0 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FE0 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E00 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013000 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E10 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013020 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E20 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013040 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E30 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013060 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E40 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013080 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E50 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130A0 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E60 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130C0 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E70 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130E0 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E80 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013100 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037E90 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013130 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037EA0 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013150 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037EB0 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013170 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037EC0 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013190 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037ED0 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000131B0 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037EE0 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000131D0 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037EF0 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000131F0 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F00 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013210 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F10 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013230 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F20 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013250 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F30 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013270 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F40 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132A0 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F50 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132C0 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F60 /* RCTViewUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132E0 /* RCTViewUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F70 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013300 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F80 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013340 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037F90 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013360 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FA0 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013390 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FB0 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000133B0 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FC0 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000133D0 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FD0 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000133F0 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FE0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013430 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00037FF0 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013450 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038000 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013470 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038010 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013490 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038020 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000134B0 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038030 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000134D0 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038040 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013500 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00038050 /* RCTAppSetupUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123B0 /* RCTAppSetupUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038060 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123E0 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038070 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012400 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038080 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012410 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038090 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012430 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380A0 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012440 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380B0 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012450 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380C0 /* RCTBridgeModuleDecorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012460 /* RCTBridgeModuleDecorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380D0 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012490 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380E0 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124C0 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000380F0 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124E0 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038100 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012500 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038110 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012520 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038120 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012540 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038130 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012550 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038140 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012570 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038150 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012580 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038160 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000125B0 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038170 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000125C0 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038180 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000125E0 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038190 /* RCTInitializing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012600 /* RCTInitializing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381A0 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012610 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381B0 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012620 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381C0 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012630 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381D0 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012650 /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381E0 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012660 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000381F0 /* RCTJSThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012680 /* RCTJSThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038200 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126A0 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038210 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126C0 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038220 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126E0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038230 /* RCTMockDef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012700 /* RCTMockDef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038240 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012710 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038250 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012730 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038260 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012760 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038270 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012780 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038280 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127A0 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038290 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127B0 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382A0 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127D0 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382B0 /* RCTPerformanceLoggerLabels.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127F0 /* RCTPerformanceLoggerLabels.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382C0 /* RCTPLTag.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012810 /* RCTPLTag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382D0 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012820 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382E0 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012840 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000382F0 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012860 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038300 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012880 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038310 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128A0 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038320 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128B0 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038330 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128C0 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038340 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128E0 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038350 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012900 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038360 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012910 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038370 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012920 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038380 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012940 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038390 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012960 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383A0 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012990 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383B0 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129C0 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383C0 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129E0 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383D0 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129F0 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383E0 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A00 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000383F0 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A20 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038400 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A30 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038410 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A50 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038420 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A70 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038430 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A80 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038440 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AB0 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038450 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AD0 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038460 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AF0 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038470 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B20 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038480 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B40 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038490 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B70 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384A0 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B80 /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384B0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BA0 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384C0 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BC0 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384D0 /* RCTDefaultCxxLogFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BF0 /* RCTDefaultCxxLogFunction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384E0 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C20 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000384F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C30 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038500 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C50 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038510 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C70 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038520 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C90 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038530 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CC0 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038540 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CF0 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038550 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D10 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038560 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D30 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038570 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D50 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038580 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D70 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038590 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D90 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385A0 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DB0 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385B0 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DD0 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385C0 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DF0 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385D0 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E20 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385E0 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E30 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000385F0 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EA0 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038600 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012ED0 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038610 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EF0 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038620 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F10 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038630 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F20 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038640 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F30 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038650 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F50 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038660 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F60 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038670 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F70 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038680 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F90 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038690 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FB0 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386A0 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FD0 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386B0 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FF0 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386C0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013010 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386D0 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013030 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386E0 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013050 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000386F0 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013070 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038700 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013090 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038710 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130B0 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038720 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130D0 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038730 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130F0 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038740 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013110 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038750 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013120 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038760 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013140 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038770 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013160 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038780 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013180 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038790 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131A0 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387A0 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131C0 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387B0 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131E0 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387C0 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013200 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387D0 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013220 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387E0 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013240 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000387F0 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013260 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038800 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013280 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038810 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013290 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038820 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132B0 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038830 /* RCTViewUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132D0 /* RCTViewUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038840 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132F0 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038850 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013320 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038860 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013330 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038870 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013350 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038880 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013380 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038890 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133A0 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388A0 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133C0 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388B0 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133E0 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388C0 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013410 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388D0 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013420 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388E0 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013440 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000388F0 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013460 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038900 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013480 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038910 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134A0 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038920 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134C0 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038930 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134E0 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038940 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134F0 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038950 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E50 /* RCTProfileTrampoline-arm.S */; }; - 46EB2E00038960 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E60 /* RCTProfileTrampoline-arm64.S */; }; - 46EB2E00038970 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E70 /* RCTProfileTrampoline-i386.S */; }; - 46EB2E00038980 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E80 /* RCTProfileTrampoline-x86_64.S */; }; - 46EB2E00038990 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013550 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389A0 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013570 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389B0 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013590 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389C0 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000135B0 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389D0 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000135E0 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389E0 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013600 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E000389F0 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013530 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A00 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013540 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A10 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013560 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A20 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013580 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A30 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135A0 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A40 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135D0 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A50 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135F0 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A60 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013630 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A70 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013640 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A80 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013650 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038A90 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013660 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AA0 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013670 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AB0 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013690 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AC0 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136A0 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AD0 /* RCTColorAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136B0 /* RCTColorAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AE0 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136C0 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038AF0 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136D0 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B00 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136E0 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B10 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136F0 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B20 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013700 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B30 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013710 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B40 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013720 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B50 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013730 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B60 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013740 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B70 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013750 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B80 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013760 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038B90 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013770 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BA0 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013780 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BB0 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013790 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BC0 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137A0 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BD0 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137B0 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BE0 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137D0 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038BF0 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137E0 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C00 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013800 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C10 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013810 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C20 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013820 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C30 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013830 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C40 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013840 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C50 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013850 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C60 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013860 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C70 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013870 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C80 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013880 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038C90 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013890 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CA0 /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138A0 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CB0 /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138B0 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CC0 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138C0 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CD0 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138D0 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CE0 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138E0 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038CF0 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138F0 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D00 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013900 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D10 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013910 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D20 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013920 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D30 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013930 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D40 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013940 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D50 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013950 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D60 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013970 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D70 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013980 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D80 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139A0 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038D90 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139B0 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DA0 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139C0 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DB0 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139D0 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DC0 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139E0 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DD0 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139F0 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DE0 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A10 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038DF0 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A20 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E00 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A50 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E10 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A60 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E20 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A80 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E30 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A90 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E40 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AA0 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E50 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AB0 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E60 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AC0 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E70 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AE0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E80 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AF0 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038E90 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B00 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038EA0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B10 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038EB0 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B40 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038EC0 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B50 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038ED0 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B60 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038EE0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B70 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038EF0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B80 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F00 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B90 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F10 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BA0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F20 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BB0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F30 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BC0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F40 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BD0 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F50 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BE0 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F60 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BF0 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F70 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C00 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F80 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C10 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038F90 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C30 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FA0 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C40 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FB0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C50 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FC0 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C70 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FD0 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C80 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FE0 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CA0 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00038FF0 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CB0 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039000 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CE0 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00039010 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D00 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E00039020 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CD0 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039030 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CF0 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039080 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00039070 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000390B0 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000390A0 /* React-Core-dummy.m */; }; - 46EB2E00039140 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D10 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039150 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D20 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039160 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D30 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039170 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D40 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039180 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D50 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039190 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D60 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391A0 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D70 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391B0 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D80 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391C0 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D90 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391D0 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DA0 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391E0 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DB0 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000391F0 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DC0 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039200 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DD0 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039210 /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DE0 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039220 /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DF0 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039230 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E00 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039240 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E10 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039250 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E20 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039260 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E30 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039270 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E40 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039280 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E50 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039290 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E60 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392A0 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E70 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392B0 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E80 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392C0 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E90 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392D0 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EA0 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392E0 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EB0 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000392F0 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EC0 /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039300 /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013ED0 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039360 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039350 /* React-CoreModules-dummy.m */; }; - 46EB2E00039460 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EF0 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039470 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F00 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039480 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F10 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039490 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F20 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394A0 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F40 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394B0 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F50 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394C0 /* RCTColorAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F60 /* RCTColorAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394D0 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F70 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394E0 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F80 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000394F0 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F90 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039500 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FA0 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039510 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FB0 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039520 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FC0 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039530 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FD0 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039540 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FE0 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039550 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FF0 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039560 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014000 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039570 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014010 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039580 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014020 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039590 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014030 /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000395A0 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014040 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000395B0 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014050 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000395C0 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014060 /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000395D0 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013630 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000395E0 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013640 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000395F0 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013650 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039600 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013660 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039610 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013670 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039620 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013690 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039630 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136A0 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039640 /* RCTColorAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136B0 /* RCTColorAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039650 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136C0 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039660 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136D0 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039670 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136E0 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039680 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136F0 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039690 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013700 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396A0 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013710 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396B0 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013720 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396C0 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013730 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396D0 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013740 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396E0 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013750 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000396F0 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013760 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039700 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013770 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039710 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013780 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039720 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013790 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039730 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137A0 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039740 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137B0 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000397A0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039790 /* React-RCTAnimation-dummy.m */; }; - 46EB2E00039830 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014080 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039840 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014090 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039850 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140B0 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039860 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140C0 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039870 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014070 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039880 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137D0 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039890 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000140A0 /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000398A0 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137E0 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00039900 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000398F0 /* React-RCTBlob-dummy.m */; }; - 46EB2E00039990 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140D0 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399A0 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140E0 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399B0 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140F0 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399C0 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014100 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399D0 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014110 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399E0 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014120 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E000399F0 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014130 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A00 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014140 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A10 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014150 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A20 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014160 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A30 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014170 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A40 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014180 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A50 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014190 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A60 /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141A0 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A70 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141B0 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A80 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141C0 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039A90 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141D0 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039AF0 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039AE0 /* React-RCTImage-dummy.m */; }; - 46EB2E00039B80 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141E0 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039B90 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141F0 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039BF0 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039BE0 /* React-RCTLinking-dummy.m */; }; - 46EB2E00039C80 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014200 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039C90 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014210 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039CA0 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014220 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039CB0 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014230 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039CC0 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014240 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039CD0 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014250 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039D30 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039D20 /* React-RCTNetwork-dummy.m */; }; - 46EB2E00039DC0 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014260 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039DD0 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014270 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E00039E30 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039E20 /* React-RCTSettings-dummy.m */; }; - 46EB2E00039EC0 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014290 /* RCTBaseTextShadowView.m */; }; - 46EB2E00039ED0 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142A0 /* RCTBaseTextViewManager.m */; }; - 46EB2E00039EE0 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142C0 /* RCTRawTextShadowView.m */; }; - 46EB2E00039EF0 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142D0 /* RCTRawTextViewManager.m */; }; - 46EB2E00039F00 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142E0 /* RCTConvert+Text.m */; }; - 46EB2E00039F10 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142F0 /* RCTTextAttributes.m */; }; - 46EB2E00039F20 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014310 /* NSTextStorage+FontScaling.m */; }; - 46EB2E00039F30 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014320 /* RCTTextShadowView.m */; }; - 46EB2E00039F40 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014330 /* RCTTextView.m */; }; - 46EB2E00039F50 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014340 /* RCTTextViewManager.m */; }; - 46EB2E00039F60 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014370 /* RCTMultilineTextInputView.m */; }; - 46EB2E00039F70 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014380 /* RCTMultilineTextInputViewManager.m */; }; - 46EB2E00039F80 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014390 /* RCTUITextView.m */; }; - 46EB2E00039F90 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143A0 /* RCTBackedTextInputDelegateAdapter.m */; }; - 46EB2E00039FA0 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143B0 /* RCTBaseTextInputShadowView.m */; }; - 46EB2E00039FB0 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143C0 /* RCTBaseTextInputView.m */; }; - 46EB2E00039FC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143D0 /* RCTBaseTextInputViewManager.m */; }; - 46EB2E00039FD0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143E0 /* RCTInputAccessoryShadowView.m */; }; - 46EB2E00039FE0 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143F0 /* RCTInputAccessoryView.m */; }; - 46EB2E00039FF0 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014400 /* RCTInputAccessoryViewContent.m */; }; - 46EB2E0003A000 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014410 /* RCTInputAccessoryViewManager.m */; }; - 46EB2E0003A010 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014420 /* RCTTextSelection.m */; }; - 46EB2E0003A020 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014440 /* RCTSinglelineTextInputView.m */; }; - 46EB2E0003A030 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014450 /* RCTSinglelineTextInputViewManager.m */; }; - 46EB2E0003A040 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014460 /* RCTUITextField.m */; }; - 46EB2E0003A050 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014480 /* RCTVirtualTextShadowView.m */; }; - 46EB2E0003A060 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014490 /* RCTVirtualTextViewManager.m */; }; - 46EB2E0003A070 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A50 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A080 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A60 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A090 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A80 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0A0 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A90 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0B0 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AA0 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0C0 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AB0 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0D0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AC0 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0E0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AE0 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A0F0 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AF0 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A100 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B00 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A110 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B10 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A120 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B40 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A130 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B50 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A140 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B60 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A150 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B70 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A160 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B80 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A170 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B90 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A180 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BA0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A190 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BB0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1A0 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BC0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1B0 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BD0 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1C0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BE0 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1D0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BF0 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1E0 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C00 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A1F0 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C10 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A200 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C30 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A210 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C40 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A220 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C50 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A230 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C70 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A240 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C80 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A2A0 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A290 /* React-RCTText-dummy.m */; }; - 46EB2E0003A330 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000144A0 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E0003A340 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000144B0 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 46EB2E0003A3A0 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A390 /* React-RCTVibration-dummy.m */; }; - 46EB2E0003A430 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014560 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E0003A440 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144C0 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A450 /* AString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144D0 /* AString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A460 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144E0 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A470 /* Bool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144F0 /* Bool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A480 /* Bridging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014500 /* Bridging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A490 /* CallbackWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014510 /* CallbackWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4A0 /* Class.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014520 /* Class.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4B0 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014530 /* Convert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4C0 /* Error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014540 /* Error.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4D0 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014550 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4E0 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014570 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A4F0 /* Number.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014580 /* Number.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A500 /* Object.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014590 /* Object.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A510 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145A0 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A520 /* Value.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145B0 /* Value.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A580 /* React-bridging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A570 /* React-bridging-dummy.m */; }; - 46EB2E0003A680 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000145E0 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A690 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014610 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6A0 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014650 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6B0 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014670 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6C0 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014690 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6D0 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000146B0 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6E0 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000146F0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A6F0 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014710 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A700 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014740 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A710 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014760 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A720 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014780 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A730 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145D0 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A740 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145F0 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A750 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014600 /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A760 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014620 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A770 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014630 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A780 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014640 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A790 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014660 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7A0 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014680 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7B0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146A0 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7C0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146C0 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7D0 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146D0 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7E0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146E0 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A7F0 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014700 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A800 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014720 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A810 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014730 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A820 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014750 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A830 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014770 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A840 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014790 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A850 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147A0 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A860 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147B0 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A870 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147C0 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A880 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147D0 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003A8E0 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A8D0 /* React-cxxreact-dummy.m */; }; - 46EB2E0003A970 /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000147F0 /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A980 /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014810 /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A990 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014860 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9A0 /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014880 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9B0 /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000148A0 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9C0 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000148D0 /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9D0 /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000148F0 /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9E0 /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014910 /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003A9F0 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014930 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA00 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014960 /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA10 /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014990 /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA20 /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000149B0 /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA30 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000149E0 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA40 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A00 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA50 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A20 /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AA60 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014800 /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AA70 /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014820 /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AA80 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014840 /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AA90 /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014850 /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAA0 /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014870 /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAB0 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014890 /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAC0 /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000148B0 /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAD0 /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000148E0 /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAE0 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014900 /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AAF0 /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014920 /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB00 /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014940 /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB10 /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014950 /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB20 /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014970 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB30 /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014980 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB40 /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149A0 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB50 /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149C0 /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB60 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149F0 /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB70 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A10 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AB80 /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A30 /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ABE0 /* React-hermes-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003ABD0 /* React-hermes-dummy.m */; }; - 46EB2E0003AC70 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A40 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AC80 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AA0 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AC90 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AC0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003ACA0 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AE0 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003ACB0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AF0 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003ACC0 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A50 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ACD0 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A70 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ACE0 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A80 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ACF0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A90 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AD00 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AB0 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AD10 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AD0 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AD20 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B00 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AD30 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B10 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AD90 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AD80 /* React-jsi-dummy.m */; }; - 46EB2E0003AE20 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B20 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AE30 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B40 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003AE40 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B30 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AE50 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B50 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AEB0 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AEA0 /* React-jsiexecutor-dummy.m */; }; - 46EB2E0003AF40 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B60 /* InspectorInterfaces.cpp */; }; - 46EB2E0003AF50 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B70 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003AFB0 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AFA0 /* React-jsinspector-dummy.m */; }; - 46EB2E0003B040 /* react_native_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B80 /* react_native_log.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B050 /* react_native_log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B90 /* react_native_log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B0B0 /* React-logger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B0A0 /* React-logger-dummy.m */; }; - 46EB2E0003B140 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BA0 /* BridgeNativeModulePerfLogger.cpp */; }; - 46EB2E0003B150 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BB0 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B160 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BC0 /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B1C0 /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B1B0 /* React-perflogger-dummy.m */; }; - 46EB2E0003B2C0 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C20 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B2D0 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C40 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B2E0 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C60 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B2F0 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C80 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B300 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CA0 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B310 /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CF0 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B320 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D10 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B330 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D30 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46EB2E0003B340 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C10 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B350 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C30 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B360 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C50 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B370 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C70 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B380 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C90 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B390 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CB0 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B3A0 /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CE0 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B3B0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D00 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B3C0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D20 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B420 /* ReactCommon-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B410 /* ReactCommon-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B450 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B440 /* ReactCommon-dummy.m */; }; - 46EB2E0003B4E0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D60 /* NSButton+WebCache.m */; }; - 46EB2E0003B4F0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D80 /* NSData+ImageContentType.m */; }; - 46EB2E0003B500 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DA0 /* NSImage+Compatibility.m */; }; - 46EB2E0003B510 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DC0 /* SDAnimatedImage.m */; }; - 46EB2E0003B520 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DE0 /* SDAnimatedImagePlayer.m */; }; - 46EB2E0003B530 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E00 /* SDAnimatedImageRep.m */; }; - 46EB2E0003B540 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E20 /* SDAnimatedImageView+WebCache.m */; }; - 46EB2E0003B550 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E40 /* SDAnimatedImageView.m */; }; - 46EB2E0003B560 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E60 /* SDDiskCache.m */; }; - 46EB2E0003B570 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E80 /* SDGraphicsImageRenderer.m */; }; - 46EB2E0003B580 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EA0 /* SDImageAPNGCoder.m */; }; - 46EB2E0003B590 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EC0 /* SDImageAWebPCoder.m */; }; - 46EB2E0003B5A0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EE0 /* SDImageCache.m */; }; - 46EB2E0003B5B0 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F00 /* SDImageCacheConfig.m */; }; - 46EB2E0003B5C0 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F20 /* SDImageCacheDefine.m */; }; - 46EB2E0003B5D0 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F40 /* SDImageCachesManager.m */; }; - 46EB2E0003B5E0 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F60 /* SDImageCoder.m */; }; - 46EB2E0003B5F0 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F80 /* SDImageCoderHelper.m */; }; - 46EB2E0003B600 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FA0 /* SDImageCodersManager.m */; }; - 46EB2E0003B610 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FC0 /* SDImageFrame.m */; }; - 46EB2E0003B620 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FE0 /* SDImageGIFCoder.m */; }; - 46EB2E0003B630 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015000 /* SDImageGraphics.m */; }; - 46EB2E0003B640 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015020 /* SDImageHEICCoder.m */; }; - 46EB2E0003B650 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015040 /* SDImageIOAnimatedCoder.m */; }; - 46EB2E0003B660 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015060 /* SDImageIOCoder.m */; }; - 46EB2E0003B670 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015080 /* SDImageLoader.m */; }; - 46EB2E0003B680 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150A0 /* SDImageLoadersManager.m */; }; - 46EB2E0003B690 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150C0 /* SDImageTransformer.m */; }; - 46EB2E0003B6A0 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150E0 /* SDMemoryCache.m */; }; - 46EB2E0003B6B0 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015100 /* SDWebImageCacheKeyFilter.m */; }; - 46EB2E0003B6C0 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015120 /* SDWebImageCacheSerializer.m */; }; - 46EB2E0003B6D0 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015140 /* SDWebImageCompat.m */; }; - 46EB2E0003B6E0 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015160 /* SDWebImageDefine.m */; }; - 46EB2E0003B6F0 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015180 /* SDWebImageDownloader.m */; }; - 46EB2E0003B700 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151A0 /* SDWebImageDownloaderConfig.m */; }; - 46EB2E0003B710 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151C0 /* SDWebImageDownloaderDecryptor.m */; }; - 46EB2E0003B720 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151E0 /* SDWebImageDownloaderOperation.m */; }; - 46EB2E0003B730 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015200 /* SDWebImageDownloaderRequestModifier.m */; }; - 46EB2E0003B740 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015220 /* SDWebImageDownloaderResponseModifier.m */; }; - 46EB2E0003B750 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015240 /* SDWebImageError.m */; }; - 46EB2E0003B760 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015260 /* SDWebImageIndicator.m */; }; - 46EB2E0003B770 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015280 /* SDWebImageManager.m */; }; - 46EB2E0003B780 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152A0 /* SDWebImageOperation.m */; }; - 46EB2E0003B790 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152C0 /* SDWebImageOptionsProcessor.m */; }; - 46EB2E0003B7A0 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152E0 /* SDWebImagePrefetcher.m */; }; - 46EB2E0003B7B0 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015300 /* SDWebImageTransition.m */; }; - 46EB2E0003B7C0 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015320 /* UIButton+WebCache.m */; }; - 46EB2E0003B7D0 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015340 /* UIImage+ExtendedCacheData.m */; }; - 46EB2E0003B7E0 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015360 /* UIImage+ForceDecode.m */; }; - 46EB2E0003B7F0 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015380 /* UIImage+GIF.m */; }; - 46EB2E0003B800 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153A0 /* UIImage+MemoryCacheCost.m */; }; - 46EB2E0003B810 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153C0 /* UIImage+Metadata.m */; }; - 46EB2E0003B820 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153E0 /* UIImage+MultiFormat.m */; }; - 46EB2E0003B830 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015400 /* UIImage+Transform.m */; }; - 46EB2E0003B840 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015420 /* UIImageView+HighlightedWebCache.m */; }; - 46EB2E0003B850 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015440 /* UIImageView+WebCache.m */; }; - 46EB2E0003B860 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015460 /* UIView+WebCache.m */; }; - 46EB2E0003B870 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015480 /* UIView+WebCacheOperation.m */; }; - 46EB2E0003B880 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154B0 /* NSBezierPath+SDRoundedCorners.m */; }; - 46EB2E0003B890 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154D0 /* SDAssociatedObject.m */; }; - 46EB2E0003B8A0 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154F0 /* SDAsyncBlockOperation.m */; }; - 46EB2E0003B8B0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015510 /* SDDeviceHelper.m */; }; - 46EB2E0003B8C0 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015530 /* SDDisplayLink.m */; }; - 46EB2E0003B8D0 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015550 /* SDFileAttributeHelper.m */; }; - 46EB2E0003B8E0 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015570 /* SDImageAssetManager.m */; }; - 46EB2E0003B8F0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015590 /* SDImageCachesManagerOperation.m */; }; - 46EB2E0003B900 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155C0 /* SDInternalMacros.m */; }; - 46EB2E0003B910 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155F0 /* SDWeakProxy.m */; }; - 46EB2E0003B920 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015620 /* UIColor+SDHexString.m */; }; - 46EB2E0003B930 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D50 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B940 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D70 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B950 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D90 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B960 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DB0 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B970 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DD0 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B980 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DF0 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B990 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E10 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9A0 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E30 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9B0 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E50 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9C0 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E70 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9D0 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E90 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9E0 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EB0 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003B9F0 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014ED0 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA00 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EF0 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA10 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F10 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA20 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F30 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA30 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F50 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA40 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F70 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA50 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F90 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA60 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FB0 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA70 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FD0 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA80 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FF0 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BA90 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015010 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAA0 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015030 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAB0 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015050 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAC0 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015070 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAD0 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015090 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAE0 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150B0 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BAF0 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150D0 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB00 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150F0 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB10 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015110 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB20 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015130 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB30 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015150 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB40 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015170 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB50 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015190 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB60 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151B0 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB70 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151D0 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB80 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151F0 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BB90 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015210 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBA0 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015230 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBB0 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015250 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBC0 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015270 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBD0 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015290 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBE0 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152B0 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BBF0 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152D0 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC00 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152F0 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC10 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015310 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC20 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015330 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC30 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015350 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC40 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015370 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC50 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015390 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC60 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153B0 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC70 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153D0 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC80 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153F0 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BC90 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015410 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCA0 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015430 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCB0 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015450 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCC0 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015470 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCD0 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015490 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCE0 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154A0 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BCF0 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154C0 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD00 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154E0 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD10 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015500 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD20 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015520 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD30 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015540 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD40 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015560 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD50 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015580 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD60 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155A0 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD70 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155B0 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD80 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155D0 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BD90 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155E0 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BDA0 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015600 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BDB0 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015610 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BE10 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003BE00 /* SDWebImage-dummy.m */; }; - 46EB2E0003BEA0 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015640 /* SDImageWebPCoder.m */; }; - 46EB2E0003BEB0 /* SDWebImageWebPCoderDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015660 /* SDWebImageWebPCoderDefine.m */; }; - 46EB2E0003BEC0 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015680 /* UIImage+WebP.m */; }; - 46EB2E0003BED0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015630 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BEE0 /* SDWebImageWebPCoderDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015650 /* SDWebImageWebPCoderDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BEF0 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015670 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BF00 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015690 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003BF60 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003BF50 /* SDWebImageWebPCoder-dummy.m */; }; - 46EB2E0003BFF0 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000156B0 /* SSZipArchive.m */; }; - 46EB2E0003C000 /* mz_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000156F0 /* mz_compat.c */; }; - 46EB2E0003C010 /* mz_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015710 /* mz_crypt.c */; }; - 46EB2E0003C020 /* mz_crypt_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015730 /* mz_crypt_apple.c */; }; - 46EB2E0003C030 /* mz_os.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015740 /* mz_os.c */; }; - 46EB2E0003C040 /* mz_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015760 /* mz_os_posix.c */; }; - 46EB2E0003C050 /* mz_strm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015770 /* mz_strm.c */; }; - 46EB2E0003C060 /* mz_strm_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015790 /* mz_strm_buf.c */; }; - 46EB2E0003C070 /* mz_strm_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000157B0 /* mz_strm_mem.c */; }; - 46EB2E0003C080 /* mz_strm_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000157E0 /* mz_strm_os_posix.c */; }; - 46EB2E0003C090 /* mz_strm_pkcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000157F0 /* mz_strm_pkcrypt.c */; }; - 46EB2E0003C0A0 /* mz_strm_split.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015810 /* mz_strm_split.c */; }; - 46EB2E0003C0B0 /* mz_strm_wzaes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015830 /* mz_strm_wzaes.c */; }; - 46EB2E0003C0C0 /* mz_strm_zlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015850 /* mz_strm_zlib.c */; }; - 46EB2E0003C0D0 /* mz_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015870 /* mz_zip.c */; }; - 46EB2E0003C0E0 /* mz_zip_rw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015890 /* mz_zip_rw.c */; }; - 46EB2E0003C0F0 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156A0 /* SSZipArchive.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C100 /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156C0 /* SSZipCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C110 /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156D0 /* ZipArchive.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C120 /* mz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156E0 /* mz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C130 /* mz_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015700 /* mz_compat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C140 /* mz_crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015720 /* mz_crypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C150 /* mz_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015750 /* mz_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C160 /* mz_strm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015780 /* mz_strm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C170 /* mz_strm_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157A0 /* mz_strm_buf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C180 /* mz_strm_mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157C0 /* mz_strm_mem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C190 /* mz_strm_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157D0 /* mz_strm_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1A0 /* mz_strm_pkcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015800 /* mz_strm_pkcrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1B0 /* mz_strm_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015820 /* mz_strm_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1C0 /* mz_strm_wzaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015840 /* mz_strm_wzaes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1D0 /* mz_strm_zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015860 /* mz_strm_zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1E0 /* mz_zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015880 /* mz_zip.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C1F0 /* mz_zip_rw.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158A0 /* mz_zip_rw.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C250 /* SSZipArchive-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C240 /* SSZipArchive-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C280 /* SSZipArchive-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C270 /* SSZipArchive-dummy.m */; }; - 46EB2E0003C310 /* SRDelegateController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000158C0 /* SRDelegateController.m */; }; - 46EB2E0003C320 /* SRIOConsumer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000158E0 /* SRIOConsumer.m */; }; - 46EB2E0003C330 /* SRIOConsumerPool.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015900 /* SRIOConsumerPool.m */; }; - 46EB2E0003C340 /* SRProxyConnect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015940 /* SRProxyConnect.m */; }; - 46EB2E0003C350 /* SRRunLoopThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015960 /* SRRunLoopThread.m */; }; - 46EB2E0003C360 /* SRPinningSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015980 /* SRPinningSecurityPolicy.m */; }; - 46EB2E0003C370 /* SRConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000159A0 /* SRConstants.m */; }; - 46EB2E0003C380 /* SRError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000159C0 /* SRError.m */; }; - 46EB2E0003C390 /* SRHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000159E0 /* SRHash.m */; }; - 46EB2E0003C3A0 /* SRHTTPConnectMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A00 /* SRHTTPConnectMessage.m */; }; - 46EB2E0003C3B0 /* SRLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A20 /* SRLog.m */; }; - 46EB2E0003C3C0 /* SRMutex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A40 /* SRMutex.m */; }; - 46EB2E0003C3D0 /* SRRandom.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A60 /* SRRandom.m */; }; - 46EB2E0003C3E0 /* SRSIMDHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A80 /* SRSIMDHelpers.m */; }; - 46EB2E0003C3F0 /* SRURLUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AA0 /* SRURLUtilities.m */; }; - 46EB2E0003C400 /* NSRunLoop+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AC0 /* NSRunLoop+SRWebSocket.m */; }; - 46EB2E0003C410 /* NSURLRequest+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AE0 /* NSURLRequest+SRWebSocket.m */; }; - 46EB2E0003C420 /* SRSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B10 /* SRSecurityPolicy.m */; }; - 46EB2E0003C430 /* SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B30 /* SRWebSocket.m */; }; - 46EB2E0003C440 /* SRDelegateController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158B0 /* SRDelegateController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C450 /* SRIOConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158D0 /* SRIOConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C460 /* SRIOConsumerPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158F0 /* SRIOConsumerPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C470 /* NSRunLoop+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015910 /* NSRunLoop+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C480 /* NSURLRequest+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015920 /* NSURLRequest+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C490 /* SRProxyConnect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015930 /* SRProxyConnect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4A0 /* SRRunLoopThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015950 /* SRRunLoopThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4B0 /* SRPinningSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015970 /* SRPinningSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4C0 /* SRConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015990 /* SRConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4D0 /* SRError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159B0 /* SRError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4E0 /* SRHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159D0 /* SRHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C4F0 /* SRHTTPConnectMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159F0 /* SRHTTPConnectMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C500 /* SRLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A10 /* SRLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C510 /* SRMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A30 /* SRMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C520 /* SRRandom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A50 /* SRRandom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C530 /* SRSIMDHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A70 /* SRSIMDHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C540 /* SRURLUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A90 /* SRURLUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C550 /* NSRunLoop+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AB0 /* NSRunLoop+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C560 /* NSURLRequest+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AD0 /* NSURLRequest+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C570 /* SocketRocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AF0 /* SocketRocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C580 /* SRSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B00 /* SRSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C590 /* SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B20 /* SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C5F0 /* SocketRocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C5E0 /* SocketRocket-dummy.m */; }; - 46EB2E0003C680 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B70 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C690 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BB0 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6A0 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BD0 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6B0 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BF0 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6C0 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C10 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6D0 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C30 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6E0 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C60 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C6F0 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C90 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C700 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CB0 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C710 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CD0 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C720 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CF0 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C730 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D20 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; - 46EB2E0003C740 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B40 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C750 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B50 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C760 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B80 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C770 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BA0 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C780 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BC0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C790 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BE0 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7A0 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C00 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7B0 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C20 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7C0 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C40 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7D0 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C50 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7E0 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C70 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C7F0 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C80 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C800 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CA0 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C810 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CC0 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C820 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CE0 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C830 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D00 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C840 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D10 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C850 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D30 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C8B0 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C8A0 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C8E0 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C8D0 /* Yoga-dummy.m */; }; - 46EB2E0003C970 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D50 /* UIView+Yoga.m */; }; - 46EB2E0003C980 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D80 /* YGLayout.m */; }; - 46EB2E0003C990 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D90 /* YGLayoutExtensions.swift */; }; - 46EB2E0003C9A0 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D40 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C9B0 /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D60 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003C9C0 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D70 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CA20 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003CA10 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CA60 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003CA50 /* YogaKit-dummy.m */; }; - 46EB2E0003CAF0 /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DC0 /* algorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CB00 /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DE0 /* container.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CB10 /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E10 /* atomic_hook.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CB20 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E50 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CB30 /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E90 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CB40 /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EB0 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CB50 /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015ED0 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CB60 /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F00 /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CB70 /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E30 /* call_once.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CB80 /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E40 /* casts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CB90 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E60 /* cycleclock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBA0 /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E70 /* low_level_scheduling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBB0 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E80 /* per_thread_tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBC0 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EA0 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBD0 /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EC0 /* sysinfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBE0 /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EE0 /* thread_identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CBF0 /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EF0 /* tsan_mutex_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC00 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F10 /* unscaledcycleclock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC10 /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F30 /* hide_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC20 /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F40 /* identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC30 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F50 /* inline_variable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC40 /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F60 /* invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC50 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F70 /* scheduling_mode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC60 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F90 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC70 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FA0 /* options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC80 /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FB0 /* policy_checks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CC90 /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FD0 /* attributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCA0 /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FE0 /* const_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCB0 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FF0 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCC0 /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016000 /* macros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCD0 /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016010 /* optimization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCE0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016020 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CCF0 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016030 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD00 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016050 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD10 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016060 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD20 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016080 /* endian.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD30 /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016090 /* unaligned_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD40 /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000160B0 /* errno_saver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD50 /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000160D0 /* fast_type_id.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD60 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000160F0 /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CD70 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016100 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CD80 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016130 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CD90 /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016120 /* direct_mmap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CDA0 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016140 /* low_level_alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CDB0 /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016160 /* pretty_function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CDC0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016180 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CDD0 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016190 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CDE0 /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000161E0 /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CDF0 /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161B0 /* spinlock_akaros.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE00 /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161C0 /* spinlock_linux.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE10 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161D0 /* spinlock_posix.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE20 /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161F0 /* spinlock_wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE30 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016200 /* spinlock_win32.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE40 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016220 /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CE50 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016230 /* strerror.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE60 /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016250 /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CE70 /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016260 /* throw_delegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE80 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016290 /* common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CE90 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000162B0 /* compressed_tuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CEA0 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000162D0 /* container_memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CEB0 /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000162F0 /* fixed_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CEC0 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016310 /* flat_hash_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CED0 /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016330 /* hash_function_defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CEE0 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016350 /* hash_policy_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CEF0 /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016370 /* hashtable_debug_hooks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF00 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016390 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CF10 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000163B0 /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CF20 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163A0 /* hashtablez_sampler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF30 /* have_sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163D0 /* have_sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF40 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163F0 /* inlined_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF50 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016410 /* inlined_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF60 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016430 /* layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF70 /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016450 /* raw_hash_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CF80 /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016470 /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CF90 /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016480 /* raw_hash_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CFA0 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000164B0 /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CFB0 /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000164D0 /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CFC0 /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000164F0 /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003CFD0 /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164C0 /* address_is_readable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CFE0 /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164E0 /* elf_mem_image.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003CFF0 /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016500 /* vdso_support.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D000 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016520 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D010 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016530 /* demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D020 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000165F0 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D030 /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016550 /* stacktrace_aarch64-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D040 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016560 /* stacktrace_arm-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D050 /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016570 /* stacktrace_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D060 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016580 /* stacktrace_emscripten-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D070 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016590 /* stacktrace_generic-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D080 /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165A0 /* stacktrace_powerpc-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D090 /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165B0 /* stacktrace_riscv-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D0A0 /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165C0 /* stacktrace_unimplemented-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D0B0 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165D0 /* stacktrace_win32-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D0C0 /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165E0 /* stacktrace_x86-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D0D0 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016600 /* stacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D0E0 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016630 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D0F0 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016620 /* symbolize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D100 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016640 /* symbolize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D110 /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016650 /* symbolize_darwin.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D120 /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016660 /* symbolize_elf.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D130 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016670 /* symbolize_emscripten.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D140 /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016680 /* symbolize_unimplemented.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D150 /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016690 /* symbolize_win32.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D160 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000166C0 /* bind_front.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D170 /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000166D0 /* front_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D180 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000166F0 /* function_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D190 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016700 /* function_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D1A0 /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016730 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D1B0 /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016740 /* city.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D1C0 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016770 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D1D0 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016760 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D1E0 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016780 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D1F0 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000167A0 /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D200 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000167B0 /* low_level_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D210 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000167E0 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D220 /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016810 /* type_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D230 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016840 /* bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D240 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016850 /* bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D250 /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016870 /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D260 /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016880 /* int128.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D270 /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016890 /* int128_have_intrinsic.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D280 /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000168A0 /* int128_no_intrinsic.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D290 /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000168C0 /* representation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D2A0 /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000168F0 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D2B0 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016900 /* exponential_biased.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D2C0 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016920 /* sample_recorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D2D0 /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016970 /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D2E0 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000169B0 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D2F0 /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016950 /* bernoulli_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D300 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016960 /* beta_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D310 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016980 /* discrete_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D320 /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016990 /* distributions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D330 /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169A0 /* exponential_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D340 /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169C0 /* gaussian_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D350 /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169D0 /* log_uniform_int_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D360 /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169E0 /* poisson_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D370 /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169F0 /* uniform_int_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D380 /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A00 /* uniform_real_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D390 /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A10 /* zipf_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3A0 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A40 /* distribution_caller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3B0 /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A60 /* fast_uniform_bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3C0 /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A80 /* fastmath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3D0 /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AA0 /* generate_real.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3E0 /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AC0 /* iostream_state_saver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D3F0 /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AE0 /* nonsecure_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D400 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B00 /* pcg_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D410 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B30 /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D420 /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B20 /* platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D430 /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B40 /* randen_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D440 /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B60 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D450 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B70 /* pool_urbg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D460 /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B90 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D470 /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BA0 /* randen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D480 /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BC0 /* randen_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D490 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BE0 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D4A0 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BF0 /* randen_detect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D4B0 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C00 /* randen_hwaes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D4C0 /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C20 /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D4D0 /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C40 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D4E0 /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C50 /* randen_slow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D4F0 /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C70 /* salted_seed_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D500 /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C90 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D510 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CA0 /* seed_material.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D520 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CC0 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D530 /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CE0 /* uniform_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D540 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D00 /* wide_multiply.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D550 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D20 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D560 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D40 /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D570 /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D50 /* seed_gen_exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D580 /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D70 /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D590 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D80 /* seed_sequences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D5A0 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DC0 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D5B0 /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DE0 /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D5C0 /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DB0 /* status_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D5D0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DD0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D5E0 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DF0 /* status_payload_printer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D5F0 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E20 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D600 /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E10 /* statusor_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D610 /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E30 /* statusor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D620 /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E60 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D630 /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E70 /* cord.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D640 /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E90 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D650 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EB0 /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D660 /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016ED0 /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D670 /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EF0 /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D680 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F10 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D690 /* cord_rep_ring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F40 /* cord_rep_ring.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D6A0 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EA0 /* cord_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D6B0 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EC0 /* cord_rep_btree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D6C0 /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EE0 /* cord_rep_btree_navigator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D6D0 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F00 /* cord_rep_btree_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D6E0 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F20 /* cord_rep_consume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D6F0 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F30 /* cord_rep_flat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D700 /* cord_rep_ring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F50 /* cord_rep_ring.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D710 /* cord_rep_ring_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F60 /* cord_rep_ring_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D720 /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F80 /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D730 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F90 /* cordz_functions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D740 /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FB0 /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D750 /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FC0 /* cordz_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D760 /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FE0 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D770 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FF0 /* cordz_info.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D780 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017010 /* cordz_statistics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D790 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017030 /* cordz_update_scope.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D7A0 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017050 /* cordz_update_tracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D7B0 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017080 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D7C0 /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000170A0 /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D7D0 /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000170D0 /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D7E0 /* char_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017070 /* char_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D7F0 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017090 /* escaping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D800 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170B0 /* ostringstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D810 /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170C0 /* resize_uninitialized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D820 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170E0 /* utf8.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D830 /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017100 /* str_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D840 /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017120 /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D850 /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017140 /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D860 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017170 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D870 /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017190 /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D880 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000171B0 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D890 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000171D0 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D8A0 /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017130 /* arg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D8B0 /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017150 /* bind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D8C0 /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017160 /* checker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D8D0 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017180 /* extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D8E0 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171A0 /* float_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D8F0 /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171C0 /* output.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D900 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171E0 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D910 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017200 /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D920 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017220 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D930 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017240 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D940 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017260 /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D950 /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017280 /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D960 /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000172A0 /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D970 /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017300 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D980 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017320 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D990 /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017340 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D9A0 /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017370 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D9B0 /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017390 /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D9C0 /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000173B0 /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D9D0 /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000173E0 /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003D9E0 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017210 /* ascii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003D9F0 /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017230 /* charconv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA00 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017250 /* escaping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA10 /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017270 /* charconv_bigint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA20 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017290 /* charconv_parse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA30 /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172B0 /* memutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA40 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172C0 /* stl_type_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA50 /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172D0 /* str_join_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA60 /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172E0 /* str_split_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA70 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172F0 /* string_constant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA80 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017310 /* match.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DA90 /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017330 /* numbers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAA0 /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017350 /* str_cat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAB0 /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017360 /* str_join.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAC0 /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017380 /* str_replace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAD0 /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173A0 /* str_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAE0 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173C0 /* string_view.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DAF0 /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173D0 /* strip.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DB00 /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173F0 /* substitute.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DB10 /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017420 /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB20 /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017430 /* graphcycles.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DB30 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017450 /* kernel_timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DB40 /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017470 /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB50 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017490 /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB60 /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174B0 /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB70 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174E0 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB80 /* waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017500 /* waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DB90 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017520 /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DBA0 /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017540 /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DBB0 /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017480 /* barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DBC0 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174A0 /* blocking_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DBD0 /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174C0 /* create_thread_identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DBE0 /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174D0 /* futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DBF0 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174F0 /* per_thread_sem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC00 /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017510 /* waiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC10 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017530 /* mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC20 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017550 /* notification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC30 /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000175C0 /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DC40 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175A0 /* civil_time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC50 /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175B0 /* civil_time_detail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DC60 /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017600 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DC70 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017620 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DC80 /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017630 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DC90 /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017650 /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCA0 /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017670 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCB0 /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017690 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCC0 /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000176B0 /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCD0 /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000176C0 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCE0 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000176F0 /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DCF0 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175E0 /* time_zone.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD00 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175F0 /* zone_info_source.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD10 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017610 /* time_zone_fixed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD20 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017640 /* time_zone_if.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD30 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017660 /* time_zone_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD40 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017680 /* time_zone_info.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD50 /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000176A0 /* time_zone_libc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD60 /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000176D0 /* time_zone_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD70 /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000176E0 /* tzfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DD80 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017710 /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DD90 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017730 /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DDA0 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017750 /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DDB0 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017760 /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DDC0 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017790 /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DDD0 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017720 /* civil_time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DDE0 /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017740 /* clock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DDF0 /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017770 /* get_current_time_chrono.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE00 /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017780 /* get_current_time_posix.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE10 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177A0 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE20 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177D0 /* any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE30 /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177F0 /* bad_any_cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE40 /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017810 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DE50 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017830 /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DE60 /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017840 /* bad_optional_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE70 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017860 /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46EB2E0003DE80 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017870 /* bad_variant_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DE90 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017890 /* compare.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DEA0 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178B0 /* optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DEB0 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178C0 /* optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DEC0 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178E0 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DED0 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178F0 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DEE0 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017910 /* variant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DEF0 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017920 /* variant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DF00 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017950 /* utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003DF60 /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003DF50 /* abseil-dummy.m */; }; - 46EB2E0003E060 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017960 /* format.cc */; }; - 46EB2E0003E070 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017970 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E080 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017980 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E090 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017990 /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0A0 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179A0 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0B0 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179B0 /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0C0 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179C0 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0D0 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179D0 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0E0 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179E0 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E0F0 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179F0 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E100 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A00 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E110 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A10 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E120 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A20 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E180 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003E170 /* fmt-dummy.m */; }; - 46EB2E0003E290 /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022070 /* roots.pem */; }; - 46EB2E0003E2C0 /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DD0 /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E2D0 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DF0 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E2E0 /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E00 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E2F0 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E20 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E300 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E40 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E310 /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E60 /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E320 /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E80 /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E330 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EA0 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E340 /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EB0 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E350 /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017ED0 /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E360 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EF0 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E370 /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F20 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E380 /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F50 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E390 /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F80 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3A0 /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FA0 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3B0 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FC0 /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3C0 /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FF0 /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3D0 /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00018010 /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3E0 /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2A0 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E3F0 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2B0 /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E400 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2C0 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E410 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2D0 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E420 /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2E0 /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E430 /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2F0 /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E440 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A310 /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E450 /* credentials_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A320 /* credentials_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E460 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A330 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E470 /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A340 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E480 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A360 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E490 /* codegen_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A370 /* codegen_init.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4A0 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A380 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4B0 /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A390 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4C0 /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3A0 /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4D0 /* channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3B0 /* channel_filter.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4E0 /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3D0 /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E4F0 /* core_codegen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3E0 /* core_codegen.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E500 /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3F0 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E510 /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A400 /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E520 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A410 /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E530 /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A430 /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E540 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A440 /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E550 /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A450 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E560 /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A460 /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E570 /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A470 /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E580 /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A480 /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E590 /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A490 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5A0 /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4A0 /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5B0 /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4B0 /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5C0 /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4C0 /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5D0 /* dynamic_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4D0 /* dynamic_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5E0 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4F0 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E5F0 /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A510 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E600 /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A530 /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E610 /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A540 /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E620 /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A550 /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E630 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A560 /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E640 /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A580 /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E650 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A590 /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E660 /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5A0 /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E670 /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5B0 /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E680 /* server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5C0 /* server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E690 /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5D0 /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6A0 /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5F0 /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6B0 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A600 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6C0 /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A620 /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6D0 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A630 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6E0 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A640 /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E6F0 /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A650 /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E0003E700 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A40 /* backend_metric.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E710 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A50 /* backup_poller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E720 /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A60 /* client_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E730 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A70 /* client_channel_channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E740 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A80 /* client_channel_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E750 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A90 /* config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E760 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AA0 /* connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E770 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AB0 /* dynamic_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E780 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AC0 /* global_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E790 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AD0 /* health_check_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7A0 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AE0 /* http_connect_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7B0 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AF0 /* http_proxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7C0 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B00 /* lb_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7D0 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B10 /* address_filtering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7E0 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B20 /* child_policy_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E7F0 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B30 /* client_load_reporting_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E800 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B40 /* grpclb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E810 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B50 /* grpclb_balancer_addresses.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E820 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B60 /* grpclb_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E830 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B70 /* grpclb_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E840 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B80 /* load_balancer_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E850 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B90 /* ring_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E860 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BA0 /* subchannel_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E870 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BB0 /* xds.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E880 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BC0 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E890 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BD0 /* lb_policy_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8A0 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BE0 /* lb_policy_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8B0 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BF0 /* local_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8C0 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C00 /* proxy_mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8D0 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C10 /* proxy_mapper_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8E0 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C20 /* grpc_ares_ev_driver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E8F0 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C30 /* grpc_ares_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E900 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C40 /* dns_resolver_selection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E910 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C50 /* fake_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E920 /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C60 /* xds_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E930 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C70 /* resolver_result_parsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E940 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C80 /* retry_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E950 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C90 /* retry_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E960 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CA0 /* retry_throttle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E970 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CB0 /* subchannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E980 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CC0 /* subchannel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E990 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CD0 /* subchannel_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9A0 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CE0 /* idle_filter_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9B0 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CF0 /* deadline_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9C0 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D00 /* fault_injection_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9D0 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D10 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9E0 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D20 /* http_client_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003E9F0 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D30 /* client_authority_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA00 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D40 /* message_compress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA10 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D50 /* message_decompress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA20 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D60 /* http_server_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA30 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D70 /* max_age_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA40 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D80 /* message_size_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA50 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D90 /* rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA60 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DA0 /* rbac_service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA70 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DB0 /* server_config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA80 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DC0 /* server_config_selector_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EA90 /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DE0 /* binder_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAA0 /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E10 /* channel_create_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAB0 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E30 /* connection_id_generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAC0 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E50 /* endpoint_binder_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAD0 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E70 /* jni_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAE0 /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E90 /* security_policy_setting.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EAF0 /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EC0 /* binder_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB00 /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EE0 /* binder_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB10 /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F00 /* binder_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB20 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F10 /* binder_auto_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB30 /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F30 /* ndk_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB40 /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F40 /* transport_stream_receiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB50 /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F60 /* transport_stream_receiver_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB60 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F70 /* binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB70 /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F90 /* binder_android.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB80 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FB0 /* binder_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EB90 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FD0 /* transaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBA0 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FE0 /* wire_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBB0 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018000 /* wire_reader_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBC0 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018020 /* wire_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBD0 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018030 /* alpn.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBE0 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018040 /* chttp2_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EBF0 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018050 /* chttp2_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC00 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018060 /* bin_decoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC10 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018070 /* bin_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC20 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018080 /* chttp2_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC30 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018090 /* context_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC40 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180A0 /* flow_control.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC50 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180B0 /* frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC60 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180C0 /* frame_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC70 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180D0 /* frame_goaway.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC80 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180E0 /* frame_ping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EC90 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180F0 /* frame_rst_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECA0 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018100 /* frame_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECB0 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018110 /* frame_window_update.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECC0 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018120 /* hpack_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECD0 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018130 /* hpack_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECE0 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018140 /* hpack_encoder_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ECF0 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018150 /* hpack_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED00 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018160 /* hpack_parser_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED10 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018170 /* http2_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED20 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018180 /* huffsyms.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED30 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018190 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED40 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181A0 /* stream_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED50 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181B0 /* varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED60 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181C0 /* inproc_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED70 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181D0 /* config_dump.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED80 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181E0 /* deprecation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003ED90 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181F0 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDA0 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018200 /* accesslog.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDB0 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018210 /* bootstrap.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDC0 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018220 /* circuit_breaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDD0 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018230 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDE0 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018240 /* filter.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EDF0 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018250 /* outlier_detection.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE00 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018260 /* address.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE10 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018270 /* backoff.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE20 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018280 /* base.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE30 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018290 /* config_source.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE40 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182A0 /* event_service_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE50 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182B0 /* extension.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE60 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182C0 /* grpc_service.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE70 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182D0 /* health_check.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE80 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182E0 /* http_uri.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EE90 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182F0 /* protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EEA0 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018300 /* proxy_protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EEB0 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018310 /* resolver.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EEC0 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018320 /* socket_option.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EED0 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018330 /* substitution_format_string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EEE0 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018340 /* udp_socket_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EEF0 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018350 /* endpoint.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF00 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018360 /* endpoint_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF10 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018370 /* load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF20 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018380 /* api_listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF30 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018390 /* listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF40 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183A0 /* listener_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF50 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183B0 /* quic_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF60 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183C0 /* udp_listener_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF70 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183D0 /* stats.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF80 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183E0 /* overload.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EF90 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183F0 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFA0 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018400 /* route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFB0 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018410 /* route_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFC0 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018420 /* scoped_route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFD0 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018430 /* http_tracer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFE0 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018440 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003EFF0 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018450 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F000 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018460 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F010 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018470 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F020 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018480 /* router.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F030 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018490 /* http_connection_manager.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F040 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184A0 /* cert.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F050 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184B0 /* common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F060 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184C0 /* secret.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F070 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184D0 /* tls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F080 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184E0 /* cds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F090 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184F0 /* ads.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0A0 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018500 /* discovery.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0B0 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018510 /* eds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0C0 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018520 /* lds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0D0 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018530 /* lrs.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0E0 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018540 /* rds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F0F0 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018550 /* srds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F100 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018560 /* csds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F110 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018570 /* path_transformation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F120 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018580 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F130 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018590 /* node.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F140 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185A0 /* number.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F150 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185B0 /* path.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F160 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185C0 /* regex.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F170 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185D0 /* string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F180 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185E0 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F190 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185F0 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1A0 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018600 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1B0 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018610 /* custom_tag.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1C0 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018620 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1D0 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018630 /* percent.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1E0 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018640 /* range.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F1F0 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018650 /* semantic_version.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F200 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018660 /* annotations.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F210 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018670 /* checked.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F220 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018680 /* eval.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F230 /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018690 /* explain.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F240 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186A0 /* syntax.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F250 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186B0 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F260 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186C0 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F270 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186D0 /* any.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F280 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186E0 /* descriptor.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F290 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186F0 /* duration.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2A0 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018700 /* empty.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2B0 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018710 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2C0 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018720 /* timestamp.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2D0 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018730 /* wrappers.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2E0 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018740 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F2F0 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018750 /* altscontext.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F300 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018760 /* handshaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F310 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018770 /* transport_security_common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F320 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018780 /* health.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F330 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018790 /* load_balancer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F340 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187A0 /* rls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F350 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187B0 /* migrate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F360 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187C0 /* security.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F370 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187D0 /* sensitive.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F380 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187E0 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F390 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187F0 /* versioning.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3A0 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018800 /* validate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3B0 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018810 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3C0 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018820 /* authority.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3D0 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018830 /* collection_entry.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3E0 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018840 /* context_params.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F3F0 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018850 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F400 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018860 /* resource_locator.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F410 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018870 /* resource_name.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F420 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018880 /* orca_load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F430 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018890 /* typed_struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F440 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188A0 /* config_dump.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F450 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188B0 /* deprecation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F460 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188C0 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F470 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188D0 /* accesslog.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F480 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188E0 /* bootstrap.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F490 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188F0 /* circuit_breaker.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4A0 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018900 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4B0 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018910 /* filter.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4C0 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018920 /* outlier_detection.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4D0 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018930 /* address.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4E0 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018940 /* backoff.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F4F0 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018950 /* base.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F500 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018960 /* config_source.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F510 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018970 /* event_service_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F520 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018980 /* extension.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F530 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018990 /* grpc_service.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F540 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189A0 /* health_check.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F550 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189B0 /* http_uri.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F560 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189C0 /* protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F570 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189D0 /* proxy_protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F580 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189E0 /* resolver.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F590 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189F0 /* socket_option.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5A0 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A00 /* substitution_format_string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5B0 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A10 /* udp_socket_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5C0 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A20 /* endpoint.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5D0 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A30 /* endpoint_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5E0 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A40 /* load_report.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F5F0 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A50 /* api_listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F600 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A60 /* listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F610 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A70 /* listener_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F620 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A80 /* quic_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F630 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A90 /* udp_listener_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F640 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AA0 /* stats.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F650 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AB0 /* overload.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F660 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AC0 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F670 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AD0 /* route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F680 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AE0 /* route_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F690 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AF0 /* scoped_route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6A0 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B00 /* http_tracer.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6B0 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B10 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6C0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B20 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6D0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B30 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6E0 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B40 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F6F0 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B50 /* router.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F700 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B60 /* http_connection_manager.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F710 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B70 /* cert.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F720 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B80 /* common.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F730 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B90 /* secret.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F740 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BA0 /* tls.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F750 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BB0 /* cds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F760 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BC0 /* ads.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F770 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BD0 /* discovery.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F780 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BE0 /* eds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F790 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BF0 /* lds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7A0 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C00 /* lrs.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7B0 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C10 /* rds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7C0 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C20 /* srds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7D0 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C30 /* csds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7E0 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C40 /* path_transformation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F7F0 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C50 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F800 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C60 /* node.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F810 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C70 /* number.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F820 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C80 /* path.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F830 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C90 /* regex.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F840 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CA0 /* string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F850 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CB0 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F860 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CC0 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F870 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CD0 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F880 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CE0 /* custom_tag.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F890 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CF0 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8A0 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D00 /* percent.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8B0 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D10 /* range.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8C0 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D20 /* semantic_version.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8D0 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D30 /* annotations.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8E0 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D40 /* checked.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F8F0 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D50 /* eval.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F900 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D60 /* explain.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F910 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D70 /* syntax.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F920 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D80 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F930 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D90 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F940 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DA0 /* any.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F950 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DB0 /* descriptor.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F960 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DC0 /* duration.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F970 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DD0 /* empty.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F980 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DE0 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F990 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DF0 /* timestamp.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9A0 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E00 /* wrappers.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9B0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E10 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9C0 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E20 /* migrate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9D0 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E30 /* security.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9E0 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E40 /* sensitive.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003F9F0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E50 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA00 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E60 /* versioning.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA10 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E70 /* validate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA20 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E80 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA30 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E90 /* authority.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA40 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EA0 /* collection_entry.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA50 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EB0 /* context_params.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA60 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EC0 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA70 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018ED0 /* resource_locator.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA80 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EE0 /* resource_name.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FA90 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EF0 /* typed_struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAA0 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F00 /* certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAB0 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F10 /* certificate_provider_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAC0 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F20 /* certificate_provider_store.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAD0 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F30 /* file_watcher_certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAE0 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F40 /* upb_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FAF0 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F50 /* xds_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB00 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F60 /* xds_bootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB10 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F70 /* xds_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB20 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F80 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB30 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F90 /* xds_channel_creds.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB40 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FA0 /* xds_channel_stack_modifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB50 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FB0 /* xds_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB60 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FC0 /* xds_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB70 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FD0 /* xds_cluster.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB80 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FE0 /* xds_common_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FB90 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FF0 /* xds_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBA0 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019000 /* xds_http_fault_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBB0 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019010 /* xds_http_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBC0 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019020 /* xds_http_rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBD0 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019030 /* xds_listener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBE0 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019040 /* xds_resource_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FBF0 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019050 /* xds_resource_type_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC00 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019060 /* xds_route_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC10 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019070 /* xds_routing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC20 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019080 /* parse_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC30 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019090 /* sockaddr_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC40 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190A0 /* avl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC50 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190B0 /* backoff.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC60 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190C0 /* call_tracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC70 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190D0 /* channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC80 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190E0 /* channel_args_preconditioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FC90 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190F0 /* channel_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCA0 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019100 /* channel_stack_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCB0 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019110 /* channel_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCC0 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019120 /* channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCD0 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019130 /* channelz_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCE0 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019140 /* connected_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FCF0 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019150 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD00 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019160 /* handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD10 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019170 /* handshaker_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD20 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019180 /* handshaker_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD30 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019190 /* status_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD40 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191A0 /* compression_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD50 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191B0 /* message_compress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD60 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191C0 /* core_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD70 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191D0 /* stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD80 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191E0 /* stats_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FD90 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191F0 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDA0 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019200 /* channel_args_endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDB0 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019210 /* event_engine_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDC0 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019220 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDD0 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019230 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDE0 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019240 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FDF0 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019250 /* murmur_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE00 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019260 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE10 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019270 /* string.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE20 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019280 /* string_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE30 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019290 /* time_precise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE40 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192A0 /* tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE50 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192B0 /* tmpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE60 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192C0 /* useful.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE70 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192D0 /* atomic_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE80 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192E0 /* bitset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FE90 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192F0 /* chunked_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FEA0 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019300 /* construct_destruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FEB0 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019310 /* cpp_impl_of.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FEC0 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019320 /* debug_location.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FED0 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019330 /* dual_ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FEE0 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019340 /* examine_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FEF0 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019350 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF00 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019360 /* global_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF10 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019370 /* global_config_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF20 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019380 /* global_config_env.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF30 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019390 /* global_config_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF40 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193A0 /* host_port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF50 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193B0 /* manual_constructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF60 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193C0 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF70 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193D0 /* mpscq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF80 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193E0 /* orphanable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FF90 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193F0 /* ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFA0 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019400 /* ref_counted_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFB0 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019410 /* stat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFC0 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019420 /* status_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFD0 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019430 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFE0 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019440 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E0003FFF0 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019450 /* thd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040000 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019460 /* time_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040010 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019470 /* format_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040020 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019480 /* httpcli.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040030 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019490 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040040 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194A0 /* block_annotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040050 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194B0 /* buffer_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040060 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194C0 /* call_combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040070 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194D0 /* cfstream_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040080 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194E0 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040090 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194F0 /* combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400A0 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019500 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400B0 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019510 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400C0 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019520 /* endpoint_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400D0 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019530 /* endpoint_pair.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400E0 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019540 /* error.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000400F0 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019550 /* error_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040100 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019560 /* error_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040110 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019570 /* ev_apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040120 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019580 /* ev_epoll1_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040130 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019590 /* ev_epollex_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040140 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195A0 /* ev_poll_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040150 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195B0 /* ev_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040160 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195C0 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040170 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195D0 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040180 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195E0 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040190 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195F0 /* promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401A0 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019600 /* resolved_address_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401B0 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019610 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401C0 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019620 /* exec_ctx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401D0 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019630 /* executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401E0 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019640 /* mpmcqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000401F0 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019650 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040200 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019660 /* gethostname.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040210 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019670 /* grpc_if_nametoindex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040220 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019680 /* internal_errqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040230 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019690 /* iocp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040240 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196A0 /* iomgr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040250 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196B0 /* iomgr_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040260 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196C0 /* iomgr_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040270 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196D0 /* is_epollexclusive_available.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040280 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196E0 /* load_file.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040290 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196F0 /* lockfree_event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402A0 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019700 /* nameser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402B0 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019710 /* polling_entity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402C0 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019720 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402D0 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019730 /* pollset_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402E0 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019740 /* pollset_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000402F0 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019750 /* pollset_set_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040300 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019760 /* pollset_set_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040310 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019770 /* pollset_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040320 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019780 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040330 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019790 /* python_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040340 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197A0 /* resolve_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040350 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197B0 /* resolve_address_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040360 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197C0 /* resolve_address_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040370 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197D0 /* resolve_address_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040380 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197E0 /* resolve_address_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040390 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197F0 /* resolved_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403A0 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019800 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403B0 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019810 /* sockaddr_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403C0 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019820 /* sockaddr_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403D0 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019830 /* socket_factory_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403E0 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019840 /* socket_mutator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000403F0 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019850 /* socket_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040400 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019860 /* socket_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040410 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019870 /* socket_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040420 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019880 /* sys_epoll_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040430 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019890 /* tcp_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040440 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198A0 /* tcp_client_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040450 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198B0 /* tcp_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040460 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198C0 /* tcp_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040470 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198D0 /* tcp_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040480 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198E0 /* tcp_server_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040490 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198F0 /* tcp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404A0 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019900 /* time_averaged_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404B0 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019910 /* timer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404C0 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019920 /* timer_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404D0 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019930 /* timer_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404E0 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019940 /* timer_heap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000404F0 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019950 /* timer_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040500 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019960 /* unix_sockets_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040510 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019970 /* wakeup_fd_pipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040520 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019980 /* wakeup_fd_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040530 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019990 /* work_serializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040540 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199A0 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040550 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199B0 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040560 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199C0 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040570 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199D0 /* timers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040580 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199E0 /* activity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040590 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199F0 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405A0 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A00 /* basic_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405B0 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A10 /* promise_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405C0 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A20 /* promise_like.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405D0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A30 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405E0 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A40 /* switch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000405F0 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A50 /* exec_ctx_wakeup_scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040600 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A60 /* loop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040610 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A70 /* map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040620 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A80 /* poll.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040630 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A90 /* race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040640 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AA0 /* seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040650 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AB0 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040660 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AC0 /* resolver_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040670 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AD0 /* resolver_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040680 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AE0 /* server_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040690 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AF0 /* api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406A0 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B00 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406B0 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B10 /* memory_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406C0 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B20 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406D0 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B30 /* thread_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406E0 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B40 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000406F0 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B50 /* authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040700 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B60 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040710 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B70 /* evaluate_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040720 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B80 /* grpc_authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040730 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B90 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040740 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BA0 /* rbac_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040750 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BB0 /* sdk_server_authz_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040760 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BC0 /* security_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040770 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BD0 /* alts_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040780 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BE0 /* check_gcp_environment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040790 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BF0 /* grpc_alts_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407A0 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C00 /* composite_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407B0 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C10 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407C0 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C20 /* aws_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407D0 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C30 /* aws_request_signer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407E0 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C40 /* external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000407F0 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C50 /* file_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040800 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C60 /* url_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040810 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C70 /* fake_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040820 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C80 /* google_default_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040830 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C90 /* iam_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040840 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CA0 /* json_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040850 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CB0 /* jwt_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040860 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CC0 /* jwt_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040870 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CD0 /* local_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040880 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CE0 /* oauth2_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040890 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CF0 /* plugin_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408A0 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D00 /* ssl_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408B0 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D10 /* grpc_tls_certificate_distributor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408C0 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D20 /* grpc_tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408D0 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D30 /* grpc_tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408E0 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D40 /* grpc_tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000408F0 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D50 /* tls_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040900 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D60 /* tls_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040910 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D70 /* xds_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040920 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D80 /* alts_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040930 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D90 /* fake_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040940 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DA0 /* insecure_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040950 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DB0 /* load_system_roots.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040960 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DC0 /* load_system_roots_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040970 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DD0 /* local_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040980 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DE0 /* security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040990 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DF0 /* ssl_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409A0 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E00 /* ssl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409B0 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E10 /* ssl_utils_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409C0 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E20 /* tls_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409D0 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E30 /* auth_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409E0 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E40 /* secure_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000409F0 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E50 /* security_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A00 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E60 /* tsi_error.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A10 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E70 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A20 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E80 /* service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A30 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E90 /* service_config_call_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A40 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EA0 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A50 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EB0 /* b64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A60 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EC0 /* percent_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A70 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019ED0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A80 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EE0 /* slice_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040A90 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EF0 /* slice_refcount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AA0 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F00 /* slice_refcount_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AB0 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F10 /* slice_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AC0 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F20 /* slice_string_helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AD0 /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F30 /* slice_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AE0 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F40 /* api_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040AF0 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F50 /* builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B00 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F60 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B10 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F70 /* call_test_only.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B20 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F80 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B30 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F90 /* channel_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B40 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FA0 /* channel_stack_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B50 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FB0 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B60 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FC0 /* completion_queue_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B70 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FD0 /* event_string.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B80 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FE0 /* init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040B90 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FF0 /* lame_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BA0 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A000 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BB0 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A010 /* validate_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BC0 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A020 /* bdp_estimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BD0 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A030 /* byte_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BE0 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A040 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040BF0 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A050 /* error_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C00 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A060 /* http2_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C10 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A070 /* metadata_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C20 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A080 /* parsed_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C30 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A090 /* pid_controller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C40 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0A0 /* status_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C50 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0B0 /* timeout_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C60 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0C0 /* transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C70 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0D0 /* transport_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C80 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0E0 /* uri_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040C90 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0F0 /* gsec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CA0 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A100 /* alts_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CB0 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A110 /* alts_crypter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CC0 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A120 /* alts_frame_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CD0 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A130 /* alts_record_protocol_crypter_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CE0 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A140 /* frame_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040CF0 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A150 /* alts_handshaker_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D00 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A160 /* alts_shared_resource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D10 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A170 /* alts_tsi_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D20 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A180 /* alts_tsi_handshaker_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D30 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A190 /* alts_tsi_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D40 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1A0 /* transport_security_common_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D50 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1B0 /* alts_grpc_integrity_only_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D60 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1C0 /* alts_grpc_privacy_integrity_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D70 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1D0 /* alts_grpc_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D80 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1E0 /* alts_grpc_record_protocol_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040D90 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1F0 /* alts_iovec_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DA0 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A200 /* alts_zero_copy_grpc_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DB0 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A210 /* fake_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DC0 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A220 /* local_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DD0 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A230 /* ssl_session.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DE0 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A240 /* ssl_session_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040DF0 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A250 /* ssl_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E00 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A260 /* ssl_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E10 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A270 /* transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E20 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A280 /* transport_security_grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E30 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A290 /* transport_security_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E40 /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A300 /* create_channel_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E50 /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A350 /* secure_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E60 /* channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3C0 /* channel_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E70 /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A420 /* secure_auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E80 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4E0 /* dynamic_thread_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040E90 /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A500 /* external_connection_acceptor_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040EA0 /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A520 /* default_health_check_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040EB0 /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A570 /* secure_server_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040EC0 /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5E0 /* thread_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040ED0 /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A610 /* thread_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040EE0 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A660 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040EF0 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A670 /* decode_fast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F00 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A680 /* decode_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F10 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A690 /* def.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F20 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6A0 /* def.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F30 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6B0 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F40 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6C0 /* msg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F50 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6D0 /* msg_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F60 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6E0 /* port_def.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F70 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6F0 /* port_undef.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F80 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A700 /* reflection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040F90 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A710 /* reflection.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FA0 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A720 /* table_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FB0 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A730 /* text_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FC0 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A740 /* upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FD0 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A750 /* upb.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FE0 /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A760 /* upb_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00040FF0 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A770 /* xxhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041000 /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A790 /* alarm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041010 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7A0 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041020 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7B0 /* client_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041030 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7C0 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041040 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7D0 /* create_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041050 /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7E0 /* create_channel_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041060 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7F0 /* create_channel_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041070 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A800 /* health_check_service_server_builder_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041080 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A810 /* async_generic_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041090 /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A820 /* generic_stub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410A0 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A830 /* grpcpp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410B0 /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A840 /* health_check_service_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410C0 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A850 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410D0 /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A860 /* channel_argument_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410E0 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A870 /* client_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000410F0 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A880 /* async_generic_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041100 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A890 /* async_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041110 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8A0 /* async_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041120 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8B0 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041130 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8C0 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041140 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8D0 /* call_hook.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041150 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8E0 /* call_op_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041160 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8F0 /* call_op_set_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041170 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A900 /* callback_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041180 /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A910 /* channel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041190 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A920 /* client_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411A0 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A930 /* client_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411B0 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A940 /* client_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411C0 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A950 /* client_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411D0 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A960 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411E0 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A970 /* completion_queue_tag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000411F0 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A980 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041200 /* core_codegen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A990 /* core_codegen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041210 /* core_codegen_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9A0 /* core_codegen_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041220 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9B0 /* create_auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041230 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9C0 /* delegating_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041240 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9D0 /* grpc_library.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041250 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9E0 /* intercepted_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041260 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9F0 /* interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041270 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA00 /* interceptor_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041280 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA10 /* message_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041290 /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA20 /* metadata_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412A0 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA30 /* method_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412B0 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA40 /* method_handler_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412C0 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA50 /* rpc_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412D0 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA60 /* rpc_service_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412E0 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA70 /* auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000412F0 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA80 /* serialization_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041300 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA90 /* server_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041310 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAA0 /* server_callback_handlers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041320 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAB0 /* server_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041330 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAC0 /* server_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041340 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAD0 /* server_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041350 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAE0 /* service_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041360 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAF0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041370 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB00 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041380 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB10 /* status_code_enum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041390 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB20 /* string_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413A0 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB30 /* stub_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413B0 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB40 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413C0 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB50 /* sync_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413D0 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB60 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413E0 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB70 /* grpc_library.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000413F0 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB80 /* method_handler_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041400 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB90 /* rpc_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041410 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABA0 /* rpc_service_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041420 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABB0 /* serialization_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041430 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABC0 /* server_builder_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041440 /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABD0 /* server_builder_plugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041450 /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABE0 /* server_initializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041460 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABF0 /* service_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041470 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC00 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041480 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC10 /* auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041490 /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC20 /* auth_metadata_processor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414A0 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC30 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414B0 /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC40 /* binder_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414C0 /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC50 /* binder_security_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414D0 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC60 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414E0 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC70 /* server_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000414F0 /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC80 /* tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041500 /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC90 /* tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041510 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACA0 /* tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041520 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACB0 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041530 /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACC0 /* server_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041540 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACD0 /* server_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041550 /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACE0 /* server_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041560 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACF0 /* async_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041570 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD00 /* async_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041580 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD10 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041590 /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD20 /* channel_arguments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415A0 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD30 /* client_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415B0 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD40 /* client_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415C0 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD50 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415D0 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD60 /* interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415E0 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD70 /* message_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000415F0 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD80 /* method_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041600 /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD90 /* proto_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041610 /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADA0 /* proto_buffer_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041620 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADB0 /* server_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041630 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADC0 /* server_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041640 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADD0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041650 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADE0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041660 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADF0 /* status_code_enum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041670 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE00 /* string_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041680 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE10 /* stub_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041690 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE20 /* sync_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000416A0 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE30 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000416B0 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE40 /* validate_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000416C0 /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE50 /* xds_server_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00041710 /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00041700 /* gRPC-C++-dummy.m */; }; - 46EB2E000417A0 /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE70 /* grpc_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000417B0 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE80 /* backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000417C0 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEA0 /* backup_poller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000417D0 /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEC0 /* channel_connectivity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000417E0 /* client_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AED0 /* client_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000417F0 /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEF0 /* client_channel_channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041800 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF10 /* client_channel_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041810 /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF30 /* client_channel_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041820 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF40 /* config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041830 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF70 /* dynamic_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041840 /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF90 /* global_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041850 /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFB0 /* health_check_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041860 /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFD0 /* http_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041870 /* http_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFF0 /* http_proxy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041880 /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B010 /* lb_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041890 /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B030 /* address_filtering.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418A0 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B050 /* child_policy_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418B0 /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B070 /* client_load_reporting_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418C0 /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B090 /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418D0 /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0B0 /* grpclb_balancer_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418E0 /* grpclb_channel_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0E0 /* grpclb_channel_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000418F0 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0F0 /* grpclb_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041900 /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B110 /* load_balancer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041910 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B130 /* pick_first.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041920 /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B140 /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041930 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B150 /* ring_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041940 /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B170 /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041950 /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B180 /* round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041960 /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1A0 /* weighted_target.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041970 /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1B0 /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041980 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1E0 /* xds_cluster_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041990 /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1F0 /* xds_cluster_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419A0 /* xds_cluster_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B200 /* xds_cluster_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419B0 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B220 /* lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419C0 /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B240 /* local_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419D0 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B270 /* proxy_mapper_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419E0 /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B290 /* binder_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000419F0 /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2A0 /* dns_resolver_ares.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A00 /* grpc_ares_ev_driver_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2C0 /* grpc_ares_ev_driver_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A10 /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2D0 /* grpc_ares_ev_driver_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A20 /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2E0 /* grpc_ares_ev_driver_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A30 /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2F0 /* grpc_ares_wrapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A40 /* grpc_ares_wrapper_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B310 /* grpc_ares_wrapper_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A50 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B320 /* grpc_ares_wrapper_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A60 /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B330 /* grpc_ares_wrapper_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A70 /* dns_resolver_selection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B340 /* dns_resolver_selection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A80 /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B360 /* dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041A90 /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B370 /* fake_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AA0 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B390 /* google_c2p_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AB0 /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3A0 /* sockaddr_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AC0 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3B0 /* xds_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AD0 /* resolver_result_parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3D0 /* resolver_result_parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AE0 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3F0 /* retry_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041AF0 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B410 /* retry_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B00 /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B430 /* retry_throttle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B10 /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B450 /* service_config_channel_arg_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B20 /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B460 /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B30 /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B490 /* subchannel_pool_interface.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B40 /* client_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4B0 /* client_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B50 /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4C0 /* idle_filter_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B60 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4E0 /* deadline_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B70 /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B500 /* fault_injection_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B80 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B520 /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041B90 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B540 /* http_client_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BA0 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B560 /* client_authority_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BB0 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B580 /* http_filters_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BC0 /* message_compress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B590 /* message_compress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BD0 /* message_decompress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5B0 /* message_decompress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BE0 /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5D0 /* http_server_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041BF0 /* max_age_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5F0 /* max_age_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C00 /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B610 /* message_size_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C10 /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B630 /* rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C20 /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B650 /* rbac_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C30 /* server_config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B670 /* server_config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C40 /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B690 /* server_config_selector_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C50 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6B0 /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C60 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6D0 /* chttp2_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C70 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6F0 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C80 /* channel_create_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B700 /* channel_create_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041C90 /* secure_channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B710 /* secure_channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CA0 /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B720 /* chttp2_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CB0 /* server_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B740 /* server_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CC0 /* server_chttp2_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B750 /* server_chttp2_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CD0 /* server_secure_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B760 /* server_secure_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CE0 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B770 /* bin_decoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041CF0 /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B790 /* bin_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D00 /* chttp2_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7B0 /* chttp2_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D10 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7C0 /* chttp2_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D20 /* context_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7E0 /* context_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D30 /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B800 /* flow_control.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D40 /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B830 /* frame_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D50 /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B850 /* frame_goaway.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D60 /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B870 /* frame_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D70 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B890 /* frame_rst_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D80 /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8B0 /* frame_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041D90 /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8D0 /* frame_window_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DA0 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B900 /* hpack_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DB0 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B920 /* hpack_encoder_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DC0 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B940 /* hpack_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DD0 /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B960 /* hpack_parser_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DE0 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B980 /* http2_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041DF0 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9A0 /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E00 /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9D0 /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E10 /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9E0 /* stream_lists.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E20 /* stream_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9F0 /* stream_map.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E30 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA10 /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E40 /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA30 /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E50 /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA40 /* inproc_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E60 /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA50 /* inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E70 /* config_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA70 /* config_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E80 /* deprecation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA90 /* deprecation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041E90 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAB0 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041EA0 /* accesslog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAD0 /* accesslog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041EB0 /* bootstrap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAF0 /* bootstrap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041EC0 /* circuit_breaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB10 /* circuit_breaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041ED0 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB30 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041EE0 /* filter.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB50 /* filter.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041EF0 /* outlier_detection.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB70 /* outlier_detection.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F00 /* address.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB90 /* address.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F10 /* backoff.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBB0 /* backoff.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F20 /* base.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBD0 /* base.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F30 /* config_source.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBF0 /* config_source.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F40 /* event_service_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC10 /* event_service_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F50 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC30 /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F60 /* grpc_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC50 /* grpc_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F70 /* health_check.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC70 /* health_check.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F80 /* http_uri.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC90 /* http_uri.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041F90 /* protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCB0 /* protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FA0 /* proxy_protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCD0 /* proxy_protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FB0 /* resolver.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCF0 /* resolver.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FC0 /* socket_option.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD10 /* socket_option.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FD0 /* substitution_format_string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD30 /* substitution_format_string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FE0 /* udp_socket_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD50 /* udp_socket_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00041FF0 /* endpoint.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD70 /* endpoint.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042000 /* endpoint_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD90 /* endpoint_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042010 /* load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDB0 /* load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042020 /* api_listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDD0 /* api_listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042030 /* listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDF0 /* listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042040 /* listener_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE10 /* listener_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042050 /* quic_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE30 /* quic_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042060 /* udp_listener_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE50 /* udp_listener_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042070 /* stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE70 /* stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042080 /* overload.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE90 /* overload.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042090 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEB0 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420A0 /* route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BED0 /* route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420B0 /* route_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEF0 /* route_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420C0 /* scoped_route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF10 /* scoped_route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420D0 /* http_tracer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF30 /* http_tracer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420E0 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF50 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000420F0 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF70 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042100 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF90 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042110 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFB0 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042120 /* router.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFD0 /* router.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042130 /* http_connection_manager.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFF0 /* http_connection_manager.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042140 /* cert.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C010 /* cert.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042150 /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C030 /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042160 /* secret.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C050 /* secret.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042170 /* tls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C070 /* tls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042180 /* cds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C090 /* cds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042190 /* ads.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0B0 /* ads.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421A0 /* discovery.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0D0 /* discovery.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421B0 /* eds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0F0 /* eds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421C0 /* lds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C110 /* lds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421D0 /* lrs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C130 /* lrs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421E0 /* rds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C150 /* rds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000421F0 /* srds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C170 /* srds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042200 /* csds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C190 /* csds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042210 /* path_transformation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1B0 /* path_transformation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042220 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1D0 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042230 /* node.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1F0 /* node.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042240 /* number.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C210 /* number.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042250 /* path.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C230 /* path.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042260 /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C250 /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042270 /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C270 /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042280 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C290 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042290 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2B0 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422A0 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2D0 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422B0 /* custom_tag.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2F0 /* custom_tag.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422C0 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C310 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422D0 /* percent.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C330 /* percent.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422E0 /* range.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C350 /* range.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000422F0 /* semantic_version.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C370 /* semantic_version.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042300 /* annotations.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C390 /* annotations.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042310 /* checked.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3B0 /* checked.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042320 /* eval.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3D0 /* eval.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042330 /* explain.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3F0 /* explain.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042340 /* syntax.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C410 /* syntax.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042350 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C430 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042360 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C450 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042370 /* any.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C470 /* any.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042380 /* descriptor.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C490 /* descriptor.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042390 /* duration.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4B0 /* duration.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423A0 /* empty.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4D0 /* empty.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423B0 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4F0 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423C0 /* timestamp.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C510 /* timestamp.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423D0 /* wrappers.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C530 /* wrappers.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423E0 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C550 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000423F0 /* altscontext.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C570 /* altscontext.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042400 /* handshaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C590 /* handshaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042410 /* transport_security_common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5B0 /* transport_security_common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042420 /* health.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5D0 /* health.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042430 /* load_balancer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5F0 /* load_balancer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042440 /* rls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C610 /* rls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042450 /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C630 /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042460 /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C650 /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042470 /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C670 /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042480 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C690 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042490 /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6B0 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424A0 /* validate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6D0 /* validate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424B0 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6F0 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424C0 /* authority.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C710 /* authority.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424D0 /* collection_entry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C730 /* collection_entry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424E0 /* context_params.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C750 /* context_params.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000424F0 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C770 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042500 /* resource_locator.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C790 /* resource_locator.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042510 /* resource_name.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7B0 /* resource_name.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042520 /* orca_load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7D0 /* orca_load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042530 /* typed_struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7F0 /* typed_struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042540 /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C810 /* config_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042550 /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C830 /* deprecation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042560 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C850 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042570 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C870 /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042580 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C890 /* bootstrap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042590 /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8B0 /* circuit_breaker.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425A0 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8D0 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425B0 /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8F0 /* filter.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425C0 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C910 /* outlier_detection.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425D0 /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C930 /* address.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425E0 /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C950 /* backoff.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000425F0 /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C970 /* base.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042600 /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C990 /* config_source.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042610 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9B0 /* event_service_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042620 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9D0 /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042630 /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9F0 /* grpc_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042640 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA10 /* health_check.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042650 /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA30 /* http_uri.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042660 /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA50 /* protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042670 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA70 /* proxy_protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042680 /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA90 /* resolver.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042690 /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAB0 /* socket_option.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426A0 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAD0 /* substitution_format_string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426B0 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAF0 /* udp_socket_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426C0 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB10 /* endpoint.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426D0 /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB30 /* endpoint_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426E0 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB50 /* load_report.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000426F0 /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB70 /* api_listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042700 /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB90 /* listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042710 /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBB0 /* listener_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042720 /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBD0 /* quic_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042730 /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBF0 /* udp_listener_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042740 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC10 /* stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042750 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC30 /* overload.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042760 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC50 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042770 /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC70 /* route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042780 /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC90 /* route_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042790 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCB0 /* scoped_route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427A0 /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCD0 /* http_tracer.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427B0 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCF0 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427C0 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD10 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427D0 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD30 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427E0 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD50 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000427F0 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD70 /* router.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042800 /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD90 /* http_connection_manager.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042810 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDB0 /* cert.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042820 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDD0 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042830 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDF0 /* secret.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042840 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE10 /* tls.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042850 /* cds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE30 /* cds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042860 /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE50 /* ads.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042870 /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE70 /* discovery.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042880 /* eds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE90 /* eds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042890 /* lds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEB0 /* lds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428A0 /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CED0 /* lrs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428B0 /* rds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEF0 /* rds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428C0 /* srds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF10 /* srds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428D0 /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF30 /* csds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428E0 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF50 /* path_transformation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000428F0 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF70 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042900 /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF90 /* node.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042910 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFB0 /* number.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042920 /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFD0 /* path.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042930 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFF0 /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042940 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D010 /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042950 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D030 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042960 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D050 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042970 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D070 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042980 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D090 /* custom_tag.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042990 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0B0 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429A0 /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0D0 /* percent.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429B0 /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0F0 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429C0 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D110 /* semantic_version.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429D0 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D130 /* annotations.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429E0 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D150 /* checked.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000429F0 /* eval.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D170 /* eval.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A00 /* explain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D190 /* explain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A10 /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1B0 /* syntax.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A20 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1D0 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A30 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1F0 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A40 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D210 /* any.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A50 /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D230 /* descriptor.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A60 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D250 /* duration.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A70 /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D270 /* empty.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A80 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D290 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042A90 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2B0 /* timestamp.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AA0 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2D0 /* wrappers.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AB0 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2F0 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AC0 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D310 /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AD0 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D330 /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AE0 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D350 /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042AF0 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D370 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B00 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D390 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B10 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3B0 /* validate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B20 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3D0 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B30 /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3F0 /* authority.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B40 /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D410 /* collection_entry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B50 /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D430 /* context_params.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B60 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D450 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B70 /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D470 /* resource_locator.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B80 /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D490 /* resource_name.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042B90 /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4B0 /* typed_struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BA0 /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4E0 /* certificate_provider_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BB0 /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D500 /* certificate_provider_store.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BC0 /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D520 /* file_watcher_certificate_provider_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BD0 /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D550 /* xds_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BE0 /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D570 /* xds_bootstrap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042BF0 /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D590 /* xds_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C00 /* xds_channel_creds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5C0 /* xds_channel_creds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C10 /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5E0 /* xds_channel_stack_modifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C20 /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D600 /* xds_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C30 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D620 /* xds_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C40 /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D640 /* xds_cluster.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C50 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D660 /* xds_common_types.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C60 /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D680 /* xds_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C70 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6A0 /* xds_http_fault_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C80 /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6C0 /* xds_http_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042C90 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6E0 /* xds_http_rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CA0 /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D700 /* xds_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CB0 /* xds_resource_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D720 /* xds_resource_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CC0 /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D750 /* xds_route_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CD0 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D770 /* xds_routing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CE0 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D790 /* xds_server_config_fetcher.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042CF0 /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7A0 /* parse_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D00 /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7C0 /* sockaddr_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D10 /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7F0 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D20 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D820 /* channel_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D30 /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D840 /* channel_args_preconditioning.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D40 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D860 /* channel_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D50 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D880 /* channel_stack_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D60 /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8A0 /* channel_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D70 /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8C0 /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D80 /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8E0 /* channelz_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042D90 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D900 /* connected_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DA0 /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D930 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DB0 /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D960 /* handshaker_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DC0 /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D980 /* status_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DD0 /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9A0 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DE0 /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9B0 /* compression_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042DF0 /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9D0 /* message_compress.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E00 /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9F0 /* core_configuration.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E10 /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA10 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E20 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA30 /* stats_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E30 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA50 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E40 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA70 /* channel_args_endpoint_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E50 /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA90 /* event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E60 /* event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAA0 /* event_engine_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E70 /* memory_allocator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAC0 /* memory_allocator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E80 /* sockaddr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAD0 /* sockaddr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042E90 /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAF0 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042EA0 /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB10 /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042EB0 /* cpu_iphone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB20 /* cpu_iphone.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042EC0 /* cpu_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB30 /* cpu_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042ED0 /* cpu_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB40 /* cpu_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042EE0 /* cpu_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB50 /* cpu_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042EF0 /* env_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB70 /* env_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F00 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB80 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F10 /* env_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB90 /* env_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F20 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBA0 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F30 /* log_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBB0 /* log_android.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F40 /* log_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBC0 /* log_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F50 /* log_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBD0 /* log_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F60 /* log_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBE0 /* log_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F70 /* murmur_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBF0 /* murmur_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F80 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC20 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042F90 /* string_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC40 /* string_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FA0 /* string_util_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC50 /* string_util_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FB0 /* string_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC60 /* string_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FC0 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC80 /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FD0 /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC90 /* sync_abseil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FE0 /* sync_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCA0 /* sync_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00042FF0 /* sync_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCB0 /* sync_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043000 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCC0 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043010 /* time_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCD0 /* time_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043020 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCE0 /* time_precise.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043030 /* time_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD00 /* time_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043040 /* tmpfile_msys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD30 /* tmpfile_msys.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043050 /* tmpfile_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD40 /* tmpfile_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043060 /* tmpfile_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD50 /* tmpfile_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043070 /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD70 /* wrap_memcpy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043080 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDF0 /* examine_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043090 /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE10 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430A0 /* global_config_env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE50 /* global_config_env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430B0 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE80 /* host_port.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430C0 /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEC0 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430D0 /* stat_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF20 /* stat_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430E0 /* stat_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF30 /* stat_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000430F0 /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF40 /* status_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043100 /* thd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF90 /* thd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043110 /* thd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFA0 /* thd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043120 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFB0 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043130 /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFD0 /* format_request.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043140 /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFF0 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043150 /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E010 /* httpcli_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043160 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E020 /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043170 /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E050 /* buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043180 /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E070 /* call_combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043190 /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E090 /* cfstream_handle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431A0 /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0C0 /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431B0 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0E0 /* dualstack_socket_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431C0 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E100 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431D0 /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E120 /* endpoint_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431E0 /* endpoint_pair_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E150 /* endpoint_pair_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000431F0 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E160 /* endpoint_pair_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043200 /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E170 /* endpoint_pair_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043210 /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E180 /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043220 /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1A0 /* error_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043230 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1D0 /* ev_apple.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043240 /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1F0 /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043250 /* ev_epollex_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E210 /* ev_epollex_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043260 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E230 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043270 /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E250 /* ev_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043280 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E270 /* ev_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043290 /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E280 /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432A0 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2A0 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432B0 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2C0 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432C0 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2D0 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432D0 /* resolved_address_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E300 /* resolved_address_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432E0 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E320 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000432F0 /* tcp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E340 /* tcp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043300 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E350 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043310 /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E360 /* exec_ctx.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043320 /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E380 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043330 /* mpmcqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3A0 /* mpmcqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043340 /* threadpool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3C0 /* threadpool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043350 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3E0 /* fork_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043360 /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3F0 /* fork_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043370 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E410 /* gethostname_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043380 /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E420 /* gethostname_host_name_max.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043390 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E430 /* gethostname_sysconf.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433A0 /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E450 /* grpc_if_nametoindex_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433B0 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E460 /* grpc_if_nametoindex_unsupported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433C0 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E470 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433D0 /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E490 /* iocp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433E0 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4B0 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000433F0 /* iomgr_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4D0 /* iomgr_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043400 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4F0 /* iomgr_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043410 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E510 /* iomgr_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043420 /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E520 /* iomgr_posix_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043430 /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E530 /* iomgr_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043440 /* is_epollexclusive_available.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E540 /* is_epollexclusive_available.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043450 /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E560 /* load_file.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043460 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E580 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043470 /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5B0 /* polling_entity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043480 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5D0 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043490 /* pollset_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5F0 /* pollset_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434A0 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E610 /* pollset_set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434B0 /* pollset_set_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E630 /* pollset_set_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434C0 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E650 /* pollset_set_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434D0 /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E670 /* pollset_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434E0 /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6B0 /* resolve_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000434F0 /* resolve_address_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6D0 /* resolve_address_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043500 /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E700 /* resolve_address_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043510 /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E720 /* resolve_address_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043520 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E780 /* socket_factory_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043530 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7A0 /* socket_mutator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043540 /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7D0 /* socket_utils_common_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043550 /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7E0 /* socket_utils_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043560 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7F0 /* socket_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043570 /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E810 /* socket_utils_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043580 /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E820 /* socket_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043590 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E850 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435A0 /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E870 /* tcp_client_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435B0 /* tcp_client_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E880 /* tcp_client_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435C0 /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E890 /* tcp_client_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435D0 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8B0 /* tcp_client_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435E0 /* tcp_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8C0 /* tcp_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000435F0 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8E0 /* tcp_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043600 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E900 /* tcp_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043610 /* tcp_server_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E920 /* tcp_server_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043620 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E930 /* tcp_server_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043630 /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E950 /* tcp_server_utils_posix_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043640 /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E960 /* tcp_server_utils_posix_ifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043650 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E970 /* tcp_server_utils_posix_noifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043660 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E980 /* tcp_server_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043670 /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E990 /* tcp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043680 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9B0 /* time_averaged_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043690 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9D0 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436A0 /* timer_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9F0 /* timer_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436B0 /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA10 /* timer_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436C0 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA30 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436D0 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA50 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436E0 /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA70 /* unix_sockets_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000436F0 /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA90 /* unix_sockets_posix_noop.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043700 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAA0 /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043710 /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAB0 /* wakeup_fd_nospecial.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043720 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAC0 /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043730 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAE0 /* wakeup_fd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043740 /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB00 /* work_serializer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043750 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB30 /* json_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043760 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB40 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043770 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB60 /* json_writer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043780 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB70 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043790 /* basic_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB90 /* basic_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437A0 /* stap_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBA0 /* stap_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437B0 /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBC0 /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437C0 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECA0 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437D0 /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECD0 /* resolver_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437E0 /* server_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECF0 /* server_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000437F0 /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED10 /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043800 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED30 /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043810 /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED50 /* memory_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043820 /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED70 /* resource_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043830 /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED90 /* thread_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043840 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDB0 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043850 /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDF0 /* authorization_policy_provider_vtable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043860 /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE00 /* evaluate_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043870 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE20 /* grpc_authorization_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043880 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE40 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043890 /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE60 /* rbac_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438A0 /* sdk_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE80 /* sdk_server_authz_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438B0 /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEA0 /* security_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438C0 /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEC0 /* alts_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438D0 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEE0 /* check_gcp_environment.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438E0 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF00 /* check_gcp_environment_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000438F0 /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF10 /* check_gcp_environment_no_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043900 /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF20 /* check_gcp_environment_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043910 /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF30 /* grpc_alts_credentials_client_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043920 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF40 /* grpc_alts_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043930 /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF60 /* grpc_alts_credentials_server_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043940 /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF70 /* composite_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043950 /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF90 /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043960 /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFB0 /* aws_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043970 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFD0 /* aws_request_signer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043980 /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFF0 /* external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043990 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F010 /* file_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439A0 /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F030 /* url_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439B0 /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F050 /* fake_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439C0 /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F070 /* credentials_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439D0 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F080 /* google_default_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439E0 /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0A0 /* iam_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000439F0 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0C0 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A00 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0D0 /* json_token.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A10 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0F0 /* jwt_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A20 /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F110 /* jwt_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A30 /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F130 /* local_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A40 /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F150 /* oauth2_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A50 /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F170 /* plugin_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A60 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F190 /* ssl_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A70 /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1B0 /* grpc_tls_certificate_distributor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A80 /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1D0 /* grpc_tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043A90 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1F0 /* grpc_tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AA0 /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F210 /* grpc_tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AB0 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F230 /* tls_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AC0 /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F250 /* tls_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AD0 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F270 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AE0 /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F290 /* alts_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043AF0 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2B0 /* fake_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B00 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2D0 /* insecure_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B10 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F300 /* load_system_roots_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B20 /* load_system_roots_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F310 /* load_system_roots_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B30 /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F330 /* local_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B40 /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F350 /* security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B50 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F370 /* ssl_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B60 /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F390 /* ssl_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B70 /* ssl_utils_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3B0 /* ssl_utils_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B80 /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3D0 /* tls_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043B90 /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F400 /* client_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BA0 /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F410 /* secure_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BB0 /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F430 /* security_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BC0 /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F450 /* server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BD0 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F460 /* tsi_error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BE0 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F480 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043BF0 /* service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4A0 /* service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C00 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4D0 /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C10 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4F0 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C20 /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F510 /* percent_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C30 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F530 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C40 /* slice_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F550 /* slice_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C50 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F560 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C60 /* slice_intern.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F570 /* slice_intern.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C70 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F590 /* slice_refcount.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C80 /* slice_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5C0 /* slice_split.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043C90 /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5E0 /* slice_string_helpers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CA0 /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F610 /* api_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CB0 /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F630 /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CC0 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F650 /* byte_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CD0 /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F660 /* byte_buffer_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CE0 /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F670 /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043CF0 /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F690 /* call_details.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D00 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6A0 /* call_log_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D10 /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6C0 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D20 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6E0 /* channel_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D30 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F700 /* channel_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D40 /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F710 /* channel_stack_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D50 /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F730 /* completion_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D60 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F750 /* completion_queue_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D70 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F770 /* event_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D80 /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F790 /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043D90 /* init_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7B0 /* init_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DA0 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7C0 /* lame_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DB0 /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7E0 /* metadata_array.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DC0 /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7F0 /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DD0 /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F810 /* validate_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DE0 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F830 /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043DF0 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F840 /* bdp_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E00 /* byte_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F860 /* byte_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E10 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F880 /* connectivity_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E20 /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8A0 /* error_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E30 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8E0 /* parsed_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E40 /* pid_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F900 /* pid_controller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E50 /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F920 /* status_conversion.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E60 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F940 /* timeout_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E70 /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F960 /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E80 /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F990 /* transport_op_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043E90 /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9A0 /* uri_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043EA0 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9C0 /* grpc_plugin_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043EB0 /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9D0 /* aes_gcm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043EC0 /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9E0 /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043ED0 /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA00 /* alts_counter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043EE0 /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA20 /* alts_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043EF0 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA40 /* alts_frame_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F00 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA60 /* alts_record_protocol_crypter_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F10 /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA80 /* alts_seal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F20 /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA90 /* alts_unseal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F30 /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAA0 /* frame_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F40 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAC0 /* alts_handshaker_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F50 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAE0 /* alts_shared_resource.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F60 /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB00 /* alts_tsi_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F70 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB30 /* alts_tsi_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F80 /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB50 /* transport_security_common_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043F90 /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB70 /* alts_grpc_integrity_only_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FA0 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB90 /* alts_grpc_privacy_integrity_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FB0 /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBC0 /* alts_grpc_record_protocol_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FC0 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBE0 /* alts_iovec_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FD0 /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC00 /* alts_zero_copy_grpc_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FE0 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC20 /* fake_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00043FF0 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC40 /* local_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044000 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC70 /* ssl_session_boringssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044010 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC80 /* ssl_session_cache.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044020 /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCA0 /* ssl_session_openssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044030 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCB0 /* ssl_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044040 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCE0 /* transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044050 /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD00 /* transport_security_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044060 /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD40 /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044070 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD50 /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044080 /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD60 /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044090 /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD70 /* filtered_re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440A0 /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD90 /* mimics_pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440B0 /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDA0 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440C0 /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDB0 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440D0 /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDC0 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440E0 /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDD0 /* perl_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000440F0 /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDF0 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044100 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE10 /* prefilter_tree.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044110 /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE30 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044120 /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE50 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044130 /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE70 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044140 /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE90 /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044150 /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEB0 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044160 /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEE0 /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044170 /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF00 /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044180 /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF10 /* unicode_casefold.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044190 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF30 /* unicode_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441A0 /* pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFC0 /* pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441B0 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFE0 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441C0 /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFF0 /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441D0 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020040 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441E0 /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020060 /* decode_fast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E000441F0 /* def.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020090 /* def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044200 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000200C0 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044210 /* msg.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000200E0 /* msg.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044220 /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020130 /* reflection.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044230 /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020160 /* table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044240 /* text_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020180 /* text_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044250 /* upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000201A0 /* upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46EB2E00044260 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE90 /* backend_metric.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044270 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEB0 /* backup_poller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044280 /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEE0 /* client_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044290 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF00 /* client_channel_channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442A0 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF20 /* client_channel_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442B0 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF50 /* config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442C0 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF60 /* connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442D0 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF80 /* dynamic_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442E0 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFA0 /* global_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000442F0 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFC0 /* health_check_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044300 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFE0 /* http_connect_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044310 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B000 /* http_proxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044320 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B020 /* lb_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044330 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B040 /* address_filtering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044340 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B060 /* child_policy_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044350 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B080 /* client_load_reporting_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044360 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0A0 /* grpclb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044370 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0C0 /* grpclb_balancer_addresses.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044380 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0D0 /* grpclb_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044390 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B100 /* grpclb_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443A0 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B120 /* load_balancer_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443B0 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B160 /* ring_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443C0 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B190 /* subchannel_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443D0 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1C0 /* xds.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443E0 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1D0 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000443F0 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B210 /* lb_policy_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044400 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B230 /* lb_policy_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044410 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B250 /* local_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044420 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B260 /* proxy_mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044430 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B280 /* proxy_mapper_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044440 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2B0 /* grpc_ares_ev_driver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044450 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B300 /* grpc_ares_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044460 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B350 /* dns_resolver_selection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044470 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B380 /* fake_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044480 /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3C0 /* xds_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044490 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3E0 /* resolver_result_parsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444A0 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B400 /* retry_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444B0 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B420 /* retry_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444C0 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B440 /* retry_throttle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444D0 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B470 /* subchannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444E0 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B480 /* subchannel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000444F0 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4A0 /* subchannel_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044500 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4D0 /* idle_filter_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044510 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4F0 /* deadline_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044520 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B510 /* fault_injection_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044530 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B530 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044540 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B550 /* http_client_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044550 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B570 /* client_authority_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044560 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5A0 /* message_compress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044570 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5C0 /* message_decompress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044580 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5E0 /* http_server_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044590 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B600 /* max_age_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445A0 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B620 /* message_size_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445B0 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B640 /* rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445C0 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B660 /* rbac_service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445D0 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B680 /* server_config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445E0 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6A0 /* server_config_selector_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000445F0 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6C0 /* alpn.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044600 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6E0 /* chttp2_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044610 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B730 /* chttp2_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044620 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B780 /* bin_decoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044630 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7A0 /* bin_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044640 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7D0 /* chttp2_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044650 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7F0 /* context_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044660 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B810 /* flow_control.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044670 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B820 /* frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044680 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B840 /* frame_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044690 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B860 /* frame_goaway.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446A0 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B880 /* frame_ping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446B0 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8A0 /* frame_rst_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446C0 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8C0 /* frame_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446D0 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8E0 /* frame_window_update.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446E0 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8F0 /* hpack_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000446F0 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B910 /* hpack_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044700 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B930 /* hpack_encoder_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044710 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B950 /* hpack_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044720 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B970 /* hpack_parser_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044730 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B990 /* http2_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044740 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9B0 /* huffsyms.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044750 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9C0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044760 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA00 /* stream_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044770 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA20 /* varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044780 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA60 /* inproc_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044790 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA80 /* config_dump.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447A0 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAA0 /* deprecation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447B0 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAC0 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447C0 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAE0 /* accesslog.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447D0 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB00 /* bootstrap.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447E0 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB20 /* circuit_breaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000447F0 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB40 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044800 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB60 /* filter.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044810 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB80 /* outlier_detection.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044820 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBA0 /* address.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044830 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBC0 /* backoff.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044840 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBE0 /* base.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044850 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC00 /* config_source.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044860 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC20 /* event_service_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044870 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC40 /* extension.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044880 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC60 /* grpc_service.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044890 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC80 /* health_check.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448A0 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCA0 /* http_uri.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448B0 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCC0 /* protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448C0 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCE0 /* proxy_protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448D0 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD00 /* resolver.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448E0 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD20 /* socket_option.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000448F0 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD40 /* substitution_format_string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044900 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD60 /* udp_socket_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044910 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD80 /* endpoint.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044920 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDA0 /* endpoint_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044930 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDC0 /* load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044940 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDE0 /* api_listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044950 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE00 /* listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044960 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE20 /* listener_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044970 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE40 /* quic_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044980 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE60 /* udp_listener_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044990 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE80 /* stats.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449A0 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEA0 /* overload.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449B0 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEC0 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449C0 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEE0 /* route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449D0 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF00 /* route_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449E0 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF20 /* scoped_route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000449F0 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF40 /* http_tracer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A00 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF60 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A10 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF80 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A20 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFA0 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A30 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFC0 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A40 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFE0 /* router.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A50 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C000 /* http_connection_manager.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A60 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C020 /* cert.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A70 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C040 /* common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A80 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C060 /* secret.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044A90 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C080 /* tls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AA0 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0A0 /* cds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AB0 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0C0 /* ads.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AC0 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0E0 /* discovery.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AD0 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C100 /* eds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AE0 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C120 /* lds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044AF0 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C140 /* lrs.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B00 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C160 /* rds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B10 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C180 /* srds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B20 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1A0 /* csds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B30 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1C0 /* path_transformation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B40 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1E0 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B50 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C200 /* node.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B60 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C220 /* number.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B70 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C240 /* path.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B80 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C260 /* regex.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044B90 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C280 /* string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BA0 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2A0 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BB0 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2C0 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BC0 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2E0 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BD0 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C300 /* custom_tag.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BE0 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C320 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044BF0 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C340 /* percent.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C00 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C360 /* range.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C10 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C380 /* semantic_version.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C20 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3A0 /* annotations.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C30 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3C0 /* checked.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C40 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3E0 /* eval.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C50 /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C400 /* explain.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C60 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C420 /* syntax.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C70 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C440 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C80 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C460 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044C90 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C480 /* any.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CA0 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4A0 /* descriptor.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CB0 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4C0 /* duration.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CC0 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4E0 /* empty.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CD0 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C500 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CE0 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C520 /* timestamp.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044CF0 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C540 /* wrappers.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D00 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C560 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D10 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C580 /* altscontext.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D20 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5A0 /* handshaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D30 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5C0 /* transport_security_common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D40 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5E0 /* health.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D50 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C600 /* load_balancer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D60 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C620 /* rls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D70 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C640 /* migrate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D80 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C660 /* security.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044D90 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C680 /* sensitive.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DA0 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6A0 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DB0 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6C0 /* versioning.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DC0 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6E0 /* validate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DD0 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C700 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DE0 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C720 /* authority.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044DF0 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C740 /* collection_entry.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E00 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C760 /* context_params.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E10 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C780 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E20 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7A0 /* resource_locator.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E30 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7C0 /* resource_name.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E40 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7E0 /* orca_load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E50 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C800 /* typed_struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E60 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C820 /* config_dump.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E70 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C840 /* deprecation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E80 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C860 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044E90 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C880 /* accesslog.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044EA0 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8A0 /* bootstrap.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044EB0 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8C0 /* circuit_breaker.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044EC0 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8E0 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044ED0 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C900 /* filter.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044EE0 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C920 /* outlier_detection.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044EF0 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C940 /* address.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F00 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C960 /* backoff.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F10 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C980 /* base.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F20 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9A0 /* config_source.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F30 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9C0 /* event_service_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F40 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9E0 /* extension.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F50 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA00 /* grpc_service.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F60 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA20 /* health_check.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F70 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA40 /* http_uri.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F80 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA60 /* protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044F90 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA80 /* proxy_protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FA0 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAA0 /* resolver.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FB0 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAC0 /* socket_option.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FC0 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAE0 /* substitution_format_string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FD0 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB00 /* udp_socket_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FE0 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB20 /* endpoint.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00044FF0 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB40 /* endpoint_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045000 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB60 /* load_report.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045010 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB80 /* api_listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045020 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBA0 /* listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045030 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBC0 /* listener_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045040 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBE0 /* quic_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045050 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC00 /* udp_listener_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045060 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC20 /* stats.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045070 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC40 /* overload.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045080 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC60 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045090 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC80 /* route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450A0 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCA0 /* route_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450B0 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCC0 /* scoped_route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450C0 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCE0 /* http_tracer.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450D0 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD00 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450E0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD20 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000450F0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD40 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045100 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD60 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045110 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD80 /* router.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045120 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDA0 /* http_connection_manager.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045130 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDC0 /* cert.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045140 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDE0 /* common.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045150 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE00 /* secret.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045160 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE20 /* tls.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045170 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE40 /* cds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045180 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE60 /* ads.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045190 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE80 /* discovery.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451A0 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEA0 /* eds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451B0 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEC0 /* lds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451C0 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEE0 /* lrs.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451D0 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF00 /* rds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451E0 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF20 /* srds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000451F0 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF40 /* csds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045200 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF60 /* path_transformation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045210 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF80 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045220 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFA0 /* node.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045230 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFC0 /* number.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045240 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFE0 /* path.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045250 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D000 /* regex.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045260 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D020 /* string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045270 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D040 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045280 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D060 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045290 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D080 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452A0 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0A0 /* custom_tag.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452B0 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0C0 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452C0 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0E0 /* percent.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452D0 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D100 /* range.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452E0 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D120 /* semantic_version.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000452F0 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D140 /* annotations.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045300 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D160 /* checked.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045310 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D180 /* eval.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045320 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1A0 /* explain.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045330 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1C0 /* syntax.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045340 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1E0 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045350 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D200 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045360 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D220 /* any.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045370 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D240 /* descriptor.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045380 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D260 /* duration.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045390 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D280 /* empty.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453A0 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2A0 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453B0 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2C0 /* timestamp.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453C0 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2E0 /* wrappers.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453D0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D300 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453E0 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D320 /* migrate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000453F0 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D340 /* security.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045400 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D360 /* sensitive.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045410 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D380 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045420 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3A0 /* versioning.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045430 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3C0 /* validate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045440 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3E0 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045450 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D400 /* authority.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045460 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D420 /* collection_entry.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045470 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D440 /* context_params.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045480 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D460 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045490 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D480 /* resource_locator.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454A0 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4A0 /* resource_name.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454B0 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4C0 /* typed_struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454C0 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4D0 /* certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454D0 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4F0 /* certificate_provider_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454E0 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D510 /* certificate_provider_store.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000454F0 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D530 /* file_watcher_certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045500 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D540 /* upb_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045510 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D560 /* xds_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045520 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D580 /* xds_bootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045530 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5A0 /* xds_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045540 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5B0 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045550 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5D0 /* xds_channel_creds.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045560 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5F0 /* xds_channel_stack_modifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045570 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D610 /* xds_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045580 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D630 /* xds_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045590 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D650 /* xds_cluster.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455A0 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D670 /* xds_common_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455B0 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D690 /* xds_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455C0 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6B0 /* xds_http_fault_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455D0 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6D0 /* xds_http_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455E0 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6F0 /* xds_http_rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000455F0 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D710 /* xds_listener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045600 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D730 /* xds_resource_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045610 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D740 /* xds_resource_type_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045620 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D760 /* xds_route_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045630 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D780 /* xds_routing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045640 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7B0 /* parse_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045650 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7D0 /* sockaddr_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045660 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7E0 /* avl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045670 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D800 /* backoff.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045680 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D810 /* call_tracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045690 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D830 /* channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456A0 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D850 /* channel_args_preconditioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456B0 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D870 /* channel_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456C0 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D890 /* channel_stack_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456D0 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8B0 /* channel_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456E0 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8D0 /* channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000456F0 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8F0 /* channelz_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045700 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D910 /* connected_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045710 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D920 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045720 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D940 /* handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045730 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D950 /* handshaker_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045740 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D970 /* handshaker_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045750 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D990 /* status_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045760 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9C0 /* compression_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045770 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9E0 /* message_compress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045780 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA00 /* core_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045790 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA20 /* stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457A0 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA40 /* stats_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457B0 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA60 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457C0 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA80 /* channel_args_endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457D0 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAB0 /* event_engine_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457E0 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAE0 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000457F0 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB00 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045800 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB60 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045810 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC00 /* murmur_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045820 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC10 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045830 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC30 /* string.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045840 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC70 /* string_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045850 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCF0 /* time_precise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045860 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD10 /* tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045870 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD20 /* tmpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045880 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD60 /* useful.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045890 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD80 /* atomic_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458A0 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD90 /* bitset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458B0 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDA0 /* chunked_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458C0 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDB0 /* construct_destruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458D0 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDC0 /* cpp_impl_of.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458E0 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDD0 /* debug_location.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000458F0 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDE0 /* dual_ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045900 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE00 /* examine_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045910 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE20 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045920 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE30 /* global_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045930 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE40 /* global_config_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045940 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE60 /* global_config_env.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045950 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE70 /* global_config_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045960 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE90 /* host_port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045970 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEA0 /* manual_constructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045980 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEB0 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045990 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DED0 /* mpscq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459A0 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEE0 /* orphanable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459B0 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEF0 /* ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459C0 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF00 /* ref_counted_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459D0 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF10 /* stat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459E0 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF50 /* status_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000459F0 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF60 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A00 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF70 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A10 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF80 /* thd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A20 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFC0 /* time_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A30 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFE0 /* format_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A40 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E000 /* httpcli.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A50 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E030 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A60 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E040 /* block_annotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A70 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E060 /* buffer_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A80 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E080 /* call_combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045A90 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0A0 /* cfstream_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AA0 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0B0 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AB0 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0D0 /* combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AC0 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0F0 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AD0 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E110 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AE0 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E130 /* endpoint_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045AF0 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E140 /* endpoint_pair.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B00 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E190 /* error.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B10 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1B0 /* error_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B20 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1C0 /* error_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B30 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1E0 /* ev_apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B40 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E200 /* ev_epoll1_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B50 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E220 /* ev_epollex_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B60 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E240 /* ev_poll_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B70 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E260 /* ev_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B80 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E290 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045B90 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2B0 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BA0 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2E0 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BB0 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2F0 /* promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BC0 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E310 /* resolved_address_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BD0 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E330 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BE0 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E370 /* exec_ctx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045BF0 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E390 /* executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C00 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3B0 /* mpmcqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C10 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3D0 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C20 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E400 /* gethostname.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C30 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E440 /* grpc_if_nametoindex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C40 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E480 /* internal_errqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C50 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4A0 /* iocp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C60 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4C0 /* iomgr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C70 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4E0 /* iomgr_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C80 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E500 /* iomgr_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045C90 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E550 /* is_epollexclusive_available.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CA0 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E570 /* load_file.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CB0 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E590 /* lockfree_event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CC0 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5A0 /* nameser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CD0 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5C0 /* polling_entity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CE0 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5E0 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045CF0 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E600 /* pollset_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D00 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E620 /* pollset_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D10 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E640 /* pollset_set_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D20 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E660 /* pollset_set_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D30 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E680 /* pollset_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D40 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E690 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D50 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6A0 /* python_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D60 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6C0 /* resolve_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D70 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6E0 /* resolve_address_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D80 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6F0 /* resolve_address_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045D90 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E710 /* resolve_address_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DA0 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E730 /* resolve_address_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DB0 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E740 /* resolved_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DC0 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E750 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DD0 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E760 /* sockaddr_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DE0 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E770 /* sockaddr_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045DF0 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E790 /* socket_factory_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E00 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7B0 /* socket_mutator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E10 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7C0 /* socket_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E20 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E800 /* socket_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E30 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E830 /* socket_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E40 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E840 /* sys_epoll_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E50 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E860 /* tcp_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E60 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8A0 /* tcp_client_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E70 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8D0 /* tcp_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E80 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8F0 /* tcp_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045E90 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E910 /* tcp_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045EA0 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E940 /* tcp_server_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045EB0 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9A0 /* tcp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045EC0 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9C0 /* time_averaged_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045ED0 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9E0 /* timer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045EE0 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA00 /* timer_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045EF0 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA20 /* timer_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F00 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA40 /* timer_heap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F10 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA60 /* timer_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F20 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA80 /* unix_sockets_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F30 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAD0 /* wakeup_fd_pipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F40 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAF0 /* wakeup_fd_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F50 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB10 /* work_serializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F60 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB20 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F70 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB50 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F80 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB80 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045F90 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBB0 /* timers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FA0 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBD0 /* activity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FB0 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBE0 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FC0 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBF0 /* basic_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FD0 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC00 /* promise_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FE0 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC10 /* promise_like.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00045FF0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC20 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046000 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC30 /* switch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046010 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC40 /* exec_ctx_wakeup_scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046020 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC50 /* loop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046030 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC60 /* map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046040 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC70 /* poll.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046050 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC80 /* race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046060 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC90 /* seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046070 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECB0 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046080 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECC0 /* resolver_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046090 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECE0 /* resolver_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460A0 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED00 /* server_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460B0 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED20 /* api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460C0 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED40 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460D0 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED60 /* memory_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460E0 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED80 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000460F0 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDA0 /* thread_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046100 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDC0 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046110 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDD0 /* authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046120 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDE0 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046130 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE10 /* evaluate_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046140 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE30 /* grpc_authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046150 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE50 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046160 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE70 /* rbac_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046170 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE90 /* sdk_server_authz_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046180 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEB0 /* security_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046190 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EED0 /* alts_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461A0 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEF0 /* check_gcp_environment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461B0 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF50 /* grpc_alts_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461C0 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF80 /* composite_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461D0 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFA0 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461E0 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFC0 /* aws_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000461F0 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFE0 /* aws_request_signer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046200 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F000 /* external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046210 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F020 /* file_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046220 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F040 /* url_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046230 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F060 /* fake_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046240 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F090 /* google_default_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046250 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0B0 /* iam_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046260 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0E0 /* json_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046270 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F100 /* jwt_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046280 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F120 /* jwt_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046290 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F140 /* local_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462A0 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F160 /* oauth2_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462B0 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F180 /* plugin_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462C0 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1A0 /* ssl_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462D0 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1C0 /* grpc_tls_certificate_distributor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462E0 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1E0 /* grpc_tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000462F0 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F200 /* grpc_tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046300 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F220 /* grpc_tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046310 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F240 /* tls_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046320 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F260 /* tls_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046330 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F280 /* xds_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046340 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2A0 /* alts_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046350 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2C0 /* fake_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046360 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2E0 /* insecure_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046370 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2F0 /* load_system_roots.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046380 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F320 /* load_system_roots_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046390 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F340 /* local_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463A0 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F360 /* security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463B0 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F380 /* ssl_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463C0 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3A0 /* ssl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463D0 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3C0 /* ssl_utils_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463E0 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3E0 /* tls_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000463F0 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3F0 /* auth_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046400 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F420 /* secure_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046410 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F440 /* security_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046420 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F470 /* tsi_error.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046430 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F490 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046440 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4B0 /* service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046450 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4C0 /* service_config_call_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046460 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4E0 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046470 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F500 /* b64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046480 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F520 /* percent_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046490 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F540 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464A0 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F580 /* slice_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464B0 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5A0 /* slice_refcount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464C0 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5B0 /* slice_refcount_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464D0 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5D0 /* slice_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464E0 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5F0 /* slice_string_helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000464F0 /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F600 /* slice_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046500 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F620 /* api_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046510 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F640 /* builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046520 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F680 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046530 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6B0 /* call_test_only.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046540 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6D0 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046550 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6F0 /* channel_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046560 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F720 /* channel_stack_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046570 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F740 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046580 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F760 /* completion_queue_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046590 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F780 /* event_string.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465A0 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7A0 /* init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465B0 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7D0 /* lame_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465C0 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F800 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465D0 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F820 /* validate_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465E0 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F850 /* bdp_estimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000465F0 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F870 /* byte_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046600 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F890 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046610 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8B0 /* error_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046620 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8C0 /* http2_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046630 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8D0 /* metadata_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046640 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8F0 /* parsed_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046650 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F910 /* pid_controller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046660 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F930 /* status_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046670 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F950 /* timeout_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046680 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F970 /* transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046690 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F980 /* transport_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466A0 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9B0 /* uri_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466B0 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9F0 /* gsec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466C0 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA10 /* alts_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466D0 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA30 /* alts_crypter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466E0 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA50 /* alts_frame_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000466F0 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA70 /* alts_record_protocol_crypter_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046700 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAB0 /* frame_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046710 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAD0 /* alts_handshaker_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046720 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAF0 /* alts_shared_resource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046730 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB10 /* alts_tsi_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046740 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB20 /* alts_tsi_handshaker_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046750 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB40 /* alts_tsi_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046760 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB60 /* transport_security_common_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046770 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB80 /* alts_grpc_integrity_only_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046780 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBA0 /* alts_grpc_privacy_integrity_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046790 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBB0 /* alts_grpc_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467A0 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBD0 /* alts_grpc_record_protocol_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467B0 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBF0 /* alts_iovec_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467C0 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC10 /* alts_zero_copy_grpc_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467D0 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC30 /* fake_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467E0 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC50 /* local_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000467F0 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC60 /* ssl_session.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046800 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC90 /* ssl_session_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046810 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCC0 /* ssl_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046820 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCD0 /* ssl_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046830 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCF0 /* transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046840 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD10 /* transport_security_grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046850 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD20 /* transport_security_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046860 /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD30 /* bitmap256.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046870 /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD80 /* filtered_re2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046880 /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDE0 /* pod_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046890 /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE00 /* prefilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468A0 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE20 /* prefilter_tree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468B0 /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE40 /* prog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468C0 /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE60 /* re2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468D0 /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE80 /* regexp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468E0 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEA0 /* set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000468F0 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEC0 /* sparse_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046900 /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FED0 /* sparse_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046910 /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEF0 /* stringpiece.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046920 /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF20 /* unicode_casefold.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046930 /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF40 /* unicode_groups.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046940 /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF50 /* walker-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046950 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF60 /* benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046960 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF70 /* flags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046970 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF80 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046980 /* malloc_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF90 /* malloc_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046990 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFA0 /* mix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469A0 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFB0 /* mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469B0 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFD0 /* pcre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469C0 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020000 /* strutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469D0 /* test.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020010 /* test.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469E0 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020020 /* utf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000469F0 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020030 /* util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A00 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020050 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A10 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020070 /* decode_fast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A20 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020080 /* decode_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A30 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200A0 /* def.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A40 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200B0 /* def.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A50 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200D0 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A60 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200F0 /* msg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A70 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020100 /* msg_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A80 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020110 /* port_def.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046A90 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020120 /* port_undef.inc */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AA0 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020140 /* reflection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AB0 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020150 /* reflection.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AC0 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020170 /* table_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AD0 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020190 /* text_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AE0 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201B0 /* upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046AF0 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201C0 /* upb.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B00 /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201D0 /* upb_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B10 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201E0 /* xxhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B20 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020200 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B30 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020210 /* byte_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B40 /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020220 /* census.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B50 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020230 /* compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B60 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020240 /* endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B70 /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020250 /* event_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B80 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020260 /* memory_allocator_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046B90 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020270 /* memory_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BA0 /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020280 /* memory_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BB0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020290 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BC0 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202A0 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BD0 /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202B0 /* grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BE0 /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202C0 /* grpc_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046BF0 /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202D0 /* grpc_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C00 /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202E0 /* grpc_security_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C10 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202F0 /* atm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C20 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020300 /* atm_gcc_atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C30 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020310 /* atm_gcc_sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C40 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020320 /* atm_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C50 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020330 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C60 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020340 /* byte_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C70 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020350 /* compression_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C80 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020360 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046C90 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020370 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CA0 /* gpr_slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020380 /* gpr_slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CB0 /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020390 /* gpr_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CC0 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203A0 /* grpc_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CD0 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203B0 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CE0 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203C0 /* port_platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046CF0 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203D0 /* propagation_bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D00 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203E0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D10 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203F0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D20 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020400 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D30 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020410 /* sync_abseil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D40 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020420 /* sync_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D50 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020430 /* sync_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D60 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020440 /* sync_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D70 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020450 /* sync_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D80 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020460 /* load_reporting.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046D90 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020470 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DA0 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020480 /* slice_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DB0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020490 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DC0 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204A0 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DD0 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204B0 /* atm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DE0 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204C0 /* atm_gcc_atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046DF0 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204D0 /* atm_gcc_sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E00 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204E0 /* atm_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E10 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000204F0 /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E20 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020500 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E30 /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020510 /* log_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E40 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020520 /* port_platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E50 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020530 /* string_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E60 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020540 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E70 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020550 /* sync_abseil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E80 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020560 /* sync_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046E90 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020570 /* sync_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046EA0 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020580 /* sync_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046EB0 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020590 /* sync_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046EC0 /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205A0 /* thd_id.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046ED0 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205B0 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046EE0 /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205C0 /* workaround_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00046F40 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00046F30 /* gRPC-Core-dummy.m */; }; - 46EB2E00046FD0 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020620 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00046FE0 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020630 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00046FF0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020640 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00047000 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020650 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00047010 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020660 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00047020 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020670 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00047030 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020680 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 46EB2E00047040 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205D0 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047050 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205E0 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047060 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000205F0 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047070 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020600 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047080 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020610 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000470E0 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000470D0 /* glog-dummy.m */; }; - 46EB2E000471F0 /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020800 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047200 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020820 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047210 /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020830 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047220 /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020850 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047230 /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020870 /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047240 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020890 /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047250 /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208A0 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047260 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208D0 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047270 /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208F0 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047280 /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020910 /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047290 /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020930 /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472A0 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020960 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472B0 /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020980 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472C0 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209A0 /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472D0 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209C0 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472E0 /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A20 /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000472F0 /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A40 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047300 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A60 /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047310 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A80 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047320 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AA0 /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047330 /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AC0 /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047340 /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AE0 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047350 /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AF0 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047360 /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B00 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047370 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B20 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047380 /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B40 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047390 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B50 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473A0 /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B60 /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473B0 /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B80 /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473C0 /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B90 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473D0 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BB0 /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473E0 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BC0 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E000473F0 /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BF0 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047400 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C00 /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047410 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C20 /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047420 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C40 /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047430 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C80 /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047440 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CB0 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047450 /* testharness.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CC0 /* testharness.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46EB2E00047460 /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020810 /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047470 /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020840 /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047480 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020860 /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047490 /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020880 /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474A0 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208B0 /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474B0 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208C0 /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474C0 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208E0 /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474D0 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020900 /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474E0 /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020920 /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000474F0 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020940 /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047500 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020950 /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047510 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020970 /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047520 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020990 /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047530 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209B0 /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047540 /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209D0 /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047550 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209E0 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047560 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209F0 /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047570 /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A00 /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047580 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A10 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047590 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A30 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475A0 /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A50 /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475B0 /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A70 /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475C0 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A90 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475D0 /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AB0 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475E0 /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AD0 /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000475F0 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B10 /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047600 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B30 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047610 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B70 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047620 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BA0 /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047630 /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BD0 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047640 /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BE0 /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047650 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C10 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047660 /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C30 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047670 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C50 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047680 /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C60 /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047690 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C70 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476A0 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C90 /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476B0 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CA0 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476C0 /* testharness.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CD0 /* testharness.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476D0 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CE0 /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476E0 /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CF0 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000476F0 /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D00 /* c.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047700 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D10 /* cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047710 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D20 /* comparator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047720 /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D30 /* db.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047730 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D40 /* dumpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047740 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D50 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047750 /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D60 /* export.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047760 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D70 /* filter_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047770 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D80 /* iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047780 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D90 /* options.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047790 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DA0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000477A0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DB0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000477B0 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DC0 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000477C0 /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DD0 /* table_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000477D0 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DE0 /* write_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047830 /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00047820 /* leveldb-library-dummy.m */; }; - 46EB2E000478C0 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FB0 /* buffer.c */; }; - 46EB2E000478D0 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FC0 /* bufferevent.c */; }; - 46EB2E000478E0 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FD0 /* bufferevent_filter.c */; }; - 46EB2E000478F0 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FE0 /* bufferevent_pair.c */; }; - 46EB2E00047900 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FF0 /* bufferevent_ratelim.c */; }; - 46EB2E00047910 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021000 /* bufferevent_sock.c */; }; - 46EB2E00047920 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021010 /* event.c */; }; - 46EB2E00047930 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021020 /* evmap.c */; }; - 46EB2E00047940 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021030 /* evthread.c */; }; - 46EB2E00047950 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021040 /* evutil.c */; }; - 46EB2E00047960 /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021050 /* evutil_rand.c */; }; - 46EB2E00047970 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021060 /* evutil_time.c */; }; - 46EB2E00047980 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021070 /* kqueue.c */; }; - 46EB2E00047990 /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021080 /* listener.c */; }; - 46EB2E000479A0 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021090 /* log.c */; }; - 46EB2E000479B0 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210A0 /* poll.c */; }; - 46EB2E000479C0 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210B0 /* select.c */; }; - 46EB2E000479D0 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210C0 /* signal.c */; }; - 46EB2E000479E0 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210D0 /* strlcpy.c */; }; - 46EB2E000479F0 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210E0 /* evdns.c */; }; - 46EB2E00047A00 /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210F0 /* event_tagging.c */; }; - 46EB2E00047A10 /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021100 /* evrpc.c */; }; - 46EB2E00047A20 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021110 /* http.c */; }; - 46EB2E00047A30 /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DF0 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A40 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E00 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A50 /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E10 /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A60 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E20 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A70 /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E30 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A80 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E40 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047A90 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E50 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AA0 /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E60 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AB0 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E70 /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AC0 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E80 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AD0 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E90 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AE0 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EA0 /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047AF0 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EB0 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B00 /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EC0 /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B10 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020ED0 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B20 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EE0 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B30 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EF0 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B40 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F00 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B50 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F10 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B60 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F20 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B70 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F30 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B80 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F40 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047B90 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F50 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047BA0 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F60 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047BB0 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F70 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047BC0 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F80 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047BD0 /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F90 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047BE0 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FA0 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047C40 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00047C30 /* libevent-dummy.m */; }; - 46EB2E00047CD0 /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021130 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047CE0 /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021140 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047CF0 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021150 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047D00 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021180 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D10 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021190 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D20 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000211B0 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D30 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000211C0 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D40 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021170 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047D50 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211A0 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047D60 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211D0 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00047D70 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021250 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D80 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021270 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047D90 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021290 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DA0 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212C0 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DB0 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212E0 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DC0 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021300 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DD0 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021320 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DE0 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021340 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047DF0 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021360 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E00 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021380 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E10 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213A0 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E20 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213C0 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E30 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213E0 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E40 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213F0 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E50 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021400 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E60 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021410 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E70 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021420 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E80 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021450 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047E90 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021460 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047EA0 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021470 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047EB0 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021480 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047EC0 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021490 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047ED0 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214A0 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047EE0 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214B0 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047EF0 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214C0 /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F00 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214D0 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F10 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214E0 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F20 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214F0 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F30 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021500 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F40 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021510 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F50 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021520 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F60 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021540 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F70 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021550 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F80 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021560 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047F90 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021570 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FA0 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021580 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FB0 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021590 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FC0 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215A0 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FD0 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215B0 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FE0 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215C0 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00047FF0 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215D0 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048000 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215E0 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048010 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215F0 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048020 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021600 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048030 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021630 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048040 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021640 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048050 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021650 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048060 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021660 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048070 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021670 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048080 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021680 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048090 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021690 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480A0 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216A0 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480B0 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216B0 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480C0 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216C0 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480D0 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216D0 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480E0 /* lossless_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216E0 /* lossless_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000480F0 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021730 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048100 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021740 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048110 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021750 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048120 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021760 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048130 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021770 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048140 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021780 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048150 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021790 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048160 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217A0 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048170 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217B0 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048180 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217C0 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048190 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217D0 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481A0 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217E0 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481B0 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217F0 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481C0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021800 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481D0 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021810 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481E0 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021830 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000481F0 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021840 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048200 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021850 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048210 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021860 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048220 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021870 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048230 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021890 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048240 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218A0 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048250 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218C0 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048260 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218D0 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048270 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218E0 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048280 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218F0 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048290 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021900 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482A0 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021930 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482B0 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021940 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482C0 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021970 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482D0 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021980 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482E0 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021990 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000482F0 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219A0 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048300 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219B0 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048310 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219D0 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048320 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219E0 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048330 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A00 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048340 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A10 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048350 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A20 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048360 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A40 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048370 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A50 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048380 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A60 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048390 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A70 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483A0 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A80 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483B0 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A90 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483C0 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AA0 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483D0 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AB0 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483E0 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AC0 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E000483F0 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AD0 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048400 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AE0 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048410 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AF0 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048420 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B20 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048430 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B30 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46EB2E00048440 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211F0 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048450 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021200 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048460 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021210 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048470 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021220 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048480 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021230 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048490 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021240 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484A0 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021260 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484B0 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021280 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484C0 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212A0 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484D0 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212B0 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484E0 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212D0 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000484F0 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212F0 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048500 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021310 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048510 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021330 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048520 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021350 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048530 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021370 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048540 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021390 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048550 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000213B0 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048560 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000213D0 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048570 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021430 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048580 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021440 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048590 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021530 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485A0 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021610 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485B0 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021620 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485C0 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000216F0 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485D0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021700 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485E0 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021710 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000485F0 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021720 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048600 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021820 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048610 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021880 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048620 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000218B0 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048630 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021910 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048640 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021920 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048650 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021950 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048660 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021960 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048670 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000219C0 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048680 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000219F0 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048690 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A30 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000486A0 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B00 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000486B0 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B10 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048710 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048700 /* libwebp-dummy.m */; }; - 46EB2E000487A0 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B50 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 46EB2E000487B0 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B70 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 46EB2E000487C0 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B90 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 46EB2E000487D0 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B40 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000487E0 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B60 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E000487F0 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B80 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048800 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BA0 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048860 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048850 /* nanopb-dummy.m */; }; - 46EB2E000488F0 /* ReactNativeConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BF0 /* ReactNativeConfig.m */; }; - 46EB2E00048900 /* ReactNativeConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C10 /* ReactNativeConfigModule.m */; }; - 46EB2E00048910 /* ReactNativeConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BE0 /* ReactNativeConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048920 /* ReactNativeConfigModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C00 /* ReactNativeConfigModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048980 /* react-native-config-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048970 /* react-native-config-dummy.m */; }; - 46EB2E00048A10 /* FlipperModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C30 /* FlipperModule.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; - 46EB2E00048A20 /* FlipperReactNativeJavaScriptPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C50 /* FlipperReactNativeJavaScriptPlugin.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; - 46EB2E00048A30 /* FlipperReactNativeJavaScriptPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C70 /* FlipperReactNativeJavaScriptPluginManager.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; - 46EB2E00048A40 /* FlipperModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C20 /* FlipperModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048A50 /* FlipperReactNativeJavaScriptPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C40 /* FlipperReactNativeJavaScriptPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048A60 /* FlipperReactNativeJavaScriptPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C60 /* FlipperReactNativeJavaScriptPluginManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048AC0 /* react-native-flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048AB0 /* react-native-flipper-dummy.m */; }; - 46EB2E00048B50 /* PdfManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C90 /* PdfManager.m */; }; - 46EB2E00048B60 /* RCTPdfPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CB0 /* RCTPdfPageView.m */; }; - 46EB2E00048B70 /* RCTPdfPageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CD0 /* RCTPdfPageViewManager.m */; }; - 46EB2E00048B80 /* RCTPdfView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CF0 /* RCTPdfView.m */; }; - 46EB2E00048B90 /* RCTPdfViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D10 /* RCTPdfViewManager.m */; }; - 46EB2E00048BA0 /* PdfManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C80 /* PdfManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048BB0 /* RCTPdfPageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CA0 /* RCTPdfPageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048BC0 /* RCTPdfPageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CC0 /* RCTPdfPageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048BD0 /* RCTPdfView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CE0 /* RCTPdfView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048BE0 /* RCTPdfViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D00 /* RCTPdfViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048C40 /* react-native-pdf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048C30 /* react-native-pdf-dummy.m */; }; - 46EB2E00048CD0 /* RNCSafeAreaContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D30 /* RNCSafeAreaContext.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048CE0 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D50 /* RNCSafeAreaProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048CF0 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D70 /* RNCSafeAreaProviderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D00 /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D90 /* RNCSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D10 /* RNCSafeAreaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DB0 /* RNCSafeAreaUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D20 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DD0 /* RNCSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D30 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DF0 /* RNCSafeAreaViewEdges.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D40 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E10 /* RNCSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D50 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E30 /* RNCSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D60 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E50 /* RNCSafeAreaViewMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 46EB2E00048D70 /* RNCSafeAreaContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D20 /* RNCSafeAreaContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048D80 /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D40 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048D90 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D60 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DA0 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D80 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DB0 /* RNCSafeAreaUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DA0 /* RNCSafeAreaUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DC0 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DC0 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DD0 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021DE0 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DE0 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E00 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048DF0 /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E20 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048E00 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021E40 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048E60 /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048E50 /* react-native-safe-area-context-dummy.m */; }; - 46EB2E00048F40 /* Pods-Hurt-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00048F30 /* Pods-Hurt-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EB2E00048FA0 /* Pods-Hurt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048F90 /* Pods-Hurt-dummy.m */; }; + 46EB2E00022A80 /* BVLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000790 /* BVLinearGradient.m */; }; + 46EB2E00022A90 /* BVLinearGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007B0 /* BVLinearGradientLayer.m */; }; + 46EB2E00022AA0 /* BVLinearGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007D0 /* BVLinearGradientManager.m */; }; + 46EB2E00022AB0 /* BVLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000780 /* BVLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00022AC0 /* BVLinearGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000007A0 /* BVLinearGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00022AD0 /* BVLinearGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000007C0 /* BVLinearGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00022B30 /* BVLinearGradient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022B20 /* BVLinearGradient-dummy.m */; }; + 46EB2E00022BC0 /* MF_Base64Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000007F0 /* MF_Base64Additions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 46EB2E00022BD0 /* MF_Base64Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000007E0 /* MF_Base64Additions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00022C30 /* Base64-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00022C20 /* Base64-dummy.m */; }; + 46EB2E00022CC0 /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000810 /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022CD0 /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000820 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022CE0 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000830 /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022CF0 /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000840 /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D00 /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000850 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D10 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000860 /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D20 /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000870 /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D30 /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000880 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D40 /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000890 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D50 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008A0 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D60 /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008B0 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D70 /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008C0 /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D80 /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008D0 /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022D90 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000008F0 /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DA0 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000900 /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DB0 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000910 /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DC0 /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000920 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DD0 /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000930 /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DE0 /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000940 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022DF0 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000950 /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E00 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000960 /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E10 /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000970 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E20 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000980 /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E30 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000990 /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E40 /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009A0 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E50 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009B0 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E60 /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009C0 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E70 /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009D0 /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E80 /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009E0 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022E90 /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000009F0 /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022EA0 /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A00 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022EB0 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A10 /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022EC0 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A20 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022ED0 /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A30 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022EE0 /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A40 /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022EF0 /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A50 /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F00 /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A60 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F10 /* cpu-aarch64-fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A70 /* cpu-aarch64-fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F20 /* cpu-aarch64-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A80 /* cpu-aarch64-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F30 /* cpu-aarch64-win.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000A90 /* cpu-aarch64-win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F40 /* cpu-arm-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AA0 /* cpu-arm-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F50 /* cpu-arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AC0 /* cpu-arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F60 /* cpu-intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AD0 /* cpu-intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F70 /* cpu-ppc64le.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AE0 /* cpu-ppc64le.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F80 /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AF0 /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022F90 /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B00 /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FA0 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B20 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FB0 /* refcount_c11.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B30 /* refcount_c11.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FC0 /* refcount_lock.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B40 /* refcount_lock.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FD0 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B50 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FE0 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B60 /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00022FF0 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B70 /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023000 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B80 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023010 /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B90 /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023020 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BA0 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023030 /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BB0 /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023040 /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BC0 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023050 /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BD0 /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023060 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BE0 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023070 /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000BF0 /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023080 /* a_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C00 /* a_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023090 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C10 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230A0 /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C20 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230B0 /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C30 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230C0 /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C40 /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230D0 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C50 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230E0 /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C60 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000230F0 /* a_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C70 /* a_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023100 /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C80 /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023110 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000C90 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023120 /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CA0 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023130 /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CB0 /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023140 /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CC0 /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023150 /* a_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CD0 /* a_utf8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023160 /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CF0 /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023170 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D00 /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023180 /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D20 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023190 /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D30 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231A0 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D40 /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231B0 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D50 /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231C0 /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D60 /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231D0 /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D70 /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231E0 /* time_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D80 /* time_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000231F0 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D90 /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023200 /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DA0 /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023210 /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DB0 /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023220 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DC0 /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023230 /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DD0 /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023240 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DE0 /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023250 /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000DF0 /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023260 /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E10 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023270 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E20 /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023280 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E30 /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023290 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E40 /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232A0 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E50 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232B0 /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E60 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232C0 /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E70 /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232D0 /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E80 /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232E0 /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E90 /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000232F0 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EA0 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023300 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EB0 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023310 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EC0 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023320 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EE0 /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023330 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000EF0 /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023340 /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F10 /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023350 /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F20 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023360 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F30 /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023370 /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F40 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023380 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F50 /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023390 /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F60 /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233A0 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F70 /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233B0 /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F80 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233C0 /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F90 /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233D0 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FA0 /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233E0 /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FC0 /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000233F0 /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FD0 /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023400 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FE0 /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023410 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001010 /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023420 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001040 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023430 /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001050 /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023440 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001060 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023450 /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001070 /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023460 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001080 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023470 /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001090 /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023480 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010B0 /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023490 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010C0 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234A0 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010D0 /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234B0 /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010E0 /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234C0 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000010F0 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234D0 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001110 /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234E0 /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001120 /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000234F0 /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001140 /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023500 /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001150 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023510 /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001160 /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023520 /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001170 /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023530 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001190 /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023540 /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011A0 /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023550 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011B0 /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023560 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011C0 /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023570 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011D0 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023580 /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011E0 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023590 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000011F0 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235A0 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001200 /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235B0 /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001210 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235C0 /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001220 /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235D0 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001230 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235E0 /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001240 /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000235F0 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001250 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023600 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001260 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023610 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001270 /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023620 /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001290 /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023630 /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012A0 /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023640 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012B0 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023650 /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012C0 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023660 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012D0 /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023670 /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012E0 /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023680 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000012F0 /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023690 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001300 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236A0 /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001310 /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236B0 /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001320 /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236C0 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001330 /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236D0 /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001340 /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236E0 /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001350 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000236F0 /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001360 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023700 /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001380 /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023710 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001390 /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023720 /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013A0 /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023730 /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013B0 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023740 /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013C0 /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023750 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013D0 /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023760 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000013E0 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023770 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001400 /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023780 /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001410 /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023790 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001420 /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237A0 /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001430 /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237B0 /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001440 /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237C0 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001450 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237D0 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001480 /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237E0 /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014A0 /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000237F0 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014B0 /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023800 /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014C0 /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023810 /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000014D0 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023820 /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001500 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023830 /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001510 /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023840 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001520 /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023850 /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001530 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023860 /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001550 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023870 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001560 /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023880 /* p256-x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001580 /* p256-x86_64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023890 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015A0 /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238A0 /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015C0 /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238B0 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015D0 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238C0 /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015E0 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238D0 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000015F0 /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238E0 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001600 /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000238F0 /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001610 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023900 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001620 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023910 /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001640 /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023920 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001650 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023930 /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001660 /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023940 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001680 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023950 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001690 /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023960 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016A0 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023970 /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016B0 /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023980 /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016C0 /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023990 /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016D0 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239A0 /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000016F0 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239B0 /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001700 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239C0 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001710 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239D0 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001720 /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239E0 /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001760 /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000239F0 /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001770 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A00 /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001780 /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A10 /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017A0 /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A20 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017B0 /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A30 /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017C0 /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A40 /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017D0 /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A50 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000017E0 /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A60 /* sha1-altivec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001800 /* sha1-altivec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A70 /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001810 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A80 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001820 /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023A90 /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001830 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AA0 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001850 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AB0 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001860 /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AC0 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001870 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AD0 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001880 /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AE0 /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018B0 /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023AF0 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018C0 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B00 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018E0 /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B10 /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000018F0 /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B20 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001900 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B30 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001910 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B40 /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001920 /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B50 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001930 /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B60 /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001940 /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B70 /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001950 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B80 /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001960 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023B90 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001980 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BA0 /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001990 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BB0 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019B0 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BC0 /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019C0 /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BD0 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019D0 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BE0 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000019F0 /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023BF0 /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A00 /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C00 /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A10 /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C10 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A30 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C20 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A40 /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C30 /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A50 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C40 /* fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A60 /* fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C50 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A70 /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C60 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A80 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C70 /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A90 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C80 /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AA0 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023C90 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AB0 /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CA0 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AC0 /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CB0 /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AD0 /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CC0 /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AE0 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CD0 /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B00 /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CE0 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B10 /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023CF0 /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B20 /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D00 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B30 /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D10 /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B40 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D20 /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B50 /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D30 /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B60 /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D40 /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B70 /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D50 /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B80 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D60 /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001B90 /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D70 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BA0 /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D80 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BC0 /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023D90 /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BD0 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DA0 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BE0 /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DB0 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BF0 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DC0 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C00 /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DD0 /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C10 /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DE0 /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C20 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023DF0 /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C30 /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E00 /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C40 /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E10 /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C50 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E20 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C60 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E30 /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C70 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E40 /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C80 /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E50 /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001C90 /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E60 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CA0 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E70 /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CB0 /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E80 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CC0 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023E90 /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CD0 /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023EA0 /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CE0 /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023EB0 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001CF0 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023EC0 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D00 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023ED0 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D10 /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023EE0 /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D20 /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023EF0 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D30 /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F00 /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D40 /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F10 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D50 /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F20 /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D60 /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F30 /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D70 /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F40 /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D80 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F50 /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001D90 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F60 /* x_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DA0 /* x_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F70 /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DB0 /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F80 /* x_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DC0 /* x_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023F90 /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DD0 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FA0 /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DE0 /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FB0 /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001DF0 /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FC0 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E00 /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FD0 /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E10 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FE0 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E20 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00023FF0 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E30 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024000 /* pcy_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E60 /* pcy_cache.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024010 /* pcy_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E70 /* pcy_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024020 /* pcy_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E80 /* pcy_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024030 /* pcy_map.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E90 /* pcy_map.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024040 /* pcy_node.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EA0 /* pcy_node.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024050 /* pcy_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EB0 /* pcy_tree.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024060 /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EC0 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024070 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001ED0 /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024080 /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EE0 /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024090 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001EF0 /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240A0 /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F00 /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240B0 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F10 /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240C0 /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F20 /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240D0 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F30 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240E0 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F40 /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000240F0 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F50 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024100 /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F60 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024110 /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F70 /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024120 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F80 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024130 /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001F90 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024140 /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FA0 /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024150 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FB0 /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024160 /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FC0 /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024170 /* v3_pci.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FD0 /* v3_pci.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024180 /* v3_pcia.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FE0 /* v3_pcia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024190 /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00001FF0 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241A0 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002000 /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241B0 /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002010 /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241C0 /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002020 /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241D0 /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002030 /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241E0 /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002040 /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E000241F0 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002090 /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 46EB2E00024200 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000008E0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024210 /* cpu-arm-linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000AB0 /* cpu-arm-linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024220 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000B10 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024230 /* charmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000CE0 /* charmap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024240 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000D10 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024250 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000E00 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024260 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000ED0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024270 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000F00 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024280 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FB0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024290 /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00000FF0 /* conf_def.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242A0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001000 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242B0 /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001020 /* curve25519_tables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242C0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001030 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242D0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000010A0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001100 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000242F0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001130 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024300 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001180 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024310 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001280 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024320 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001370 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024330 /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000013F0 /* rsaz_exp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024340 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001460 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024350 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001470 /* delocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024360 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001490 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024370 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000014E0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024380 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000014F0 /* md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024390 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001540 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243A0 /* p256-x86_64-table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001570 /* p256-x86_64-table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243B0 /* p256-x86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001590 /* p256-x86_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243C0 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000015B0 /* p256_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243D0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001630 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001670 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000243F0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000016E0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024400 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001730 /* fork_detect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024410 /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001740 /* getrandom_fillin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024420 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001750 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024430 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001790 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024440 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000017F0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024450 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001840 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024460 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001890 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024470 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000018A0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024480 /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000018D0 /* obj_dat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024490 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001970 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244A0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000019A0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244B0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000019E0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244C0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001A20 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244D0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001AF0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001BB0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000244F0 /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E40 /* ext_dat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024500 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00001E50 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024510 /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002050 /* curve25519_32.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024520 /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002060 /* curve25519_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024530 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002070 /* p256_32.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024540 /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002080 /* p256_64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024550 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020B0 /* aead.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024560 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020C0 /* aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024570 /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020D0 /* arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024580 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020E0 /* asn1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024590 /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000020F0 /* asn1t.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245A0 /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002100 /* asn1_mac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245B0 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002110 /* base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245C0 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002120 /* base64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245D0 /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002130 /* bio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245E0 /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002140 /* blake2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000245F0 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002150 /* blowfish.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024600 /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002160 /* bn.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024610 /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002170 /* boringssl_prefix_symbols.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024620 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002180 /* buf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024630 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002190 /* buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024640 /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021A0 /* bytestring.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024650 /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021B0 /* cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024660 /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021C0 /* chacha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024670 /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021D0 /* cipher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024680 /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021E0 /* cmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024690 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000021F0 /* conf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246A0 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002200 /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246B0 /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002210 /* crypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246C0 /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002220 /* curve25519.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246D0 /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002230 /* des.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246E0 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002240 /* dh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000246F0 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002250 /* digest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024700 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002260 /* dsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024710 /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002270 /* dtls1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024720 /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002280 /* ec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024730 /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002290 /* ecdh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024740 /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022A0 /* ecdsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024750 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022B0 /* ec_key.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024760 /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022C0 /* engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024770 /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022D0 /* err.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024780 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022E0 /* evp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024790 /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000022F0 /* evp_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247A0 /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002300 /* ex_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247B0 /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002310 /* e_os2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247C0 /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002320 /* hkdf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247D0 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002330 /* hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247E0 /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002340 /* hpke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000247F0 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002350 /* hrss.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024800 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002360 /* is_boringssl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024810 /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002370 /* lhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024820 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002380 /* md4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024830 /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002390 /* md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024840 /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023A0 /* mem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024850 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023B0 /* nid.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024860 /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023C0 /* obj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024870 /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023D0 /* objects.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024880 /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023E0 /* obj_mac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024890 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000023F0 /* opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248A0 /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002400 /* opensslv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248B0 /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002410 /* ossl_typ.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248C0 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002420 /* pem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248D0 /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002430 /* pkcs12.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248E0 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002440 /* pkcs7.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000248F0 /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002450 /* pkcs8.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024900 /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002460 /* poly1305.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024910 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002470 /* pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024920 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002480 /* rand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024930 /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002490 /* rc4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024940 /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024A0 /* ripemd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024950 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024B0 /* rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024960 /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024C0 /* safestack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024970 /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024D0 /* sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024980 /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024E0 /* siphash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024990 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000024F0 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249A0 /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002500 /* srtp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249B0 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002510 /* ssl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249C0 /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002520 /* ssl3.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249D0 /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002530 /* stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249E0 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002540 /* thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000249F0 /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002550 /* tls1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A00 /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002560 /* trust_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A10 /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002570 /* type_check.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A20 /* umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002580 /* umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A30 /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002590 /* x509.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A40 /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025A0 /* x509v3.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024A50 /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025B0 /* x509_vfy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024AB0 /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024AA0 /* BoringSSL-GRPC-dummy.m */; }; + 46EB2E00024B40 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000025D0 /* GCDAsyncSocket.m */; }; + 46EB2E00024B50 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000025F0 /* GCDAsyncUdpSocket.m */; }; + 46EB2E00024B60 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025C0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024B70 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000025E0 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024BD0 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024BC0 /* CocoaAsyncSocket-dummy.m */; }; + 46EB2E00024C60 /* CodePush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002610 /* CodePush.m */; }; + 46EB2E00024C70 /* CodePushConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002620 /* CodePushConfig.m */; }; + 46EB2E00024C80 /* CodePushDownloadHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002630 /* CodePushDownloadHandler.m */; }; + 46EB2E00024C90 /* CodePushErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002640 /* CodePushErrorUtils.m */; }; + 46EB2E00024CA0 /* CodePushPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002650 /* CodePushPackage.m */; }; + 46EB2E00024CB0 /* CodePushTelemetryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002660 /* CodePushTelemetryManager.m */; }; + 46EB2E00024CC0 /* CodePushUpdateUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002670 /* CodePushUpdateUtils.m */; }; + 46EB2E00024CD0 /* CodePushUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002680 /* CodePushUtils.m */; }; + 46EB2E00024CE0 /* RCTConvert+CodePushInstallMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002690 /* RCTConvert+CodePushInstallMode.m */; }; + 46EB2E00024CF0 /* RCTConvert+CodePushUpdateState.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026A0 /* RCTConvert+CodePushUpdateState.m */; }; + 46EB2E00024D00 /* CodePush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002600 /* CodePush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024D60 /* CodePush-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024D50 /* CodePush-dummy.m */; }; + 46EB2E00024DF0 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026B0 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E00 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026D0 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E10 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000026F0 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E20 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002710 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E30 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002730 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E40 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002750 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E50 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002770 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E60 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000027A0 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E00024E70 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000026C0 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024E80 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000026E0 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024E90 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002700 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024EA0 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002720 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024EB0 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002740 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024EC0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002760 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024ED0 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002780 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024EE0 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002790 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024EF0 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000027B0 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024F00 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000027C0 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00024F60 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00024F50 /* DoubleConversion-dummy.m */; }; + 46EB2E00025140 /* ABTConditionalUserPropertyController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002820 /* ABTConditionalUserPropertyController.m */; }; + 46EB2E00025150 /* ABTExperimentPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002840 /* ABTExperimentPayload.m */; }; + 46EB2E00025160 /* FIRExperimentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002850 /* FIRExperimentController.m */; }; + 46EB2E00025170 /* FIRLifecycleEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002860 /* FIRLifecycleEvents.m */; }; + 46EB2E00025180 /* ABTConditionalUserPropertyController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002810 /* ABTConditionalUserPropertyController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025190 /* ABTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002830 /* ABTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251A0 /* ABTExperimentPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002870 /* ABTExperimentPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251B0 /* FirebaseABTestingInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002880 /* FirebaseABTestingInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251C0 /* FirebaseABTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002890 /* FirebaseABTesting.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251D0 /* FIRExperimentController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028A0 /* FIRExperimentController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251E0 /* FIRLifecycleEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028B0 /* FIRLifecycleEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000251F0 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028C0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025200 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028D0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025210 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028E0 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025220 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000028F0 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025230 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002900 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025240 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002910 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025250 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002920 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025260 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002930 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025270 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002940 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025280 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002950 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025290 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002960 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000252A0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002970 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000252B0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002980 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000252C0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002990 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000252D0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029A0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000252E0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029B0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025330 /* FirebaseABTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00025320 /* FirebaseABTesting-dummy.m */; }; + 46EB2E00025440 /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029C0 /* FIRActionCodeSettings.m */; }; + 46EB2E00025450 /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029D0 /* FIRAuth.m */; }; + 46EB2E00025460 /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000029E0 /* FIRAuthDataResult.m */; }; + 46EB2E00025470 /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A10 /* FIRAuthDispatcher.m */; }; + 46EB2E00025480 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A30 /* FIRAuthGlobalWorkQueue.m */; }; + 46EB2E00025490 /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A60 /* FIRAuthSerialTaskQueue.m */; }; + 46EB2E000254A0 /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A70 /* FIRAuthSettings.m */; }; + 46EB2E000254B0 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A80 /* FIRAuthTokenResult.m */; }; + 46EB2E000254C0 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AB0 /* FIREmailAuthProvider.m */; }; + 46EB2E000254D0 /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AD0 /* FIREmailPasswordAuthCredential.m */; }; + 46EB2E000254E0 /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AF0 /* FIRFacebookAuthCredential.m */; }; + 46EB2E000254F0 /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B00 /* FIRFacebookAuthProvider.m */; }; + 46EB2E00025500 /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B10 /* FIRAuthCredential.m */; }; + 46EB2E00025510 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B30 /* FIRAuthProvider.m */; }; + 46EB2E00025520 /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B50 /* FIRGameCenterAuthCredential.m */; }; + 46EB2E00025530 /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B60 /* FIRGameCenterAuthProvider.m */; }; + 46EB2E00025540 /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B80 /* FIRGitHubAuthCredential.m */; }; + 46EB2E00025550 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B90 /* FIRGitHubAuthProvider.m */; }; + 46EB2E00025560 /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BB0 /* FIRGoogleAuthCredential.m */; }; + 46EB2E00025570 /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BC0 /* FIRGoogleAuthProvider.m */; }; + 46EB2E00025580 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BD0 /* FIROAuthCredential.m */; }; + 46EB2E00025590 /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BF0 /* FIROAuthProvider.m */; }; + 46EB2E000255A0 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C00 /* FIRPhoneAuthCredential.m */; }; + 46EB2E000255B0 /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C20 /* FIRPhoneAuthProvider.m */; }; + 46EB2E000255C0 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C40 /* FIRTwitterAuthCredential.m */; }; + 46EB2E000255D0 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C50 /* FIRTwitterAuthProvider.m */; }; + 46EB2E000255E0 /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C70 /* FIRAuthBackend+MultiFactor.m */; }; + 46EB2E000255F0 /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C90 /* FIRAuthBackend.m */; }; + 46EB2E00025600 /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CB0 /* FIRAuthRequestConfiguration.m */; }; + 46EB2E00025610 /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CF0 /* FIRIdentityToolkitRequest.m */; }; + 46EB2E00025620 /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D10 /* FIRCreateAuthURIRequest.m */; }; + 46EB2E00025630 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D30 /* FIRCreateAuthURIResponse.m */; }; + 46EB2E00025640 /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D50 /* FIRDeleteAccountRequest.m */; }; + 46EB2E00025650 /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D70 /* FIRDeleteAccountResponse.m */; }; + 46EB2E00025660 /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D90 /* FIREmailLinkSignInRequest.m */; }; + 46EB2E00025670 /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DB0 /* FIREmailLinkSignInResponse.m */; }; + 46EB2E00025680 /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DD0 /* FIRGetAccountInfoRequest.m */; }; + 46EB2E00025690 /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DF0 /* FIRGetAccountInfoResponse.m */; }; + 46EB2E000256A0 /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E10 /* FIRGetOOBConfirmationCodeRequest.m */; }; + 46EB2E000256B0 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E30 /* FIRGetOOBConfirmationCodeResponse.m */; }; + 46EB2E000256C0 /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E50 /* FIRGetProjectConfigRequest.m */; }; + 46EB2E000256D0 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E70 /* FIRGetProjectConfigResponse.m */; }; + 46EB2E000256E0 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E90 /* FIRResetPasswordRequest.m */; }; + 46EB2E000256F0 /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EB0 /* FIRResetPasswordResponse.m */; }; + 46EB2E00025700 /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002ED0 /* FIRSecureTokenRequest.m */; }; + 46EB2E00025710 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EF0 /* FIRSecureTokenResponse.m */; }; + 46EB2E00025720 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F10 /* FIRSendVerificationCodeRequest.m */; }; + 46EB2E00025730 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F30 /* FIRSendVerificationCodeResponse.m */; }; + 46EB2E00025740 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F50 /* FIRSetAccountInfoRequest.m */; }; + 46EB2E00025750 /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F70 /* FIRSetAccountInfoResponse.m */; }; + 46EB2E00025760 /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F90 /* FIRSignInWithGameCenterRequest.m */; }; + 46EB2E00025770 /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FB0 /* FIRSignInWithGameCenterResponse.m */; }; + 46EB2E00025780 /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FD0 /* FIRSignUpNewUserRequest.m */; }; + 46EB2E00025790 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FF0 /* FIRSignUpNewUserResponse.m */; }; + 46EB2E000257A0 /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003010 /* FIRVerifyAssertionRequest.m */; }; + 46EB2E000257B0 /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003030 /* FIRVerifyAssertionResponse.m */; }; + 46EB2E000257C0 /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003050 /* FIRVerifyClientRequest.m */; }; + 46EB2E000257D0 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003070 /* FIRVerifyClientResponse.m */; }; + 46EB2E000257E0 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003090 /* FIRVerifyCustomTokenRequest.m */; }; + 46EB2E000257F0 /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030B0 /* FIRVerifyCustomTokenResponse.m */; }; + 46EB2E00025800 /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030D0 /* FIRVerifyPasswordRequest.m */; }; + 46EB2E00025810 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000030F0 /* FIRVerifyPasswordResponse.m */; }; + 46EB2E00025820 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003110 /* FIRVerifyPhoneNumberRequest.m */; }; + 46EB2E00025830 /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003130 /* FIRVerifyPhoneNumberResponse.m */; }; + 46EB2E00025840 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003150 /* FIRFinalizeMFAEnrollmentRequest.m */; }; + 46EB2E00025850 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003170 /* FIRFinalizeMFAEnrollmentResponse.m */; }; + 46EB2E00025860 /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003190 /* FIRStartMFAEnrollmentRequest.m */; }; + 46EB2E00025870 /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031B0 /* FIRStartMFAEnrollmentResponse.m */; }; + 46EB2E00025880 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031D0 /* FIRFinalizeMFASignInRequest.m */; }; + 46EB2E00025890 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000031F0 /* FIRFinalizeMFASignInResponse.m */; }; + 46EB2E000258A0 /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003210 /* FIRStartMFASignInRequest.m */; }; + 46EB2E000258B0 /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003230 /* FIRStartMFASignInResponse.m */; }; + 46EB2E000258C0 /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003250 /* FIRWithdrawMFARequest.m */; }; + 46EB2E000258D0 /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003270 /* FIRWithdrawMFAResponse.m */; }; + 46EB2E000258E0 /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032A0 /* FIRAuthProtoMFAEnrollment.m */; }; + 46EB2E000258F0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; + 46EB2E00025900 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000032E0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; + 46EB2E00025910 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; + 46EB2E00025920 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003320 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; + 46EB2E00025930 /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003340 /* FIRMultiFactor.m */; }; + 46EB2E00025940 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003360 /* FIRMultiFactorAssertion.m */; }; + 46EB2E00025950 /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003370 /* FIRMultiFactorConstants.m */; }; + 46EB2E00025960 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003390 /* FIRMultiFactorInfo.m */; }; + 46EB2E00025970 /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033B0 /* FIRMultiFactorResolver.m */; }; + 46EB2E00025980 /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033D0 /* FIRMultiFactorSession.m */; }; + 46EB2E00025990 /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000033F0 /* FIRPhoneMultiFactorAssertion.m */; }; + 46EB2E000259A0 /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003400 /* FIRPhoneMultiFactorGenerator.m */; }; + 46EB2E000259B0 /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003420 /* FIRPhoneMultiFactorInfo.m */; }; + 46EB2E000259C0 /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003650 /* FIRAuthKeychainServices.m */; }; + 46EB2E000259D0 /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003670 /* FIRAuthUserDefaults.m */; }; + 46EB2E000259E0 /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003690 /* FIRAuthAPNSToken.m */; }; + 46EB2E000259F0 /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036B0 /* FIRAuthAPNSTokenManager.m */; }; + 46EB2E00025A00 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036D0 /* FIRAuthAppCredential.m */; }; + 46EB2E00025A10 /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000036F0 /* FIRAuthAppCredentialManager.m */; }; + 46EB2E00025A20 /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003710 /* FIRAuthNotificationManager.m */; }; + 46EB2E00025A30 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003730 /* FIRAuthStoredUserManager.m */; }; + 46EB2E00025A40 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003750 /* FIRSecureTokenService.m */; }; + 46EB2E00025A50 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003760 /* FIRAdditionalUserInfo.m */; }; + 46EB2E00025A60 /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003780 /* FIRUser.m */; }; + 46EB2E00025A70 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000037A0 /* FIRUserInfoImpl.m */; }; + 46EB2E00025A80 /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000037B0 /* FIRUserMetadata.m */; }; + 46EB2E00025A90 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000037F0 /* FIRAuthDefaultUIDelegate.m */; }; + 46EB2E00025AA0 /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003810 /* FIRAuthErrorUtils.m */; }; + 46EB2E00025AB0 /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003830 /* FIRAuthExceptionUtils.m */; }; + 46EB2E00025AC0 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003860 /* FIRAuthURLPresenter.m */; }; + 46EB2E00025AD0 /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003880 /* FIRAuthWebUtils.m */; }; + 46EB2E00025AE0 /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000038A0 /* FIRAuthWebView.m */; }; + 46EB2E00025AF0 /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000038C0 /* FIRAuthWebViewController.m */; }; + 46EB2E00025B00 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000038E0 /* NSData+FIRBase64.m */; }; + 46EB2E00025B10 /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000029F0 /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B20 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A00 /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B30 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B40 /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A40 /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B50 /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A50 /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B60 /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002A90 /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B70 /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AA0 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B80 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025B90 /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002AE0 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BA0 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B20 /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BB0 /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B40 /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BC0 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002B70 /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BD0 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BA0 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BE0 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002BE0 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025BF0 /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C10 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C00 /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C30 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C10 /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C20 /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002C80 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C30 /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CA0 /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C40 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CC0 /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C50 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CD0 /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C60 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002CE0 /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C70 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D00 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C80 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D20 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025C90 /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D40 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CA0 /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D60 /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CB0 /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002D80 /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CC0 /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DA0 /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CD0 /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DC0 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CE0 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002DE0 /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025CF0 /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D00 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D10 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E40 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D20 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E60 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D30 /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002E80 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D40 /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EA0 /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D50 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EC0 /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D60 /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002EE0 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D70 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F00 /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D80 /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F20 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025D90 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F40 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DA0 /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F60 /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DB0 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DC0 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DD0 /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FC0 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DE0 /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00002FE0 /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025DF0 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003000 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E00 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003020 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E10 /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003040 /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E20 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003060 /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E30 /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003080 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E40 /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E50 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030C0 /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E60 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000030E0 /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E70 /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E80 /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025E90 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025EA0 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025EB0 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025EC0 /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025ED0 /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025EE0 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025EF0 /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003200 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F00 /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003220 /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F10 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003240 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F20 /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003260 /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F30 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003280 /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F40 /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F50 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F60 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F70 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F80 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025F90 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003330 /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FA0 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003350 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FB0 /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003380 /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FC0 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000033A0 /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FD0 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000033C0 /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FE0 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00025FF0 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003410 /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026000 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003430 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026010 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003440 /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026020 /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003450 /* FIRAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026030 /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003460 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026040 /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003470 /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026050 /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003480 /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026060 /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003490 /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026070 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034A0 /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026080 /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034B0 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026090 /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034C0 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260A0 /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034D0 /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260B0 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034E0 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260C0 /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000034F0 /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260D0 /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003500 /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260E0 /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003510 /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000260F0 /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003520 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026100 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003530 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026110 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003540 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026120 /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003550 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026130 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003560 /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026140 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003570 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026150 /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003580 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026160 /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003590 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026170 /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035A0 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026180 /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035B0 /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026190 /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035C0 /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261A0 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035D0 /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261B0 /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035E0 /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261C0 /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000035F0 /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261D0 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003600 /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261E0 /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003610 /* FIRUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000261F0 /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003620 /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026200 /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003630 /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026210 /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003640 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026220 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003660 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026230 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003680 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026240 /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036A0 /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026250 /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036C0 /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026260 /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000036E0 /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026270 /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003700 /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026280 /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003720 /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026290 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003740 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262A0 /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003770 /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262B0 /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003790 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262C0 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037C0 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262D0 /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037D0 /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262E0 /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000262F0 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003800 /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026300 /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003820 /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026310 /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003840 /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026320 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003850 /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026330 /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003870 /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026340 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003890 /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026350 /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038B0 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026360 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038D0 /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026370 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000038F0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026380 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003900 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026390 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003910 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263A0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003920 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263B0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003930 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263C0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003940 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263D0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003950 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263E0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003960 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000263F0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003970 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026400 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003980 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026410 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003990 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026420 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039A0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026430 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039B0 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026480 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026470 /* FirebaseAuth-dummy.m */; }; + 46EB2E00026510 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000039D0 /* FIRAnalyticsConfiguration.m */; }; + 46EB2E00026520 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000039E0 /* FIRApp.m */; }; + 46EB2E00026530 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A00 /* FIRBundleUtil.m */; }; + 46EB2E00026540 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A10 /* FIRComponent.m */; }; + 46EB2E00026550 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A20 /* FIRComponentContainer.m */; }; + 46EB2E00026560 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A40 /* FIRComponentType.m */; }; + 46EB2E00026570 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A50 /* FIRConfiguration.m */; }; + 46EB2E00026580 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A70 /* FIRCoreDiagnosticsConnector.m */; }; + 46EB2E00026590 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A80 /* FIRDependency.m */; }; + 46EB2E000265A0 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AA0 /* FIRDiagnosticsData.m */; }; + 46EB2E000265B0 /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AC0 /* FIRFirebaseUserAgent.m */; }; + 46EB2E000265C0 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AD0 /* FIRHeartbeatInfo.m */; }; + 46EB2E000265D0 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AE0 /* FIRHeartbeatLogger.m */; }; + 46EB2E000265E0 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AF0 /* FIRLogger.m */; }; + 46EB2E000265F0 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B00 /* FIROptions.m */; }; + 46EB2E00026600 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B10 /* FIRVersion.m */; }; + 46EB2E00026610 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039C0 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026620 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000039F0 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026630 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A30 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026640 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A60 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026650 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003A90 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026660 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003AB0 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026670 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B20 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026680 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B30 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026690 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B40 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266A0 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B50 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266B0 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B60 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266C0 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B70 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266D0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B80 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266E0 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003B90 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000266F0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BA0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026700 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BB0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026710 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BC0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026720 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BD0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026730 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BE0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026740 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003BF0 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026750 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C00 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026760 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C10 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026770 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C20 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026780 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C30 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026790 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C40 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000267A0 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C50 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026800 /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000267F0 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026820 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026810 /* FirebaseCore-dummy.m */; }; + 46EB2E000268B0 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C60 /* FIRCoreDiagnostics.m */; }; + 46EB2E000268C0 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C70 /* firebasecore.nanopb.c */; }; + 46EB2E000268D0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C80 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000268E0 /* FIRCoreDiagnostics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003C90 /* FIRCoreDiagnostics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000268F0 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CA0 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026900 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CB0 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026950 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026940 /* FirebaseCoreDiagnostics-dummy.m */; }; + 46EB2E000269E0 /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CC0 /* dummy.m */; }; + 46EB2E000269F0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CD0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A00 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CE0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A10 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003CF0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A20 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D00 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A30 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D10 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A40 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D20 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A50 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D30 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A60 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D40 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A70 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D50 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A80 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D60 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026A90 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D70 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026AA0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D80 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026B00 /* FirebaseCoreExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026AF0 /* FirebaseCoreExtension-dummy.m */; }; + 46EB2E00026B90 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003D90 /* Heartbeat.swift */; }; + 46EB2E00026BA0 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DA0 /* HeartbeatController.swift */; }; + 46EB2E00026BB0 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DB0 /* HeartbeatsBundle.swift */; }; + 46EB2E00026BC0 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DC0 /* HeartbeatsPayload.swift */; }; + 46EB2E00026BD0 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DD0 /* HeartbeatStorage.swift */; }; + 46EB2E00026BE0 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DE0 /* RingBuffer.swift */; }; + 46EB2E00026BF0 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003DF0 /* Storage.swift */; }; + 46EB2E00026C00 /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E00 /* StorageFactory.swift */; }; + 46EB2E00026C10 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E10 /* WeakContainer.swift */; }; + 46EB2E00026C20 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E20 /* _ObjC_HeartbeatController.swift */; }; + 46EB2E00026C30 /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E30 /* _ObjC_HeartbeatsPayload.swift */; }; + 46EB2E00026C90 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00026C80 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00026CD0 /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00026CC0 /* FirebaseCoreInternal-dummy.m */; }; + 46EB2E00026D60 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E50 /* FIRCLSApplication.m */; }; + 46EB2E00026D70 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E70 /* FIRCLSBinaryImage.m */; }; + 46EB2E00026D80 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E90 /* FIRCLSContext.m */; }; + 46EB2E00026D90 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.c */; }; + 46EB2E00026DA0 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EE0 /* FIRCLSHost.m */; }; + 46EB2E00026DB0 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EF0 /* FIRCLSProcess.c */; }; + 46EB2E00026DC0 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F20 /* FIRCLSUserLogging.m */; }; + 46EB2E00026DD0 /* FIRCLSAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F40 /* FIRCLSAnalyticsManager.m */; }; + 46EB2E00026DE0 /* FIRCLSExistingReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F60 /* FIRCLSExistingReportManager.m */; }; + 46EB2E00026DF0 /* FIRCLSManagerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F80 /* FIRCLSManagerData.m */; }; + 46EB2E00026E00 /* FIRCLSMetricKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FA0 /* FIRCLSMetricKitManager.m */; }; + 46EB2E00026E10 /* FIRCLSNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FC0 /* FIRCLSNotificationManager.m */; }; + 46EB2E00026E20 /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FE0 /* FIRCLSReportManager.m */; }; + 46EB2E00026E30 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004010 /* FIRCLSReportUploader.m */; }; + 46EB2E00026E40 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004040 /* FIRCLSDataCollectionArbiter.m */; }; + 46EB2E00026E50 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004060 /* FIRCLSDataCollectionToken.m */; }; + 46EB2E00026E60 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004080 /* FIRCLSUserDefaults.m */; }; + 46EB2E00026E70 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040A0 /* FIRCrashlytics.m */; }; + 46EB2E00026E80 /* FIRCrashlyticsReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040B0 /* FIRCrashlyticsReport.m */; }; + 46EB2E00026E90 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040C0 /* FIRExceptionModel.m */; }; + 46EB2E00026EA0 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040D0 /* FIRStackFrame.m */; }; + 46EB2E00026EB0 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000040F0 /* FIRCLSException.mm */; }; + 46EB2E00026EC0 /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004110 /* FIRCLSHandler.m */; }; + 46EB2E00026ED0 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004120 /* FIRCLSMachException.c */; }; + 46EB2E00026EE0 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004140 /* FIRCLSSignal.c */; }; + 46EB2E00026EF0 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004160 /* FIRCLSAllocate.c */; }; + 46EB2E00026F00 /* FIRCLSCallStackTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004190 /* FIRCLSCallStackTree.m */; }; + 46EB2E00026F10 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000041D0 /* FIRCLSFile.m */; }; + 46EB2E00026F20 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000041E0 /* FIRCLSInternalLogging.c */; }; + 46EB2E00026F30 /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004210 /* FIRCLSLogger.m */; }; + 46EB2E00026F40 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004220 /* FIRCLSProfiling.c */; }; + 46EB2E00026F50 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004240 /* FIRCLSThreadState.c */; }; + 46EB2E00026F60 /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004270 /* FIRCLSUtility.m */; }; + 46EB2E00026F70 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004290 /* FIRCLSExecutionIdentifierModel.m */; }; + 46EB2E00026F80 /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042B0 /* FIRCLSFileManager.m */; }; + 46EB2E00026F90 /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042D0 /* FIRCLSInstallIdentifierModel.m */; }; + 46EB2E00026FA0 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000042F0 /* FIRCLSInternalReport.m */; }; + 46EB2E00026FB0 /* FIRCLSLaunchMarkerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004310 /* FIRCLSLaunchMarkerModel.m */; }; + 46EB2E00026FC0 /* FIRCLSOnDemandModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004330 /* FIRCLSOnDemandModel.m */; }; + 46EB2E00026FD0 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004350 /* FIRCLSSettings.m */; }; + 46EB2E00026FE0 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004370 /* FIRCLSSymbolResolver.m */; }; + 46EB2E00026FF0 /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004390 /* FIRCLSRecordApplication.m */; }; + 46EB2E00027000 /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043B0 /* FIRCLSRecordBase.m */; }; + 46EB2E00027010 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043D0 /* FIRCLSRecordHost.m */; }; + 46EB2E00027020 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000043F0 /* FIRCLSRecordIdentity.m */; }; + 46EB2E00027030 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004410 /* FIRCLSReportAdapter.m */; }; + 46EB2E00027040 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004440 /* FIRCLSAsyncOperation.m */; }; + 46EB2E00027050 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004470 /* FIRCLSProcessReportOperation.m */; }; + 46EB2E00027060 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004490 /* FIRCLSDemangleOperation.mm */; }; + 46EB2E00027070 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044B0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; + 46EB2E00027080 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044D0 /* FIRCLSSymbolicationOperation.m */; }; + 46EB2E00027090 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000044F0 /* FIRCLSThreadArrayOperation.m */; }; + 46EB2E000270A0 /* FIRCLSSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045B0 /* FIRCLSSettingsManager.m */; }; + 46EB2E000270B0 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045D0 /* FIRCLSApplicationIdentifierModel.m */; }; + 46EB2E000270C0 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000045F0 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; + 46EB2E000270D0 /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004610 /* FIRCLSNetworkOperation.m */; }; + 46EB2E000270E0 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004620 /* FIRCLSCompactUnwind.c */; }; + 46EB2E000270F0 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004650 /* FIRCLSDataParsing.c */; }; + 46EB2E00027100 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.c */; }; + 46EB2E00027110 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004690 /* FIRCLSDwarfUnwind.c */; }; + 46EB2E00027120 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000046C0 /* FIRCLSUnwind.c */; }; + 46EB2E00027130 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000046F0 /* FIRCLSUnwind_arm.c */; }; + 46EB2E00027140 /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004700 /* FIRCLSUnwind_x86.c */; }; + 46EB2E00027150 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004720 /* crashlytics.nanopb.c */; }; + 46EB2E00027160 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004750 /* FIRCLSByteUtility.m */; }; + 46EB2E00027170 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004770 /* FIRCLSConstants.m */; }; + 46EB2E00027180 /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004790 /* FIRCLSFABHost.m */; }; + 46EB2E00027190 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047B0 /* FIRCLSCodeMapping.m */; }; + 46EB2E000271A0 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047D0 /* FIRCLSdSYM.m */; }; + 46EB2E000271B0 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000047F0 /* FIRCLSMachO.m */; }; + 46EB2E000271C0 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004810 /* FIRCLSMachOBinary.m */; }; + 46EB2E000271D0 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004830 /* FIRCLSMachOSlice.m */; }; + 46EB2E000271E0 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004850 /* FIRCLSFABNetworkClient.m */; }; + 46EB2E000271F0 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004870 /* FIRCLSMultipartMimeStreamEncoder.m */; }; + 46EB2E00027200 /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004890 /* FIRCLSNetworkResponseHandler.m */; }; + 46EB2E00027210 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048B0 /* FIRCLSURLBuilder.m */; }; + 46EB2E00027220 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048D0 /* FIRCLSCompoundOperation.m */; }; + 46EB2E00027230 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000048F0 /* FIRCLSFABAsyncOperation.m */; }; + 46EB2E00027240 /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004930 /* FIRCLSUUID.m */; }; + 46EB2E00027250 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E40 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027260 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E60 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027270 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003E80 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027280 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EB0 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027290 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003EC0 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272A0 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003ED0 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272B0 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F00 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272C0 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F10 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272D0 /* FIRCLSAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F30 /* FIRCLSAnalyticsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272E0 /* FIRCLSExistingReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F50 /* FIRCLSExistingReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000272F0 /* FIRCLSManagerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F70 /* FIRCLSManagerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027300 /* FIRCLSMetricKitManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003F90 /* FIRCLSMetricKitManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027310 /* FIRCLSNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FB0 /* FIRCLSNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027320 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FD0 /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027330 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00003FF0 /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027340 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004000 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027350 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004020 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027360 /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004030 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027370 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004050 /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027380 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004070 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027390 /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004090 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273A0 /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000040E0 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273B0 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004100 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273C0 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004130 /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273D0 /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004150 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273E0 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004170 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000273F0 /* FIRCLSCallStackTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004180 /* FIRCLSCallStackTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027400 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041A0 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027410 /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041B0 /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027420 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041C0 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027430 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000041F0 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027440 /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004200 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027450 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004230 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027460 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004250 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027470 /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004260 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027480 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027490 /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042A0 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274A0 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274B0 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000042E0 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274C0 /* FIRCLSLaunchMarkerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004300 /* FIRCLSLaunchMarkerModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274D0 /* FIRCLSOnDemandModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004320 /* FIRCLSOnDemandModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274E0 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004340 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000274F0 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004360 /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027500 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004380 /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027510 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043A0 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027520 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043C0 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027530 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000043E0 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027540 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004400 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027550 /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004420 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027560 /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004430 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027570 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004450 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027580 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004460 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027590 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004480 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275A0 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275B0 /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044C0 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275C0 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000044E0 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275D0 /* FIRCLSExistingReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004500 /* FIRCLSExistingReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275E0 /* FIRCLSOnDemandModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004510 /* FIRCLSOnDemandModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000275F0 /* FIRCrashlyticsReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004520 /* FIRCrashlyticsReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027600 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004530 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027610 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004540 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027620 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004550 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027630 /* FIRCrashlyticsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004560 /* FIRCrashlyticsReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027640 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004570 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027650 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004580 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027660 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004590 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027670 /* FIRCLSSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045A0 /* FIRCLSSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027680 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027690 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276A0 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004600 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276B0 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004630 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276C0 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004640 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276D0 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004660 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276E0 /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004680 /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000276F0 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046A0 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027700 /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046B0 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027710 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046D0 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027720 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000046E0 /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027730 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004710 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027740 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004730 /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027750 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004740 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027760 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004760 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027770 /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004780 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027780 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047A0 /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027790 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047C0 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277A0 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000047E0 /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277B0 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004800 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277C0 /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004820 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277D0 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004840 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277E0 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000277F0 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004880 /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027800 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048A0 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027810 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048C0 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027820 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000048E0 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027830 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004900 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027840 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004910 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027850 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004920 /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027860 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004940 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027870 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004950 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027880 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004960 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027890 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004970 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278A0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004980 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278B0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004990 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278C0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049A0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278D0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049B0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278E0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049C0 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000278F0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049D0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027900 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049E0 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027910 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000049F0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027920 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A00 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027930 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A10 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027940 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A20 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027950 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A30 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027960 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A40 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00027970 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A50 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000279C0 /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000279B0 /* FirebaseCrashlytics-dummy.m */; }; + 46EB2E00027A50 /* FIRDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A60 /* FIRDatabase.m */; }; + 46EB2E00027A60 /* FIRDatabaseComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A80 /* FIRDatabaseComponent.m */; }; + 46EB2E00027A70 /* FIRDatabaseConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AA0 /* FIRDatabaseConfig.m */; }; + 46EB2E00027A80 /* FIRDatabaseQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AB0 /* FIRDatabaseQuery.m */; }; + 46EB2E00027A90 /* FIRDataSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AC0 /* FIRDataSnapshot.m */; }; + 46EB2E00027AA0 /* FIRMutableData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AD0 /* FIRMutableData.m */; }; + 46EB2E00027AB0 /* FIRServerValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AE0 /* FIRServerValue.m */; }; + 46EB2E00027AC0 /* FIRTransactionResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004AF0 /* FIRTransactionResult.m */; }; + 46EB2E00027AD0 /* FConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B80 /* FConstants.m */; }; + 46EB2E00027AE0 /* FCompoundHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BA0 /* FCompoundHash.m */; }; + 46EB2E00027AF0 /* FListenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BC0 /* FListenProvider.m */; }; + 46EB2E00027B00 /* FPersistentConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BE0 /* FPersistentConnection.m */; }; + 46EB2E00027B10 /* FQueryParams.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C00 /* FQueryParams.m */; }; + 46EB2E00027B20 /* FQuerySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C20 /* FQuerySpec.m */; }; + 46EB2E00027B30 /* FRangeMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C40 /* FRangeMerge.m */; }; + 46EB2E00027B40 /* FRepo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C60 /* FRepo.m */; }; + 46EB2E00027B50 /* FRepoInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C80 /* FRepoInfo.m */; }; + 46EB2E00027B60 /* FRepoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CA0 /* FRepoManager.m */; }; + 46EB2E00027B70 /* FServerValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CD0 /* FServerValues.m */; }; + 46EB2E00027B80 /* FSnapshotHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CF0 /* FSnapshotHolder.m */; }; + 46EB2E00027B90 /* FSparseSnapshotTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D10 /* FSparseSnapshotTree.m */; }; + 46EB2E00027BA0 /* FSyncPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D30 /* FSyncPoint.m */; }; + 46EB2E00027BB0 /* FSyncTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D50 /* FSyncTree.m */; }; + 46EB2E00027BC0 /* FWriteRecord.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D70 /* FWriteRecord.m */; }; + 46EB2E00027BD0 /* FWriteTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D90 /* FWriteTree.m */; }; + 46EB2E00027BE0 /* FWriteTreeRef.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DB0 /* FWriteTreeRef.m */; }; + 46EB2E00027BF0 /* FAckUserWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DD0 /* FAckUserWrite.m */; }; + 46EB2E00027C00 /* FMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DF0 /* FMerge.m */; }; + 46EB2E00027C10 /* FOperationSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E20 /* FOperationSource.m */; }; + 46EB2E00027C20 /* FOverwrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E40 /* FOverwrite.m */; }; + 46EB2E00027C30 /* FImmutableTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E60 /* FImmutableTree.m */; }; + 46EB2E00027C40 /* FIRRetryHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E80 /* FIRRetryHelper.m */; }; + 46EB2E00027C50 /* FPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EA0 /* FPath.m */; }; + 46EB2E00027C60 /* FTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EC0 /* FTree.m */; }; + 46EB2E00027C70 /* FTreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EE0 /* FTreeNode.m */; }; + 46EB2E00027C80 /* FCacheNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F00 /* FCacheNode.m */; }; + 46EB2E00027C90 /* FCancelEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F20 /* FCancelEvent.m */; }; + 46EB2E00027CA0 /* FChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F40 /* FChange.m */; }; + 46EB2E00027CB0 /* FChildEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F60 /* FChildEventRegistration.m */; }; + 46EB2E00027CC0 /* FDataEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F80 /* FDataEvent.m */; }; + 46EB2E00027CD0 /* FEventRaiser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FB0 /* FEventRaiser.m */; }; + 46EB2E00027CE0 /* FChildChangeAccumulator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FE0 /* FChildChangeAccumulator.m */; }; + 46EB2E00027CF0 /* FIndexedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005010 /* FIndexedFilter.m */; }; + 46EB2E00027D00 /* FLimitedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005030 /* FLimitedFilter.m */; }; + 46EB2E00027D10 /* FKeepSyncedEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005060 /* FKeepSyncedEventRegistration.m */; }; + 46EB2E00027D20 /* FValueEventRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005080 /* FValueEventRegistration.m */; }; + 46EB2E00027D30 /* FView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050A0 /* FView.m */; }; + 46EB2E00027D40 /* FViewCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050C0 /* FViewCache.m */; }; + 46EB2E00027D50 /* FClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000050E0 /* FClock.m */; }; + 46EB2E00027D60 /* FEventGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005100 /* FEventGenerator.m */; }; + 46EB2E00027D70 /* FIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005120 /* FIndex.m */; }; + 46EB2E00027D80 /* FIRDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005140 /* FIRDatabaseReference.m */; }; + 46EB2E00027D90 /* FKeyIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005160 /* FKeyIndex.m */; }; + 46EB2E00027DA0 /* FListenComplete.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005180 /* FListenComplete.m */; }; + 46EB2E00027DB0 /* FMaxNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051A0 /* FMaxNode.m */; }; + 46EB2E00027DC0 /* FNamedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051C0 /* FNamedNode.m */; }; + 46EB2E00027DD0 /* FPathIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000051E0 /* FPathIndex.m */; }; + 46EB2E00027DE0 /* FPriorityIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005200 /* FPriorityIndex.m */; }; + 46EB2E00027DF0 /* FRangedFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005220 /* FRangedFilter.m */; }; + 46EB2E00027E00 /* FTransformedEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005240 /* FTransformedEnumerator.m */; }; + 46EB2E00027E10 /* FValueIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005260 /* FValueIndex.m */; }; + 46EB2E00027E20 /* FViewProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005280 /* FViewProcessor.m */; }; + 46EB2E00027E30 /* FViewProcessorResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052A0 /* FViewProcessorResult.m */; }; + 46EB2E00027E40 /* FIRDatabaseConnectionContextProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052C0 /* FIRDatabaseConnectionContextProvider.m */; }; + 46EB2E00027E50 /* FCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000052E0 /* FCachePolicy.m */; }; + 46EB2E00027E60 /* FLevelDBStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005300 /* FLevelDBStorageEngine.m */; }; + 46EB2E00027E70 /* FPendingPut.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005320 /* FPendingPut.m */; }; + 46EB2E00027E80 /* FPersistenceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005340 /* FPersistenceManager.m */; }; + 46EB2E00027E90 /* FPruneForest.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005360 /* FPruneForest.m */; }; + 46EB2E00027EA0 /* FTrackedQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005390 /* FTrackedQuery.m */; }; + 46EB2E00027EB0 /* FTrackedQueryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000053B0 /* FTrackedQueryManager.m */; }; + 46EB2E00027EC0 /* FConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005460 /* FConnection.m */; }; + 46EB2E00027ED0 /* FWebSocketConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005480 /* FWebSocketConnection.m */; }; + 46EB2E00027EE0 /* FChildrenNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054A0 /* FChildrenNode.m */; }; + 46EB2E00027EF0 /* FCompoundWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054C0 /* FCompoundWrite.m */; }; + 46EB2E00027F00 /* FEmptyNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000054E0 /* FEmptyNode.m */; }; + 46EB2E00027F10 /* FIndexedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005500 /* FIndexedNode.m */; }; + 46EB2E00027F20 /* FLeafNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005520 /* FLeafNode.m */; }; + 46EB2E00027F30 /* FSnapshotUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005550 /* FSnapshotUtilities.m */; }; + 46EB2E00027F40 /* FArraySortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005570 /* FArraySortedDictionary.m */; }; + 46EB2E00027F50 /* FImmutableSortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005590 /* FImmutableSortedDictionary.m */; }; + 46EB2E00027F60 /* FImmutableSortedSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000055B0 /* FImmutableSortedSet.m */; }; + 46EB2E00027F70 /* FLLRBEmptyNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000055D0 /* FLLRBEmptyNode.m */; }; + 46EB2E00027F80 /* FLLRBValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005600 /* FLLRBValueNode.m */; }; + 46EB2E00027F90 /* FTreeSortedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005620 /* FTreeSortedDictionary.m */; }; + 46EB2E00027FA0 /* FTreeSortedDictionaryEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005640 /* FTreeSortedDictionaryEnumerator.m */; }; + 46EB2E00027FB0 /* FSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005670 /* FSRWebSocket.m */; }; + 46EB2E00027FC0 /* NSData+SRB64Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005690 /* NSData+SRB64Additions.m */; }; + 46EB2E00027FD0 /* FAtomicNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000056C0 /* FAtomicNumber.m */; }; + 46EB2E00027FE0 /* FEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000056E0 /* FEventEmitter.m */; }; + 46EB2E00027FF0 /* FNextPushId.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005700 /* FNextPushId.m */; }; + 46EB2E00028000 /* FParsedUrl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005720 /* FParsedUrl.m */; }; + 46EB2E00028010 /* FStringUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005740 /* FStringUtilities.m */; }; + 46EB2E00028020 /* FUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005770 /* FUtilities.m */; }; + 46EB2E00028030 /* FValidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005790 /* FValidation.m */; }; + 46EB2E00028040 /* FTupleBoolBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057B0 /* FTupleBoolBlock.m */; }; + 46EB2E00028050 /* FTupleCallbackStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057D0 /* FTupleCallbackStatus.m */; }; + 46EB2E00028060 /* FTupleFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000057F0 /* FTupleFirebase.m */; }; + 46EB2E00028070 /* FTupleNodePath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005810 /* FTupleNodePath.m */; }; + 46EB2E00028080 /* FTupleObjectNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005830 /* FTupleObjectNode.m */; }; + 46EB2E00028090 /* FTupleObjects.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005850 /* FTupleObjects.m */; }; + 46EB2E000280A0 /* FTupleOnDisconnect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005870 /* FTupleOnDisconnect.m */; }; + 46EB2E000280B0 /* FTuplePathValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005890 /* FTuplePathValue.m */; }; + 46EB2E000280C0 /* FTupleRemovedQueriesEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058B0 /* FTupleRemovedQueriesEvents.m */; }; + 46EB2E000280D0 /* FTupleSetIdPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058D0 /* FTupleSetIdPath.m */; }; + 46EB2E000280E0 /* FTupleStringNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000058F0 /* FTupleStringNode.m */; }; + 46EB2E000280F0 /* FTupleTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005910 /* FTupleTransaction.m */; }; + 46EB2E00028100 /* FTupleTSN.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005930 /* FTupleTSN.m */; }; + 46EB2E00028110 /* FTupleUserCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005950 /* FTupleUserCallback.m */; }; + 46EB2E00028120 /* APLevelDB.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005960 /* APLevelDB.mm */; }; + 46EB2E00028130 /* fbase64.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005970 /* fbase64.c */; }; + 46EB2E00028140 /* FIRDatabaseComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A70 /* FIRDatabaseComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028150 /* FIRDatabaseConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004A90 /* FIRDatabaseConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028160 /* FIRDatabaseQuery_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B00 /* FIRDatabaseQuery_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028170 /* FIRDatabaseReference_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B10 /* FIRDatabaseReference_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028180 /* FIRDatabase_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B20 /* FIRDatabase_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028190 /* FIRDataSnapshot_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B30 /* FIRDataSnapshot_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281A0 /* FIRMutableData_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B40 /* FIRMutableData_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281B0 /* FIRTransactionResult_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B50 /* FIRTransactionResult_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281C0 /* FTypedefs_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B60 /* FTypedefs_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281D0 /* FConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B70 /* FConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281E0 /* FCompoundHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004B90 /* FCompoundHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000281F0 /* FListenProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BB0 /* FListenProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028200 /* FPersistentConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BD0 /* FPersistentConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028210 /* FQueryParams.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004BF0 /* FQueryParams.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028220 /* FQuerySpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C10 /* FQuerySpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028230 /* FRangeMerge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C30 /* FRangeMerge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028240 /* FRepo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C50 /* FRepo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028250 /* FRepoInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C70 /* FRepoInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028260 /* FRepoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004C90 /* FRepoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028270 /* FRepo_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CB0 /* FRepo_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028280 /* FServerValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CC0 /* FServerValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028290 /* FSnapshotHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004CE0 /* FSnapshotHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282A0 /* FSparseSnapshotTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D00 /* FSparseSnapshotTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282B0 /* FSyncPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D20 /* FSyncPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282C0 /* FSyncTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D40 /* FSyncTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282D0 /* FWriteRecord.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D60 /* FWriteRecord.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282E0 /* FWriteTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004D80 /* FWriteTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000282F0 /* FWriteTreeRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DA0 /* FWriteTreeRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028300 /* FAckUserWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DC0 /* FAckUserWrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028310 /* FMerge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004DE0 /* FMerge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028320 /* FOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E00 /* FOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028330 /* FOperationSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E10 /* FOperationSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028340 /* FOverwrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E30 /* FOverwrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028350 /* FImmutableTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E50 /* FImmutableTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028360 /* FIRRetryHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E70 /* FIRRetryHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028370 /* FPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004E90 /* FPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028380 /* FTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EB0 /* FTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028390 /* FTreeNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004ED0 /* FTreeNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283A0 /* FCacheNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004EF0 /* FCacheNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283B0 /* FCancelEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F10 /* FCancelEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283C0 /* FChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F30 /* FChange.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283D0 /* FChildEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F50 /* FChildEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283E0 /* FDataEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F70 /* FDataEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000283F0 /* FEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004F90 /* FEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028400 /* FEventRaiser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FA0 /* FEventRaiser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028410 /* FEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FC0 /* FEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028420 /* FChildChangeAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FD0 /* FChildChangeAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028430 /* FCompleteChildSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00004FF0 /* FCompleteChildSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028440 /* FIndexedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005000 /* FIndexedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028450 /* FLimitedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005020 /* FLimitedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028460 /* FNodeFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005040 /* FNodeFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028470 /* FKeepSyncedEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005050 /* FKeepSyncedEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028480 /* FValueEventRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005070 /* FValueEventRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028490 /* FView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005090 /* FView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284A0 /* FViewCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050B0 /* FViewCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284B0 /* FClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050D0 /* FClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284C0 /* FEventGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000050F0 /* FEventGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284D0 /* FIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005110 /* FIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284E0 /* FIRDatabaseConfig_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005130 /* FIRDatabaseConfig_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000284F0 /* FKeyIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005150 /* FKeyIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028500 /* FListenComplete.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005170 /* FListenComplete.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028510 /* FMaxNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005190 /* FMaxNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028520 /* FNamedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051B0 /* FNamedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028530 /* FPathIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051D0 /* FPathIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028540 /* FPriorityIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000051F0 /* FPriorityIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028550 /* FRangedFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005210 /* FRangedFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028560 /* FTransformedEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005230 /* FTransformedEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028570 /* FValueIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005250 /* FValueIndex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028580 /* FViewProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005270 /* FViewProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028590 /* FViewProcessorResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005290 /* FViewProcessorResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285A0 /* FIRDatabaseConnectionContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285B0 /* FCachePolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052D0 /* FCachePolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285C0 /* FLevelDBStorageEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000052F0 /* FLevelDBStorageEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285D0 /* FPendingPut.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005310 /* FPendingPut.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285E0 /* FPersistenceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005330 /* FPersistenceManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000285F0 /* FPruneForest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005350 /* FPruneForest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028600 /* FStorageEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005370 /* FStorageEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028610 /* FTrackedQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005380 /* FTrackedQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028620 /* FTrackedQueryManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053A0 /* FTrackedQueryManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028630 /* FIRDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053C0 /* FIRDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028640 /* FIRDatabaseQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053D0 /* FIRDatabaseQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028650 /* FIRDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053E0 /* FIRDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028660 /* FIRDataEventType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000053F0 /* FIRDataEventType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028670 /* FIRDataSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005400 /* FIRDataSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028680 /* FirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005410 /* FirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028690 /* FIRMutableData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005420 /* FIRMutableData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286A0 /* FIRServerValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005430 /* FIRServerValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286B0 /* FIRTransactionResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005440 /* FIRTransactionResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286C0 /* FConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005450 /* FConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286D0 /* FWebSocketConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005470 /* FWebSocketConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286E0 /* FChildrenNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005490 /* FChildrenNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000286F0 /* FCompoundWrite.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054B0 /* FCompoundWrite.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028700 /* FEmptyNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054D0 /* FEmptyNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028710 /* FIndexedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000054F0 /* FIndexedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028720 /* FLeafNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005510 /* FLeafNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028730 /* FNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005530 /* FNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028740 /* FSnapshotUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005540 /* FSnapshotUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028750 /* FArraySortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005560 /* FArraySortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028760 /* FImmutableSortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005580 /* FImmutableSortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028770 /* FImmutableSortedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055A0 /* FImmutableSortedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028780 /* FLLRBEmptyNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055C0 /* FLLRBEmptyNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028790 /* FLLRBNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055E0 /* FLLRBNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287A0 /* FLLRBValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000055F0 /* FLLRBValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287B0 /* FTreeSortedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005610 /* FTreeSortedDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287C0 /* FTreeSortedDictionaryEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287D0 /* fbase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005650 /* fbase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287E0 /* FSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005660 /* FSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000287F0 /* NSData+SRB64Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005680 /* NSData+SRB64Additions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028800 /* APLevelDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056A0 /* APLevelDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028810 /* FAtomicNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056B0 /* FAtomicNumber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028820 /* FEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056D0 /* FEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028830 /* FNextPushId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000056F0 /* FNextPushId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028840 /* FParsedUrl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005710 /* FParsedUrl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028850 /* FStringUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005730 /* FStringUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028860 /* FTypedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005750 /* FTypedefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028870 /* FUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005760 /* FUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028880 /* FValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005780 /* FValidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028890 /* FTupleBoolBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057A0 /* FTupleBoolBlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288A0 /* FTupleCallbackStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057C0 /* FTupleCallbackStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288B0 /* FTupleFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000057E0 /* FTupleFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288C0 /* FTupleNodePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005800 /* FTupleNodePath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288D0 /* FTupleObjectNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005820 /* FTupleObjectNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288E0 /* FTupleObjects.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005840 /* FTupleObjects.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000288F0 /* FTupleOnDisconnect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005860 /* FTupleOnDisconnect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028900 /* FTuplePathValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005880 /* FTuplePathValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028910 /* FTupleRemovedQueriesEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058A0 /* FTupleRemovedQueriesEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028920 /* FTupleSetIdPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058C0 /* FTupleSetIdPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028930 /* FTupleStringNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000058E0 /* FTupleStringNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028940 /* FTupleTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005900 /* FTupleTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028950 /* FTupleTSN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005920 /* FTupleTSN.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028960 /* FTupleUserCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005940 /* FTupleUserCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028970 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005980 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028980 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005990 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028990 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059A0 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289A0 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059B0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289B0 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059C0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289C0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059D0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289D0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059E0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289E0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000059F0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000289F0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A00 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A00 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A10 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A10 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A20 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A20 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A30 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A30 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A40 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A40 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A50 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028A50 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A60 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00028AA0 /* FirebaseDatabase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00028A90 /* FirebaseDatabase-dummy.m */; }; + 46EB2E00028B30 /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CA0 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B40 /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CB0 /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B50 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CC0 /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B60 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CD0 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B70 /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CE0 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B80 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005CF0 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028B90 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D00 /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BA0 /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D10 /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BB0 /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D20 /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BC0 /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D30 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BD0 /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D40 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BE0 /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D50 /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028BF0 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D60 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C00 /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D70 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C10 /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D80 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C20 /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005D90 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C30 /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DA0 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C40 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DB0 /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C50 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DC0 /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C60 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DD0 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C70 /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DE0 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C80 /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005DF0 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028C90 /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E00 /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CA0 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E10 /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CB0 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E20 /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CC0 /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006210 /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CD0 /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006220 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CE0 /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066B0 /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028CF0 /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066F0 /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D00 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006890 /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D10 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068C0 /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D20 /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068E0 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D30 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068F0 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D40 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006910 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D50 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006950 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D60 /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069C0 /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 46EB2E00028D70 /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E30 /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028D80 /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E40 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028D90 /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E50 /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DA0 /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E60 /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DB0 /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E70 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DC0 /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E80 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DD0 /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005E90 /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DE0 /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EA0 /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028DF0 /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EB0 /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E00 /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EC0 /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E10 /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005ED0 /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E20 /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EE0 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E30 /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005EF0 /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E40 /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F00 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E50 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F10 /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E60 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F20 /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E70 /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F30 /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E80 /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F40 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028E90 /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F50 /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028EA0 /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F60 /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028EB0 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F70 /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028EC0 /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F80 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028ED0 /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005F90 /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028EE0 /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FA0 /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028EF0 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FB0 /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F00 /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FC0 /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F10 /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FD0 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F20 /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FE0 /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F30 /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00005FF0 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F40 /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006000 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F50 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006010 /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F60 /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006020 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F70 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006030 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F80 /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006040 /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028F90 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006050 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FA0 /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006060 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FB0 /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006070 /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FC0 /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006080 /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FD0 /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006090 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FE0 /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060A0 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00028FF0 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060B0 /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029000 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060C0 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029010 /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060D0 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029020 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060E0 /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029030 /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000060F0 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029040 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006100 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029050 /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006110 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029060 /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006120 /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029070 /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006130 /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029080 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006140 /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029090 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006150 /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290A0 /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006160 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290B0 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006170 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290C0 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006180 /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290D0 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006190 /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290E0 /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061A0 /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000290F0 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061B0 /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029100 /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061C0 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029110 /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061D0 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029120 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061E0 /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029130 /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000061F0 /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029140 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006200 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029150 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006230 /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029160 /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006240 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029170 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006250 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029180 /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006260 /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029190 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006270 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291A0 /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006280 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291B0 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006290 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291C0 /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062A0 /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291D0 /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062B0 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291E0 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062C0 /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000291F0 /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062D0 /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029200 /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062E0 /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029210 /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000062F0 /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029220 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006300 /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029230 /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006310 /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029240 /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006320 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029250 /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006330 /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029260 /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006340 /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029270 /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006350 /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029280 /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006360 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029290 /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006370 /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292A0 /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006380 /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292B0 /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006390 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292C0 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063A0 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292D0 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063B0 /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292E0 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063C0 /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000292F0 /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063D0 /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029300 /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063E0 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029310 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000063F0 /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029320 /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006400 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029330 /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006410 /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029340 /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006420 /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029350 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006430 /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029360 /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006440 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029370 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006450 /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029380 /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006460 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029390 /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006470 /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293A0 /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006480 /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293B0 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006490 /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293C0 /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064A0 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293D0 /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064B0 /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293E0 /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064C0 /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000293F0 /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064D0 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029400 /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064E0 /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029410 /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000064F0 /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029420 /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006500 /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029430 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006510 /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029440 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006520 /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029450 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006530 /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029460 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006540 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029470 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006550 /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029480 /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006560 /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029490 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006570 /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294A0 /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006580 /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294B0 /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006590 /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294C0 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065A0 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294D0 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065B0 /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294E0 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065C0 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000294F0 /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065D0 /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029500 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065E0 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029510 /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000065F0 /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029520 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006600 /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029530 /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006610 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029540 /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006620 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029550 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006630 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029560 /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006640 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029570 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006650 /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029580 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006660 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029590 /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006670 /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295A0 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006680 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295B0 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006690 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295C0 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066A0 /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295D0 /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066C0 /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295E0 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066D0 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000295F0 /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000066E0 /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029600 /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006700 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029610 /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006710 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029620 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006720 /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029630 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006730 /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029640 /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006740 /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029650 /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006750 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029660 /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006760 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029670 /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006770 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029680 /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006780 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029690 /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006790 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296A0 /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067A0 /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296B0 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067B0 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296C0 /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067C0 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296D0 /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067D0 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296E0 /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067E0 /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000296F0 /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000067F0 /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029700 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006800 /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029710 /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006810 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029720 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006820 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029730 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006830 /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029740 /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006840 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029750 /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006850 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029760 /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006860 /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029770 /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006870 /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029780 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006880 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029790 /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068A0 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297A0 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068B0 /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297B0 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000068D0 /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297C0 /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006900 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297D0 /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006920 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297E0 /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006930 /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000297F0 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006940 /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029800 /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006960 /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029810 /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006970 /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029820 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006980 /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029830 /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006990 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029840 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069A0 /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029850 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069B0 /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029860 /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069D0 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029870 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069E0 /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029880 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000069F0 /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E00029890 /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A00 /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000298A0 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A10 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000298B0 /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A20 /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000298C0 /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A30 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000298D0 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A40 /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46EB2E000298E0 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A70 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000298F0 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A80 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029900 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005A90 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029910 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AA0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029920 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AB0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029930 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AC0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029940 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AD0 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029950 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AE0 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029960 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005AF0 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029970 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B00 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029980 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B10 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029990 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B20 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299A0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B30 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299B0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B40 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299C0 /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B50 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299D0 /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B60 /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299E0 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B70 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000299F0 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B80 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A00 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005B90 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A10 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BA0 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A20 /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BB0 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A30 /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BC0 /* FIRFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A40 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BD0 /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A50 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BE0 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A60 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005BF0 /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A70 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C00 /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A80 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C10 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029A90 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C20 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AA0 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C30 /* FIRQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AB0 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C40 /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AC0 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C50 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AD0 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C60 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AE0 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C70 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029AF0 /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C80 /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029B00 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00005C90 /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029B10 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A50 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029B60 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00029B50 /* FirebaseFirestore-dummy.m */; }; + 46EB2E00029BF0 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A70 /* FIRInstallationsErrorUtil.m */; }; + 46EB2E00029C00 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A90 /* FIRInstallationsHTTPError.m */; }; + 46EB2E00029C10 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AA0 /* FIRInstallations.m */; }; + 46EB2E00029C20 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AB0 /* FIRInstallationsAuthTokenResult.m */; }; + 46EB2E00029C30 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AE0 /* FIRInstallationsItem.m */; }; + 46EB2E00029C40 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B00 /* FIRInstallationsLogger.m */; }; + 46EB2E00029C50 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B20 /* FIRInstallationsIIDStore.m */; }; + 46EB2E00029C60 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B40 /* FIRInstallationsIIDTokenStore.m */; }; + 46EB2E00029C70 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B60 /* FIRInstallationsAPIService.m */; }; + 46EB2E00029C80 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B80 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 46EB2E00029C90 /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BA0 /* FIRCurrentDateProvider.m */; }; + 46EB2E00029CA0 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BC0 /* FIRInstallationsBackoffController.m */; }; + 46EB2E00029CB0 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BE0 /* FIRInstallationsIDController.m */; }; + 46EB2E00029CC0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C00 /* FIRInstallationsSingleOperationPromiseCache.m */; }; + 46EB2E00029CD0 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C30 /* FIRInstallationsStore.m */; }; + 46EB2E00029CE0 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C50 /* FIRInstallationsStoredAuthToken.m */; }; + 46EB2E00029CF0 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C70 /* FIRInstallationsStoredItem.m */; }; + 46EB2E00029D00 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A60 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D10 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006A80 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D20 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AC0 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D30 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AD0 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D40 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006AF0 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D50 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B10 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D60 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D70 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B50 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D80 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029D90 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006B90 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DA0 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BB0 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DB0 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BD0 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DC0 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DD0 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C10 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DE0 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C20 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029DF0 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E00 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C60 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E10 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C80 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E20 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006C90 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E30 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CA0 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E40 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CB0 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E50 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CC0 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E60 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CD0 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E70 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CE0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E80 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006CF0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029E90 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D00 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029EA0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D10 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029EB0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D20 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029EC0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D30 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029ED0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D40 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029EE0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D50 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029EF0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D60 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029F00 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D70 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029F10 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D80 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00029F60 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00029F50 /* FirebaseInstallations-dummy.m */; }; + 46EB2E00029FF0 /* FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DA0 /* FIRMessaging.m */; }; + 46EB2E0002A000 /* FIRMessagingAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DC0 /* FIRMessagingAnalytics.m */; }; + 46EB2E0002A010 /* FIRMessagingConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DF0 /* FIRMessagingConstants.m */; }; + 46EB2E0002A020 /* FIRMessagingContextManagerService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E10 /* FIRMessagingContextManagerService.m */; }; + 46EB2E0002A030 /* FIRMessagingExtensionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E30 /* FIRMessagingExtensionHelper.m */; }; + 46EB2E0002A040 /* FIRMessagingLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E50 /* FIRMessagingLogger.m */; }; + 46EB2E0002A050 /* FIRMessagingPendingTopicsList.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E70 /* FIRMessagingPendingTopicsList.m */; }; + 46EB2E0002A060 /* FIRMessagingPersistentSyncMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E90 /* FIRMessagingPersistentSyncMessage.m */; }; + 46EB2E0002A070 /* FIRMessagingPubSub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EB0 /* FIRMessagingPubSub.m */; }; + 46EB2E0002A080 /* FIRMessagingRemoteNotificationsProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006ED0 /* FIRMessagingRemoteNotificationsProxy.m */; }; + 46EB2E0002A090 /* FIRMessagingRmqManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EF0 /* FIRMessagingRmqManager.m */; }; + 46EB2E0002A0A0 /* FIRMessagingSyncMessageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F10 /* FIRMessagingSyncMessageManager.m */; }; + 46EB2E0002A0B0 /* FIRMessagingTopicOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F30 /* FIRMessagingTopicOperation.m */; }; + 46EB2E0002A0C0 /* FIRMessagingUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F60 /* FIRMessagingUtilities.m */; }; + 46EB2E0002A0D0 /* NSDictionary+FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F90 /* NSDictionary+FIRMessaging.m */; }; + 46EB2E0002A0E0 /* NSError+FIRMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FB0 /* NSError+FIRMessaging.m */; }; + 46EB2E0002A0F0 /* me.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FC0 /* me.nanopb.c */; }; + 46EB2E0002A100 /* FIRMessagingAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007020 /* FIRMessagingAPNSInfo.m */; }; + 46EB2E0002A110 /* FIRMessagingAuthKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007040 /* FIRMessagingAuthKeychain.m */; }; + 46EB2E0002A120 /* FIRMessagingAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007060 /* FIRMessagingAuthService.m */; }; + 46EB2E0002A130 /* FIRMessagingBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007080 /* FIRMessagingBackupExcludedPlist.m */; }; + 46EB2E0002A140 /* FIRMessagingCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070A0 /* FIRMessagingCheckinPreferences.m */; }; + 46EB2E0002A150 /* FIRMessagingCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070C0 /* FIRMessagingCheckinService.m */; }; + 46EB2E0002A160 /* FIRMessagingCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000070E0 /* FIRMessagingCheckinStore.m */; }; + 46EB2E0002A170 /* FIRMessagingKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007100 /* FIRMessagingKeychain.m */; }; + 46EB2E0002A180 /* FIRMessagingTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007120 /* FIRMessagingTokenDeleteOperation.m */; }; + 46EB2E0002A190 /* FIRMessagingTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007140 /* FIRMessagingTokenFetchOperation.m */; }; + 46EB2E0002A1A0 /* FIRMessagingTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007160 /* FIRMessagingTokenInfo.m */; }; + 46EB2E0002A1B0 /* FIRMessagingTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007180 /* FIRMessagingTokenManager.m */; }; + 46EB2E0002A1C0 /* FIRMessagingTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000071A0 /* FIRMessagingTokenOperation.m */; }; + 46EB2E0002A1D0 /* FIRMessagingTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000071C0 /* FIRMessagingTokenStore.m */; }; + 46EB2E0002A1E0 /* FirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006D90 /* FirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A1F0 /* FIRMessagingAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DB0 /* FIRMessagingAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A200 /* FIRMessagingCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DD0 /* FIRMessagingCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A210 /* FIRMessagingConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006DE0 /* FIRMessagingConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A220 /* FIRMessagingContextManagerService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E00 /* FIRMessagingContextManagerService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A230 /* FIRMessagingDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E20 /* FIRMessagingDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A240 /* FIRMessagingLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E40 /* FIRMessagingLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A250 /* FIRMessagingPendingTopicsList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E60 /* FIRMessagingPendingTopicsList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A260 /* FIRMessagingPersistentSyncMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A270 /* FIRMessagingPubSub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EA0 /* FIRMessagingPubSub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A280 /* FIRMessagingRemoteNotificationsProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A290 /* FIRMessagingRmqManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006EE0 /* FIRMessagingRmqManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2A0 /* FIRMessagingSyncMessageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F00 /* FIRMessagingSyncMessageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2B0 /* FIRMessagingTopicOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F20 /* FIRMessagingTopicOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2C0 /* FIRMessagingTopicsCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F40 /* FIRMessagingTopicsCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2D0 /* FIRMessagingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F50 /* FIRMessagingUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2E0 /* FIRMessaging_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F70 /* FIRMessaging_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A2F0 /* NSDictionary+FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006F80 /* NSDictionary+FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A300 /* NSError+FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FA0 /* NSError+FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A310 /* me.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FD0 /* me.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A320 /* FirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FE0 /* FirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A330 /* FIRMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00006FF0 /* FIRMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A340 /* FIRMessagingExtensionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007000 /* FIRMessagingExtensionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A350 /* FIRMessagingAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007010 /* FIRMessagingAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A360 /* FIRMessagingAuthKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007030 /* FIRMessagingAuthKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A370 /* FIRMessagingAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007050 /* FIRMessagingAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A380 /* FIRMessagingBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A390 /* FIRMessagingCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007090 /* FIRMessagingCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3A0 /* FIRMessagingCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070B0 /* FIRMessagingCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3B0 /* FIRMessagingCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070D0 /* FIRMessagingCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3C0 /* FIRMessagingKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000070F0 /* FIRMessagingKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3D0 /* FIRMessagingTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3E0 /* FIRMessagingTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007130 /* FIRMessagingTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A3F0 /* FIRMessagingTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007150 /* FIRMessagingTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A400 /* FIRMessagingTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007170 /* FIRMessagingTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A410 /* FIRMessagingTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007190 /* FIRMessagingTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A420 /* FIRMessagingTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071B0 /* FIRMessagingTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A430 /* FIRMessagingInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071D0 /* FIRMessagingInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A440 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071E0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A450 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000071F0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A460 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007200 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A470 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007210 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A480 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007220 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A490 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007230 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4A0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007240 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4B0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007250 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4C0 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007260 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4D0 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007270 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4E0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007280 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A4F0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007290 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A500 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072A0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A510 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072B0 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A520 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072C0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A530 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072D0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A540 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000072E0 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A590 /* FirebaseMessaging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002A580 /* FirebaseMessaging-dummy.m */; }; + 46EB2E0002A620 /* FIRConfigValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000072F0 /* FIRConfigValue.m */; }; + 46EB2E0002A630 /* FIRRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007300 /* FIRRemoteConfig.m */; }; + 46EB2E0002A640 /* FIRRemoteConfigComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007320 /* FIRRemoteConfigComponent.m */; }; + 46EB2E0002A650 /* RCNConfigContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073A0 /* RCNConfigContent.m */; }; + 46EB2E0002A660 /* RCNConfigDBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073C0 /* RCNConfigDBManager.m */; }; + 46EB2E0002A670 /* RCNConfigExperiment.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000073F0 /* RCNConfigExperiment.m */; }; + 46EB2E0002A680 /* RCNConfigFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007400 /* RCNConfigFetch.m */; }; + 46EB2E0002A690 /* RCNConfigSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007410 /* RCNConfigSettings.m */; }; + 46EB2E0002A6A0 /* RCNConstants3P.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007430 /* RCNConstants3P.m */; }; + 46EB2E0002A6B0 /* RCNDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007450 /* RCNDevice.m */; }; + 46EB2E0002A6C0 /* RCNPersonalization.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007470 /* RCNPersonalization.m */; }; + 46EB2E0002A6D0 /* RCNUserDefaultsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007490 /* RCNUserDefaultsManager.m */; }; + 46EB2E0002A6E0 /* FIRRemoteConfigComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007310 /* FIRRemoteConfigComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A6F0 /* FIRRemoteConfig_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007330 /* FIRRemoteConfig_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A700 /* RCNConfigFetch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007340 /* RCNConfigFetch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A710 /* RCNConfigSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007350 /* RCNConfigSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A720 /* FirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007360 /* FirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A730 /* FIRRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007370 /* FIRRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A740 /* RCNConfigConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007380 /* RCNConfigConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A750 /* RCNConfigContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007390 /* RCNConfigContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A760 /* RCNConfigDBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073B0 /* RCNConfigDBManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A770 /* RCNConfigDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073D0 /* RCNConfigDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A780 /* RCNConfigExperiment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000073E0 /* RCNConfigExperiment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A790 /* RCNConfigValue_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007420 /* RCNConfigValue_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7A0 /* RCNDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007440 /* RCNDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7B0 /* RCNPersonalization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007460 /* RCNPersonalization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7C0 /* RCNUserDefaultsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007480 /* RCNUserDefaultsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7D0 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074A0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7E0 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074B0 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A7F0 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074C0 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A800 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074D0 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A810 /* ABTExperimentPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074E0 /* ABTExperimentPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A820 /* FirebaseABTestingInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000074F0 /* FirebaseABTestingInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A830 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007500 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A840 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007510 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A850 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007520 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A860 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007530 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A870 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007540 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A880 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007550 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A890 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007560 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8A0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007570 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8B0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007580 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8C0 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007590 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8D0 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075A0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8E0 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075B0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A8F0 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075C0 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002A940 /* FirebaseRemoteConfig-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002A930 /* FirebaseRemoteConfig-dummy.m */; }; + 46EB2E0002A9D0 /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000075D0 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002A9E0 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000075F0 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002A9F0 /* FlipperBase64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007620 /* FlipperBase64.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA00 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007660 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA10 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000076B0 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA20 /* FlipperRSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007710 /* FlipperRSocket.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA30 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007730 /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA40 /* FlipperSocketProvider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007760 /* FlipperSocketProvider.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA50 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007780 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA60 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000077B0 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA70 /* FlipperURLSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000077E0 /* FlipperURLSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA80 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007800 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 46EB2E0002AA90 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000075E0 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAA0 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007600 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAB0 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007610 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAC0 /* FlipperBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007630 /* FlipperBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAD0 /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007640 /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAE0 /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007650 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AAF0 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007670 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB00 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007680 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB10 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007690 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB20 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076A0 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB30 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076C0 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB40 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076D0 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB50 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076E0 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB60 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000076F0 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB70 /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007700 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB80 /* FlipperRSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007720 /* FlipperRSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AB90 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007740 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABA0 /* FlipperSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007750 /* FlipperSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABB0 /* FlipperSocketProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007770 /* FlipperSocketProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABC0 /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007790 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABD0 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077A0 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABE0 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077C0 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002ABF0 /* FlipperTransportTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077D0 /* FlipperTransportTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AC00 /* FlipperURLSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000077F0 /* FlipperURLSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AC10 /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007810 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AC20 /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007820 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AC80 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AC70 /* Flipper-dummy.m */; }; + 46EB2E0002AD10 /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007830 /* ontop_combined_all_macho_gas.S */; }; + 46EB2E0002AD20 /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007840 /* make_combined_all_macho_gas.S */; }; + 46EB2E0002AD30 /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007850 /* jump_combined_all_macho_gas.S */; }; + 46EB2E0002AD90 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AD80 /* Flipper-Boost-iOSX-dummy.m */; }; + 46EB2E0002AE20 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007860 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE30 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007880 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE40 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078A0 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE50 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078C0 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE60 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000078E0 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE70 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007900 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE80 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007920 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AE90 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007950 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 46EB2E0002AEA0 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007870 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AEB0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007890 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AEC0 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078B0 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AED0 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078D0 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AEE0 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000078F0 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AEF0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007910 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AF00 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007930 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AF10 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007940 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AF20 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007960 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AF30 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007970 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002AF90 /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002AF80 /* Flipper-DoubleConversion-dummy.m */; }; + 46EB2E0002B020 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00007980 /* format.cc */; }; + 46EB2E0002B030 /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007990 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B040 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079A0 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B050 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079B0 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B060 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079C0 /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B070 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079D0 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B080 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079E0 /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B090 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000079F0 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B0A0 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A00 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B0B0 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A10 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B0C0 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A20 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B0D0 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A30 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B0E0 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A40 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002B140 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002B130 /* Flipper-Fmt-dummy.m */; }; + 46EB2E0002B1D0 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000096F0 /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B1E0 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009700 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B1F0 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000097C0 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B200 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000097F0 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B210 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009800 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B220 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009810 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B230 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009820 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B240 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009830 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B250 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009840 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B260 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009850 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B270 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009860 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B280 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009870 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B290 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009880 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2A0 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009890 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2B0 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098A0 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2C0 /* FollyMemcpy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098B0 /* FollyMemcpy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2D0 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098C0 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2E0 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098D0 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B2F0 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098E0 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B300 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000098F0 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B310 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009900 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B320 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009910 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B330 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009920 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B340 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009930 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B350 /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009940 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B360 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009950 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B370 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009960 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B380 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009970 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B390 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009980 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3A0 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009990 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3B0 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099A0 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3C0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099B0 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3D0 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099C0 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3E0 /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099D0 /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B3F0 /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099E0 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B400 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000099F0 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B410 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A00 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B420 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A10 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B430 /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A20 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B440 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A30 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B450 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A40 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B460 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A50 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B470 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A60 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B480 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A70 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B490 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A80 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4A0 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009A90 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4B0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AA0 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4C0 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AB0 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4D0 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AC0 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4E0 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AD0 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B4F0 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AE0 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B500 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009AF0 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B510 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B00 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B520 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B10 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B530 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B20 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B540 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B30 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B550 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B40 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B560 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B50 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B570 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B60 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B580 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B70 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B590 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B80 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5A0 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009B90 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5B0 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BA0 /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5C0 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BB0 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5D0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BC0 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5E0 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BD0 /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B5F0 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BE0 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B600 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009BF0 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B610 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C00 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B620 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C10 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B630 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C20 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B640 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C30 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B650 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C40 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B660 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C50 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B670 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C60 /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B680 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C70 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B690 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C80 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6A0 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009C90 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6B0 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CA0 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6C0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CB0 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6D0 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CC0 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6E0 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CD0 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B6F0 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CE0 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B700 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009CF0 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B710 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D00 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B720 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D10 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B730 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D20 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B740 /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D30 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B750 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D40 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B760 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D50 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B770 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D60 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B780 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D70 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B790 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D80 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7A0 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009D90 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7B0 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DA0 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7C0 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DB0 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7D0 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DC0 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7E0 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DD0 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B7F0 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DE0 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B800 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009DF0 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B810 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E00 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B820 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E10 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B830 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E20 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B840 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E30 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B850 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E40 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B860 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E50 /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B870 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E60 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B880 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E70 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B890 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E80 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8A0 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009E90 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8B0 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EA0 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8C0 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EB0 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8D0 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EC0 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8E0 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009ED0 /* Exception.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B8F0 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EE0 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B900 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009EF0 /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B910 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F00 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B920 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F10 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B930 /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F20 /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B940 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F30 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B950 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F40 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B960 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F50 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B970 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F60 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B980 /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F70 /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B990 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F80 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9A0 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009F90 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9B0 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FA0 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9C0 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FB0 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9D0 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FC0 /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9E0 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FD0 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002B9F0 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FE0 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA00 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00009FF0 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA10 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A000 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA20 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A010 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA30 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A020 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA40 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A030 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA50 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A040 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA60 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A050 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA70 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A060 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA80 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A070 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BA90 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A080 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAA0 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A090 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAB0 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0A0 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAC0 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0B0 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAD0 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A480 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAE0 /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A490 /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BAF0 /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4A0 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB00 /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4B0 /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB10 /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4C0 /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB20 /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4D0 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB30 /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4E0 /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB40 /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A4F0 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB50 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A500 /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB60 /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A510 /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB70 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A780 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB80 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A790 /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BB90 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7A0 /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBA0 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7B0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBB0 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7C0 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBC0 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7D0 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBD0 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7E0 /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBE0 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A7F0 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BBF0 /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA00 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC00 /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA10 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC10 /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA20 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC20 /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA30 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC30 /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA40 /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC40 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA50 /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC50 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA60 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC60 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA70 /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC70 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA80 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC80 /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AA90 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BC90 /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAA0 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCA0 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAB0 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCB0 /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAC0 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCC0 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAD0 /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCD0 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAE0 /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCE0 /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AAF0 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BCF0 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB00 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD00 /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB10 /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD10 /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB20 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD20 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB30 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD30 /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB40 /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD40 /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB50 /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD50 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB60 /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD60 /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB70 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD70 /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB80 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD80 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AB90 /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BD90 /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABA0 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDA0 /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABB0 /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDB0 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC40 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDC0 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC60 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDD0 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACA0 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDE0 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACC0 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BDF0 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD00 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE00 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD10 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE10 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD50 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE20 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE10 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE30 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE70 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE40 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE90 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE50 /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEB0 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE60 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AED0 /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE70 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEF0 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE80 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF10 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BE90 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF30 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BEA0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF50 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BEB0 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF70 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BEC0 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF90 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BED0 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFB0 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BEE0 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFE0 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BEF0 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B020 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BF00 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B030 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002BF10 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A50 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF20 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A60 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF30 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A70 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF40 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A80 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF50 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007A90 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF60 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AA0 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF70 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AB0 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF80 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AC0 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BF90 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AD0 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFA0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AE0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFB0 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007AF0 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFC0 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B00 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFD0 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B10 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFE0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B20 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002BFF0 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B30 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C000 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B40 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C010 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B50 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C020 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B60 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C030 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B70 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C040 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B80 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C050 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007B90 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C060 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BA0 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C070 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BB0 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C080 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BC0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C090 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BD0 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0A0 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BE0 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0B0 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007BF0 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0C0 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C00 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0D0 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C10 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0E0 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C20 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C0F0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C30 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C100 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C40 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C110 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C50 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C120 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C60 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C130 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C70 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C140 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C80 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C150 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007C90 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C160 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CA0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C170 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CB0 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C180 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CC0 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C190 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CD0 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1A0 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CE0 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1B0 /* FollyMemcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007CF0 /* FollyMemcpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1C0 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D00 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1D0 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D10 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1E0 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D20 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C1F0 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D30 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C200 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D40 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C210 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D50 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C220 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D60 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C230 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D70 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C240 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D80 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C250 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007D90 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C260 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DA0 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C270 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DB0 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C280 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DC0 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C290 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DD0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2A0 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DE0 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2B0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007DF0 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2C0 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E00 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2D0 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E10 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2E0 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E20 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C2F0 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E30 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C300 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E40 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C310 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E50 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C320 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E60 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C330 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E70 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C340 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E80 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C350 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007E90 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C360 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EA0 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C370 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EB0 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C380 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EC0 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C390 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007ED0 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3A0 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EE0 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3B0 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007EF0 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3C0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F00 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3D0 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F10 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3E0 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F20 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C3F0 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F30 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C400 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F40 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C410 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F50 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C420 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F60 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C430 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F70 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C440 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F80 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C450 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007F90 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C460 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FA0 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C470 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FB0 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C480 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FC0 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C490 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FD0 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4A0 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FE0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4B0 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00007FF0 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4C0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008000 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4D0 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008010 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4E0 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008020 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C4F0 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008030 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C500 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008040 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C510 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008050 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C520 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008060 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C530 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008070 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C540 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008080 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C550 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008090 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C560 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080A0 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C570 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080B0 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C580 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080C0 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C590 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080D0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5A0 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080E0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5B0 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000080F0 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5C0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008100 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5D0 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008110 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5E0 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008120 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C5F0 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008130 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C600 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008140 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C610 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008150 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C620 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008160 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C630 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008170 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C640 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008180 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C650 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008190 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C660 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081A0 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C670 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081B0 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C680 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081C0 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C690 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081D0 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6A0 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081E0 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6B0 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000081F0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6C0 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008200 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6D0 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008210 /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6E0 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008220 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C6F0 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008230 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C700 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008240 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C710 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008250 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C720 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008260 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C730 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008270 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C740 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008280 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C750 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008290 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C760 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082A0 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C770 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082B0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C780 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082C0 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C790 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082D0 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7A0 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082E0 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7B0 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000082F0 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7C0 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008300 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7D0 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008310 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7E0 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008320 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C7F0 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008330 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C800 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008340 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C810 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008350 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C820 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008360 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C830 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008370 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C840 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008380 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C850 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008390 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C860 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083A0 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C870 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083B0 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C880 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083C0 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C890 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083D0 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8A0 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083E0 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8B0 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000083F0 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8C0 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008400 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8D0 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008410 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8E0 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008420 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C8F0 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008430 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C900 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008440 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C910 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008450 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C920 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008460 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C930 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008470 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C940 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008480 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C950 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008490 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C960 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084A0 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C970 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084B0 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C980 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084C0 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C990 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084D0 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9A0 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084E0 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9B0 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000084F0 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9C0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008500 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9D0 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008510 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9E0 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008520 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002C9F0 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008530 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA00 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008540 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA10 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008550 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA20 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008560 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA30 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008570 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA40 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008580 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA50 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008590 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA60 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085A0 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA70 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085B0 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA80 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085C0 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CA90 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085D0 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAA0 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085E0 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAB0 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000085F0 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAC0 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008600 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAD0 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008610 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAE0 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008620 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CAF0 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008630 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB00 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008640 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB10 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008650 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB20 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008660 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB30 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008670 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB40 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008680 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB50 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008690 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB60 /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086A0 /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB70 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086B0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB80 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086C0 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CB90 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086D0 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBA0 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086E0 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBB0 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000086F0 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBC0 /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008700 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBD0 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008710 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBE0 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008720 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CBF0 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008730 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC00 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008740 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC10 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008750 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC20 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008760 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC30 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008770 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC40 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008780 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC50 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008790 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC60 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087A0 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC70 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087B0 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC80 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087C0 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CC90 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087D0 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCA0 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087E0 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCB0 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000087F0 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCC0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008800 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCD0 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008810 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCE0 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008820 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CCF0 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008830 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD00 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008840 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD10 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008850 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD20 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008860 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD30 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008870 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD40 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008880 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD50 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008890 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD60 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088A0 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD70 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088B0 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD80 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088C0 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CD90 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088D0 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDA0 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088E0 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDB0 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000088F0 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDC0 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008900 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDD0 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008910 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDE0 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008920 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CDF0 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008930 /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE00 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008940 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE10 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008950 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE20 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008960 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE30 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008970 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE40 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008980 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE50 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008990 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE60 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089A0 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE70 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089B0 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE80 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089C0 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CE90 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089D0 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CEA0 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089E0 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CEB0 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000089F0 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CEC0 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A00 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CED0 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A10 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CEE0 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A20 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CEF0 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A30 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF00 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A40 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF10 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A50 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF20 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A60 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF30 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A70 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF40 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A80 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF50 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008A90 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF60 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AA0 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF70 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AB0 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF80 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AC0 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CF90 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AD0 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFA0 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AE0 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFB0 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008AF0 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFC0 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B00 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFD0 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B10 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFE0 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B20 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002CFF0 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B30 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D000 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B40 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D010 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B50 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D020 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B60 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D030 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B70 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D040 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B80 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D050 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008B90 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D060 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BA0 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D070 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BB0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D080 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BC0 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D090 /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BD0 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0A0 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BE0 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0B0 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008BF0 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0C0 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C00 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0D0 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C10 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0E0 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C20 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D0F0 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C30 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D100 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C40 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D110 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C50 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D120 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C60 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D130 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C70 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D140 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C80 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D150 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008C90 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D160 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CA0 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D170 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CB0 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D180 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CC0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D190 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CD0 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1A0 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CE0 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1B0 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008CF0 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1C0 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D00 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1D0 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D10 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1E0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D20 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D1F0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D30 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D200 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D40 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D210 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D50 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D220 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D60 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D230 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D70 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D240 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D80 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D250 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008D90 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D260 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DA0 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D270 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DB0 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D280 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DC0 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D290 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DD0 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2A0 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DE0 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2B0 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008DF0 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2C0 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E00 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2D0 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E10 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2E0 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E20 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D2F0 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E30 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D300 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E40 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D310 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E50 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D320 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E60 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D330 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E70 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D340 /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E80 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D350 /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008E90 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D360 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EA0 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D370 /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EB0 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D380 /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EC0 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D390 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008ED0 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3A0 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EE0 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3B0 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008EF0 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3C0 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F00 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3D0 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F10 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3E0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F20 /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D3F0 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F30 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D400 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F40 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D410 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F50 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D420 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F60 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D430 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F70 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D440 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F80 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D450 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008F90 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D460 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FA0 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D470 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FB0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D480 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FC0 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D490 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FD0 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4A0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FE0 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4B0 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00008FF0 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4C0 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009000 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4D0 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009010 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4E0 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009020 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D4F0 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009030 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D500 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009040 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D510 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009050 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D520 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009060 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D530 /* OpenSSLTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009070 /* OpenSSLTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D540 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009080 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D550 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009090 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D560 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090A0 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D570 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090B0 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D580 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090C0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D590 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090D0 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5A0 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090E0 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5B0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000090F0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5C0 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009100 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5D0 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009110 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5E0 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009120 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D5F0 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009130 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D600 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009140 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D610 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009150 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D620 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009160 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D630 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009170 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D640 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009180 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D650 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009190 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D660 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091A0 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D670 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091B0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D680 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091C0 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D690 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091D0 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6A0 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091E0 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6B0 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000091F0 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6C0 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009200 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6D0 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009210 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6E0 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009220 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D6F0 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009230 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D700 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009240 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D710 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009250 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D720 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009260 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D730 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009270 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D740 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009280 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D750 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009290 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D760 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092A0 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D770 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092B0 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D780 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092C0 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D790 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092D0 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7A0 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092E0 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7B0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000092F0 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7C0 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009300 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7D0 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009310 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7E0 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009320 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D7F0 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009330 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D800 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009340 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D810 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009350 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D820 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009360 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D830 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009370 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D840 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009380 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D850 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009390 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D860 /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093A0 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D870 /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093B0 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D880 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093C0 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D890 /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093D0 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8A0 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093E0 /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8B0 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000093F0 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8C0 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009400 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8D0 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009410 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8E0 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009420 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D8F0 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009430 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D900 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009440 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D910 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009450 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D920 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009460 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D930 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009470 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D940 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009480 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D950 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009490 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D960 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094A0 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D970 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094B0 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D980 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094C0 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D990 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094D0 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9A0 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094E0 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9B0 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000094F0 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9C0 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009500 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9D0 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009510 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9E0 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009520 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002D9F0 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009530 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA00 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009540 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA10 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009550 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA20 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009560 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA30 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009570 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA40 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009580 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA50 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009590 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA60 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095A0 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA70 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095B0 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA80 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095C0 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DA90 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095D0 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAA0 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095E0 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAB0 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000095F0 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAC0 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009600 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAD0 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009610 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAE0 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009620 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DAF0 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009630 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB00 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009640 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB10 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009650 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB20 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009660 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB30 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009670 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB40 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009680 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB50 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009690 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB60 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096A0 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB70 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096B0 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB80 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096C0 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DB90 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096D0 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBA0 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000096E0 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBB0 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009710 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBC0 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009720 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBD0 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009730 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBE0 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009740 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DBF0 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009750 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC00 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009760 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC10 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009770 /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC20 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009780 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC30 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00009790 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC40 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097A0 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC50 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097B0 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC60 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097D0 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC70 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000097E0 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC80 /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0C0 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DC90 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0D0 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCA0 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0E0 /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCB0 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A0F0 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCC0 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A100 /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCD0 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A110 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCE0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A120 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DCF0 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A130 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD00 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A140 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD10 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A150 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD20 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A160 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD30 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A170 /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD40 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A180 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD50 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A190 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD60 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1A0 /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD70 /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1B0 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD80 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1C0 /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DD90 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1D0 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDA0 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1E0 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDB0 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A1F0 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDC0 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A200 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDD0 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A210 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDE0 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A220 /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DDF0 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A230 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE00 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A240 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE10 /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A250 /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE20 /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A260 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE30 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A270 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE40 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A280 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE50 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A290 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE60 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2A0 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE70 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2B0 /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE80 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2C0 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DE90 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2D0 /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DEA0 /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2E0 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DEB0 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A2F0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DEC0 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A300 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DED0 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A310 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DEE0 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A320 /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DEF0 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A330 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF00 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A340 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF10 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A350 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF20 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A360 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF30 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A370 /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF40 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A380 /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF50 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A390 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF60 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3A0 /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF70 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3B0 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF80 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3C0 /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DF90 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3D0 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFA0 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3E0 /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFB0 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A3F0 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFC0 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A400 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFD0 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A410 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFE0 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A420 /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002DFF0 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A430 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E000 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A440 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E010 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A450 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E020 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A460 /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E030 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A470 /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E040 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A520 /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E050 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A530 /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E060 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A540 /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E070 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A550 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E080 /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A560 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E090 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A570 /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0A0 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A580 /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0B0 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A590 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0C0 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5A0 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0D0 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5B0 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0E0 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5C0 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E0F0 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5D0 /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E100 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5E0 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E110 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A5F0 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E120 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A600 /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E130 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A610 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E140 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A620 /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E150 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A630 /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E160 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A640 /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E170 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A650 /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E180 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A660 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E190 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A670 /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1A0 /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A680 /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1B0 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A690 /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1C0 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6A0 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1D0 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6B0 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1E0 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6C0 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E1F0 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6D0 /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E200 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6E0 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E210 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A6F0 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E220 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A700 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E230 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A710 /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E240 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A720 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E250 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A730 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E260 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A740 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E270 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A750 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E280 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A760 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E290 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A770 /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2A0 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A800 /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2B0 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A810 /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2C0 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A820 /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2D0 /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A830 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2E0 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A840 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E2F0 /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A850 /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E300 /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A860 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E310 /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A870 /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E320 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A880 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E330 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A890 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E340 /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8A0 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E350 /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8B0 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E360 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8C0 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E370 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8D0 /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E380 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8E0 /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E390 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A8F0 /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3A0 /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A900 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3B0 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A910 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3C0 /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A920 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3D0 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A930 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3E0 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A940 /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E3F0 /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A950 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E400 /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A960 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E410 /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A970 /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E420 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A980 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E430 /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A990 /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E440 /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9A0 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E450 /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9B0 /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E460 /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9C0 /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E470 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9D0 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E480 /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9E0 /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E490 /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000A9F0 /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4A0 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABC0 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4B0 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABD0 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4C0 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABE0 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4D0 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ABF0 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4E0 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC00 /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E4F0 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC10 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E500 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC20 /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E510 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC30 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E520 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC50 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E530 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC70 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E540 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC80 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E550 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AC90 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E560 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACB0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E570 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACD0 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E580 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACE0 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E590 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ACF0 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5A0 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD20 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5B0 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD30 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5C0 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD40 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5D0 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD60 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5E0 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD70 /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E5F0 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD80 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E600 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AD90 /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E610 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADA0 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E620 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADB0 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E630 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADC0 /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E640 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADD0 /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E650 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADE0 /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E660 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ADF0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E670 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE00 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E680 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE20 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E690 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE30 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6A0 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE40 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6B0 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE50 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6C0 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE60 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6D0 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AE80 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6E0 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEA0 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E6F0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEC0 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E700 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AEE0 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E710 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF00 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E720 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF20 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E730 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF40 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E740 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF60 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E750 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AF80 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E760 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFA0 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E770 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFC0 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E780 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFD0 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E790 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000AFF0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E7A0 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B000 /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E7B0 /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B010 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E810 /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002E800 /* Flipper-Folly-dummy.m */; }; + 46EB2E0002E920 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B060 /* PTChannel.m */; }; + 46EB2E0002E930 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B090 /* PTProtocol.m */; }; + 46EB2E0002E940 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0B0 /* PTUSBHub.m */; }; + 46EB2E0002E950 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B040 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E960 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B050 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E970 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B070 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E980 /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B080 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E990 /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0A0 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002E9F0 /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002E9E0 /* Flipper-PeerTalk-dummy.m */; }; + 46EB2E0002EA80 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0C0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EA90 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0D0 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAA0 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0E0 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAB0 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B0F0 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAC0 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B100 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAD0 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B130 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAE0 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B140 /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EAF0 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B150 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB00 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B170 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB10 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B190 /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB20 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1B0 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB30 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1D0 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB40 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1F0 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB50 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B210 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB60 /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B240 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB70 /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B260 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB80 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B280 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EB90 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2B0 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBA0 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2D0 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBB0 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2F0 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBC0 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B310 /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBD0 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B330 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBE0 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B350 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EBF0 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B390 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC00 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3B0 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC10 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3D0 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC20 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3F0 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC30 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B420 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC40 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B450 /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC50 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B470 /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC60 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4A0 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC70 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4C0 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC80 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4E0 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EC90 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B500 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECA0 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B520 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECB0 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B540 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECC0 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B560 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECD0 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B580 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECE0 /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5A0 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ECF0 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5C0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED00 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5E0 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED10 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B600 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED20 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B620 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED30 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B640 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED40 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B660 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED50 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B690 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED60 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6B0 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED70 /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6D0 /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED80 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B740 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002ED90 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B770 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDA0 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B830 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDB0 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B890 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDC0 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8D0 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDD0 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B920 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDE0 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B950 /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EDF0 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B970 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE00 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9C0 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE10 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9E0 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE20 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA00 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE30 /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA20 /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE40 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA50 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE50 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA70 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 46EB2E0002EE60 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B110 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EE70 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B120 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EE80 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B160 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EE90 /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B180 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EEA0 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1A0 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EEB0 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1C0 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EEC0 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B1E0 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EED0 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B200 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EEE0 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B220 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EEF0 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B230 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF00 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B250 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF10 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B270 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF20 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B290 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF30 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2A0 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF40 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2C0 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF50 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B2E0 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF60 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B300 /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF70 /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B320 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF80 /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B340 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EF90 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B360 /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFA0 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B370 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFB0 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B380 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFC0 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3A0 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFD0 /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3C0 /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFE0 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B3E0 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002EFF0 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B400 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F000 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B410 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F010 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B430 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F020 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B440 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F030 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B460 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F040 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B480 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F050 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B490 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F060 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4B0 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F070 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4D0 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F080 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B4F0 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F090 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B510 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0A0 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B530 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0B0 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B550 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0C0 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B570 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0D0 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B590 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0E0 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5B0 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F0F0 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5D0 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F100 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B5F0 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F110 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B610 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F120 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B630 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F130 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B650 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F140 /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B670 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F150 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B680 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F160 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6A0 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F170 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6C0 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F180 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6E0 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F190 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B6F0 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1A0 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B700 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1B0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B710 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1C0 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B720 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1D0 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B730 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1E0 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B750 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F1F0 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B760 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F200 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B780 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F210 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B790 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F220 /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7A0 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F230 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7B0 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F240 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7C0 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F250 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7D0 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F260 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7E0 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F270 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B7F0 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F280 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B800 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F290 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B810 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2A0 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B820 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2B0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B840 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2C0 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B850 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2D0 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B860 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2E0 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B870 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F2F0 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B880 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F300 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8A0 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F310 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8B0 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F320 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8C0 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F330 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8E0 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F340 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B8F0 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F350 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B900 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F360 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B910 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F370 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B930 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F380 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B940 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F390 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B960 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3A0 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B980 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3B0 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B990 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3C0 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9A0 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3D0 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9B0 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3E0 /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9D0 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F3F0 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000B9F0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F400 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA10 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F410 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA30 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F420 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA40 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F430 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA60 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F440 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BA80 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F4A0 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002F490 /* Flipper-RSocket-dummy.m */; }; + 46EB2E0002F530 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAC0 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F540 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAF0 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F550 /* FlipperPlatformWebSocket.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB20 /* FlipperPlatformWebSocket.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F560 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB60 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F570 /* FlipperWebSocket.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB80 /* FlipperWebSocket.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F580 /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBA0 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F590 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBD0 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F5A0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBF0 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F5B0 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC10 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F5C0 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAA0 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F5D0 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAB0 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F5E0 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAD0 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F5F0 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F600 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB00 /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F610 /* FlipperPlatformWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB10 /* FlipperPlatformWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F620 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB30 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F630 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB40 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F640 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB50 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F650 /* FlipperWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB70 /* FlipperWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F660 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BB90 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F670 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBB0 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F680 /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F690 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BBE0 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F6A0 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC00 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F6B0 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC20 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F6C0 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC60 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F6D0 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F6E0 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BC80 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F6F0 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCC0 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F700 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCA0 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F710 /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCB0 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F720 /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCF0 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F730 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BCE0 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F740 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD30 /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F750 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD50 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F760 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD70 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F770 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD90 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F780 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDB0 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F790 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDE0 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7A0 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE00 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7B0 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE30 /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7C0 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE50 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7D0 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE80 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7E0 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEA0 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F7F0 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEC0 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F800 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD10 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F810 /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD20 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F820 /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD40 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F830 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD60 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F840 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BD80 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F850 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDA0 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F860 /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDC0 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F870 /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDD0 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F880 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BDF0 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F890 /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE10 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8A0 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE20 /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8B0 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE40 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8C0 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE60 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8D0 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE70 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8E0 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F8F0 /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEB0 /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F900 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEF0 /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F910 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF10 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F920 /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF30 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F930 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF50 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F940 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF70 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F950 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BEE0 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F960 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF00 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F970 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF20 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F980 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF40 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F990 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF60 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F9A0 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFA0 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F9B0 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFC0 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002F9C0 /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BF90 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F9D0 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFB0 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F9E0 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000BFE0 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002F9F0 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C010 /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FA00 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C040 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FA10 /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C080 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FA20 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0A0 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FA30 /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C000 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA40 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C020 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA50 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C030 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA60 /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C050 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA70 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C060 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA80 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C070 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FA90 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C090 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FAA0 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0B0 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FAB0 /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0E0 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FAC0 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C0D0 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FAD0 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C110 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FAE0 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C130 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FAF0 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C100 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FB00 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FB10 /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C160 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FB20 /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C180 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FB30 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1A0 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FB40 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1C0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FB50 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1E0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 46EB2E0002FB60 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C150 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FB70 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C170 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FB80 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C190 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FB90 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1B0 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FBA0 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C1D0 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FC00 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FBF0 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FC30 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FC20 /* FlipperKit-dummy.m */; }; + 46EB2E0002FCC0 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C200 /* GTMSessionFetcher.m */; }; + 46EB2E0002FCD0 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C210 /* GTMSessionFetcherLogging.m */; }; + 46EB2E0002FCE0 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C220 /* GTMSessionFetcherService.m */; }; + 46EB2E0002FCF0 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C230 /* GTMSessionUploadFetcher.m */; }; + 46EB2E0002FD00 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C240 /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FD10 /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C250 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FD20 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C260 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FD30 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C270 /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0002FD80 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0002FD70 /* GTMSessionFetcher-dummy.m */; }; + 46EB2E0002FE90 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C280 /* GDTCORAssert.m */; }; + 46EB2E0002FEA0 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C290 /* GDTCORClock.m */; }; + 46EB2E0002FEB0 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2A0 /* GDTCORConsoleLogger.m */; }; + 46EB2E0002FEC0 /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2B0 /* GDTCORDirectorySizeTracker.m */; }; + 46EB2E0002FED0 /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2C0 /* GDTCOREndpoints.m */; }; + 46EB2E0002FEE0 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2D0 /* GDTCOREvent.m */; }; + 46EB2E0002FEF0 /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2E0 /* GDTCORFlatFileStorage+Promises.m */; }; + 46EB2E0002FF00 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C2F0 /* GDTCORFlatFileStorage.m */; }; + 46EB2E0002FF10 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C300 /* GDTCORLifecycle.m */; }; + 46EB2E0002FF20 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C310 /* GDTCORPlatform.m */; }; + 46EB2E0002FF30 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C320 /* GDTCORReachability.m */; }; + 46EB2E0002FF40 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C330 /* GDTCORRegistrar.m */; }; + 46EB2E0002FF50 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C340 /* GDTCORStorageEventSelector.m */; }; + 46EB2E0002FF60 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C350 /* GDTCORTransformer.m */; }; + 46EB2E0002FF70 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C360 /* GDTCORTransport.m */; }; + 46EB2E0002FF80 /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C370 /* GDTCORUploadBatch.m */; }; + 46EB2E0002FF90 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C380 /* GDTCORUploadCoordinator.m */; }; + 46EB2E0002FFA0 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C560 /* GDTCCTCompressionHelper.m */; }; + 46EB2E0002FFB0 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C570 /* GDTCCTNanopbHelpers.m */; }; + 46EB2E0002FFC0 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C580 /* GDTCCTUploader.m */; }; + 46EB2E0002FFD0 /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C590 /* GDTCCTUploadOperation.m */; }; + 46EB2E0002FFE0 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5A0 /* GDTCOREvent+GDTCCTSupport.m */; }; + 46EB2E0002FFF0 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5F0 /* cct.nanopb.c */; }; + 46EB2E00030000 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C390 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030010 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3A0 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030020 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3B0 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030030 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3C0 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030040 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3D0 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030050 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3E0 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030060 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C3F0 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030070 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C400 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030080 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C410 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030090 /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C420 /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300A0 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C430 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300B0 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C440 /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300C0 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C450 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300D0 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C460 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300E0 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C470 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000300F0 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C480 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030100 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C490 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030110 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4A0 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030120 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4B0 /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030130 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4C0 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030140 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4D0 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030150 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4E0 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030160 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C4F0 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030170 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C500 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030180 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C510 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030190 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C520 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301A0 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C530 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301B0 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C540 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301C0 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C550 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301D0 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5B0 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301E0 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5C0 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000301F0 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5D0 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030200 /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C5E0 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030210 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C600 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030220 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C610 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030270 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00030260 /* GoogleDataTransport-dummy.m */; }; + 46EB2E00030300 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C680 /* GULAppDelegateSwizzler.m */; }; + 46EB2E00030310 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C690 /* GULSceneDelegateSwizzler.m */; }; + 46EB2E00030320 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C630 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030330 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C640 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030340 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C650 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030350 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C660 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030360 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C670 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030370 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6A0 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030380 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6C0 /* GULHeartbeatDateStorage.m */; }; + 46EB2E00030390 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6D0 /* GULHeartbeatDateStorageUserDefaults.m */; }; + 46EB2E000303A0 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6E0 /* GULSecureCoding.m */; }; + 46EB2E000303B0 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C780 /* GULKeychainStorage.m */; }; + 46EB2E000303C0 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C790 /* GULKeychainUtils.m */; }; + 46EB2E000303D0 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7A0 /* GULAppEnvironmentUtil.m */; }; + 46EB2E000303E0 /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7B0 /* GULURLSessionDataResponse.m */; }; + 46EB2E000303F0 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7C0 /* NSURLSession+GULPromises.m */; }; + 46EB2E00030400 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C6F0 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030410 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C700 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030420 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C710 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030430 /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C720 /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030440 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C730 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030450 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C740 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030460 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C750 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030470 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C760 /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030480 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C770 /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030490 /* GULObjectSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7F0 /* GULObjectSwizzler.m */; }; + 46EB2E000304A0 /* GULSwizzledObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C800 /* GULSwizzledObject.m */; }; + 46EB2E000304B0 /* GULObjectSwizzler+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C7E0 /* GULObjectSwizzler+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000304C0 /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C810 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000304D0 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C820 /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000304E0 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C840 /* GULLogger.m */; }; + 46EB2E000304F0 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C850 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030500 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C860 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030510 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C880 /* GULSwizzler.m */; }; + 46EB2E00030520 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C890 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030530 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8A0 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030540 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8C0 /* GULNSData+zlib.m */; }; + 46EB2E00030550 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8D0 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030560 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C8F0 /* GULMutableDictionary.m */; }; + 46EB2E00030570 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C900 /* GULNetwork.m */; }; + 46EB2E00030580 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C910 /* GULNetworkConstants.m */; }; + 46EB2E00030590 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C930 /* GULNetworkURLSession.m */; }; + 46EB2E000305A0 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C920 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000305B0 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C940 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000305C0 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C950 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000305D0 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C960 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000305E0 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C970 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000305F0 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C980 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030600 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C990 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030610 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9C0 /* GULReachabilityChecker.m */; }; + 46EB2E00030620 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9B0 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030630 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9D0 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030640 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000C9E0 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030650 /* GULProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA10 /* GULProxy.m */; }; + 46EB2E00030660 /* GULRuntimeClassDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA30 /* GULRuntimeClassDiff.m */; }; + 46EB2E00030670 /* GULRuntimeClassSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA50 /* GULRuntimeClassSnapshot.m */; }; + 46EB2E00030680 /* GULRuntimeDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA70 /* GULRuntimeDiff.m */; }; + 46EB2E00030690 /* GULRuntimeSnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA90 /* GULRuntimeSnapshot.m */; }; + 46EB2E000306A0 /* GULRuntimeStateHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAB0 /* GULRuntimeStateHelper.m */; }; + 46EB2E000306B0 /* GULSwizzler+Unswizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAC0 /* GULSwizzler+Unswizzle.m */; }; + 46EB2E000306C0 /* GULSwizzlingCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAE0 /* GULSwizzlingCache.m */; }; + 46EB2E000306D0 /* GULProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA00 /* GULProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000306E0 /* GULRuntimeClassDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA20 /* GULRuntimeClassDiff.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000306F0 /* GULRuntimeClassSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA40 /* GULRuntimeClassSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030700 /* GULRuntimeDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA60 /* GULRuntimeDiff.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030710 /* GULRuntimeSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CA80 /* GULRuntimeSnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030720 /* GULRuntimeStateHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAA0 /* GULRuntimeStateHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030730 /* GULSwizzlingCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAD0 /* GULSwizzlingCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030740 /* GULSwizzlingCache_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CAF0 /* GULSwizzlingCache_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030750 /* GULSwizzler+Unswizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB00 /* GULSwizzler+Unswizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030760 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB20 /* GULUserDefaults.m */; }; + 46EB2E00030770 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB30 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000307D0 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000307C0 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000307F0 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000307E0 /* GoogleUtilities-dummy.m */; }; + 46EB2E00030880 /* JWTAlgorithmErrorDescription+Subclass.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB60 /* JWTAlgorithmErrorDescription+Subclass.m */; }; + 46EB2E00030890 /* JWTAlgorithmErrorDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB80 /* JWTAlgorithmErrorDescription.m */; }; + 46EB2E000308A0 /* JWTAlgorithmFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBA0 /* JWTAlgorithmFactory.m */; }; + 46EB2E000308B0 /* JWTAlgorithmNone.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBC0 /* JWTAlgorithmNone.m */; }; + 46EB2E000308C0 /* JWTAlgorithmAsymmetricBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBE0 /* JWTAlgorithmAsymmetricBase.m */; }; + 46EB2E000308D0 /* JWTAlgorithmESBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC00 /* JWTAlgorithmESBase.m */; }; + 46EB2E000308E0 /* JWTAlgorithmDataHolder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC20 /* JWTAlgorithmDataHolder+FluentStyle.m */; }; + 46EB2E000308F0 /* JWTAlgorithmDataHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC40 /* JWTAlgorithmDataHolder.m */; }; + 46EB2E00030900 /* JWTAlgorithmDataHolderChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC60 /* JWTAlgorithmDataHolderChain.m */; }; + 46EB2E00030910 /* JWTAlgorithmHSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC80 /* JWTAlgorithmHSBase.m */; }; + 46EB2E00030920 /* JWTAlgorithmRSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCA0 /* JWTAlgorithmRSBase.m */; }; + 46EB2E00030930 /* JWTCryptoKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCD0 /* JWTCryptoKey.m */; }; + 46EB2E00030940 /* JWTCryptoKeyExtractor+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCF0 /* JWTCryptoKeyExtractor+FluentStyle.m */; }; + 46EB2E00030950 /* JWTCryptoKeyExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD10 /* JWTCryptoKeyExtractor.m */; }; + 46EB2E00030960 /* JWTCryptoSecurity+ErrorHandling.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD30 /* JWTCryptoSecurity+ErrorHandling.m */; }; + 46EB2E00030970 /* JWTCryptoSecurity+ExternalRepresentation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD50 /* JWTCryptoSecurity+ExternalRepresentation.m */; }; + 46EB2E00030980 /* JWTCryptoSecurity+Extraction.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD70 /* JWTCryptoSecurity+Extraction.m */; }; + 46EB2E00030990 /* JWTCryptoSecurity.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD90 /* JWTCryptoSecurity.m */; }; + 46EB2E000309A0 /* JWTClaim.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDB0 /* JWTClaim.m */; }; + 46EB2E000309B0 /* JWTClaimsSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDD0 /* JWTClaimsSet.m */; }; + 46EB2E000309C0 /* JWTClaimsSetSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDF0 /* JWTClaimsSetSerializer.m */; }; + 46EB2E000309D0 /* JWTClaimsSetVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE10 /* JWTClaimsSetVerifier.m */; }; + 46EB2E000309E0 /* JWTBuilder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE30 /* JWTBuilder+FluentStyle.m */; }; + 46EB2E000309F0 /* JWTCoding+ResultTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE50 /* JWTCoding+ResultTypes.m */; }; + 46EB2E00030A00 /* JWTCoding+VersionOne.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE70 /* JWTCoding+VersionOne.m */; }; + 46EB2E00030A10 /* JWTCoding+VersionThree.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE90 /* JWTCoding+VersionThree.m */; }; + 46EB2E00030A20 /* JWTCoding+VersionTwo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEB0 /* JWTCoding+VersionTwo.m */; }; + 46EB2E00030A30 /* JWTCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CED0 /* JWTCoding.m */; }; + 46EB2E00030A40 /* JWTCodingBuilder+FluentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEF0 /* JWTCodingBuilder+FluentStyle.m */; }; + 46EB2E00030A50 /* JWTBase64Coder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF20 /* JWTBase64Coder.m */; }; + 46EB2E00030A60 /* JWTErrorDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF50 /* JWTErrorDescription.m */; }; + 46EB2E00030A70 /* JWTAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB40 /* JWTAlgorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030A80 /* JWTAlgorithmErrorDescription+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030A90 /* JWTAlgorithmErrorDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AA0 /* JWTAlgorithmFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CB90 /* JWTAlgorithmFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AB0 /* JWTAlgorithmNone.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBB0 /* JWTAlgorithmNone.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AC0 /* JWTAlgorithmAsymmetricBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AD0 /* JWTAlgorithmESBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CBF0 /* JWTAlgorithmESBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AE0 /* JWTAlgorithmDataHolder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030AF0 /* JWTAlgorithmDataHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC30 /* JWTAlgorithmDataHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B00 /* JWTAlgorithmDataHolderChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B10 /* JWTAlgorithmHSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC70 /* JWTAlgorithmHSBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B20 /* JWTAlgorithmRSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CC90 /* JWTAlgorithmRSBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B30 /* JWTRSAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCB0 /* JWTRSAlgorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B40 /* JWTCryptoKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCC0 /* JWTCryptoKey.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B50 /* JWTCryptoKeyExtractor+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B60 /* JWTCryptoKeyExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD00 /* JWTCryptoKeyExtractor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B70 /* JWTCryptoSecurity+ErrorHandling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B80 /* JWTCryptoSecurity+ExternalRepresentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030B90 /* JWTCryptoSecurity+Extraction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BA0 /* JWTCryptoSecurity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CD80 /* JWTCryptoSecurity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BB0 /* JWTClaim.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDA0 /* JWTClaim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BC0 /* JWTClaimsSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDC0 /* JWTClaimsSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BD0 /* JWTClaimsSetSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CDE0 /* JWTClaimsSetSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BE0 /* JWTClaimsSetVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE00 /* JWTClaimsSetVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030BF0 /* JWTBuilder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE20 /* JWTBuilder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C00 /* JWTCoding+ResultTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE40 /* JWTCoding+ResultTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C10 /* JWTCoding+VersionOne.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE60 /* JWTCoding+VersionOne.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C20 /* JWTCoding+VersionThree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CE80 /* JWTCoding+VersionThree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C30 /* JWTCoding+VersionTwo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEA0 /* JWTCoding+VersionTwo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C40 /* JWTCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEC0 /* JWTCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C50 /* JWTCodingBuilder+FluentStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CEE0 /* JWTCodingBuilder+FluentStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C60 /* JWT.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF00 /* JWT.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C70 /* JWTBase64Coder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF10 /* JWTBase64Coder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C80 /* JWTDeprecations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF30 /* JWTDeprecations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030C90 /* JWTErrorDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF40 /* JWTErrorDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030CF0 /* JWT-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00030CE0 /* JWT-dummy.m */; }; + 46EB2E00030D80 /* fs-poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF70 /* fs-poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030D90 /* idna.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF80 /* idna.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DA0 /* inet.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CF90 /* inet.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DB0 /* strscpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFA0 /* strscpy.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DC0 /* threadpool.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFB0 /* threadpool.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DD0 /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFC0 /* timer.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DE0 /* uv-data-getter-setters.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFD0 /* uv-data-getter-setters.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030DF0 /* uv-common.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFE0 /* uv-common.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E00 /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000CFF0 /* version.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E10 /* async.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D000 /* async.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E20 /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D010 /* core.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E30 /* dl.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D020 /* dl.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E40 /* fs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D030 /* fs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E50 /* getaddrinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D040 /* getaddrinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E60 /* getnameinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D050 /* getnameinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E70 /* loop.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D060 /* loop.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E80 /* loop-watcher.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D070 /* loop-watcher.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030E90 /* pipe.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D080 /* pipe.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030EA0 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D090 /* poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030EB0 /* process.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0A0 /* process.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030EC0 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0B0 /* signal.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030ED0 /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0C0 /* stream.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030EE0 /* tcp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0D0 /* tcp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030EF0 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0E0 /* thread.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F00 /* tty.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D0F0 /* tty.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F10 /* udp.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D100 /* udp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F20 /* bsd-ifaddrs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D110 /* bsd-ifaddrs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F30 /* darwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D120 /* darwin.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F40 /* fsevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D130 /* fsevents.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F50 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D140 /* kqueue.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F60 /* darwin-proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D150 /* darwin-proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F70 /* proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D160 /* proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 46EB2E00030F80 /* heap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D170 /* heap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030F90 /* idna.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D180 /* idna.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FA0 /* queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D190 /* queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FB0 /* strscpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1A0 /* strscpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FC0 /* uv-common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1B0 /* uv-common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FD0 /* atomic-ops.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1C0 /* atomic-ops.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FE0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1D0 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00030FF0 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D1E0 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031000 /* uv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D200 /* uv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031010 /* errno.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D210 /* errno.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031020 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D220 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031030 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D230 /* version.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031040 /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D240 /* tree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031050 /* unix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D250 /* unix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031060 /* darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D260 /* darwin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000310C0 /* Libuv-gRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000310B0 /* Libuv-gRPC-dummy.m */; }; + 46EB2E000311D0 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D270 /* FBLPromise+All.m */; }; + 46EB2E000311E0 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D280 /* FBLPromise+Always.m */; }; + 46EB2E000311F0 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D290 /* FBLPromise+Any.m */; }; + 46EB2E00031200 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2A0 /* FBLPromise+Async.m */; }; + 46EB2E00031210 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2B0 /* FBLPromise+Await.m */; }; + 46EB2E00031220 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2C0 /* FBLPromise+Catch.m */; }; + 46EB2E00031230 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2D0 /* FBLPromise+Delay.m */; }; + 46EB2E00031240 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2E0 /* FBLPromise+Do.m */; }; + 46EB2E00031250 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D2F0 /* FBLPromise+Race.m */; }; + 46EB2E00031260 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D300 /* FBLPromise+Recover.m */; }; + 46EB2E00031270 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D310 /* FBLPromise+Reduce.m */; }; + 46EB2E00031280 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D320 /* FBLPromise+Retry.m */; }; + 46EB2E00031290 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D330 /* FBLPromise+Testing.m */; }; + 46EB2E000312A0 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D340 /* FBLPromise+Then.m */; }; + 46EB2E000312B0 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D350 /* FBLPromise+Timeout.m */; }; + 46EB2E000312C0 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D360 /* FBLPromise+Validate.m */; }; + 46EB2E000312D0 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D370 /* FBLPromise+Wrap.m */; }; + 46EB2E000312E0 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D380 /* FBLPromise.m */; }; + 46EB2E000312F0 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D390 /* FBLPromiseError.m */; }; + 46EB2E00031300 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3A0 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031310 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3B0 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031320 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3C0 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031330 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3D0 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031340 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3E0 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031350 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D3F0 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031360 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D400 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031370 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D410 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031380 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D420 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031390 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D430 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313A0 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D440 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313B0 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D450 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313C0 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D460 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313D0 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D470 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313E0 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D480 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000313F0 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D490 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031400 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4A0 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031410 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4B0 /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031420 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4C0 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031430 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4D0 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031440 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4E0 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000314A0 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00031490 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000314C0 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000314B0 /* PromisesObjC-dummy.m */; }; + 46EB2E00031550 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D4F0 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031560 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D500 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031570 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D510 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031580 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D520 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031590 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D530 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315A0 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D540 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315B0 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D550 /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315C0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D560 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315D0 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D570 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315E0 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D580 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000315F0 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D590 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031600 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5A0 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031610 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5B0 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031620 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5C0 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031630 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5D0 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031640 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5E0 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031650 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D5F0 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031660 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D600 /* Exception.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031670 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D610 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031680 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D620 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00031690 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D630 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000316A0 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D650 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000316B0 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D640 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000316C0 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D660 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000316D0 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D670 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000316E0 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D680 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000316F0 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D690 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031700 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031710 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6B0 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031720 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6C0 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031730 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6D0 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031740 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6E0 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031750 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D6F0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031760 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D700 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031770 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D710 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031780 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D720 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031790 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D730 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317A0 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D740 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317B0 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D750 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317C0 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D760 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317D0 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D770 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317E0 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D780 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000317F0 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D790 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031800 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7A0 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031810 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7B0 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031820 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7C0 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031830 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7D0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031840 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7E0 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031850 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D7F0 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031860 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D800 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031870 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D810 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031880 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D820 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031890 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D830 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318A0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D840 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318B0 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D850 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318C0 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D860 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318D0 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D870 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318E0 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D880 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000318F0 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D890 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031900 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8A0 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031910 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8B0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031920 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8C0 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031930 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8D0 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031940 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8E0 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031950 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D8F0 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031960 /* FollyMemcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D900 /* FollyMemcpy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031970 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D910 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031980 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D920 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031990 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D930 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319A0 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D940 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319B0 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D950 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319C0 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D960 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319D0 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D970 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319E0 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D980 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000319F0 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D990 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A00 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9A0 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A10 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9B0 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A20 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9C0 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A30 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9D0 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A40 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9E0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A50 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000D9F0 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A60 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA00 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A70 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA10 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A80 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA20 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031A90 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA30 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AA0 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA40 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AB0 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA50 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AC0 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA60 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AD0 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA70 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AE0 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA80 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031AF0 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DA90 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B00 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAA0 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B10 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAB0 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B20 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAC0 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B30 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAD0 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B40 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAE0 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B50 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DAF0 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B60 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB00 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B70 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB10 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B80 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB20 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031B90 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB30 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BA0 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB40 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BB0 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB50 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BC0 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB60 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BD0 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB70 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BE0 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB80 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031BF0 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DB90 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C00 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBA0 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C10 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBB0 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C20 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBC0 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C30 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBD0 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C40 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBE0 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C50 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DBF0 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C60 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC00 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C70 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC10 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C80 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC20 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031C90 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC30 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CA0 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC40 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CB0 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC50 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CC0 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC60 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CD0 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC70 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CE0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC80 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031CF0 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DC90 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D00 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCA0 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D10 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCB0 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D20 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCC0 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D30 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCD0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D40 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCE0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D50 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DCF0 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D60 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD00 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D70 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD10 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D80 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD20 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031D90 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD30 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DA0 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD40 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DB0 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD50 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DC0 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD60 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DD0 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD70 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DE0 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD80 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031DF0 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DD90 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E00 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDA0 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E10 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDB0 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E20 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDC0 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E30 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDD0 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E40 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDE0 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E50 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DDF0 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E60 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE00 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E70 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE10 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E80 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE20 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031E90 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE30 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031EA0 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE40 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031EB0 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE50 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031EC0 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE60 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031ED0 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE70 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031EE0 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE80 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031EF0 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DE90 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F00 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEA0 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F10 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEB0 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F20 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEC0 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F30 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DED0 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F40 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEE0 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F50 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DEF0 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F60 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF00 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F70 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF10 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F80 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF20 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031F90 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF30 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FA0 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF40 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FB0 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF50 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FC0 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF60 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FD0 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF70 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FE0 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF80 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00031FF0 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DF90 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032000 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFA0 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032010 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFB0 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032020 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFC0 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032030 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFD0 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032040 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFE0 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032050 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000DFF0 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032060 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E000 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032070 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E010 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032080 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E020 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032090 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E030 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320A0 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E040 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320B0 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E050 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320C0 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E060 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320D0 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E070 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320E0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E080 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000320F0 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E090 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032100 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0A0 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032110 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0B0 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032120 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0C0 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032130 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0D0 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032140 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0E0 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032150 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E0F0 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032160 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E100 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032170 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E110 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032180 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E120 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032190 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E130 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321A0 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E140 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321B0 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E150 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321C0 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E160 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321D0 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E170 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321E0 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E180 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000321F0 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E190 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032200 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1A0 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032210 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1B0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032220 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1C0 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032230 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1D0 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032240 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1E0 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032250 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E1F0 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032260 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E200 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032270 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E210 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032280 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E220 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032290 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E230 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322A0 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E240 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322B0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E250 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322C0 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E260 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322D0 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E270 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322E0 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E280 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000322F0 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E290 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032300 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2A0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032310 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2B0 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032320 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2C0 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032330 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2D0 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032340 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2E0 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032350 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E2F0 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032360 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E300 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032370 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E310 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032380 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E320 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032390 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E330 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323A0 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E340 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323B0 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E350 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323C0 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E360 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323D0 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E370 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323E0 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E380 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000323F0 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E390 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032400 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3A0 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032410 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3B0 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032420 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3C0 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032430 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3D0 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032440 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3E0 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032450 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E3F0 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032460 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E400 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032470 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E410 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032480 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E420 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032490 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E430 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324A0 /* TcpInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E440 /* TcpInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324B0 /* TcpInfoTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E450 /* TcpInfoTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324C0 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E460 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324D0 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E470 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324E0 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E480 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000324F0 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E490 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032500 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4A0 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032510 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4B0 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032520 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4C0 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032530 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4D0 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032540 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4E0 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032550 /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E4F0 /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032560 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E500 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032570 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E510 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032580 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E520 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032590 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E530 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325A0 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E540 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325B0 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E550 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325C0 /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E560 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325D0 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E570 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325E0 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E580 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000325F0 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E590 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032600 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5A0 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032610 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5B0 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032620 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5C0 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032630 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5D0 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032640 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5E0 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032650 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E5F0 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032660 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E600 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032670 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E610 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032680 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E620 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032690 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E630 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326A0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E640 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326B0 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E650 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326C0 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E660 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326D0 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E670 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326E0 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E680 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000326F0 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E690 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032700 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6A0 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032710 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6B0 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032720 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6C0 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032730 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6D0 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032740 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E6F0 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032750 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E730 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032760 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E760 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032770 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7A0 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032780 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7E0 /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032790 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E800 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327A0 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E830 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327B0 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E870 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327C0 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E890 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327D0 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8C0 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327E0 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8F0 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000327F0 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E930 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032800 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E950 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032810 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E970 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032820 /* IOThreadPoolDeadlockDetectorObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9B0 /* IOThreadPoolDeadlockDetectorObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032830 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9D0 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032840 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9F0 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032850 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA10 /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032860 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA30 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032870 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA70 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032880 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAA0 /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032890 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAC0 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328A0 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAE0 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328B0 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB00 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328C0 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB20 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328D0 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBC0 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328E0 /* DeadlockDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC00 /* DeadlockDetector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000328F0 /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC40 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032900 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC70 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032910 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC90 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032920 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECB0 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032930 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECE0 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032940 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED80 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032950 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDC0 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032960 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE30 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032970 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEB0 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032980 /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEF0 /* Rcu.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032990 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF20 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329A0 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF80 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329B0 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFB0 /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329C0 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F010 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329D0 /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F060 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329E0 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0B0 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E000329F0 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F110 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A00 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F150 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A10 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F170 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A20 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F190 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A30 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1B0 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A40 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1F0 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A50 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F220 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A60 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F240 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A70 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F260 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A80 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F290 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032A90 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2B0 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AA0 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2D0 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AB0 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F300 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AC0 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F330 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AD0 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F340 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AE0 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F350 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032AF0 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F360 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B00 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F370 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B10 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F380 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B20 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F390 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B30 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3A0 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B40 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3B0 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B50 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3C0 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B60 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3D0 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B70 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3E0 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B80 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F3F0 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032B90 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F400 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BA0 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F480 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BB0 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4B0 /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BC0 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F550 /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BD0 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F580 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BE0 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F610 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032BF0 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F660 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032C00 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F680 /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032C10 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6A0 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032C20 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000100B0 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -faligned-new"; }; }; + 46EB2E00032C30 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E700 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C40 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E710 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C50 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E720 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C60 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E740 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C70 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E750 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C80 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E770 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032C90 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E780 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CA0 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E790 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CB0 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7B0 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CC0 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7C0 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CD0 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7D0 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CE0 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E7F0 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032CF0 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E810 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D00 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E820 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D10 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E840 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D20 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E850 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D30 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E860 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D40 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E880 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D50 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8A0 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D60 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8B0 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D70 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8D0 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D80 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E8E0 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032D90 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E900 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DA0 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E910 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DB0 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E920 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DC0 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E940 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DD0 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E960 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DE0 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E980 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032DF0 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E990 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E00 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9A0 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E10 /* IOThreadPoolDeadlockDetectorObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9C0 /* IOThreadPoolDeadlockDetectorObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E20 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000E9E0 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E30 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA00 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E40 /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA20 /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E50 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA40 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E60 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA50 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E70 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA60 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E80 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA80 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032E90 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EA90 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032EA0 /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAB0 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032EB0 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAD0 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032EC0 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EAF0 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032ED0 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB10 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032EE0 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB30 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032EF0 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB40 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F00 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB50 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F10 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB60 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F20 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB70 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F30 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB80 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F40 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EB90 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F50 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBA0 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F60 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBB0 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F70 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBD0 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F80 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBE0 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032F90 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EBF0 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FA0 /* DeadlockDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC10 /* DeadlockDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FB0 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC20 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FC0 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC30 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FD0 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC50 /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FE0 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC60 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00032FF0 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EC80 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033000 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECA0 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033010 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECC0 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033020 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECD0 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033030 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ECF0 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033040 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED00 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033050 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED10 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033060 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED20 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033070 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED30 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033080 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED40 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033090 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED50 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330A0 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED60 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330B0 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED70 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330C0 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000ED90 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330D0 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDA0 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330E0 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDB0 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000330F0 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDD0 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033100 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDE0 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033110 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EDF0 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033120 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE00 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033130 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE10 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033140 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE20 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033150 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE40 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033160 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE50 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033170 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE60 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033180 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE70 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033190 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE80 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331A0 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EE90 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331B0 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEA0 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331C0 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEC0 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331D0 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EED0 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331E0 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EEE0 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000331F0 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF00 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033200 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF10 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033210 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF30 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033220 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF40 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033230 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF50 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033240 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF60 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033250 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF70 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033260 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EF90 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033270 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFA0 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033280 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFC0 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033290 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFD0 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332A0 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFE0 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332B0 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000EFF0 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332C0 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F000 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332D0 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F020 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332E0 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F030 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000332F0 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F040 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033300 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F050 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033310 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F070 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033320 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F080 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033330 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F090 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033340 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0A0 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033350 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0C0 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033360 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0D0 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033370 /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0E0 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033380 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F0F0 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033390 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F100 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333A0 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F120 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333B0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F130 /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333C0 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F140 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333D0 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F160 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333E0 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F180 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000333F0 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1A0 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033400 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1C0 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033410 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1D0 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033420 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F1E0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033430 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F200 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033440 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F210 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033450 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F230 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033460 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F250 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033470 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F270 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033480 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F280 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033490 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2A0 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334A0 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2C0 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334B0 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2E0 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334C0 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F2F0 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334D0 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F310 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334E0 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F320 /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000334F0 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F410 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033500 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F420 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033510 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F430 /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033520 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F440 /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033530 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F450 /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033540 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F460 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033550 /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F470 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033560 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F490 /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033570 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4A0 /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033580 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4C0 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033590 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4D0 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335A0 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4E0 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335B0 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F4F0 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335C0 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F500 /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335D0 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F510 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335E0 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F520 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000335F0 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F530 /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033600 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F540 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033610 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F560 /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033620 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F570 /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033630 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F590 /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033640 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5A0 /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033650 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5B0 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033660 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5C0 /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033670 /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5D0 /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033680 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5E0 /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033690 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F5F0 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336A0 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F600 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336B0 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F620 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336C0 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F630 /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336D0 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F640 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336E0 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F650 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000336F0 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F670 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033700 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F690 /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033710 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6B0 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033720 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6C0 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033730 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6D0 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033740 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6E0 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033750 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F6F0 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033760 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F700 /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033770 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F710 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033780 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F720 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033790 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F730 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337A0 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F740 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337B0 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F750 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337C0 /* Bser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F760 /* Bser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337D0 /* AtomicQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F770 /* AtomicQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337E0 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F780 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000337F0 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F790 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033800 /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7A0 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033810 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7B0 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033820 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7C0 /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033830 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7D0 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033840 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7E0 /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033850 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F7F0 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033860 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F800 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033870 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F810 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033880 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F820 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033890 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F830 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338A0 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F840 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338B0 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F850 /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338C0 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F860 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338D0 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F870 /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338E0 /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F880 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000338F0 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F890 /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033900 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8A0 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033910 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8B0 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033920 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8C0 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033930 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8D0 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033940 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8E0 /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033950 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F8F0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033960 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F900 /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033970 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F910 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033980 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F920 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033990 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F930 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339A0 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F940 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339B0 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F950 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339C0 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F960 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339D0 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F970 /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339E0 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F980 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000339F0 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F990 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A00 /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9A0 /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A10 /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9B0 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A20 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9C0 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A30 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9D0 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A40 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9E0 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A50 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000F9F0 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A60 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA00 /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A70 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA10 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A80 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA20 /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033A90 /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA30 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AA0 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA40 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AB0 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA50 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AC0 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA60 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AD0 /* SmallUnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA70 /* SmallUnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AE0 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA80 /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033AF0 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FA90 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B00 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAA0 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B10 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAB0 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B20 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAC0 /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B30 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAD0 /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B40 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAE0 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B50 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FAF0 /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B60 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB00 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B70 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB10 /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B80 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB20 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033B90 /* Blake2xb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB30 /* Blake2xb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BA0 /* LtHashInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB40 /* LtHashInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BB0 /* LtHash-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB50 /* LtHash-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BC0 /* LtHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB60 /* LtHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BD0 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB70 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BE0 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB80 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033BF0 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FB90 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C00 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBA0 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C10 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBB0 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C20 /* ExceptionAbi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBC0 /* ExceptionAbi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C30 /* ExceptionCounterLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBD0 /* ExceptionCounterLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C40 /* ExceptionTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBE0 /* ExceptionTracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C50 /* ExceptionTracerLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FBF0 /* ExceptionTracerLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C60 /* SmartExceptionTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC00 /* SmartExceptionTracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C70 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC10 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C80 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC20 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033C90 /* FlatCombining.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC30 /* FlatCombining.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CA0 /* FlatCombiningExamples.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC40 /* FlatCombiningExamples.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CB0 /* FlatCombiningTestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC50 /* FlatCombiningTestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CC0 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC60 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CD0 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC70 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CE0 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC80 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033CF0 /* AsyncBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FC90 /* AsyncBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D00 /* AsyncIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCA0 /* AsyncIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D10 /* FsUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCB0 /* FsUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D20 /* HugePages.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCC0 /* HugePages.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D30 /* IoUring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCD0 /* IoUring.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D40 /* IoUringBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCE0 /* IoUringBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D50 /* SimpleAsyncIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FCF0 /* SimpleAsyncIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D60 /* AsyncBaseTestLib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD00 /* AsyncBaseTestLib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D70 /* IoTestTempFileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD10 /* IoTestTempFileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D80 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD20 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033D90 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD30 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DA0 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD40 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DB0 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD50 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DC0 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD60 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DD0 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD70 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DE0 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD80 /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033DF0 /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FD90 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E00 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDA0 /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E10 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDB0 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E20 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDC0 /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E30 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDD0 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E40 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDE0 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E50 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FDF0 /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E60 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE00 /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E70 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE10 /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E80 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE20 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033E90 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE30 /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033EA0 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE40 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033EB0 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE50 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033EC0 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE60 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033ED0 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE70 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033EE0 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE80 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033EF0 /* SettingsImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FE90 /* SettingsImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F00 /* Settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEA0 /* Settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F10 /* SettingsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEB0 /* SettingsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F20 /* a.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEC0 /* a.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F30 /* b.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FED0 /* b.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F40 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEE0 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F50 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FEF0 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F60 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF00 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F70 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF10 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F80 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF20 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033F90 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF30 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FA0 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF40 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FB0 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF50 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FC0 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF60 /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FD0 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF70 /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FE0 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF80 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00033FF0 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FF90 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034000 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFA0 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034010 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFB0 /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034020 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFC0 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034030 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFD0 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034040 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFE0 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034050 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0000FFF0 /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034060 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010000 /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034070 /* SignalHandlerTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010010 /* SignalHandlerTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034080 /* SymbolizerTestUtils-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010020 /* SymbolizerTestUtils-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034090 /* SymbolizerTestUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010030 /* SymbolizerTestUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340A0 /* CodingTestUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010040 /* CodingTestUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340B0 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010050 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340C0 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010060 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340D0 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010070 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010080 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000340F0 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010090 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034100 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100A0 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034110 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100C0 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034170 /* RCT-Folly-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00034160 /* RCT-Folly-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000341A0 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034190 /* RCT-Folly-dummy.m */; }; + 46EB2E000342A0 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000100F0 /* RCTConvertHelpers.mm */; }; + 46EB2E000342B0 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010110 /* RCTTypedModuleConstants.mm */; }; + 46EB2E000342C0 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000100E0 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000342D0 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010100 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034330 /* RCTTypeSafety-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00034320 /* RCTTypeSafety-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034360 /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034350 /* RCTTypeSafety-dummy.m */; }; + 46EB2E000343F0 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010130 /* RNCAsyncStorage.m */; }; + 46EB2E00034400 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010120 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034410 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010140 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034470 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034460 /* RNCAsyncStorage-dummy.m */; }; + 46EB2E00034500 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010160 /* RNCMaskedView.m */; }; + 46EB2E00034510 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010180 /* RNCMaskedViewManager.m */; }; + 46EB2E00034520 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010150 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034530 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010170 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034590 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034580 /* RNCMaskedView-dummy.m */; }; + 46EB2E00034620 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000101A0 /* RNCPicker.m */; }; + 46EB2E00034630 /* RNCPickerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000101C0 /* RNCPickerLabel.m */; }; + 46EB2E00034640 /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000101E0 /* RNCPickerManager.m */; }; + 46EB2E00034650 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010190 /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034660 /* RNCPickerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101B0 /* RNCPickerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034670 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101D0 /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000346D0 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000346C0 /* RNCPicker-dummy.m */; }; + 46EB2E00034760 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010200 /* DeviceUID.m */; }; + 46EB2E00034770 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010220 /* EnvironmentUtil.m */; }; + 46EB2E00034780 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010240 /* RNDeviceInfo.m */; }; + 46EB2E00034790 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000101F0 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000347A0 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010210 /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000347B0 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010230 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034810 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034800 /* RNDeviceInfo-dummy.m */; }; + 46EB2E000348A0 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010260 /* RNFBAnalyticsModule.m */; }; + 46EB2E000348B0 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010250 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034910 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034900 /* RNFBAnalytics-dummy.m */; }; + 46EB2E000349A0 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010280 /* RCTConvert+FIRApp.m */; }; + 46EB2E000349B0 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000102A0 /* RCTConvert+FIROptions.m */; }; + 46EB2E000349C0 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000102C0 /* RNFBAppModule.m */; }; + 46EB2E000349D0 /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000102E0 /* RNFBJSON.m */; }; + 46EB2E000349E0 /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010300 /* RNFBMeta.m */; }; + 46EB2E000349F0 /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010320 /* RNFBPreferences.m */; }; + 46EB2E00034A00 /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010340 /* RNFBRCTEventEmitter.m */; }; + 46EB2E00034A10 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010360 /* RNFBSharedUtils.m */; }; + 46EB2E00034A20 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010380 /* RNFBUtilsModule.m */; }; + 46EB2E00034A30 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103A0 /* RNFBVersion.m */; }; + 46EB2E00034A40 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010270 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034A50 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010290 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034A60 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102B0 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034A70 /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102D0 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034A80 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000102F0 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034A90 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010310 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034AA0 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010330 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034AB0 /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010350 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034AC0 /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010370 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034AD0 /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010390 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034B30 /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034B20 /* RNFBApp-dummy.m */; }; + 46EB2E00034BC0 /* RNFBAuthModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103C0 /* RNFBAuthModule.m */; }; + 46EB2E00034BD0 /* RNFBAuthModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103B0 /* RNFBAuthModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034C30 /* RNFBAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034C20 /* RNFBAuth-dummy.m */; }; + 46EB2E00034CC0 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000103E0 /* RNFBCrashlyticsInitProvider.m */; }; + 46EB2E00034CD0 /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010400 /* RNFBCrashlyticsModule.m */; }; + 46EB2E00034CE0 /* RNFBCrashlyticsNativeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010420 /* RNFBCrashlyticsNativeHelper.m */; }; + 46EB2E00034CF0 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103D0 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034D00 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000103F0 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034D10 /* RNFBCrashlyticsNativeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010410 /* RNFBCrashlyticsNativeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034D70 /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034D60 /* RNFBCrashlytics-dummy.m */; }; + 46EB2E00034E00 /* RNFBDatabaseCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010440 /* RNFBDatabaseCommon.m */; }; + 46EB2E00034E10 /* RNFBDatabaseModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010460 /* RNFBDatabaseModule.m */; }; + 46EB2E00034E20 /* RNFBDatabaseOnDisconnectModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010480 /* RNFBDatabaseOnDisconnectModule.m */; }; + 46EB2E00034E30 /* RNFBDatabaseQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104A0 /* RNFBDatabaseQuery.m */; }; + 46EB2E00034E40 /* RNFBDatabaseQueryModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104C0 /* RNFBDatabaseQueryModule.m */; }; + 46EB2E00034E50 /* RNFBDatabaseReferenceModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000104E0 /* RNFBDatabaseReferenceModule.m */; }; + 46EB2E00034E60 /* RNFBDatabaseTransactionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010500 /* RNFBDatabaseTransactionModule.m */; }; + 46EB2E00034E70 /* RNFBDatabaseCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010430 /* RNFBDatabaseCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034E80 /* RNFBDatabaseModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010450 /* RNFBDatabaseModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034E90 /* RNFBDatabaseOnDisconnectModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010470 /* RNFBDatabaseOnDisconnectModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034EA0 /* RNFBDatabaseQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010490 /* RNFBDatabaseQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034EB0 /* RNFBDatabaseQueryModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104B0 /* RNFBDatabaseQueryModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034EC0 /* RNFBDatabaseReferenceModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104D0 /* RNFBDatabaseReferenceModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034ED0 /* RNFBDatabaseTransactionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000104F0 /* RNFBDatabaseTransactionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00034F30 /* RNFBDatabase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00034F20 /* RNFBDatabase-dummy.m */; }; + 46EB2E00034FC0 /* RCTConvert+FIRLoggerLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010520 /* RCTConvert+FIRLoggerLevel.m */; }; + 46EB2E00034FD0 /* RNFBFirestoreCollectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010540 /* RNFBFirestoreCollectionModule.m */; }; + 46EB2E00034FE0 /* RNFBFirestoreCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010560 /* RNFBFirestoreCommon.m */; }; + 46EB2E00034FF0 /* RNFBFirestoreDocumentModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010580 /* RNFBFirestoreDocumentModule.m */; }; + 46EB2E00035000 /* RNFBFirestoreModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105A0 /* RNFBFirestoreModule.m */; }; + 46EB2E00035010 /* RNFBFirestoreQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105C0 /* RNFBFirestoreQuery.m */; }; + 46EB2E00035020 /* RNFBFirestoreSerialize.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000105E0 /* RNFBFirestoreSerialize.m */; }; + 46EB2E00035030 /* RNFBFirestoreTransactionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010600 /* RNFBFirestoreTransactionModule.m */; }; + 46EB2E00035040 /* RCTConvert+FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010510 /* RCTConvert+FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035050 /* RNFBFirestoreCollectionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010530 /* RNFBFirestoreCollectionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035060 /* RNFBFirestoreCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010550 /* RNFBFirestoreCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035070 /* RNFBFirestoreDocumentModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010570 /* RNFBFirestoreDocumentModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035080 /* RNFBFirestoreModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010590 /* RNFBFirestoreModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035090 /* RNFBFirestoreQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105B0 /* RNFBFirestoreQuery.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000350A0 /* RNFBFirestoreSerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105D0 /* RNFBFirestoreSerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000350B0 /* RNFBFirestoreTransactionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000105F0 /* RNFBFirestoreTransactionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035110 /* RNFBFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035100 /* RNFBFirestore-dummy.m */; }; + 46EB2E000351A0 /* RNFBMessaging+AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010620 /* RNFBMessaging+AppDelegate.m */; }; + 46EB2E000351B0 /* RNFBMessaging+FIRMessagingDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010640 /* RNFBMessaging+FIRMessagingDelegate.m */; }; + 46EB2E000351C0 /* RNFBMessaging+NSNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010660 /* RNFBMessaging+NSNotificationCenter.m */; }; + 46EB2E000351D0 /* RNFBMessaging+UNUserNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010680 /* RNFBMessaging+UNUserNotificationCenter.m */; }; + 46EB2E000351E0 /* RNFBMessagingModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106A0 /* RNFBMessagingModule.m */; }; + 46EB2E000351F0 /* RNFBMessagingSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106C0 /* RNFBMessagingSerializer.m */; }; + 46EB2E00035200 /* RNFBMessaging+AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010610 /* RNFBMessaging+AppDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035210 /* RNFBMessaging+FIRMessagingDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010630 /* RNFBMessaging+FIRMessagingDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035220 /* RNFBMessaging+NSNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010650 /* RNFBMessaging+NSNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035230 /* RNFBMessaging+UNUserNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010670 /* RNFBMessaging+UNUserNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035240 /* RNFBMessagingModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010690 /* RNFBMessagingModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035250 /* RNFBMessagingSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106B0 /* RNFBMessagingSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000352B0 /* RNFBMessaging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000352A0 /* RNFBMessaging-dummy.m */; }; + 46EB2E00035340 /* RNFBConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000106E0 /* RNFBConfigModule.m */; }; + 46EB2E00035350 /* RNFBConfigModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106D0 /* RNFBConfigModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000353B0 /* RNFBRemoteConfig-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000353A0 /* RNFBRemoteConfig-dummy.m */; }; + 46EB2E00035440 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010700 /* FFFastImageSource.m */; }; + 46EB2E00035450 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010720 /* FFFastImageView.m */; }; + 46EB2E00035460 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010740 /* FFFastImageViewManager.m */; }; + 46EB2E00035470 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010760 /* RCTConvert+FFFastImage.m */; }; + 46EB2E00035480 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000106F0 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035490 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010710 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000354A0 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010730 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000354B0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010750 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035510 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00035500 /* RNFastImage-dummy.m */; }; + 46EB2E000355A0 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010790 /* RNFlingHandler.m */; }; + 46EB2E000355B0 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107B0 /* RNForceTouchHandler.m */; }; + 46EB2E000355C0 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107D0 /* RNLongPressHandler.m */; }; + 46EB2E000355D0 /* RNManualHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000107F0 /* RNManualHandler.m */; }; + 46EB2E000355E0 /* RNNativeViewHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010810 /* RNNativeViewHandler.mm */; }; + 46EB2E000355F0 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010830 /* RNPanHandler.m */; }; + 46EB2E00035600 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010850 /* RNPinchHandler.m */; }; + 46EB2E00035610 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010870 /* RNRotationHandler.m */; }; + 46EB2E00035620 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010890 /* RNTapHandler.m */; }; + 46EB2E00035630 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000108B0 /* RNGestureHandler.m */; }; + 46EB2E00035640 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000108E0 /* RNGestureHandlerButton.m */; }; + 46EB2E00035650 /* RNGestureHandlerButtonComponentView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010900 /* RNGestureHandlerButtonComponentView.mm */; }; + 46EB2E00035660 /* RNGestureHandlerButtonManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010920 /* RNGestureHandlerButtonManager.m */; }; + 46EB2E00035670 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010950 /* RNGestureHandlerEvents.m */; }; + 46EB2E00035680 /* RNGestureHandlerManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010970 /* RNGestureHandlerManager.mm */; }; + 46EB2E00035690 /* RNGestureHandlerModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010990 /* RNGestureHandlerModule.mm */; }; + 46EB2E000356A0 /* RNGestureHandlerPointerTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109B0 /* RNGestureHandlerPointerTracker.m */; }; + 46EB2E000356B0 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109D0 /* RNGestureHandlerRegistry.m */; }; + 46EB2E000356C0 /* RNGestureHandlerRootViewComponentView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000109E0 /* RNGestureHandlerRootViewComponentView.mm */; }; + 46EB2E000356D0 /* RNManualActivationRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A30 /* RNManualActivationRecognizer.m */; }; + 46EB2E000356E0 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A50 /* RNRootViewGestureRecognizer.m */; }; + 46EB2E000356F0 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010780 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035700 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107A0 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035710 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107C0 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035720 /* RNManualHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000107E0 /* RNManualHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035730 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010800 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035740 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010820 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035750 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010840 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035760 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010860 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035770 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010880 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035780 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108A0 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035790 /* RNGestureHandlerActionType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108C0 /* RNGestureHandlerActionType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357A0 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108D0 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357B0 /* RNGestureHandlerButtonComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000108F0 /* RNGestureHandlerButtonComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357C0 /* RNGestureHandlerButtonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010910 /* RNGestureHandlerButtonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357D0 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010930 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357E0 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010940 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000357F0 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010960 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035800 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010980 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035810 /* RNGestureHandlerPointerTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109A0 /* RNGestureHandlerPointerTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035820 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109C0 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035830 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000109F0 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035840 /* RNGestureHandlerStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A00 /* RNGestureHandlerStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035850 /* RNGHTouchEventType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A10 /* RNGHTouchEventType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035860 /* RNManualActivationRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A20 /* RNManualActivationRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035870 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A40 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000358D0 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000358C0 /* RNGestureHandler-dummy.m */; }; + 46EB2E00035960 /* RNRate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A70 /* RNRate.m */; }; + 46EB2E00035970 /* RNRate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010A60 /* RNRate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000359D0 /* RNRate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000359C0 /* RNRate-dummy.m */; }; + 46EB2E00035A60 /* REAAnimationsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AB0 /* REAAnimationsManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035A70 /* REASnapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AD0 /* REASnapshot.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035A80 /* REAUIManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AF0 /* REAUIManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035A90 /* NativeMethods.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B20 /* NativeMethods.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AA0 /* NativeProxy.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B40 /* NativeProxy.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AB0 /* REAInitializer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B60 /* REAInitializer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AC0 /* REAIOSErrorHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B80 /* REAIOSErrorHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AD0 /* REAIOSLogger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BA0 /* REAIOSLogger.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AE0 /* REAIOSScheduler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BC0 /* REAIOSScheduler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035AF0 /* UIResponder+Reanimated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BE0 /* UIResponder+Reanimated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B00 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C10 /* REAAlwaysNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B10 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C30 /* REABezierNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B20 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C50 /* REABlockNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B30 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C70 /* REACallFuncNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B40 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C90 /* REAClockNodes.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B50 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CB0 /* REAConcatNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B60 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CD0 /* REACondNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B70 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CF0 /* READebugNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D10 /* REAEventNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035B90 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D30 /* REAFunctionNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BA0 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D50 /* REAJSCallNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BB0 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D70 /* REANode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BC0 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D90 /* REAOperatorNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BD0 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DB0 /* REAParamNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BE0 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DD0 /* REAPropsNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035BF0 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DF0 /* REASetNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C00 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E10 /* REAStyleNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C10 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E30 /* REATransformNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C20 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E50 /* REAValueNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C30 /* REAEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E70 /* REAEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C40 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E90 /* REAModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C50 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EB0 /* REANodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C60 /* ReanimatedSensor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F00 /* ReanimatedSensor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C70 /* ReanimatedSensorContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F20 /* ReanimatedSensorContainer.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C80 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F60 /* RCTConvert+REATransition.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035C90 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F80 /* REAAllTransitions.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CA0 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FA0 /* REATransition.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CB0 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FC0 /* REATransitionAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CC0 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FE0 /* REATransitionManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CD0 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011000 /* REATransitionValues.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CE0 /* AnimatedSensorModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011040 /* AnimatedSensorModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035CF0 /* LayoutAnimationsProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011060 /* LayoutAnimationsProxy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D00 /* NativeReanimatedModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011080 /* NativeReanimatedModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D10 /* NativeReanimatedModuleSpec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011090 /* NativeReanimatedModuleSpec.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D20 /* EventHandlerRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110B0 /* EventHandlerRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D30 /* MapperRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110C0 /* MapperRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D40 /* WorkletsCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110D0 /* WorkletsCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D50 /* FrozenObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000110F0 /* FrozenObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D60 /* MutableValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011100 /* MutableValue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D70 /* MutableValueSetterProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011110 /* MutableValueSetterProxy.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D80 /* RemoteObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011120 /* RemoteObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035D90 /* ShareableValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011130 /* ShareableValue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DA0 /* FeaturesConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011150 /* FeaturesConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DB0 /* JSIStoreValueUser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011160 /* JSIStoreValueUser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DC0 /* Mapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011170 /* Mapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DD0 /* RuntimeDecorator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011180 /* RuntimeDecorator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DE0 /* Scheduler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011190 /* Scheduler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035DF0 /* WorkletEventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000111A0 /* WorkletEventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00035E00 /* REAAnimationsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AA0 /* REAAnimationsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E10 /* REASnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AC0 /* REASnapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E20 /* REAUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010AE0 /* REAUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E30 /* NativeMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B10 /* NativeMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E40 /* NativeProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B30 /* NativeProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E50 /* REAInitializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B50 /* REAInitializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E60 /* REAIOSErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B70 /* REAIOSErrorHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E70 /* REAIOSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010B90 /* REAIOSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E80 /* REAIOSScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BB0 /* REAIOSScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035E90 /* UIResponder+Reanimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010BD0 /* UIResponder+Reanimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035EA0 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C00 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035EB0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C20 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035EC0 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C40 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035ED0 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C60 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035EE0 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010C80 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035EF0 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CA0 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F00 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CC0 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F10 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010CE0 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F20 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D00 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F30 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D20 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F40 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D40 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F50 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D60 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F60 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010D80 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F70 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DA0 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F80 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DC0 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035F90 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010DE0 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FA0 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E00 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FB0 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E20 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FC0 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E40 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FD0 /* REAEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E60 /* REAEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FE0 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010E80 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00035FF0 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EA0 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036000 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EC0 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036010 /* RNGestureHandlerStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010ED0 /* RNGestureHandlerStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036020 /* ReanimatedSensor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010EF0 /* ReanimatedSensor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036030 /* ReanimatedSensorContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F10 /* ReanimatedSensorContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036040 /* ReanimatedSensorType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F30 /* ReanimatedSensorType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036050 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F50 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036060 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F70 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036070 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010F90 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036080 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FB0 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036090 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FD0 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360A0 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00010FF0 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360B0 /* AnimatedSensorModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000111D0 /* AnimatedSensorModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360C0 /* LayoutAnimationsProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000111F0 /* LayoutAnimationsProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360D0 /* NativeReanimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011210 /* NativeReanimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360E0 /* NativeReanimatedModuleSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011220 /* NativeReanimatedModuleSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000360F0 /* EventHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011240 /* EventHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036100 /* MapperRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011250 /* MapperRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036110 /* WorkletsCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011260 /* WorkletsCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036120 /* FrozenObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011280 /* FrozenObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036130 /* HostFunctionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011290 /* HostFunctionHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036140 /* MutableValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112A0 /* MutableValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036150 /* MutableValueSetterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112B0 /* MutableValueSetterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036160 /* RemoteObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112C0 /* RemoteObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036170 /* RuntimeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112D0 /* RuntimeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036180 /* ShareableValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112E0 /* ShareableValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036190 /* SharedParent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000112F0 /* SharedParent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361A0 /* ValueWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011300 /* ValueWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361B0 /* ErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011320 /* ErrorHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361C0 /* FeaturesConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011340 /* FeaturesConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361D0 /* JSIStoreValueUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011350 /* JSIStoreValueUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361E0 /* Mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011360 /* Mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000361F0 /* PlatformDepMethodsHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011370 /* PlatformDepMethodsHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036200 /* ReanimatedHiddenHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011380 /* ReanimatedHiddenHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036210 /* RuntimeDecorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011390 /* RuntimeDecorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036220 /* Scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113A0 /* Scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036230 /* WorkletEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113B0 /* WorkletEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036290 /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00036280 /* RNReanimated-dummy.m */; }; + 46EB2E00036320 /* RNSVGBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000113E0 /* RNSVGBrush.m */; }; + 46EB2E00036330 /* RNSVGContextBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011410 /* RNSVGContextBrush.m */; }; + 46EB2E00036340 /* RNSVGPainter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011430 /* RNSVGPainter.m */; }; + 46EB2E00036350 /* RNSVGPainterBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011450 /* RNSVGPainterBrush.m */; }; + 46EB2E00036360 /* RNSVGSolidColorBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011470 /* RNSVGSolidColorBrush.m */; }; + 46EB2E00036370 /* RNSVGClipPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000114A0 /* RNSVGClipPath.m */; }; + 46EB2E00036380 /* RNSVGDefs.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000114C0 /* RNSVGDefs.m */; }; + 46EB2E00036390 /* RNSVGForeignObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000114E0 /* RNSVGForeignObject.m */; }; + 46EB2E000363A0 /* RNSVGGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011500 /* RNSVGGroup.m */; }; + 46EB2E000363B0 /* RNSVGImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011520 /* RNSVGImage.m */; }; + 46EB2E000363C0 /* RNSVGLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011540 /* RNSVGLinearGradient.m */; }; + 46EB2E000363D0 /* RNSVGMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011560 /* RNSVGMarker.m */; }; + 46EB2E000363E0 /* RNSVGMask.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011580 /* RNSVGMask.m */; }; + 46EB2E000363F0 /* RNSVGPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115A0 /* RNSVGPath.m */; }; + 46EB2E00036400 /* RNSVGPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115C0 /* RNSVGPattern.m */; }; + 46EB2E00036410 /* RNSVGRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000115E0 /* RNSVGRadialGradient.m */; }; + 46EB2E00036420 /* RNSVGSvgView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011600 /* RNSVGSvgView.m */; }; + 46EB2E00036430 /* RNSVGSymbol.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011620 /* RNSVGSymbol.m */; }; + 46EB2E00036440 /* RNSVGUse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011640 /* RNSVGUse.m */; }; + 46EB2E00036450 /* RNSVGNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011670 /* RNSVGNode.m */; }; + 46EB2E00036460 /* RNSVGRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011690 /* RNSVGRenderable.m */; }; + 46EB2E00036470 /* RNSVGCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000116D0 /* RNSVGCircle.m */; }; + 46EB2E00036480 /* RNSVGEllipse.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000116F0 /* RNSVGEllipse.m */; }; + 46EB2E00036490 /* RNSVGLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011710 /* RNSVGLine.m */; }; + 46EB2E000364A0 /* RNSVGRect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011730 /* RNSVGRect.m */; }; + 46EB2E000364B0 /* RNSVGFontData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011760 /* RNSVGFontData.m */; }; + 46EB2E000364C0 /* RNSVGGlyphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011780 /* RNSVGGlyphContext.m */; }; + 46EB2E000364D0 /* RNSVGPropHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117A0 /* RNSVGPropHelper.m */; }; + 46EB2E000364E0 /* RNSVGText.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117C0 /* RNSVGText.m */; }; + 46EB2E000364F0 /* RNSVGTextPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000117E0 /* RNSVGTextPath.m */; }; + 46EB2E00036500 /* RNSVGTextProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011800 /* RNSVGTextProperties.m */; }; + 46EB2E00036510 /* RNSVGTopAlignedLabel.ios.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011820 /* RNSVGTopAlignedLabel.ios.m */; }; + 46EB2E00036520 /* RNSVGTSpan.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011840 /* RNSVGTSpan.m */; }; + 46EB2E00036530 /* RCTConvert+RNSVG.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011870 /* RCTConvert+RNSVG.m */; }; + 46EB2E00036540 /* RNSVGBezierElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011890 /* RNSVGBezierElement.m */; }; + 46EB2E00036550 /* RNSVGLength.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000118C0 /* RNSVGLength.m */; }; + 46EB2E00036560 /* RNSVGMarkerPosition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000118E0 /* RNSVGMarkerPosition.m */; }; + 46EB2E00036570 /* RNSVGPathMeasure.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011900 /* RNSVGPathMeasure.m */; }; + 46EB2E00036580 /* RNSVGPathParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011920 /* RNSVGPathParser.m */; }; + 46EB2E00036590 /* RNSVGViewBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011970 /* RNSVGViewBox.m */; }; + 46EB2E000365A0 /* RNSVGCircleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119A0 /* RNSVGCircleManager.m */; }; + 46EB2E000365B0 /* RNSVGClipPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119C0 /* RNSVGClipPathManager.m */; }; + 46EB2E000365C0 /* RNSVGDefsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000119E0 /* RNSVGDefsManager.m */; }; + 46EB2E000365D0 /* RNSVGEllipseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A00 /* RNSVGEllipseManager.m */; }; + 46EB2E000365E0 /* RNSVGForeignObjectManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A20 /* RNSVGForeignObjectManager.m */; }; + 46EB2E000365F0 /* RNSVGGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A40 /* RNSVGGroupManager.m */; }; + 46EB2E00036600 /* RNSVGImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A60 /* RNSVGImageManager.m */; }; + 46EB2E00036610 /* RNSVGLinearGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A80 /* RNSVGLinearGradientManager.m */; }; + 46EB2E00036620 /* RNSVGLineManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AA0 /* RNSVGLineManager.m */; }; + 46EB2E00036630 /* RNSVGMarkerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AC0 /* RNSVGMarkerManager.m */; }; + 46EB2E00036640 /* RNSVGMaskManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AE0 /* RNSVGMaskManager.m */; }; + 46EB2E00036650 /* RNSVGNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B00 /* RNSVGNodeManager.m */; }; + 46EB2E00036660 /* RNSVGPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B20 /* RNSVGPathManager.m */; }; + 46EB2E00036670 /* RNSVGPatternManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B40 /* RNSVGPatternManager.m */; }; + 46EB2E00036680 /* RNSVGRadialGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B60 /* RNSVGRadialGradientManager.m */; }; + 46EB2E00036690 /* RNSVGRectManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B80 /* RNSVGRectManager.m */; }; + 46EB2E000366A0 /* RNSVGRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BA0 /* RNSVGRenderableManager.m */; }; + 46EB2E000366B0 /* RNSVGSvgViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BC0 /* RNSVGSvgViewManager.m */; }; + 46EB2E000366C0 /* RNSVGSymbolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BE0 /* RNSVGSymbolManager.m */; }; + 46EB2E000366D0 /* RNSVGTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C00 /* RNSVGTextManager.m */; }; + 46EB2E000366E0 /* RNSVGTextPathManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C20 /* RNSVGTextPathManager.m */; }; + 46EB2E000366F0 /* RNSVGTSpanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C40 /* RNSVGTSpanManager.m */; }; + 46EB2E00036700 /* RNSVGUseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C60 /* RNSVGUseManager.m */; }; + 46EB2E00036710 /* RNSVGBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113D0 /* RNSVGBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036720 /* RNSVGBrushType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000113F0 /* RNSVGBrushType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036730 /* RNSVGContextBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011400 /* RNSVGContextBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036740 /* RNSVGPainter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011420 /* RNSVGPainter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036750 /* RNSVGPainterBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011440 /* RNSVGPainterBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036760 /* RNSVGSolidColorBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011460 /* RNSVGSolidColorBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036770 /* RNSVGClipPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011490 /* RNSVGClipPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036780 /* RNSVGDefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114B0 /* RNSVGDefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036790 /* RNSVGForeignObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114D0 /* RNSVGForeignObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367A0 /* RNSVGGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000114F0 /* RNSVGGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367B0 /* RNSVGImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011510 /* RNSVGImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367C0 /* RNSVGLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011530 /* RNSVGLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367D0 /* RNSVGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011550 /* RNSVGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367E0 /* RNSVGMask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011570 /* RNSVGMask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000367F0 /* RNSVGPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011590 /* RNSVGPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036800 /* RNSVGPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115B0 /* RNSVGPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036810 /* RNSVGRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115D0 /* RNSVGRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036820 /* RNSVGSvgView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000115F0 /* RNSVGSvgView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036830 /* RNSVGSymbol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011610 /* RNSVGSymbol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036840 /* RNSVGUse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011630 /* RNSVGUse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036850 /* RNSVGContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011650 /* RNSVGContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036860 /* RNSVGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011660 /* RNSVGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036870 /* RNSVGRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011680 /* RNSVGRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036880 /* RNSVGUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116A0 /* RNSVGUIKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036890 /* RNSVGCircle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116C0 /* RNSVGCircle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368A0 /* RNSVGEllipse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000116E0 /* RNSVGEllipse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368B0 /* RNSVGLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011700 /* RNSVGLine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368C0 /* RNSVGRect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011720 /* RNSVGRect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368D0 /* RNSVGFontData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011750 /* RNSVGFontData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368E0 /* RNSVGGlyphContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011770 /* RNSVGGlyphContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000368F0 /* RNSVGPropHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011790 /* RNSVGPropHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036900 /* RNSVGText.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117B0 /* RNSVGText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036910 /* RNSVGTextPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117D0 /* RNSVGTextPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036920 /* RNSVGTextProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000117F0 /* RNSVGTextProperties.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036930 /* RNSVGTopAlignedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011810 /* RNSVGTopAlignedLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036940 /* RNSVGTSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011830 /* RNSVGTSpan.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036950 /* RCTConvert+RNSVG.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011860 /* RCTConvert+RNSVG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036960 /* RNSVGBezierElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011880 /* RNSVGBezierElement.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036970 /* RNSVGCGFCRule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118A0 /* RNSVGCGFCRule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036980 /* RNSVGLength.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118B0 /* RNSVGLength.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036990 /* RNSVGMarkerPosition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118D0 /* RNSVGMarkerPosition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369A0 /* RNSVGPathMeasure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000118F0 /* RNSVGPathMeasure.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369B0 /* RNSVGPathParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011910 /* RNSVGPathParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369C0 /* RNSVGUnits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011930 /* RNSVGUnits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369D0 /* RNSVGVBMOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011940 /* RNSVGVBMOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369E0 /* RNSVGVectorEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011950 /* RNSVGVectorEffect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000369F0 /* RNSVGViewBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011960 /* RNSVGViewBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A00 /* RNSVGCircleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011990 /* RNSVGCircleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A10 /* RNSVGClipPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000119B0 /* RNSVGClipPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A20 /* RNSVGDefsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000119D0 /* RNSVGDefsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A30 /* RNSVGEllipseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000119F0 /* RNSVGEllipseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A40 /* RNSVGForeignObjectManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A10 /* RNSVGForeignObjectManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A50 /* RNSVGGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A30 /* RNSVGGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A60 /* RNSVGImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A50 /* RNSVGImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A70 /* RNSVGLinearGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A70 /* RNSVGLinearGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A80 /* RNSVGLineManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011A90 /* RNSVGLineManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036A90 /* RNSVGMarkerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AB0 /* RNSVGMarkerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AA0 /* RNSVGMaskManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AD0 /* RNSVGMaskManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AB0 /* RNSVGNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011AF0 /* RNSVGNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AC0 /* RNSVGPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B10 /* RNSVGPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AD0 /* RNSVGPatternManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B30 /* RNSVGPatternManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AE0 /* RNSVGRadialGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B50 /* RNSVGRadialGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036AF0 /* RNSVGRectManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B70 /* RNSVGRectManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B00 /* RNSVGRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011B90 /* RNSVGRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B10 /* RNSVGSvgViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BB0 /* RNSVGSvgViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B20 /* RNSVGSymbolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BD0 /* RNSVGSymbolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B30 /* RNSVGTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011BF0 /* RNSVGTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B40 /* RNSVGTextPathManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C10 /* RNSVGTextPathManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B50 /* RNSVGTSpanManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C30 /* RNSVGTSpanManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036B60 /* RNSVGUseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C50 /* RNSVGUseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036BC0 /* RNSVG-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00036BB0 /* RNSVG-dummy.m */; }; + 46EB2E00036C50 /* RNSConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C80 /* RNSConvert.mm */; }; + 46EB2E00036C60 /* RNSFullWindowOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CB0 /* RNSFullWindowOverlay.mm */; }; + 46EB2E00036C70 /* RNSScreen.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CD0 /* RNSScreen.mm */; }; + 46EB2E00036C80 /* RNSScreenContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CF0 /* RNSScreenContainer.mm */; }; + 46EB2E00036C90 /* RNSScreenNavigationContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D10 /* RNSScreenNavigationContainer.mm */; }; + 46EB2E00036CA0 /* RNSScreenStack.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D30 /* RNSScreenStack.mm */; }; + 46EB2E00036CB0 /* RNSScreenStackAnimator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D50 /* RNSScreenStackAnimator.mm */; }; + 46EB2E00036CC0 /* RNSScreenStackHeaderConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D70 /* RNSScreenStackHeaderConfig.mm */; }; + 46EB2E00036CD0 /* RNSScreenStackHeaderSubview.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D90 /* RNSScreenStackHeaderSubview.mm */; }; + 46EB2E00036CE0 /* RNSScreenViewEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DB0 /* RNSScreenViewEvent.mm */; }; + 46EB2E00036CF0 /* RNSScreenWindowTraits.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DD0 /* RNSScreenWindowTraits.mm */; }; + 46EB2E00036D00 /* RNSSearchBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DF0 /* RNSSearchBar.mm */; }; + 46EB2E00036D10 /* UIViewController+RNScreens.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E10 /* UIViewController+RNScreens.mm */; }; + 46EB2E00036D20 /* UIWindow+RNScreens.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E30 /* UIWindow+RNScreens.mm */; }; + 46EB2E00036D30 /* RNSUIBarButtonItem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E60 /* RNSUIBarButtonItem.mm */; }; + 46EB2E00036D40 /* RNSConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C70 /* RNSConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036D50 /* RNSEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011C90 /* RNSEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036D60 /* RNSFullWindowOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CA0 /* RNSFullWindowOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036D70 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CC0 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036D80 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011CE0 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036D90 /* RNSScreenNavigationContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D00 /* RNSScreenNavigationContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DA0 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D20 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DB0 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D40 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DC0 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D60 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DD0 /* RNSScreenStackHeaderSubview.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011D80 /* RNSScreenStackHeaderSubview.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DE0 /* RNSScreenViewEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DA0 /* RNSScreenViewEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036DF0 /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DC0 /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036E00 /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011DE0 /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036E10 /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E00 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036E20 /* UIWindow+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E20 /* UIWindow+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036E30 /* RNSUIBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E50 /* RNSUIBarButtonItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036E90 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00036E80 /* RNScreens-dummy.m */; }; + 46EB2E00036F20 /* EmailShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E80 /* EmailShare.m */; }; + 46EB2E00036F30 /* FacebookStories.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EA0 /* FacebookStories.m */; }; + 46EB2E00036F40 /* GenericShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EC0 /* GenericShare.m */; }; + 46EB2E00036F50 /* GooglePlusShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EE0 /* GooglePlusShare.m */; }; + 46EB2E00036F60 /* InstagramShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F00 /* InstagramShare.m */; }; + 46EB2E00036F70 /* InstagramStories.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F20 /* InstagramStories.m */; }; + 46EB2E00036F80 /* RNShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F40 /* RNShare.m */; }; + 46EB2E00036F90 /* RNShareActivityItemSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F60 /* RNShareActivityItemSource.m */; }; + 46EB2E00036FA0 /* RNShareUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F80 /* RNShareUtils.m */; }; + 46EB2E00036FB0 /* TelegramShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FA0 /* TelegramShare.m */; }; + 46EB2E00036FC0 /* ViberShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FC0 /* ViberShare.m */; }; + 46EB2E00036FD0 /* WhatsAppShare.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FE0 /* WhatsAppShare.m */; }; + 46EB2E00036FE0 /* EmailShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E70 /* EmailShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00036FF0 /* FacebookStories.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011E90 /* FacebookStories.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037000 /* GenericShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EB0 /* GenericShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037010 /* GooglePlusShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011ED0 /* GooglePlusShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037020 /* InstagramShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011EF0 /* InstagramShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037030 /* InstagramStories.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F10 /* InstagramStories.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037040 /* RNShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F30 /* RNShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037050 /* RNShareActivityItemSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F50 /* RNShareActivityItemSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037060 /* RNShareUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F70 /* RNShareUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037070 /* TelegramShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011F90 /* TelegramShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037080 /* ViberShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FB0 /* ViberShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037090 /* WhatsAppShare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FD0 /* WhatsAppShare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000370F0 /* RNShare-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000370E0 /* RNShare-dummy.m */; }; + 46EB2E00037180 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012000 /* RNVectorIconsManager.m */; }; + 46EB2E00037190 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00011FF0 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000371F0 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000371E0 /* RNVectorIcons-dummy.m */; }; + 46EB2E000372F0 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012010 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -Wno-nullability-completeness -std=c++17"; }; }; + 46EB2E00037300 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012020 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037360 /* React-Codegen-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00037350 /* React-Codegen-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037390 /* React-Codegen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00037380 /* React-Codegen-dummy.m */; }; + 46EB2E000374A0 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021F30 /* en.lproj */; }; + 46EB2E000374D0 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012040 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000374E0 /* RCTAccessibilityManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012050 /* RCTAccessibilityManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000374F0 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012060 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037500 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012070 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037510 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012080 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037520 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012090 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037530 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120A0 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037540 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120B0 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037550 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120C0 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037560 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120D0 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037570 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120E0 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037580 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000120F0 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037590 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012100 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375A0 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012110 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375B0 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012120 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375C0 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012130 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375D0 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012140 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375E0 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012150 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000375F0 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012160 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037600 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012170 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037610 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012180 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037620 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012190 /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037630 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121A0 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037640 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121B0 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037650 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121C0 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037660 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121D0 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037670 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121E0 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037680 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000121F0 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037690 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012200 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000376A0 /* RCTAppSetupUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012240 /* RCTAppSetupUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000376B0 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012270 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000376C0 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000122A0 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000376D0 /* RCTBridgeModuleDecorator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000122F0 /* RCTBridgeModuleDecorator.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000376E0 /* RCTBundleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012300 /* RCTBundleManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000376F0 /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012320 /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037700 /* RCTCallableJSModules.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012330 /* RCTCallableJSModules.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037710 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012350 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037720 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012370 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037730 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012390 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037740 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000123B0 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037750 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000123E0 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037760 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012410 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037770 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012420 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037780 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012450 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037790 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012470 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377A0 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124C0 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377B0 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000124F0 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377C0 /* RCTJSThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012510 /* RCTJSThread.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377D0 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012530 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377E0 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012550 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000377F0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012570 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037800 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125A0 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037810 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125C0 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037820 /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125D0 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037830 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000125F0 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037840 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012610 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037850 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012640 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037860 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012660 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037870 /* RCTPerformanceLoggerLabels.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012680 /* RCTPerformanceLoggerLabels.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037880 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126B0 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037890 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126D0 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378A0 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000126F0 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378B0 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012710 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378C0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012750 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378D0 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012770 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378E0 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000127B0 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000378F0 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000127D0 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037900 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000127F0 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037910 /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012800 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037920 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012820 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037930 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012850 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037940 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012890 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037950 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000128C0 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037960 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000128E0 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037970 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012910 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037980 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012940 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037990 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012960 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379A0 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012980 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379B0 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000129B0 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379C0 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000129D0 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379D0 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000129E0 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379E0 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A10 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E000379F0 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A30 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A00 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A50 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A10 /* RCTDefaultCxxLogFunction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A80 /* RCTDefaultCxxLogFunction.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A20 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AC0 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A30 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AE0 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A40 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B00 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A50 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B20 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A60 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B50 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A70 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B80 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A80 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BA0 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037A90 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BC0 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AA0 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BE0 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AB0 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C00 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AC0 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C20 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AD0 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C40 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AE0 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C60 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037AF0 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C80 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B00 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CC0 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B10 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D30 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B20 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D60 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B30 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D80 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B40 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DC0 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B50 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E00 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B60 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E20 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B70 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E40 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B80 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E60 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037B90 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E80 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BA0 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EA0 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BB0 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EC0 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BC0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EE0 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BD0 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F00 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BE0 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F20 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037BF0 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F40 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C00 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F60 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C10 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F80 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C20 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FB0 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C30 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FD0 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C40 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FF0 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C50 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013010 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C60 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013030 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C70 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013050 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C80 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013070 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037C90 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013090 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CA0 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130B0 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CB0 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130D0 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CC0 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000130F0 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CD0 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013120 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CE0 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013140 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037CF0 /* RCTViewUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013160 /* RCTViewUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D00 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013180 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D10 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000131C0 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D20 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000131E0 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D30 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013210 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D40 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013230 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D50 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013250 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D60 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013270 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D70 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132B0 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D80 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132D0 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037D90 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000132F0 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037DA0 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013310 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037DB0 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013330 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037DC0 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013350 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037DD0 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013380 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00037DE0 /* RCTAppSetupUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012230 /* RCTAppSetupUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037DF0 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012260 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E00 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012280 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E10 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012290 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E20 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122B0 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E30 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122C0 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E40 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122D0 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E50 /* RCTBridgeModuleDecorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000122E0 /* RCTBridgeModuleDecorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E60 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012310 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E70 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012340 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E80 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012360 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037E90 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012380 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037EA0 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123A0 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037EB0 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123C0 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037EC0 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123D0 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037ED0 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000123F0 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037EE0 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012400 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037EF0 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012430 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F00 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012440 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F10 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012460 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F20 /* RCTInitializing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012480 /* RCTInitializing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F30 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012490 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F40 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124A0 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F50 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124B0 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F60 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124D0 /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F70 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000124E0 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F80 /* RCTJSThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012500 /* RCTJSThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037F90 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012520 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FA0 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012540 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FB0 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012560 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FC0 /* RCTMockDef.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012580 /* RCTMockDef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FD0 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012590 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FE0 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000125B0 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00037FF0 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000125E0 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038000 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012600 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038010 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012620 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038020 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012630 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038030 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012650 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038040 /* RCTPerformanceLoggerLabels.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012670 /* RCTPerformanceLoggerLabels.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038050 /* RCTPLTag.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012690 /* RCTPLTag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038060 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126A0 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038070 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126C0 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038080 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000126E0 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038090 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012700 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380A0 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012720 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380B0 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012730 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380C0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012740 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380D0 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012760 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380E0 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012780 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000380F0 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012790 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038100 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127A0 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038110 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127C0 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038120 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000127E0 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038130 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012810 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038140 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012840 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038150 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012860 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038160 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012870 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038170 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012880 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038180 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128A0 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038190 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128B0 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381A0 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128D0 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381B0 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000128F0 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381C0 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012900 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381D0 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012930 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381E0 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012950 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000381F0 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012970 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038200 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129A0 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038210 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129C0 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038220 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000129F0 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038230 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A00 /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038240 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A20 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038250 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A40 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038260 /* RCTDefaultCxxLogFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012A70 /* RCTDefaultCxxLogFunction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038270 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AA0 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038280 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AB0 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038290 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AD0 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382A0 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012AF0 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382B0 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B10 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382C0 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B40 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382D0 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B70 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382E0 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012B90 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000382F0 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BB0 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038300 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BD0 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038310 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012BF0 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038320 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C10 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038330 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C30 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038340 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C50 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038350 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012C70 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038360 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CA0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038370 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CB0 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038380 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D20 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038390 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D50 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383A0 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D70 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383B0 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D90 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383C0 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DA0 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383D0 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DB0 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383E0 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DD0 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000383F0 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DE0 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038400 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012DF0 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038410 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E10 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038420 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E30 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038430 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E50 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038440 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E70 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038450 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012E90 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038460 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EB0 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038470 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012ED0 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038480 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012EF0 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038490 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F10 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384A0 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F30 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384B0 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F50 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384C0 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F70 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384D0 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012F90 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384E0 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FA0 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000384F0 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FC0 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038500 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00012FE0 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038510 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013000 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038520 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013020 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038530 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013040 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038540 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013060 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038550 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013080 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038560 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130A0 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038570 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130C0 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038580 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000130E0 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038590 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013100 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385A0 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013110 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385B0 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013130 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385C0 /* RCTViewUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013150 /* RCTViewUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385D0 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013170 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385E0 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131A0 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000385F0 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131B0 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038600 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000131D0 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038610 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013200 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038620 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013220 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038630 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013240 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038640 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013260 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038650 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013290 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038660 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132A0 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038670 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132C0 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038680 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000132E0 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038690 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013300 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000386A0 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013320 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000386B0 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013340 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000386C0 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013360 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000386D0 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013370 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000386E0 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CD0 /* RCTProfileTrampoline-arm.S */; }; + 46EB2E000386F0 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CE0 /* RCTProfileTrampoline-arm64.S */; }; + 46EB2E00038700 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012CF0 /* RCTProfileTrampoline-i386.S */; }; + 46EB2E00038710 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00012D00 /* RCTProfileTrampoline-x86_64.S */; }; + 46EB2E00038720 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000133D0 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000133F0 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038740 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013410 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038750 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013430 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038760 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013460 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038770 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013480 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038780 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133B0 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038790 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133C0 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387A0 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000133E0 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387B0 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013400 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387C0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013420 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387D0 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013450 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387E0 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013470 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000387F0 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134B0 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038800 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134C0 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038810 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134D0 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038820 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134E0 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038830 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134F0 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038840 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013510 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038850 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013520 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038860 /* RCTColorAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013530 /* RCTColorAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038870 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013540 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038880 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013550 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038890 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013560 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388A0 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013570 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388B0 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013580 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388C0 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013590 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388D0 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135A0 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388E0 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135B0 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000388F0 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135C0 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038900 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135D0 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038910 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135E0 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038920 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135F0 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038930 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013600 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038940 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013610 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038950 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013620 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038960 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013630 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038970 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013650 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038980 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013660 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038990 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013680 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389A0 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013690 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389B0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136A0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389C0 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136B0 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389D0 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136C0 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389E0 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136D0 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000389F0 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136E0 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A00 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000136F0 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A10 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013700 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A20 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013710 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A30 /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013720 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A40 /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013730 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A50 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013740 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A60 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013750 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A70 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013760 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A80 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013770 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038A90 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013780 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AA0 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013790 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AB0 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137A0 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AC0 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137B0 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AD0 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137C0 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AE0 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137D0 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038AF0 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000137F0 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B00 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013800 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B10 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013820 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B20 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013830 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B30 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013840 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B40 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013850 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B50 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013860 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B60 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013870 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B70 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013890 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B80 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138A0 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038B90 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138D0 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BA0 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138E0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BB0 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013900 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BC0 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013910 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BD0 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013920 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BE0 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013930 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038BF0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013940 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013960 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C10 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013970 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C20 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013980 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C30 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013990 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C40 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139C0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139D0 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C60 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139E0 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C70 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139F0 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C80 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A00 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038C90 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A10 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CA0 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A20 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CB0 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A30 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CC0 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A40 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CD0 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A50 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CE0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A60 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038CF0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A70 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D00 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D10 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A90 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D20 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AB0 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D30 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AC0 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D40 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AD0 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D50 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AF0 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D60 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B00 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D70 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B20 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D80 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B30 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038D90 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B60 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038DA0 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B80 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E00038DB0 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B50 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038DC0 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B70 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038E10 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00038E00 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00038E40 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00038E30 /* React-Core-dummy.m */; }; + 46EB2E00038ED0 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B90 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038EE0 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BA0 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038EF0 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BB0 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F00 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BC0 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F10 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BD0 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F20 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BE0 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F30 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013BF0 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F40 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C00 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F50 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C10 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F60 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C20 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F70 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C30 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F80 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C40 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038F90 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C50 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FA0 /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C60 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FB0 /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C70 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FC0 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C80 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FD0 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013C90 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FE0 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CA0 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00038FF0 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CB0 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039000 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CC0 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039010 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CD0 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039020 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CE0 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039030 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013CF0 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039040 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D00 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039050 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D10 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039060 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D20 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039070 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D30 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039080 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D40 /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039090 /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D50 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000390F0 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000390E0 /* React-CoreModules-dummy.m */; }; + 46EB2E000391F0 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D70 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039200 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D80 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039210 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013D90 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039220 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DA0 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039230 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DC0 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039240 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DD0 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039250 /* RCTColorAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DE0 /* RCTColorAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039260 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013DF0 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039270 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E00 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039280 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E10 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039290 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E20 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392A0 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E30 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392B0 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E40 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392C0 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E50 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392D0 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E60 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392E0 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E70 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000392F0 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E80 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039300 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013E90 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039310 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EA0 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039320 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EB0 /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039330 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EC0 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039340 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013ED0 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039350 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EE0 /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039360 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134B0 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039370 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134C0 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039380 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134D0 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039390 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134E0 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393A0 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000134F0 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393B0 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013510 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393C0 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013520 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393D0 /* RCTColorAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013530 /* RCTColorAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393E0 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013540 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000393F0 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013550 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039400 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013560 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039410 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013570 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039420 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013580 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039430 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013590 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039440 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135A0 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039450 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135B0 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039460 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135C0 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039470 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135D0 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039480 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135E0 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039490 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000135F0 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000394A0 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013600 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000394B0 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013610 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000394C0 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013620 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000394D0 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013630 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039530 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039520 /* React-RCTAnimation-dummy.m */; }; + 46EB2E000395C0 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F00 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000395D0 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F10 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000395E0 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F30 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000395F0 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F40 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039600 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013EF0 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039610 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013650 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039620 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F20 /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039630 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013660 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039690 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039680 /* React-RCTBlob-dummy.m */; }; + 46EB2E00039720 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F50 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039730 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F60 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039740 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F70 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039750 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F80 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039760 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013F90 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039770 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FA0 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039780 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FB0 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039790 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FC0 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397A0 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FD0 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397B0 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FE0 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397C0 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00013FF0 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397D0 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014000 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397E0 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014010 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E000397F0 /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014020 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039800 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014030 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039810 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014040 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039820 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014050 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039880 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039870 /* React-RCTImage-dummy.m */; }; + 46EB2E00039910 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014060 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039920 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014070 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039980 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039970 /* React-RCTLinking-dummy.m */; }; + 46EB2E00039A10 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014080 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039A20 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014090 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039A30 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140A0 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039A40 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140B0 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039A50 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140C0 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039A60 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140D0 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039AC0 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039AB0 /* React-RCTNetwork-dummy.m */; }; + 46EB2E00039B50 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140E0 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039B60 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000140F0 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E00039BC0 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00039BB0 /* React-RCTSettings-dummy.m */; }; + 46EB2E00039C50 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014110 /* RCTBaseTextShadowView.m */; }; + 46EB2E00039C60 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014120 /* RCTBaseTextViewManager.m */; }; + 46EB2E00039C70 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014140 /* RCTRawTextShadowView.m */; }; + 46EB2E00039C80 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014150 /* RCTRawTextViewManager.m */; }; + 46EB2E00039C90 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014160 /* RCTConvert+Text.m */; }; + 46EB2E00039CA0 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014170 /* RCTTextAttributes.m */; }; + 46EB2E00039CB0 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014190 /* NSTextStorage+FontScaling.m */; }; + 46EB2E00039CC0 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141A0 /* RCTTextShadowView.m */; }; + 46EB2E00039CD0 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141B0 /* RCTTextView.m */; }; + 46EB2E00039CE0 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141C0 /* RCTTextViewManager.m */; }; + 46EB2E00039CF0 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000141F0 /* RCTMultilineTextInputView.m */; }; + 46EB2E00039D00 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014200 /* RCTMultilineTextInputViewManager.m */; }; + 46EB2E00039D10 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014210 /* RCTUITextView.m */; }; + 46EB2E00039D20 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014220 /* RCTBackedTextInputDelegateAdapter.m */; }; + 46EB2E00039D30 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014230 /* RCTBaseTextInputShadowView.m */; }; + 46EB2E00039D40 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014240 /* RCTBaseTextInputView.m */; }; + 46EB2E00039D50 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014250 /* RCTBaseTextInputViewManager.m */; }; + 46EB2E00039D60 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014260 /* RCTInputAccessoryShadowView.m */; }; + 46EB2E00039D70 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014270 /* RCTInputAccessoryView.m */; }; + 46EB2E00039D80 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014280 /* RCTInputAccessoryViewContent.m */; }; + 46EB2E00039D90 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014290 /* RCTInputAccessoryViewManager.m */; }; + 46EB2E00039DA0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142A0 /* RCTTextSelection.m */; }; + 46EB2E00039DB0 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142C0 /* RCTSinglelineTextInputView.m */; }; + 46EB2E00039DC0 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142D0 /* RCTSinglelineTextInputViewManager.m */; }; + 46EB2E00039DD0 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000142E0 /* RCTUITextField.m */; }; + 46EB2E00039DE0 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014300 /* RCTVirtualTextShadowView.m */; }; + 46EB2E00039DF0 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014310 /* RCTVirtualTextViewManager.m */; }; + 46EB2E00039E00 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138D0 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E10 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000138E0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E20 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013900 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E30 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013910 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E40 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013920 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E50 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013930 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E60 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013940 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E70 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013960 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E80 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013970 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039E90 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013980 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039EA0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013990 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039EB0 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139C0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039EC0 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139D0 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039ED0 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139E0 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039EE0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000139F0 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039EF0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A00 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F00 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A10 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F10 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A20 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F20 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A30 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F30 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A40 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F40 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A50 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F50 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A60 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F60 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A70 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F70 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F80 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013A90 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039F90 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AB0 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039FA0 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AC0 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039FB0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AD0 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039FC0 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013AF0 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00039FD0 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00013B00 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A030 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A020 /* React-RCTText-dummy.m */; }; + 46EB2E0003A0C0 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014320 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E0003A0D0 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014330 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46EB2E0003A130 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A120 /* React-RCTVibration-dummy.m */; }; + 46EB2E0003A1C0 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000143E0 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E0003A1D0 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014340 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A1E0 /* AString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014350 /* AString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A1F0 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014360 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A200 /* Bool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014370 /* Bool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A210 /* Bridging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014380 /* Bridging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A220 /* CallbackWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014390 /* CallbackWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A230 /* Class.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000143A0 /* Class.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A240 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000143B0 /* Convert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A250 /* Error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000143C0 /* Error.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A260 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000143D0 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A270 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000143F0 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A280 /* Number.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014400 /* Number.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A290 /* Object.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014410 /* Object.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A2A0 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014420 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A2B0 /* Value.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014430 /* Value.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A310 /* React-bridging-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A300 /* React-bridging-dummy.m */; }; + 46EB2E0003A410 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014460 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A420 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014490 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A430 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000144D0 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A440 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000144F0 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A450 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014510 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A460 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014530 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A470 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014570 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A480 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014590 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A490 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000145C0 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A4A0 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000145E0 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A4B0 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014600 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A4C0 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014450 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A4D0 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014470 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A4E0 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014480 /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A4F0 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144A0 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A500 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144B0 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A510 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144C0 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A520 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000144E0 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A530 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014500 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A540 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014520 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A550 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014540 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A560 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014550 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A570 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014560 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A580 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014580 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A590 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145A0 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5A0 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145B0 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5B0 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145D0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5C0 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000145F0 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5D0 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014610 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5E0 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014620 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A5F0 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014630 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A600 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014640 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A610 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014650 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A670 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A660 /* React-cxxreact-dummy.m */; }; + 46EB2E0003A700 /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014670 /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A710 /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014690 /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A720 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000146E0 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A730 /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014700 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A740 /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014720 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A750 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014750 /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A760 /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014770 /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A770 /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014790 /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A780 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000147B0 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A790 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000147E0 /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7A0 /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014810 /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7B0 /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014830 /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7C0 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014860 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7D0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014880 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7E0 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000148A0 /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003A7F0 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014680 /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A800 /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146A0 /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A810 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146C0 /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A820 /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146D0 /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A830 /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000146F0 /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A840 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014710 /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A850 /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014730 /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A860 /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014760 /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A870 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014780 /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A880 /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147A0 /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A890 /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147C0 /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8A0 /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147D0 /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8B0 /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000147F0 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8C0 /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014800 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8D0 /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014820 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8E0 /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014840 /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A8F0 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014870 /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A900 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014890 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A910 /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000148B0 /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003A970 /* React-hermes-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003A960 /* React-hermes-dummy.m */; }; + 46EB2E0003AA00 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000148C0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003AA10 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014920 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003AA20 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014940 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003AA30 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014960 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003AA40 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014970 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003AA50 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000148D0 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AA60 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000148F0 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AA70 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014900 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AA80 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014910 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AA90 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014930 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AAA0 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014950 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AAB0 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014980 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AAC0 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014990 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AB20 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AB10 /* React-jsi-dummy.m */; }; + 46EB2E0003ABB0 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000149A0 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003ABC0 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000149C0 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003ABD0 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149B0 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ABE0 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149D0 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AC40 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AC30 /* React-jsiexecutor-dummy.m */; }; + 46EB2E0003ACD0 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000149E0 /* InspectorInterfaces.cpp */; }; + 46EB2E0003ACE0 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000149F0 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AD40 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AD30 /* React-jsinspector-dummy.m */; }; + 46EB2E0003ADD0 /* react_native_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A00 /* react_native_log.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003ADE0 /* react_native_log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A10 /* react_native_log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AE40 /* React-logger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AE30 /* React-logger-dummy.m */; }; + 46EB2E0003AED0 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A20 /* BridgeNativeModulePerfLogger.cpp */; }; + 46EB2E0003AEE0 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A30 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AEF0 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A40 /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003AF50 /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003AF40 /* React-perflogger-dummy.m */; }; + 46EB2E0003B050 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AA0 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B060 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AC0 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B070 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AE0 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B080 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B00 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B090 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B20 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B0A0 /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B70 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B0B0 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B90 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B0C0 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BB0 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46EB2E0003B0D0 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014A90 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B0E0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AB0 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B0F0 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AD0 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B100 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014AF0 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B110 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B10 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B120 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B30 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B130 /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B60 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B140 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014B80 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B150 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BA0 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B1B0 /* ReactCommon-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B1A0 /* ReactCommon-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B1E0 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003B1D0 /* ReactCommon-dummy.m */; }; + 46EB2E0003B270 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BE0 /* NSButton+WebCache.m */; }; + 46EB2E0003B280 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C00 /* NSData+ImageContentType.m */; }; + 46EB2E0003B290 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C20 /* NSImage+Compatibility.m */; }; + 46EB2E0003B2A0 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C40 /* SDAnimatedImage.m */; }; + 46EB2E0003B2B0 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C60 /* SDAnimatedImagePlayer.m */; }; + 46EB2E0003B2C0 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C80 /* SDAnimatedImageRep.m */; }; + 46EB2E0003B2D0 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CA0 /* SDAnimatedImageView+WebCache.m */; }; + 46EB2E0003B2E0 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CC0 /* SDAnimatedImageView.m */; }; + 46EB2E0003B2F0 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CE0 /* SDDiskCache.m */; }; + 46EB2E0003B300 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D00 /* SDGraphicsImageRenderer.m */; }; + 46EB2E0003B310 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D20 /* SDImageAPNGCoder.m */; }; + 46EB2E0003B320 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D40 /* SDImageAWebPCoder.m */; }; + 46EB2E0003B330 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D60 /* SDImageCache.m */; }; + 46EB2E0003B340 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D80 /* SDImageCacheConfig.m */; }; + 46EB2E0003B350 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DA0 /* SDImageCacheDefine.m */; }; + 46EB2E0003B360 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DC0 /* SDImageCachesManager.m */; }; + 46EB2E0003B370 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DE0 /* SDImageCoder.m */; }; + 46EB2E0003B380 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E00 /* SDImageCoderHelper.m */; }; + 46EB2E0003B390 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E20 /* SDImageCodersManager.m */; }; + 46EB2E0003B3A0 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E40 /* SDImageFrame.m */; }; + 46EB2E0003B3B0 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E60 /* SDImageGIFCoder.m */; }; + 46EB2E0003B3C0 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E80 /* SDImageGraphics.m */; }; + 46EB2E0003B3D0 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EA0 /* SDImageHEICCoder.m */; }; + 46EB2E0003B3E0 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EC0 /* SDImageIOAnimatedCoder.m */; }; + 46EB2E0003B3F0 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EE0 /* SDImageIOCoder.m */; }; + 46EB2E0003B400 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F00 /* SDImageLoader.m */; }; + 46EB2E0003B410 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F20 /* SDImageLoadersManager.m */; }; + 46EB2E0003B420 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F40 /* SDImageTransformer.m */; }; + 46EB2E0003B430 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F60 /* SDMemoryCache.m */; }; + 46EB2E0003B440 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F80 /* SDWebImageCacheKeyFilter.m */; }; + 46EB2E0003B450 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FA0 /* SDWebImageCacheSerializer.m */; }; + 46EB2E0003B460 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FC0 /* SDWebImageCompat.m */; }; + 46EB2E0003B470 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FE0 /* SDWebImageDefine.m */; }; + 46EB2E0003B480 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015000 /* SDWebImageDownloader.m */; }; + 46EB2E0003B490 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015020 /* SDWebImageDownloaderConfig.m */; }; + 46EB2E0003B4A0 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015040 /* SDWebImageDownloaderDecryptor.m */; }; + 46EB2E0003B4B0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015060 /* SDWebImageDownloaderOperation.m */; }; + 46EB2E0003B4C0 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015080 /* SDWebImageDownloaderRequestModifier.m */; }; + 46EB2E0003B4D0 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150A0 /* SDWebImageDownloaderResponseModifier.m */; }; + 46EB2E0003B4E0 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150C0 /* SDWebImageError.m */; }; + 46EB2E0003B4F0 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000150E0 /* SDWebImageIndicator.m */; }; + 46EB2E0003B500 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015100 /* SDWebImageManager.m */; }; + 46EB2E0003B510 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015120 /* SDWebImageOperation.m */; }; + 46EB2E0003B520 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015140 /* SDWebImageOptionsProcessor.m */; }; + 46EB2E0003B530 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015160 /* SDWebImagePrefetcher.m */; }; + 46EB2E0003B540 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015180 /* SDWebImageTransition.m */; }; + 46EB2E0003B550 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151A0 /* UIButton+WebCache.m */; }; + 46EB2E0003B560 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151C0 /* UIImage+ExtendedCacheData.m */; }; + 46EB2E0003B570 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000151E0 /* UIImage+ForceDecode.m */; }; + 46EB2E0003B580 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015200 /* UIImage+GIF.m */; }; + 46EB2E0003B590 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015220 /* UIImage+MemoryCacheCost.m */; }; + 46EB2E0003B5A0 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015240 /* UIImage+Metadata.m */; }; + 46EB2E0003B5B0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015260 /* UIImage+MultiFormat.m */; }; + 46EB2E0003B5C0 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015280 /* UIImage+Transform.m */; }; + 46EB2E0003B5D0 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152A0 /* UIImageView+HighlightedWebCache.m */; }; + 46EB2E0003B5E0 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152C0 /* UIImageView+WebCache.m */; }; + 46EB2E0003B5F0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000152E0 /* UIView+WebCache.m */; }; + 46EB2E0003B600 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015300 /* UIView+WebCacheOperation.m */; }; + 46EB2E0003B610 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015330 /* NSBezierPath+SDRoundedCorners.m */; }; + 46EB2E0003B620 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015350 /* SDAssociatedObject.m */; }; + 46EB2E0003B630 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015370 /* SDAsyncBlockOperation.m */; }; + 46EB2E0003B640 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015390 /* SDDeviceHelper.m */; }; + 46EB2E0003B650 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153B0 /* SDDisplayLink.m */; }; + 46EB2E0003B660 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153D0 /* SDFileAttributeHelper.m */; }; + 46EB2E0003B670 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000153F0 /* SDImageAssetManager.m */; }; + 46EB2E0003B680 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015410 /* SDImageCachesManagerOperation.m */; }; + 46EB2E0003B690 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015440 /* SDInternalMacros.m */; }; + 46EB2E0003B6A0 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015470 /* SDWeakProxy.m */; }; + 46EB2E0003B6B0 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154A0 /* UIColor+SDHexString.m */; }; + 46EB2E0003B6C0 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BD0 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B6D0 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014BF0 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B6E0 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C10 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B6F0 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C30 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B700 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C50 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B710 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C70 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B720 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014C90 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B730 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CB0 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B740 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CD0 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B750 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014CF0 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B760 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D10 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B770 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D30 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B780 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D50 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B790 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D70 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7A0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014D90 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7B0 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DB0 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7C0 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DD0 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7D0 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014DF0 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7E0 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E10 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B7F0 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E30 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B800 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E50 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B810 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E70 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B820 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014E90 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B830 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EB0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B840 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014ED0 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B850 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014EF0 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B860 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F10 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B870 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F30 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B880 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F50 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B890 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F70 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8A0 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014F90 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8B0 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FB0 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8C0 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FD0 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8D0 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00014FF0 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8E0 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015010 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B8F0 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015030 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B900 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015050 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B910 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015070 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B920 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015090 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B930 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150B0 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B940 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150D0 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B950 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000150F0 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B960 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015110 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B970 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015130 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B980 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015150 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B990 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015170 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9A0 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015190 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9B0 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151B0 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9C0 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151D0 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9D0 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000151F0 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9E0 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015210 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003B9F0 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015230 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA00 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015250 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA10 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015270 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA20 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015290 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA30 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152B0 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA40 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152D0 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA50 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000152F0 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA60 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015310 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA70 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015320 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA80 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015340 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BA90 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015360 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAA0 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015380 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAB0 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153A0 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAC0 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153C0 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAD0 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000153E0 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAE0 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015400 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BAF0 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015420 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BB00 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015430 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BB10 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015450 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BB20 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015460 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BB30 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015480 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BB40 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015490 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BBA0 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003BB90 /* SDWebImage-dummy.m */; }; + 46EB2E0003BC30 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154C0 /* SDImageWebPCoder.m */; }; + 46EB2E0003BC40 /* SDWebImageWebPCoderDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000154E0 /* SDWebImageWebPCoderDefine.m */; }; + 46EB2E0003BC50 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015500 /* UIImage+WebP.m */; }; + 46EB2E0003BC60 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154B0 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BC70 /* SDWebImageWebPCoderDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154D0 /* SDWebImageWebPCoderDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BC80 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000154F0 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BC90 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015510 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BCF0 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003BCE0 /* SDWebImageWebPCoder-dummy.m */; }; + 46EB2E0003BD80 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015530 /* SSZipArchive.m */; }; + 46EB2E0003BD90 /* mz_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015570 /* mz_compat.c */; }; + 46EB2E0003BDA0 /* mz_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015590 /* mz_crypt.c */; }; + 46EB2E0003BDB0 /* mz_crypt_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155B0 /* mz_crypt_apple.c */; }; + 46EB2E0003BDC0 /* mz_os.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155C0 /* mz_os.c */; }; + 46EB2E0003BDD0 /* mz_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155E0 /* mz_os_posix.c */; }; + 46EB2E0003BDE0 /* mz_strm.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000155F0 /* mz_strm.c */; }; + 46EB2E0003BDF0 /* mz_strm_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015610 /* mz_strm_buf.c */; }; + 46EB2E0003BE00 /* mz_strm_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015630 /* mz_strm_mem.c */; }; + 46EB2E0003BE10 /* mz_strm_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015660 /* mz_strm_os_posix.c */; }; + 46EB2E0003BE20 /* mz_strm_pkcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015670 /* mz_strm_pkcrypt.c */; }; + 46EB2E0003BE30 /* mz_strm_split.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015690 /* mz_strm_split.c */; }; + 46EB2E0003BE40 /* mz_strm_wzaes.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000156B0 /* mz_strm_wzaes.c */; }; + 46EB2E0003BE50 /* mz_strm_zlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000156D0 /* mz_strm_zlib.c */; }; + 46EB2E0003BE60 /* mz_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000156F0 /* mz_zip.c */; }; + 46EB2E0003BE70 /* mz_zip_rw.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015710 /* mz_zip_rw.c */; }; + 46EB2E0003BE80 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015520 /* SSZipArchive.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BE90 /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015540 /* SSZipCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BEA0 /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015550 /* ZipArchive.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BEB0 /* mz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015560 /* mz.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BEC0 /* mz_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015580 /* mz_compat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BED0 /* mz_crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155A0 /* mz_crypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BEE0 /* mz_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000155D0 /* mz_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BEF0 /* mz_strm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015600 /* mz_strm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF00 /* mz_strm_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015620 /* mz_strm_buf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF10 /* mz_strm_mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015640 /* mz_strm_mem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF20 /* mz_strm_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015650 /* mz_strm_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF30 /* mz_strm_pkcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015680 /* mz_strm_pkcrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF40 /* mz_strm_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156A0 /* mz_strm_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF50 /* mz_strm_wzaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156C0 /* mz_strm_wzaes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF60 /* mz_strm_zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000156E0 /* mz_strm_zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF70 /* mz_zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015700 /* mz_zip.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BF80 /* mz_zip_rw.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015720 /* mz_zip_rw.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003BFE0 /* SSZipArchive-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003BFD0 /* SSZipArchive-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C010 /* SSZipArchive-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C000 /* SSZipArchive-dummy.m */; }; + 46EB2E0003C0A0 /* SRDelegateController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015740 /* SRDelegateController.m */; }; + 46EB2E0003C0B0 /* SRIOConsumer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015760 /* SRIOConsumer.m */; }; + 46EB2E0003C0C0 /* SRIOConsumerPool.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015780 /* SRIOConsumerPool.m */; }; + 46EB2E0003C0D0 /* SRProxyConnect.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000157C0 /* SRProxyConnect.m */; }; + 46EB2E0003C0E0 /* SRRunLoopThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000157E0 /* SRRunLoopThread.m */; }; + 46EB2E0003C0F0 /* SRPinningSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015800 /* SRPinningSecurityPolicy.m */; }; + 46EB2E0003C100 /* SRConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015820 /* SRConstants.m */; }; + 46EB2E0003C110 /* SRError.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015840 /* SRError.m */; }; + 46EB2E0003C120 /* SRHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015860 /* SRHash.m */; }; + 46EB2E0003C130 /* SRHTTPConnectMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015880 /* SRHTTPConnectMessage.m */; }; + 46EB2E0003C140 /* SRLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000158A0 /* SRLog.m */; }; + 46EB2E0003C150 /* SRMutex.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000158C0 /* SRMutex.m */; }; + 46EB2E0003C160 /* SRRandom.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000158E0 /* SRRandom.m */; }; + 46EB2E0003C170 /* SRSIMDHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015900 /* SRSIMDHelpers.m */; }; + 46EB2E0003C180 /* SRURLUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015920 /* SRURLUtilities.m */; }; + 46EB2E0003C190 /* NSRunLoop+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015940 /* NSRunLoop+SRWebSocket.m */; }; + 46EB2E0003C1A0 /* NSURLRequest+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015960 /* NSURLRequest+SRWebSocket.m */; }; + 46EB2E0003C1B0 /* SRSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015990 /* SRSecurityPolicy.m */; }; + 46EB2E0003C1C0 /* SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000159B0 /* SRWebSocket.m */; }; + 46EB2E0003C1D0 /* SRDelegateController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015730 /* SRDelegateController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C1E0 /* SRIOConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015750 /* SRIOConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C1F0 /* SRIOConsumerPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015770 /* SRIOConsumerPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C200 /* NSRunLoop+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015790 /* NSRunLoop+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C210 /* NSURLRequest+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157A0 /* NSURLRequest+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C220 /* SRProxyConnect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157B0 /* SRProxyConnect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C230 /* SRRunLoopThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157D0 /* SRRunLoopThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C240 /* SRPinningSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000157F0 /* SRPinningSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C250 /* SRConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015810 /* SRConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C260 /* SRError.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015830 /* SRError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C270 /* SRHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015850 /* SRHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C280 /* SRHTTPConnectMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015870 /* SRHTTPConnectMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C290 /* SRLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015890 /* SRLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2A0 /* SRMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158B0 /* SRMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2B0 /* SRRandom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158D0 /* SRRandom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2C0 /* SRSIMDHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000158F0 /* SRSIMDHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2D0 /* SRURLUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015910 /* SRURLUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2E0 /* NSRunLoop+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015930 /* NSRunLoop+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C2F0 /* NSURLRequest+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015950 /* NSURLRequest+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C300 /* SocketRocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015970 /* SocketRocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C310 /* SRSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015980 /* SRSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C320 /* SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159A0 /* SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C380 /* SocketRocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C370 /* SocketRocket-dummy.m */; }; + 46EB2E0003C410 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000159F0 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C420 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A30 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C430 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A50 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C440 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A70 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C450 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A90 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C460 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AB0 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C470 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AE0 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C480 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B10 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C490 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B30 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C4A0 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B50 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C4B0 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B70 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C4C0 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BA0 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++17 -fPIC -fno-objc-arc"; }; }; + 46EB2E0003C4D0 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159C0 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C4E0 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000159D0 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C4F0 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A00 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C500 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A20 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C510 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A40 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C520 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A60 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C530 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015A80 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C540 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AA0 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C550 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AC0 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C560 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AD0 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C570 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015AF0 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C580 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B00 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C590 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B20 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C5A0 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B40 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C5B0 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B60 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C5C0 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B80 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C5D0 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015B90 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C5E0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BB0 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C640 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C630 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C670 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C660 /* Yoga-dummy.m */; }; + 46EB2E0003C700 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BD0 /* UIView+Yoga.m */; }; + 46EB2E0003C710 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C00 /* YGLayout.m */; }; + 46EB2E0003C720 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C10 /* YGLayoutExtensions.swift */; }; + 46EB2E0003C730 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BC0 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C740 /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BE0 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C750 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015BF0 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C7B0 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C7A0 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C7F0 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003C7E0 /* YogaKit-dummy.m */; }; + 46EB2E0003C880 /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C40 /* algorithm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C890 /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C60 /* container.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C8A0 /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015C90 /* atomic_hook.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C8B0 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CD0 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003C8C0 /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D10 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003C8D0 /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D30 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003C8E0 /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D50 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003C8F0 /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D80 /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003C900 /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CB0 /* call_once.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C910 /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CC0 /* casts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C920 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CE0 /* cycleclock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C930 /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015CF0 /* low_level_scheduling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C940 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D00 /* per_thread_tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C950 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D20 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C960 /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D40 /* sysinfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C970 /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D60 /* thread_identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C980 /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D70 /* tsan_mutex_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C990 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015D90 /* unscaledcycleclock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9A0 /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DB0 /* hide_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9B0 /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DC0 /* identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9C0 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DD0 /* inline_variable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9D0 /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DE0 /* invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9E0 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015DF0 /* scheduling_mode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003C9F0 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E10 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA00 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E20 /* options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA10 /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E30 /* policy_checks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA20 /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E50 /* attributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA30 /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E60 /* const_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA40 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E70 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA50 /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E80 /* macros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA60 /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015E90 /* optimization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA70 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EA0 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA80 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EB0 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CA90 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015ED0 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAA0 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015EE0 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAB0 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F00 /* endian.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAC0 /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F10 /* unaligned_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAD0 /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F30 /* errno_saver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAE0 /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F50 /* fast_type_id.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CAF0 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F70 /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CB00 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015F80 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB10 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FB0 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CB20 /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FA0 /* direct_mmap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB30 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FC0 /* low_level_alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB40 /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00015FE0 /* pretty_function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB50 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016000 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CB60 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016010 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB70 /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016060 /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CB80 /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016030 /* spinlock_akaros.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CB90 /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016040 /* spinlock_linux.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CBA0 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016050 /* spinlock_posix.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CBB0 /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016070 /* spinlock_wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CBC0 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016080 /* spinlock_win32.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CBD0 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000160A0 /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CBE0 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000160B0 /* strerror.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CBF0 /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000160D0 /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CC00 /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000160E0 /* throw_delegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC10 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016110 /* common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC20 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016130 /* compressed_tuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC30 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016150 /* container_memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC40 /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016170 /* fixed_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC50 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016190 /* flat_hash_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC60 /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161B0 /* hash_function_defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC70 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161D0 /* hash_policy_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC80 /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000161F0 /* hashtable_debug_hooks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CC90 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016210 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CCA0 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016230 /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CCB0 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016220 /* hashtablez_sampler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CCC0 /* have_sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016250 /* have_sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CCD0 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016270 /* inlined_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CCE0 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016290 /* inlined_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CCF0 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000162B0 /* layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD00 /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000162D0 /* raw_hash_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD10 /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000162F0 /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CD20 /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016300 /* raw_hash_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD30 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016330 /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CD40 /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016350 /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CD50 /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016370 /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CD60 /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016340 /* address_is_readable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD70 /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016360 /* elf_mem_image.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD80 /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016380 /* vdso_support.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CD90 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000163A0 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CDA0 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163B0 /* demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CDB0 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016470 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CDC0 /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163D0 /* stacktrace_aarch64-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CDD0 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163E0 /* stacktrace_arm-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CDE0 /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000163F0 /* stacktrace_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CDF0 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016400 /* stacktrace_emscripten-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE00 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016410 /* stacktrace_generic-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE10 /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016420 /* stacktrace_powerpc-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE20 /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016430 /* stacktrace_riscv-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE30 /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016440 /* stacktrace_unimplemented-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE40 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016450 /* stacktrace_win32-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE50 /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016460 /* stacktrace_x86-inl.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE60 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016480 /* stacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE70 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000164B0 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CE80 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164A0 /* symbolize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CE90 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164C0 /* symbolize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CEA0 /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164D0 /* symbolize_darwin.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CEB0 /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164E0 /* symbolize_elf.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CEC0 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000164F0 /* symbolize_emscripten.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CED0 /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016500 /* symbolize_unimplemented.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CEE0 /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016510 /* symbolize_win32.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CEF0 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016540 /* bind_front.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF00 /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016550 /* front_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF10 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016570 /* function_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF20 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016580 /* function_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF30 /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000165B0 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CF40 /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165C0 /* city.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF50 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000165F0 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CF60 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000165E0 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF70 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016600 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CF80 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016620 /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CF90 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016630 /* low_level_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CFA0 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016660 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CFB0 /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016690 /* type_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CFC0 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000166C0 /* bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CFD0 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000166D0 /* bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003CFE0 /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000166F0 /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003CFF0 /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016700 /* int128.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D000 /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016710 /* int128_have_intrinsic.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D010 /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016720 /* int128_no_intrinsic.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D020 /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016740 /* representation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D030 /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016770 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D040 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016780 /* exponential_biased.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D050 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000167A0 /* sample_recorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D060 /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000167F0 /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D070 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016830 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D080 /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000167D0 /* bernoulli_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D090 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000167E0 /* beta_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0A0 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016800 /* discrete_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0B0 /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016810 /* distributions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0C0 /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016820 /* exponential_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0D0 /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016840 /* gaussian_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0E0 /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016850 /* log_uniform_int_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D0F0 /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016860 /* poisson_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D100 /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016870 /* uniform_int_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D110 /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016880 /* uniform_real_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D120 /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016890 /* zipf_distribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D130 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000168C0 /* distribution_caller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D140 /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000168E0 /* fast_uniform_bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D150 /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016900 /* fastmath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D160 /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016920 /* generate_real.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D170 /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016940 /* iostream_state_saver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D180 /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016960 /* nonsecure_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D190 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016980 /* pcg_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D1A0 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000169B0 /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D1B0 /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169A0 /* platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D1C0 /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169C0 /* randen_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D1D0 /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000169E0 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D1E0 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000169F0 /* pool_urbg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D1F0 /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A10 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D200 /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A20 /* randen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D210 /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A40 /* randen_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D220 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A60 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D230 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A70 /* randen_detect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D240 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016A80 /* randen_hwaes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D250 /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AA0 /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D260 /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AC0 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D270 /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AD0 /* randen_slow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D280 /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016AF0 /* salted_seed_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D290 /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B10 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D2A0 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B20 /* seed_material.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D2B0 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B40 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D2C0 /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B60 /* uniform_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D2D0 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016B80 /* wide_multiply.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D2E0 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BA0 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D2F0 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BC0 /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D300 /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BD0 /* seed_gen_exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D310 /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016BF0 /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D320 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C00 /* seed_sequences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D330 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C40 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D340 /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C60 /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D350 /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C30 /* status_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D360 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C50 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D370 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C70 /* status_payload_printer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D380 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CA0 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D390 /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016C90 /* statusor_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D3A0 /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CB0 /* statusor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D3B0 /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CE0 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D3C0 /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016CF0 /* cord.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D3D0 /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D10 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D3E0 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D30 /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D3F0 /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D50 /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D400 /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D70 /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D410 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D90 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D420 /* cord_rep_ring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DC0 /* cord_rep_ring.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D430 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D20 /* cord_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D440 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D40 /* cord_rep_btree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D450 /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D60 /* cord_rep_btree_navigator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D460 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016D80 /* cord_rep_btree_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D470 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DA0 /* cord_rep_consume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D480 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DB0 /* cord_rep_flat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D490 /* cord_rep_ring.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DD0 /* cord_rep_ring.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D4A0 /* cord_rep_ring_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016DE0 /* cord_rep_ring_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D4B0 /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E00 /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D4C0 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E10 /* cordz_functions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D4D0 /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E30 /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D4E0 /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E40 /* cordz_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D4F0 /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E60 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D500 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E70 /* cordz_info.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D510 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016E90 /* cordz_statistics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D520 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EB0 /* cordz_update_scope.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D530 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016ED0 /* cordz_update_tracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D540 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F00 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D550 /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F20 /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D560 /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F50 /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D570 /* char_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016EF0 /* char_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D580 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F10 /* escaping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D590 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F30 /* ostringstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D5A0 /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F40 /* resize_uninitialized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D5B0 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F60 /* utf8.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D5C0 /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016F80 /* str_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D5D0 /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FA0 /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D5E0 /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FC0 /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D5F0 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FF0 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D600 /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017010 /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D610 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017030 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D620 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017050 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D630 /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FB0 /* arg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D640 /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FD0 /* bind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D650 /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00016FE0 /* checker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D660 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017000 /* extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D670 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017020 /* float_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D680 /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017040 /* output.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D690 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017060 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D6A0 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017080 /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D6B0 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000170A0 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D6C0 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000170C0 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D6D0 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000170E0 /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D6E0 /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017100 /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D6F0 /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017120 /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D700 /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017180 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D710 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000171A0 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D720 /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000171C0 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D730 /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000171F0 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D740 /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017210 /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D750 /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017230 /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D760 /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017260 /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D770 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017090 /* ascii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D780 /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170B0 /* charconv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D790 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170D0 /* escaping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7A0 /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000170F0 /* charconv_bigint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7B0 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017110 /* charconv_parse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7C0 /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017130 /* memutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7D0 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017140 /* stl_type_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7E0 /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017150 /* str_join_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D7F0 /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017160 /* str_split_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D800 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017170 /* string_constant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D810 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017190 /* match.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D820 /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171B0 /* numbers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D830 /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171D0 /* str_cat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D840 /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000171E0 /* str_join.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D850 /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017200 /* str_replace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D860 /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017220 /* str_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D870 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017240 /* string_view.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D880 /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017250 /* strip.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D890 /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017270 /* substitute.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D8A0 /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000172A0 /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D8B0 /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172B0 /* graphcycles.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D8C0 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000172D0 /* kernel_timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D8D0 /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000172F0 /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D8E0 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017310 /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D8F0 /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017330 /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D900 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017360 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D910 /* waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017380 /* waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D920 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000173A0 /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D930 /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000173C0 /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D940 /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017300 /* barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D950 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017320 /* blocking_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D960 /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017340 /* create_thread_identity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D970 /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017350 /* futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D980 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017370 /* per_thread_sem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D990 /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017390 /* waiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D9A0 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173B0 /* mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D9B0 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000173D0 /* notification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D9C0 /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017440 /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003D9D0 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017420 /* civil_time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D9E0 /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017430 /* civil_time_detail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003D9F0 /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017480 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA00 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174A0 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA10 /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174B0 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA20 /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174D0 /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA30 /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000174F0 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA40 /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017510 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA50 /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017530 /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA60 /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017540 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA70 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017570 /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DA80 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017460 /* time_zone.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DA90 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017470 /* zone_info_source.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAA0 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017490 /* time_zone_fixed.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAB0 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174C0 /* time_zone_if.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAC0 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000174E0 /* time_zone_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAD0 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017500 /* time_zone_info.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAE0 /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017520 /* time_zone_libc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DAF0 /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017550 /* time_zone_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DB00 /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017560 /* tzfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DB10 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017590 /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DB20 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000175B0 /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DB30 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000175D0 /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DB40 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000175E0 /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DB50 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017610 /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DB60 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175A0 /* civil_time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DB70 /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175C0 /* clock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DB80 /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000175F0 /* get_current_time_chrono.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DB90 /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017600 /* get_current_time_posix.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DBA0 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017620 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DBB0 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017650 /* any.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DBC0 /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017670 /* bad_any_cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DBD0 /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017690 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DBE0 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000176B0 /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DBF0 /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000176C0 /* bad_optional_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC00 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000176E0 /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 46EB2E0003DC10 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000176F0 /* bad_variant_access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC20 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017710 /* compare.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC30 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017730 /* optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC40 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017740 /* optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC50 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017760 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC60 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017770 /* span.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC70 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017790 /* variant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC80 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177A0 /* variant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DC90 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177D0 /* utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DCF0 /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003DCE0 /* abseil-dummy.m */; }; + 46EB2E0003DDF0 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000177E0 /* format.cc */; }; + 46EB2E0003DE00 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000177F0 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE10 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017800 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE20 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017810 /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE30 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017820 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE40 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017830 /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE50 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017840 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE60 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017850 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE70 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017860 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE80 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017870 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DE90 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017880 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DEA0 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017890 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DEB0 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178A0 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003DF10 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0003DF00 /* fmt-dummy.m */; }; + 46EB2E0003E020 /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021F50 /* roots.pem */; }; + 46EB2E0003E050 /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C50 /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E060 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C70 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E070 /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C80 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E080 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CA0 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E090 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CC0 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0A0 /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CE0 /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0B0 /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D00 /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0C0 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D20 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0D0 /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D30 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0E0 /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D50 /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E0F0 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D70 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E100 /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DA0 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E110 /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DD0 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E120 /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E00 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E130 /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E20 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E140 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E40 /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E150 /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E70 /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E160 /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E90 /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E170 /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A120 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E180 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A130 /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E190 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A140 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1A0 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A150 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1B0 /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A160 /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1C0 /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A170 /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1D0 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A190 /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1E0 /* credentials_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1A0 /* credentials_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E1F0 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1B0 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E200 /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1C0 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E210 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1E0 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E220 /* codegen_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1F0 /* codegen_init.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E230 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A200 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E240 /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A210 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E250 /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A220 /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E260 /* channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A230 /* channel_filter.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E270 /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A250 /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E280 /* core_codegen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A260 /* core_codegen.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E290 /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A270 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2A0 /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A280 /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2B0 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A290 /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2C0 /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2B0 /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2D0 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2C0 /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2E0 /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2D0 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E2F0 /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2E0 /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E300 /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2F0 /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E310 /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A300 /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E320 /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A310 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E330 /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A320 /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E340 /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A330 /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E350 /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A340 /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E360 /* dynamic_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A350 /* dynamic_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E370 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A370 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E380 /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A390 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E390 /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3B0 /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3A0 /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3C0 /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3B0 /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3D0 /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3C0 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3E0 /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3D0 /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A400 /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3E0 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A410 /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E3F0 /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A420 /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E400 /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A430 /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E410 /* server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A440 /* server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E420 /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A450 /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E430 /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A470 /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E440 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A480 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E450 /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4A0 /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E460 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4B0 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E470 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4C0 /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E480 /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4D0 /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E0003E490 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178C0 /* backend_metric.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4A0 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178D0 /* backup_poller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4B0 /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178E0 /* client_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4C0 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000178F0 /* client_channel_channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4D0 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017900 /* client_channel_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4E0 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017910 /* config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E4F0 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017920 /* connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E500 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017930 /* dynamic_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E510 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017940 /* global_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E520 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017950 /* health_check_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E530 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017960 /* http_connect_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E540 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017970 /* http_proxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E550 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017980 /* lb_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E560 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017990 /* address_filtering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E570 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179A0 /* child_policy_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E580 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179B0 /* client_load_reporting_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E590 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179C0 /* grpclb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5A0 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179D0 /* grpclb_balancer_addresses.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5B0 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179E0 /* grpclb_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5C0 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000179F0 /* grpclb_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5D0 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A00 /* load_balancer_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5E0 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A10 /* ring_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E5F0 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A20 /* subchannel_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E600 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A30 /* xds.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E610 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A40 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E620 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A50 /* lb_policy_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E630 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A60 /* lb_policy_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E640 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A70 /* local_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E650 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A80 /* proxy_mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E660 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017A90 /* proxy_mapper_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E670 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AA0 /* grpc_ares_ev_driver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E680 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AB0 /* grpc_ares_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E690 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AC0 /* dns_resolver_selection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6A0 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AD0 /* fake_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6B0 /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AE0 /* xds_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6C0 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017AF0 /* resolver_result_parsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6D0 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B00 /* retry_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6E0 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B10 /* retry_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E6F0 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B20 /* retry_throttle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E700 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B30 /* subchannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E710 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B40 /* subchannel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E720 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B50 /* subchannel_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E730 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B60 /* idle_filter_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E740 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B70 /* deadline_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E750 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B80 /* fault_injection_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E760 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017B90 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E770 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BA0 /* http_client_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E780 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BB0 /* client_authority_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E790 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BC0 /* message_compress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7A0 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BD0 /* message_decompress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7B0 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BE0 /* http_server_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7C0 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017BF0 /* max_age_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7D0 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C00 /* message_size_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7E0 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C10 /* rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E7F0 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C20 /* rbac_service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E800 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C30 /* server_config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E810 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C40 /* server_config_selector_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E820 /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C60 /* binder_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E830 /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017C90 /* channel_create_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E840 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CB0 /* connection_id_generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E850 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CD0 /* endpoint_binder_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E860 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017CF0 /* jni_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E870 /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D10 /* security_policy_setting.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E880 /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D40 /* binder_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E890 /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D60 /* binder_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8A0 /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D80 /* binder_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8B0 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017D90 /* binder_auto_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8C0 /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DB0 /* ndk_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8D0 /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DC0 /* transport_stream_receiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8E0 /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DE0 /* transport_stream_receiver_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E8F0 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017DF0 /* binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E900 /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E10 /* binder_android.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E910 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E30 /* binder_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E920 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E50 /* transaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E930 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E60 /* wire_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E940 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017E80 /* wire_reader_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E950 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EA0 /* wire_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E960 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EB0 /* alpn.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E970 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EC0 /* chttp2_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E980 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017ED0 /* chttp2_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E990 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EE0 /* bin_decoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9A0 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017EF0 /* bin_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9B0 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F00 /* chttp2_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9C0 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F10 /* context_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9D0 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F20 /* flow_control.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9E0 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F30 /* frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003E9F0 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F40 /* frame_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA00 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F50 /* frame_goaway.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA10 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F60 /* frame_ping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA20 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F70 /* frame_rst_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA30 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F80 /* frame_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA40 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017F90 /* frame_window_update.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA50 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FA0 /* hpack_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA60 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FB0 /* hpack_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA70 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FC0 /* hpack_encoder_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA80 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FD0 /* hpack_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EA90 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FE0 /* hpack_parser_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAA0 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00017FF0 /* http2_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAB0 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018000 /* huffsyms.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAC0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018010 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAD0 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018020 /* stream_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAE0 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018030 /* varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EAF0 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018040 /* inproc_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB00 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018050 /* config_dump.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB10 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018060 /* deprecation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB20 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018070 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB30 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018080 /* accesslog.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB40 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018090 /* bootstrap.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB50 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180A0 /* circuit_breaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB60 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180B0 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB70 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180C0 /* filter.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB80 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180D0 /* outlier_detection.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EB90 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180E0 /* address.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBA0 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000180F0 /* backoff.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBB0 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018100 /* base.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBC0 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018110 /* config_source.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBD0 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018120 /* event_service_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBE0 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018130 /* extension.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EBF0 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018140 /* grpc_service.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC00 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018150 /* health_check.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC10 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018160 /* http_uri.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC20 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018170 /* protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC30 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018180 /* proxy_protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC40 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018190 /* resolver.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC50 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181A0 /* socket_option.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC60 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181B0 /* substitution_format_string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC70 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181C0 /* udp_socket_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC80 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181D0 /* endpoint.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EC90 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181E0 /* endpoint_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECA0 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000181F0 /* load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECB0 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018200 /* api_listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECC0 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018210 /* listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECD0 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018220 /* listener_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECE0 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018230 /* quic_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ECF0 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018240 /* udp_listener_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED00 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018250 /* stats.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED10 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018260 /* overload.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED20 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018270 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED30 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018280 /* route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED40 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018290 /* route_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED50 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182A0 /* scoped_route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED60 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182B0 /* http_tracer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED70 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182C0 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED80 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182D0 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003ED90 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182E0 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDA0 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000182F0 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDB0 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018300 /* router.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDC0 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018310 /* http_connection_manager.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDD0 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018320 /* cert.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDE0 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018330 /* common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EDF0 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018340 /* secret.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE00 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018350 /* tls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE10 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018360 /* cds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE20 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018370 /* ads.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE30 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018380 /* discovery.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE40 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018390 /* eds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE50 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183A0 /* lds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE60 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183B0 /* lrs.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE70 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183C0 /* rds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE80 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183D0 /* srds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EE90 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183E0 /* csds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EEA0 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000183F0 /* path_transformation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EEB0 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018400 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EEC0 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018410 /* node.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EED0 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018420 /* number.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EEE0 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018430 /* path.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EEF0 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018440 /* regex.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF00 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018450 /* string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF10 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018460 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF20 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018470 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF30 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018480 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF40 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018490 /* custom_tag.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF50 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184A0 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF60 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184B0 /* percent.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF70 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184C0 /* range.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF80 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184D0 /* semantic_version.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EF90 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184E0 /* annotations.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFA0 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000184F0 /* checked.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFB0 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018500 /* eval.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFC0 /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018510 /* explain.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFD0 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018520 /* syntax.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFE0 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018530 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003EFF0 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018540 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F000 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018550 /* any.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F010 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018560 /* descriptor.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F020 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018570 /* duration.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F030 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018580 /* empty.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F040 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018590 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F050 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185A0 /* timestamp.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F060 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185B0 /* wrappers.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F070 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185C0 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F080 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185D0 /* altscontext.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F090 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185E0 /* handshaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0A0 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000185F0 /* transport_security_common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0B0 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018600 /* health.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0C0 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018610 /* load_balancer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0D0 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018620 /* rls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0E0 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018630 /* migrate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F0F0 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018640 /* security.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F100 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018650 /* sensitive.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F110 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018660 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F120 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018670 /* versioning.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F130 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018680 /* validate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F140 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018690 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F150 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186A0 /* authority.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F160 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186B0 /* collection_entry.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F170 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186C0 /* context_params.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F180 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186D0 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F190 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186E0 /* resource_locator.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1A0 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000186F0 /* resource_name.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1B0 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018700 /* orca_load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1C0 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018710 /* typed_struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1D0 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018720 /* config_dump.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1E0 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018730 /* deprecation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F1F0 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018740 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F200 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018750 /* accesslog.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F210 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018760 /* bootstrap.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F220 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018770 /* circuit_breaker.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F230 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018780 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F240 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018790 /* filter.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F250 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187A0 /* outlier_detection.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F260 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187B0 /* address.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F270 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187C0 /* backoff.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F280 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187D0 /* base.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F290 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187E0 /* config_source.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2A0 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000187F0 /* event_service_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2B0 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018800 /* extension.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2C0 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018810 /* grpc_service.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2D0 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018820 /* health_check.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2E0 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018830 /* http_uri.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F2F0 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018840 /* protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F300 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018850 /* proxy_protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F310 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018860 /* resolver.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F320 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018870 /* socket_option.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F330 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018880 /* substitution_format_string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F340 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018890 /* udp_socket_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F350 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188A0 /* endpoint.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F360 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188B0 /* endpoint_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F370 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188C0 /* load_report.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F380 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188D0 /* api_listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F390 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188E0 /* listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3A0 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000188F0 /* listener_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3B0 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018900 /* quic_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3C0 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018910 /* udp_listener_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3D0 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018920 /* stats.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3E0 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018930 /* overload.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F3F0 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018940 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F400 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018950 /* route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F410 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018960 /* route_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F420 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018970 /* scoped_route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F430 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018980 /* http_tracer.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F440 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018990 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F450 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189A0 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F460 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189B0 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F470 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189C0 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F480 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189D0 /* router.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F490 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189E0 /* http_connection_manager.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4A0 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000189F0 /* cert.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4B0 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A00 /* common.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4C0 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A10 /* secret.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4D0 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A20 /* tls.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4E0 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A30 /* cds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F4F0 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A40 /* ads.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F500 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A50 /* discovery.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F510 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A60 /* eds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F520 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A70 /* lds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F530 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A80 /* lrs.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F540 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018A90 /* rds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F550 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AA0 /* srds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F560 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AB0 /* csds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F570 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AC0 /* path_transformation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F580 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AD0 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F590 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AE0 /* node.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5A0 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018AF0 /* number.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5B0 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B00 /* path.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5C0 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B10 /* regex.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5D0 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B20 /* string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5E0 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B30 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F5F0 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B40 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F600 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B50 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F610 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B60 /* custom_tag.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F620 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B70 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F630 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B80 /* percent.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F640 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018B90 /* range.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F650 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BA0 /* semantic_version.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F660 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BB0 /* annotations.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F670 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BC0 /* checked.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F680 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BD0 /* eval.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F690 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BE0 /* explain.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6A0 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018BF0 /* syntax.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6B0 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C00 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6C0 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C10 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6D0 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C20 /* any.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6E0 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C30 /* descriptor.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F6F0 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C40 /* duration.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F700 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C50 /* empty.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F710 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C60 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F720 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C70 /* timestamp.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F730 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C80 /* wrappers.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F740 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018C90 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F750 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CA0 /* migrate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F760 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CB0 /* security.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F770 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CC0 /* sensitive.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F780 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CD0 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F790 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CE0 /* versioning.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7A0 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018CF0 /* validate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7B0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D00 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7C0 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D10 /* authority.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7D0 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D20 /* collection_entry.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7E0 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D30 /* context_params.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F7F0 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D40 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F800 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D50 /* resource_locator.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F810 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D60 /* resource_name.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F820 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D70 /* typed_struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F830 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D80 /* certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F840 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018D90 /* certificate_provider_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F850 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DA0 /* certificate_provider_store.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F860 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DB0 /* file_watcher_certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F870 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DC0 /* upb_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F880 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DD0 /* xds_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F890 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DE0 /* xds_bootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8A0 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018DF0 /* xds_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8B0 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E00 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8C0 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E10 /* xds_channel_creds.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8D0 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E20 /* xds_channel_stack_modifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8E0 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E30 /* xds_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F8F0 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E40 /* xds_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F900 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E50 /* xds_cluster.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F910 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E60 /* xds_common_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F920 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E70 /* xds_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F930 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E80 /* xds_http_fault_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F940 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018E90 /* xds_http_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F950 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EA0 /* xds_http_rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F960 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EB0 /* xds_listener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F970 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EC0 /* xds_resource_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F980 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018ED0 /* xds_resource_type_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F990 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EE0 /* xds_route_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9A0 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018EF0 /* xds_routing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9B0 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F00 /* parse_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9C0 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F10 /* sockaddr_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9D0 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F20 /* avl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9E0 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F30 /* backoff.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003F9F0 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F40 /* call_tracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA00 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F50 /* channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA10 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F60 /* channel_args_preconditioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA20 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F70 /* channel_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA30 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F80 /* channel_stack_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA40 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018F90 /* channel_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA50 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FA0 /* channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA60 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FB0 /* channelz_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA70 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FC0 /* connected_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA80 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FD0 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FA90 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FE0 /* handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAA0 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00018FF0 /* handshaker_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAB0 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019000 /* handshaker_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAC0 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019010 /* status_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAD0 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019020 /* compression_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAE0 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019030 /* message_compress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FAF0 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019040 /* core_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB00 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019050 /* stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB10 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019060 /* stats_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB20 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019070 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB30 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019080 /* channel_args_endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB40 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019090 /* event_engine_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB50 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190A0 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB60 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190B0 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB70 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190C0 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB80 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190D0 /* murmur_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FB90 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190E0 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBA0 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000190F0 /* string.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBB0 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019100 /* string_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBC0 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019110 /* time_precise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBD0 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019120 /* tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBE0 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019130 /* tmpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FBF0 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019140 /* useful.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC00 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019150 /* atomic_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC10 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019160 /* bitset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC20 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019170 /* chunked_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC30 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019180 /* construct_destruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC40 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019190 /* cpp_impl_of.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC50 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191A0 /* debug_location.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC60 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191B0 /* dual_ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC70 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191C0 /* examine_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC80 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191D0 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FC90 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191E0 /* global_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCA0 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000191F0 /* global_config_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCB0 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019200 /* global_config_env.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCC0 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019210 /* global_config_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCD0 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019220 /* host_port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCE0 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019230 /* manual_constructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FCF0 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019240 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD00 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019250 /* mpscq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD10 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019260 /* orphanable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD20 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019270 /* ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD30 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019280 /* ref_counted_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD40 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019290 /* stat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD50 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192A0 /* status_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD60 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192B0 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD70 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192C0 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD80 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192D0 /* thd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FD90 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192E0 /* time_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDA0 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000192F0 /* format_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDB0 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019300 /* httpcli.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDC0 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019310 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDD0 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019320 /* block_annotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDE0 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019330 /* buffer_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FDF0 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019340 /* call_combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE00 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019350 /* cfstream_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE10 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019360 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE20 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019370 /* combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE30 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019380 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE40 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019390 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE50 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193A0 /* endpoint_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE60 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193B0 /* endpoint_pair.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE70 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193C0 /* error.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE80 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193D0 /* error_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FE90 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193E0 /* error_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FEA0 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000193F0 /* ev_apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FEB0 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019400 /* ev_epoll1_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FEC0 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019410 /* ev_epollex_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FED0 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019420 /* ev_poll_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FEE0 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019430 /* ev_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FEF0 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019440 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF00 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019450 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF10 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019460 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF20 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019470 /* promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF30 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019480 /* resolved_address_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF40 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019490 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF50 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194A0 /* exec_ctx.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF60 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194B0 /* executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF70 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194C0 /* mpmcqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF80 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194D0 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FF90 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194E0 /* gethostname.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFA0 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000194F0 /* grpc_if_nametoindex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFB0 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019500 /* internal_errqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFC0 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019510 /* iocp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFD0 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019520 /* iomgr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFE0 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019530 /* iomgr_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E0003FFF0 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019540 /* iomgr_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040000 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019550 /* is_epollexclusive_available.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040010 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019560 /* load_file.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040020 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019570 /* lockfree_event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040030 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019580 /* nameser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040040 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019590 /* polling_entity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040050 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195A0 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040060 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195B0 /* pollset_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040070 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195C0 /* pollset_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040080 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195D0 /* pollset_set_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040090 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195E0 /* pollset_set_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400A0 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000195F0 /* pollset_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400B0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019600 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400C0 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019610 /* python_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400D0 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019620 /* resolve_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400E0 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019630 /* resolve_address_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000400F0 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019640 /* resolve_address_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040100 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019650 /* resolve_address_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040110 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019660 /* resolve_address_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040120 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019670 /* resolved_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040130 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019680 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040140 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019690 /* sockaddr_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040150 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196A0 /* sockaddr_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040160 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196B0 /* socket_factory_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040170 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196C0 /* socket_mutator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040180 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196D0 /* socket_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040190 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196E0 /* socket_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401A0 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000196F0 /* socket_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401B0 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019700 /* sys_epoll_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401C0 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019710 /* tcp_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401D0 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019720 /* tcp_client_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401E0 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019730 /* tcp_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000401F0 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019740 /* tcp_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040200 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019750 /* tcp_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040210 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019760 /* tcp_server_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040220 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019770 /* tcp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040230 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019780 /* time_averaged_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040240 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019790 /* timer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040250 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197A0 /* timer_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040260 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197B0 /* timer_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040270 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197C0 /* timer_heap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040280 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197D0 /* timer_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040290 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197E0 /* unix_sockets_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402A0 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000197F0 /* wakeup_fd_pipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402B0 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019800 /* wakeup_fd_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402C0 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019810 /* work_serializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402D0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019820 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402E0 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019830 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000402F0 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019840 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040300 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019850 /* timers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040310 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019860 /* activity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040320 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019870 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040330 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019880 /* basic_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040340 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019890 /* promise_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040350 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198A0 /* promise_like.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040360 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198B0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040370 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198C0 /* switch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040380 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198D0 /* exec_ctx_wakeup_scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040390 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198E0 /* loop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403A0 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000198F0 /* map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403B0 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019900 /* poll.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403C0 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019910 /* race.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403D0 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019920 /* seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403E0 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019930 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000403F0 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019940 /* resolver_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040400 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019950 /* resolver_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040410 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019960 /* server_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040420 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019970 /* api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040430 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019980 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040440 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019990 /* memory_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040450 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199A0 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040460 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199B0 /* thread_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040470 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199C0 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040480 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199D0 /* authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040490 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199E0 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404A0 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000199F0 /* evaluate_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404B0 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A00 /* grpc_authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404C0 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A10 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404D0 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A20 /* rbac_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404E0 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A30 /* sdk_server_authz_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000404F0 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A40 /* security_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040500 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A50 /* alts_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040510 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A60 /* check_gcp_environment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040520 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A70 /* grpc_alts_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040530 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A80 /* composite_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040540 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019A90 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040550 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AA0 /* aws_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040560 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AB0 /* aws_request_signer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040570 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AC0 /* external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040580 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AD0 /* file_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040590 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AE0 /* url_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405A0 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019AF0 /* fake_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405B0 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B00 /* google_default_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405C0 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B10 /* iam_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405D0 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B20 /* json_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405E0 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B30 /* jwt_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000405F0 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B40 /* jwt_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040600 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B50 /* local_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040610 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B60 /* oauth2_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040620 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B70 /* plugin_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040630 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B80 /* ssl_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040640 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019B90 /* grpc_tls_certificate_distributor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040650 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BA0 /* grpc_tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040660 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BB0 /* grpc_tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040670 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BC0 /* grpc_tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040680 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BD0 /* tls_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040690 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BE0 /* tls_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406A0 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019BF0 /* xds_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406B0 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C00 /* alts_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406C0 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C10 /* fake_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406D0 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C20 /* insecure_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406E0 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C30 /* load_system_roots.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000406F0 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C40 /* load_system_roots_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040700 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C50 /* local_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040710 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C60 /* security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040720 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C70 /* ssl_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040730 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C80 /* ssl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040740 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019C90 /* ssl_utils_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040750 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CA0 /* tls_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040760 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CB0 /* auth_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040770 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CC0 /* secure_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040780 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CD0 /* security_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040790 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CE0 /* tsi_error.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407A0 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019CF0 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407B0 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D00 /* service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407C0 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D10 /* service_config_call_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407D0 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D20 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407E0 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D30 /* b64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000407F0 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D40 /* percent_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040800 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D50 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040810 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D60 /* slice_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040820 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D70 /* slice_refcount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040830 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D80 /* slice_refcount_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040840 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019D90 /* slice_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040850 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DA0 /* slice_string_helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040860 /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DB0 /* slice_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040870 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DC0 /* api_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040880 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DD0 /* builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040890 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DE0 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408A0 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019DF0 /* call_test_only.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408B0 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E00 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408C0 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E10 /* channel_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408D0 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E20 /* channel_stack_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408E0 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E30 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000408F0 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E40 /* completion_queue_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040900 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E50 /* event_string.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040910 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E60 /* init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040920 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E70 /* lame_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040930 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E80 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040940 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019E90 /* validate_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040950 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EA0 /* bdp_estimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040960 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EB0 /* byte_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040970 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EC0 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040980 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019ED0 /* error_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040990 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EE0 /* http2_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409A0 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019EF0 /* metadata_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409B0 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F00 /* parsed_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409C0 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F10 /* pid_controller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409D0 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F20 /* status_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409E0 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F30 /* timeout_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000409F0 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F40 /* transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A00 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F50 /* transport_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A10 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F60 /* uri_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A20 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F70 /* gsec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A30 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F80 /* alts_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A40 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019F90 /* alts_crypter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A50 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FA0 /* alts_frame_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A60 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FB0 /* alts_record_protocol_crypter_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A70 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FC0 /* frame_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A80 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FD0 /* alts_handshaker_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040A90 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FE0 /* alts_shared_resource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AA0 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00019FF0 /* alts_tsi_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AB0 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A000 /* alts_tsi_handshaker_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AC0 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A010 /* alts_tsi_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AD0 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A020 /* transport_security_common_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AE0 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A030 /* alts_grpc_integrity_only_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040AF0 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A040 /* alts_grpc_privacy_integrity_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B00 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A050 /* alts_grpc_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B10 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A060 /* alts_grpc_record_protocol_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B20 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A070 /* alts_iovec_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B30 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A080 /* alts_zero_copy_grpc_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B40 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A090 /* fake_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B50 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0A0 /* local_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B60 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0B0 /* ssl_session.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B70 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0C0 /* ssl_session_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B80 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0D0 /* ssl_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040B90 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0E0 /* ssl_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BA0 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A0F0 /* transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BB0 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A100 /* transport_security_grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BC0 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A110 /* transport_security_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BD0 /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A180 /* create_channel_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BE0 /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A1D0 /* secure_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040BF0 /* channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A240 /* channel_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C00 /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A2A0 /* secure_auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C10 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A360 /* dynamic_thread_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C20 /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A380 /* external_connection_acceptor_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C30 /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3A0 /* default_health_check_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C40 /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A3F0 /* secure_server_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C50 /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A460 /* thread_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C60 /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A490 /* thread_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C70 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4E0 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C80 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A4F0 /* decode_fast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040C90 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A500 /* decode_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CA0 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A510 /* def.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CB0 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A520 /* def.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CC0 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A530 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CD0 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A540 /* msg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CE0 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A550 /* msg_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040CF0 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A560 /* port_def.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D00 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A570 /* port_undef.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D10 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A580 /* reflection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D20 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A590 /* reflection.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D30 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5A0 /* table_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D40 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5B0 /* text_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D50 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5C0 /* upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D60 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5D0 /* upb.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D70 /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5E0 /* upb_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D80 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A5F0 /* xxhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040D90 /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A610 /* alarm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DA0 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A620 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DB0 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A630 /* client_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DC0 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A640 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DD0 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A650 /* create_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DE0 /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A660 /* create_channel_binder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040DF0 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A670 /* create_channel_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E00 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A680 /* health_check_service_server_builder_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E10 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A690 /* async_generic_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E20 /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6A0 /* generic_stub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E30 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6B0 /* grpcpp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E40 /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6C0 /* health_check_service_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E50 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6D0 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E60 /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6E0 /* channel_argument_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E70 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A6F0 /* client_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E80 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A700 /* async_generic_service.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040E90 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A710 /* async_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040EA0 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A720 /* async_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040EB0 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A730 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040EC0 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A740 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040ED0 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A750 /* call_hook.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040EE0 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A760 /* call_op_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040EF0 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A770 /* call_op_set_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F00 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A780 /* callback_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F10 /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A790 /* channel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F20 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7A0 /* client_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F30 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7B0 /* client_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F40 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7C0 /* client_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F50 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7D0 /* client_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F60 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7E0 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F70 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A7F0 /* completion_queue_tag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F80 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A800 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040F90 /* core_codegen.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A810 /* core_codegen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FA0 /* core_codegen_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A820 /* core_codegen_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FB0 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A830 /* create_auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FC0 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A840 /* delegating_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FD0 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A850 /* grpc_library.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FE0 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A860 /* intercepted_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00040FF0 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A870 /* interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041000 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A880 /* interceptor_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041010 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A890 /* message_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041020 /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8A0 /* metadata_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041030 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8B0 /* method_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041040 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8C0 /* method_handler_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041050 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8D0 /* rpc_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041060 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8E0 /* rpc_service_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041070 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A8F0 /* auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041080 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A900 /* serialization_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041090 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A910 /* server_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410A0 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A920 /* server_callback_handlers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410B0 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A930 /* server_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410C0 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A940 /* server_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410D0 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A950 /* server_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410E0 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A960 /* service_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000410F0 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A970 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041100 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A980 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041110 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A990 /* status_code_enum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041120 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9A0 /* string_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041130 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9B0 /* stub_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041140 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9C0 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041150 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9D0 /* sync_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041160 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9E0 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041170 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001A9F0 /* grpc_library.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041180 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA00 /* method_handler_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041190 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA10 /* rpc_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411A0 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA20 /* rpc_service_method.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411B0 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA30 /* serialization_traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411C0 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA40 /* server_builder_option.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411D0 /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA50 /* server_builder_plugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411E0 /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA60 /* server_initializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000411F0 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA70 /* service_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041200 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA80 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041210 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AA90 /* auth_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041220 /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAA0 /* auth_metadata_processor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041230 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAB0 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041240 /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAC0 /* binder_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041250 /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAD0 /* binder_security_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041260 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAE0 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041270 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AAF0 /* server_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041280 /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB00 /* tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041290 /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB10 /* tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412A0 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB20 /* tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412B0 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB30 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412C0 /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB40 /* server_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412D0 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB50 /* server_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412E0 /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB60 /* server_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000412F0 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB70 /* async_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041300 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB80 /* async_unary_call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041310 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AB90 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041320 /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABA0 /* channel_arguments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041330 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABB0 /* client_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041340 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABC0 /* client_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041350 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABD0 /* config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041360 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABE0 /* interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041370 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ABF0 /* message_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041380 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC00 /* method_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041390 /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC10 /* proto_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413A0 /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC20 /* proto_buffer_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413B0 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC30 /* server_callback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413C0 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC40 /* server_interceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413D0 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC50 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413E0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC60 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000413F0 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC70 /* status_code_enum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041400 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC80 /* string_ref.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041410 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AC90 /* stub_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041420 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACA0 /* sync_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041430 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACB0 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041440 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACC0 /* validate_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00041450 /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACD0 /* xds_server_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000414A0 /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00041490 /* gRPC-C++-dummy.m */; }; + 46EB2E00041530 /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ACF0 /* grpc_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041540 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD00 /* backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041550 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD20 /* backup_poller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041560 /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD40 /* channel_connectivity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041570 /* client_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD50 /* client_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041580 /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD70 /* client_channel_channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041590 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD90 /* client_channel_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415A0 /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADB0 /* client_channel_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415B0 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADC0 /* config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415C0 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADF0 /* dynamic_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415D0 /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE10 /* global_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415E0 /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE30 /* health_check_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000415F0 /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE50 /* http_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041600 /* http_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE70 /* http_proxy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041610 /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE90 /* lb_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041620 /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEB0 /* address_filtering.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041630 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AED0 /* child_policy_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041640 /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEF0 /* client_load_reporting_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041650 /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF10 /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041660 /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF30 /* grpclb_balancer_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041670 /* grpclb_channel_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF60 /* grpclb_channel_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041680 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF70 /* grpclb_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041690 /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF90 /* load_balancer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416A0 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFB0 /* pick_first.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416B0 /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFC0 /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416C0 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFD0 /* ring_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416D0 /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFF0 /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416E0 /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B000 /* round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000416F0 /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B020 /* weighted_target.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041700 /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B030 /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041710 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B060 /* xds_cluster_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041720 /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B070 /* xds_cluster_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041730 /* xds_cluster_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B080 /* xds_cluster_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041740 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0A0 /* lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041750 /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0C0 /* local_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041760 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0F0 /* proxy_mapper_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041770 /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B110 /* binder_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041780 /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B120 /* dns_resolver_ares.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041790 /* grpc_ares_ev_driver_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B140 /* grpc_ares_ev_driver_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417A0 /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B150 /* grpc_ares_ev_driver_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417B0 /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B160 /* grpc_ares_ev_driver_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417C0 /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B170 /* grpc_ares_wrapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417D0 /* grpc_ares_wrapper_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B190 /* grpc_ares_wrapper_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417E0 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1A0 /* grpc_ares_wrapper_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000417F0 /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1B0 /* grpc_ares_wrapper_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041800 /* dns_resolver_selection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1C0 /* dns_resolver_selection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041810 /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1E0 /* dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041820 /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1F0 /* fake_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041830 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B210 /* google_c2p_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041840 /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B220 /* sockaddr_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041850 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B230 /* xds_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041860 /* resolver_result_parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B250 /* resolver_result_parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041870 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B270 /* retry_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041880 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B290 /* retry_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041890 /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2B0 /* retry_throttle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418A0 /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2D0 /* service_config_channel_arg_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418B0 /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2E0 /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418C0 /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B310 /* subchannel_pool_interface.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418D0 /* client_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B330 /* client_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418E0 /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B340 /* idle_filter_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000418F0 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B360 /* deadline_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041900 /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B380 /* fault_injection_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041910 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3A0 /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041920 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3C0 /* http_client_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041930 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3E0 /* client_authority_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041940 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B400 /* http_filters_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041950 /* message_compress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B410 /* message_compress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041960 /* message_decompress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B430 /* message_decompress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041970 /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B450 /* http_server_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041980 /* max_age_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B470 /* max_age_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041990 /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B490 /* message_size_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419A0 /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4B0 /* rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419B0 /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4D0 /* rbac_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419C0 /* server_config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4F0 /* server_config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419D0 /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B510 /* server_config_selector_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419E0 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B530 /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000419F0 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B550 /* chttp2_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A00 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B570 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A10 /* channel_create_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B580 /* channel_create_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A20 /* secure_channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B590 /* secure_channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A30 /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5A0 /* chttp2_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A40 /* server_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5C0 /* server_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A50 /* server_chttp2_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5D0 /* server_chttp2_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A60 /* server_secure_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5E0 /* server_secure_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A70 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5F0 /* bin_decoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A80 /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B610 /* bin_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041A90 /* chttp2_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B630 /* chttp2_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AA0 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B640 /* chttp2_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AB0 /* context_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B660 /* context_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AC0 /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B680 /* flow_control.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AD0 /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6B0 /* frame_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AE0 /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6D0 /* frame_goaway.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041AF0 /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6F0 /* frame_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B00 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B710 /* frame_rst_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B10 /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B730 /* frame_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B20 /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B750 /* frame_window_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B30 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B780 /* hpack_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B40 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7A0 /* hpack_encoder_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B50 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7C0 /* hpack_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B60 /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7E0 /* hpack_parser_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B70 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B800 /* http2_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B80 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B820 /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041B90 /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B850 /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BA0 /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B860 /* stream_lists.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BB0 /* stream_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B870 /* stream_map.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BC0 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B890 /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BD0 /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8B0 /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BE0 /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8C0 /* inproc_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041BF0 /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8D0 /* inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C00 /* config_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8F0 /* config_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C10 /* deprecation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B910 /* deprecation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C20 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B930 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C30 /* accesslog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B950 /* accesslog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C40 /* bootstrap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B970 /* bootstrap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C50 /* circuit_breaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B990 /* circuit_breaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C60 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9B0 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C70 /* filter.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9D0 /* filter.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C80 /* outlier_detection.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9F0 /* outlier_detection.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041C90 /* address.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA10 /* address.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CA0 /* backoff.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA30 /* backoff.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CB0 /* base.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA50 /* base.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CC0 /* config_source.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA70 /* config_source.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CD0 /* event_service_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA90 /* event_service_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CE0 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAB0 /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041CF0 /* grpc_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAD0 /* grpc_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D00 /* health_check.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAF0 /* health_check.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D10 /* http_uri.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB10 /* http_uri.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D20 /* protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB30 /* protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D30 /* proxy_protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB50 /* proxy_protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D40 /* resolver.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB70 /* resolver.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D50 /* socket_option.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB90 /* socket_option.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D60 /* substitution_format_string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBB0 /* substitution_format_string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D70 /* udp_socket_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBD0 /* udp_socket_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D80 /* endpoint.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBF0 /* endpoint.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041D90 /* endpoint_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC10 /* endpoint_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DA0 /* load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC30 /* load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DB0 /* api_listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC50 /* api_listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DC0 /* listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC70 /* listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DD0 /* listener_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC90 /* listener_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DE0 /* quic_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCB0 /* quic_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041DF0 /* udp_listener_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCD0 /* udp_listener_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E00 /* stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCF0 /* stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E10 /* overload.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD10 /* overload.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E20 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD30 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E30 /* route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD50 /* route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E40 /* route_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD70 /* route_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E50 /* scoped_route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD90 /* scoped_route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E60 /* http_tracer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDB0 /* http_tracer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E70 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDD0 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E80 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDF0 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041E90 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE10 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041EA0 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE30 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041EB0 /* router.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE50 /* router.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041EC0 /* http_connection_manager.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE70 /* http_connection_manager.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041ED0 /* cert.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE90 /* cert.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041EE0 /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEB0 /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041EF0 /* secret.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BED0 /* secret.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F00 /* tls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEF0 /* tls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F10 /* cds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF10 /* cds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F20 /* ads.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF30 /* ads.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F30 /* discovery.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF50 /* discovery.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F40 /* eds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF70 /* eds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F50 /* lds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF90 /* lds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F60 /* lrs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFB0 /* lrs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F70 /* rds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFD0 /* rds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F80 /* srds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFF0 /* srds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041F90 /* csds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C010 /* csds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FA0 /* path_transformation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C030 /* path_transformation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FB0 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C050 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FC0 /* node.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C070 /* node.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FD0 /* number.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C090 /* number.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FE0 /* path.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0B0 /* path.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00041FF0 /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0D0 /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042000 /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0F0 /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042010 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C110 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042020 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C130 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042030 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C150 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042040 /* custom_tag.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C170 /* custom_tag.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042050 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C190 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042060 /* percent.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1B0 /* percent.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042070 /* range.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1D0 /* range.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042080 /* semantic_version.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1F0 /* semantic_version.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042090 /* annotations.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C210 /* annotations.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420A0 /* checked.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C230 /* checked.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420B0 /* eval.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C250 /* eval.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420C0 /* explain.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C270 /* explain.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420D0 /* syntax.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C290 /* syntax.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420E0 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2B0 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000420F0 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2D0 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042100 /* any.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2F0 /* any.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042110 /* descriptor.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C310 /* descriptor.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042120 /* duration.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C330 /* duration.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042130 /* empty.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C350 /* empty.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042140 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C370 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042150 /* timestamp.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C390 /* timestamp.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042160 /* wrappers.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3B0 /* wrappers.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042170 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3D0 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042180 /* altscontext.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3F0 /* altscontext.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042190 /* handshaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C410 /* handshaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421A0 /* transport_security_common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C430 /* transport_security_common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421B0 /* health.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C450 /* health.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421C0 /* load_balancer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C470 /* load_balancer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421D0 /* rls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C490 /* rls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421E0 /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4B0 /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000421F0 /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4D0 /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042200 /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4F0 /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042210 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C510 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042220 /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C530 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042230 /* validate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C550 /* validate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042240 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C570 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042250 /* authority.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C590 /* authority.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042260 /* collection_entry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5B0 /* collection_entry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042270 /* context_params.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5D0 /* context_params.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042280 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5F0 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042290 /* resource_locator.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C610 /* resource_locator.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422A0 /* resource_name.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C630 /* resource_name.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422B0 /* orca_load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C650 /* orca_load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422C0 /* typed_struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C670 /* typed_struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422D0 /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C690 /* config_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422E0 /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6B0 /* deprecation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000422F0 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6D0 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042300 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6F0 /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042310 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C710 /* bootstrap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042320 /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C730 /* circuit_breaker.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042330 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C750 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042340 /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C770 /* filter.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042350 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C790 /* outlier_detection.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042360 /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7B0 /* address.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042370 /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7D0 /* backoff.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042380 /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7F0 /* base.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042390 /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C810 /* config_source.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423A0 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C830 /* event_service_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423B0 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C850 /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423C0 /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C870 /* grpc_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423D0 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C890 /* health_check.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423E0 /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8B0 /* http_uri.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000423F0 /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8D0 /* protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042400 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8F0 /* proxy_protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042410 /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C910 /* resolver.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042420 /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C930 /* socket_option.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042430 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C950 /* substitution_format_string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042440 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C970 /* udp_socket_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042450 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C990 /* endpoint.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042460 /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9B0 /* endpoint_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042470 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9D0 /* load_report.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042480 /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9F0 /* api_listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042490 /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA10 /* listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424A0 /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA30 /* listener_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424B0 /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA50 /* quic_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424C0 /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA70 /* udp_listener_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424D0 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA90 /* stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424E0 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAB0 /* overload.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000424F0 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAD0 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042500 /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAF0 /* route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042510 /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB10 /* route_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042520 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB30 /* scoped_route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042530 /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB50 /* http_tracer.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042540 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB70 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042550 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB90 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042560 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBB0 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042570 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBD0 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042580 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBF0 /* router.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042590 /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC10 /* http_connection_manager.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425A0 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC30 /* cert.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425B0 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC50 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425C0 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC70 /* secret.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425D0 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC90 /* tls.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425E0 /* cds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCB0 /* cds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000425F0 /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCD0 /* ads.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042600 /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCF0 /* discovery.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042610 /* eds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD10 /* eds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042620 /* lds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD30 /* lds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042630 /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD50 /* lrs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042640 /* rds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD70 /* rds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042650 /* srds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD90 /* srds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042660 /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDB0 /* csds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042670 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDD0 /* path_transformation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042680 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDF0 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042690 /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE10 /* node.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426A0 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE30 /* number.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426B0 /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE50 /* path.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426C0 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE70 /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426D0 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE90 /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426E0 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEB0 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000426F0 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CED0 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042700 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEF0 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042710 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF10 /* custom_tag.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042720 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF30 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042730 /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF50 /* percent.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042740 /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF70 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042750 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF90 /* semantic_version.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042760 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFB0 /* annotations.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042770 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFD0 /* checked.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042780 /* eval.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFF0 /* eval.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042790 /* explain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D010 /* explain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427A0 /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D030 /* syntax.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427B0 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D050 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427C0 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D070 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427D0 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D090 /* any.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427E0 /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0B0 /* descriptor.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000427F0 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0D0 /* duration.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042800 /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0F0 /* empty.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042810 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D110 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042820 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D130 /* timestamp.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042830 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D150 /* wrappers.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042840 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D170 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042850 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D190 /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042860 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1B0 /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042870 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1D0 /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042880 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1F0 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042890 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D210 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428A0 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D230 /* validate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428B0 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D250 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428C0 /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D270 /* authority.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428D0 /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D290 /* collection_entry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428E0 /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2B0 /* context_params.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000428F0 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2D0 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042900 /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2F0 /* resource_locator.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042910 /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D310 /* resource_name.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042920 /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D330 /* typed_struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042930 /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D360 /* certificate_provider_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042940 /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D380 /* certificate_provider_store.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042950 /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3A0 /* file_watcher_certificate_provider_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042960 /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3D0 /* xds_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042970 /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3F0 /* xds_bootstrap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042980 /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D410 /* xds_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042990 /* xds_channel_creds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D440 /* xds_channel_creds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429A0 /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D460 /* xds_channel_stack_modifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429B0 /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D480 /* xds_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429C0 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4A0 /* xds_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429D0 /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4C0 /* xds_cluster.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429E0 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4E0 /* xds_common_types.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000429F0 /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D500 /* xds_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A00 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D520 /* xds_http_fault_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A10 /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D540 /* xds_http_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A20 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D560 /* xds_http_rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A30 /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D580 /* xds_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A40 /* xds_resource_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5A0 /* xds_resource_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A50 /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5D0 /* xds_route_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A60 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5F0 /* xds_routing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A70 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D610 /* xds_server_config_fetcher.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A80 /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D620 /* parse_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042A90 /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D640 /* sockaddr_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AA0 /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D670 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AB0 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6A0 /* channel_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AC0 /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6C0 /* channel_args_preconditioning.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AD0 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6E0 /* channel_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AE0 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D700 /* channel_stack_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042AF0 /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D720 /* channel_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B00 /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D740 /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B10 /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D760 /* channelz_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B20 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D780 /* connected_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B30 /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7B0 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B40 /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7E0 /* handshaker_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B50 /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D800 /* status_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B60 /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D820 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B70 /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D830 /* compression_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B80 /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D850 /* message_compress.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042B90 /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D870 /* core_configuration.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BA0 /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D890 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BB0 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8B0 /* stats_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BC0 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8D0 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BD0 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8F0 /* channel_args_endpoint_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BE0 /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D910 /* event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042BF0 /* event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D920 /* event_engine_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C00 /* memory_allocator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D940 /* memory_allocator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C10 /* sockaddr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D950 /* sockaddr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C20 /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D970 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C30 /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D990 /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C40 /* cpu_iphone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9A0 /* cpu_iphone.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C50 /* cpu_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9B0 /* cpu_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C60 /* cpu_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9C0 /* cpu_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C70 /* cpu_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9D0 /* cpu_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C80 /* env_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9F0 /* env_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042C90 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA00 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CA0 /* env_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA10 /* env_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CB0 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA20 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CC0 /* log_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA30 /* log_android.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CD0 /* log_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA40 /* log_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CE0 /* log_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA50 /* log_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042CF0 /* log_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA60 /* log_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D00 /* murmur_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA70 /* murmur_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D10 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAA0 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D20 /* string_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAC0 /* string_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D30 /* string_util_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAD0 /* string_util_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D40 /* string_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAE0 /* string_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D50 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB00 /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D60 /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB10 /* sync_abseil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D70 /* sync_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB20 /* sync_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D80 /* sync_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB30 /* sync_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042D90 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB40 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DA0 /* time_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB50 /* time_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DB0 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB60 /* time_precise.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DC0 /* time_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB80 /* time_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DD0 /* tmpfile_msys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBB0 /* tmpfile_msys.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DE0 /* tmpfile_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBC0 /* tmpfile_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042DF0 /* tmpfile_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBD0 /* tmpfile_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E00 /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBF0 /* wrap_memcpy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E10 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC70 /* examine_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E20 /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC90 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E30 /* global_config_env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCD0 /* global_config_env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E40 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD00 /* host_port.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E50 /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD40 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E60 /* stat_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDA0 /* stat_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E70 /* stat_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDB0 /* stat_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E80 /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDC0 /* status_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042E90 /* thd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE10 /* thd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042EA0 /* thd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE20 /* thd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042EB0 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE30 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042EC0 /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE50 /* format_request.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042ED0 /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE70 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042EE0 /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE90 /* httpcli_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042EF0 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEA0 /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F00 /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DED0 /* buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F10 /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEF0 /* call_combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F20 /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF10 /* cfstream_handle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F30 /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF40 /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F40 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF60 /* dualstack_socket_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F50 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF80 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F60 /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFA0 /* endpoint_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F70 /* endpoint_pair_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFD0 /* endpoint_pair_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F80 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFE0 /* endpoint_pair_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042F90 /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFF0 /* endpoint_pair_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FA0 /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E000 /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FB0 /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E020 /* error_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FC0 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E050 /* ev_apple.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FD0 /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E070 /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FE0 /* ev_epollex_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E090 /* ev_epollex_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00042FF0 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0B0 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043000 /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0D0 /* ev_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043010 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0F0 /* ev_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043020 /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E100 /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043030 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E120 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043040 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E140 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043050 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E150 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043060 /* resolved_address_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E180 /* resolved_address_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043070 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1A0 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043080 /* tcp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1C0 /* tcp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043090 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1D0 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430A0 /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1E0 /* exec_ctx.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430B0 /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E200 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430C0 /* mpmcqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E220 /* mpmcqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430D0 /* threadpool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E240 /* threadpool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430E0 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E260 /* fork_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000430F0 /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E270 /* fork_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043100 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E290 /* gethostname_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043110 /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2A0 /* gethostname_host_name_max.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043120 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2B0 /* gethostname_sysconf.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043130 /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2D0 /* grpc_if_nametoindex_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043140 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2E0 /* grpc_if_nametoindex_unsupported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043150 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2F0 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043160 /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E310 /* iocp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043170 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E330 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043180 /* iomgr_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E350 /* iomgr_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043190 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E370 /* iomgr_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431A0 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E390 /* iomgr_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431B0 /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3A0 /* iomgr_posix_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431C0 /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3B0 /* iomgr_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431D0 /* is_epollexclusive_available.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3C0 /* is_epollexclusive_available.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431E0 /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3E0 /* load_file.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000431F0 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E400 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043200 /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E430 /* polling_entity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043210 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E450 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043220 /* pollset_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E470 /* pollset_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043230 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E490 /* pollset_set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043240 /* pollset_set_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4B0 /* pollset_set_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043250 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4D0 /* pollset_set_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043260 /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4F0 /* pollset_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043270 /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E530 /* resolve_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043280 /* resolve_address_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E550 /* resolve_address_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043290 /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E580 /* resolve_address_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432A0 /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5A0 /* resolve_address_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432B0 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E600 /* socket_factory_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432C0 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E620 /* socket_mutator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432D0 /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E650 /* socket_utils_common_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432E0 /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E660 /* socket_utils_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000432F0 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E670 /* socket_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043300 /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E690 /* socket_utils_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043310 /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6A0 /* socket_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043320 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6D0 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043330 /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6F0 /* tcp_client_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043340 /* tcp_client_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E700 /* tcp_client_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043350 /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E710 /* tcp_client_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043360 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E730 /* tcp_client_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043370 /* tcp_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E740 /* tcp_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043380 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E760 /* tcp_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043390 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E780 /* tcp_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433A0 /* tcp_server_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7A0 /* tcp_server_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433B0 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7B0 /* tcp_server_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433C0 /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7D0 /* tcp_server_utils_posix_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433D0 /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7E0 /* tcp_server_utils_posix_ifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433E0 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7F0 /* tcp_server_utils_posix_noifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000433F0 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E800 /* tcp_server_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043400 /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E810 /* tcp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043410 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E830 /* time_averaged_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043420 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E850 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043430 /* timer_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E870 /* timer_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043440 /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E890 /* timer_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043450 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8B0 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043460 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8D0 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043470 /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8F0 /* unix_sockets_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043480 /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E910 /* unix_sockets_posix_noop.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043490 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E920 /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434A0 /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E930 /* wakeup_fd_nospecial.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434B0 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E940 /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434C0 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E960 /* wakeup_fd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434D0 /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E980 /* work_serializer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434E0 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9B0 /* json_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000434F0 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9C0 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043500 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9E0 /* json_writer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043510 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9F0 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043520 /* basic_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA10 /* basic_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043530 /* stap_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA20 /* stap_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043540 /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA40 /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043550 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB20 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043560 /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB50 /* resolver_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043570 /* server_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB70 /* server_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043580 /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB90 /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043590 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBB0 /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435A0 /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBD0 /* memory_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435B0 /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBF0 /* resource_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435C0 /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC10 /* thread_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435D0 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC30 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435E0 /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC70 /* authorization_policy_provider_vtable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000435F0 /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC80 /* evaluate_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043600 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECA0 /* grpc_authorization_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043610 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECC0 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043620 /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECE0 /* rbac_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043630 /* sdk_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED00 /* sdk_server_authz_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043640 /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED20 /* security_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043650 /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED40 /* alts_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043660 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED60 /* check_gcp_environment.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043670 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED80 /* check_gcp_environment_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043680 /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED90 /* check_gcp_environment_no_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043690 /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDA0 /* check_gcp_environment_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436A0 /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDB0 /* grpc_alts_credentials_client_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436B0 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDC0 /* grpc_alts_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436C0 /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDE0 /* grpc_alts_credentials_server_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436D0 /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDF0 /* composite_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436E0 /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE10 /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000436F0 /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE30 /* aws_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043700 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE50 /* aws_request_signer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043710 /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE70 /* external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043720 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE90 /* file_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043730 /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEB0 /* url_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043740 /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EED0 /* fake_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043750 /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEF0 /* credentials_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043760 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF00 /* google_default_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043770 /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF20 /* iam_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043780 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF40 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043790 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF50 /* json_token.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437A0 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF70 /* jwt_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437B0 /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF90 /* jwt_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437C0 /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFB0 /* local_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437D0 /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFD0 /* oauth2_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437E0 /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFF0 /* plugin_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000437F0 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F010 /* ssl_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043800 /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F030 /* grpc_tls_certificate_distributor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043810 /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F050 /* grpc_tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043820 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F070 /* grpc_tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043830 /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F090 /* grpc_tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043840 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0B0 /* tls_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043850 /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0D0 /* tls_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043860 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0F0 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043870 /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F110 /* alts_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043880 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F130 /* fake_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043890 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F150 /* insecure_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438A0 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F180 /* load_system_roots_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438B0 /* load_system_roots_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F190 /* load_system_roots_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438C0 /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1B0 /* local_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438D0 /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1D0 /* security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438E0 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1F0 /* ssl_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000438F0 /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F210 /* ssl_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043900 /* ssl_utils_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F230 /* ssl_utils_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043910 /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F250 /* tls_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043920 /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F280 /* client_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043930 /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F290 /* secure_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043940 /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2B0 /* security_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043950 /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2D0 /* server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043960 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2E0 /* tsi_error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043970 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F300 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043980 /* service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F320 /* service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043990 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F350 /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439A0 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F370 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439B0 /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F390 /* percent_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439C0 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3B0 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439D0 /* slice_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3D0 /* slice_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439E0 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3E0 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E000439F0 /* slice_intern.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3F0 /* slice_intern.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A00 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F410 /* slice_refcount.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A10 /* slice_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F440 /* slice_split.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A20 /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F460 /* slice_string_helpers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A30 /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F490 /* api_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A40 /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4B0 /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A50 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4D0 /* byte_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A60 /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4E0 /* byte_buffer_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A70 /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4F0 /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A80 /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F510 /* call_details.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043A90 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F520 /* call_log_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AA0 /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F540 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AB0 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F560 /* channel_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AC0 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F580 /* channel_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AD0 /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F590 /* channel_stack_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AE0 /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5B0 /* completion_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043AF0 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5D0 /* completion_queue_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B00 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5F0 /* event_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B10 /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F610 /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B20 /* init_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F630 /* init_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B30 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F640 /* lame_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B40 /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F660 /* metadata_array.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B50 /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F670 /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B60 /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F690 /* validate_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B70 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6B0 /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B80 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6C0 /* bdp_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043B90 /* byte_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6E0 /* byte_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BA0 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F700 /* connectivity_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BB0 /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F720 /* error_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BC0 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F760 /* parsed_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BD0 /* pid_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F780 /* pid_controller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BE0 /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7A0 /* status_conversion.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043BF0 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7C0 /* timeout_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C00 /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7E0 /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C10 /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F810 /* transport_op_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C20 /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F820 /* uri_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C30 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F840 /* grpc_plugin_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C40 /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F850 /* aes_gcm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C50 /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F860 /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C60 /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F880 /* alts_counter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C70 /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8A0 /* alts_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C80 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8C0 /* alts_frame_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043C90 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8E0 /* alts_record_protocol_crypter_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CA0 /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F900 /* alts_seal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CB0 /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F910 /* alts_unseal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CC0 /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F920 /* frame_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CD0 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F940 /* alts_handshaker_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CE0 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F960 /* alts_shared_resource.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043CF0 /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F980 /* alts_tsi_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D00 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9B0 /* alts_tsi_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D10 /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9D0 /* transport_security_common_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D20 /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9F0 /* alts_grpc_integrity_only_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D30 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA10 /* alts_grpc_privacy_integrity_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D40 /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA40 /* alts_grpc_record_protocol_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D50 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA60 /* alts_iovec_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D60 /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA80 /* alts_zero_copy_grpc_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D70 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAA0 /* fake_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D80 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAC0 /* local_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043D90 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAF0 /* ssl_session_boringssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DA0 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB00 /* ssl_session_cache.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DB0 /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB20 /* ssl_session_openssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DC0 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB30 /* ssl_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DD0 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB60 /* transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DE0 /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB80 /* transport_security_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043DF0 /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBC0 /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E00 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBD0 /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E10 /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBE0 /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E20 /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBF0 /* filtered_re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E30 /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC10 /* mimics_pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E40 /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC20 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E50 /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC30 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E60 /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC40 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E70 /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC50 /* perl_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E80 /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC70 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043E90 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC90 /* prefilter_tree.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043EA0 /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCB0 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043EB0 /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCD0 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043EC0 /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCF0 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043ED0 /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD10 /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043EE0 /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD30 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043EF0 /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD60 /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F00 /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD80 /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F10 /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD90 /* unicode_casefold.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F20 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDB0 /* unicode_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F30 /* pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE40 /* pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F40 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE60 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F50 /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE70 /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F60 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEC0 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F70 /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEE0 /* decode_fast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F80 /* def.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF10 /* def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043F90 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF40 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FA0 /* msg.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF60 /* msg.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FB0 /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFB0 /* reflection.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FC0 /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFE0 /* table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FD0 /* text_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020000 /* text_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FE0 /* upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020020 /* upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46EB2E00043FF0 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD10 /* backend_metric.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044000 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD30 /* backup_poller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044010 /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD60 /* client_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044020 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AD80 /* client_channel_channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044030 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADA0 /* client_channel_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044040 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADD0 /* config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044050 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ADE0 /* connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044060 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE00 /* dynamic_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044070 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE20 /* global_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044080 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE40 /* health_check_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044090 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE60 /* http_connect_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440A0 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AE80 /* http_proxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440B0 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEA0 /* lb_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440C0 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEC0 /* address_filtering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440D0 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AEE0 /* child_policy_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440E0 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF00 /* client_load_reporting_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000440F0 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF20 /* grpclb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044100 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF40 /* grpclb_balancer_addresses.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044110 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF50 /* grpclb_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044120 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AF80 /* grpclb_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044130 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFA0 /* load_balancer_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044140 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001AFE0 /* ring_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044150 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B010 /* subchannel_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044160 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B040 /* xds.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044170 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B050 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044180 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B090 /* lb_policy_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044190 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0B0 /* lb_policy_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441A0 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0D0 /* local_subchannel_pool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441B0 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B0E0 /* proxy_mapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441C0 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B100 /* proxy_mapper_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441D0 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B130 /* grpc_ares_ev_driver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441E0 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B180 /* grpc_ares_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000441F0 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B1D0 /* dns_resolver_selection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044200 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B200 /* fake_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044210 /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B240 /* xds_resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044220 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B260 /* resolver_result_parsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044230 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B280 /* retry_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044240 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2A0 /* retry_service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044250 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2C0 /* retry_throttle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044260 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B2F0 /* subchannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044270 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B300 /* subchannel_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044280 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B320 /* subchannel_pool_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044290 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B350 /* idle_filter_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442A0 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B370 /* deadline_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442B0 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B390 /* fault_injection_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442C0 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3B0 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442D0 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3D0 /* http_client_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442E0 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B3F0 /* client_authority_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000442F0 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B420 /* message_compress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044300 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B440 /* message_decompress_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044310 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B460 /* http_server_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044320 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B480 /* max_age_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044330 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4A0 /* message_size_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044340 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4C0 /* rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044350 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B4E0 /* rbac_service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044360 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B500 /* server_config_selector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044370 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B520 /* server_config_selector_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044380 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B540 /* alpn.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044390 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B560 /* chttp2_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443A0 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B5B0 /* chttp2_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443B0 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B600 /* bin_decoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443C0 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B620 /* bin_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443D0 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B650 /* chttp2_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443E0 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B670 /* context_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000443F0 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B690 /* flow_control.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044400 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6A0 /* frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044410 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6C0 /* frame_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044420 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B6E0 /* frame_goaway.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044430 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B700 /* frame_ping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044440 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B720 /* frame_rst_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044450 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B740 /* frame_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044460 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B760 /* frame_window_update.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044470 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B770 /* hpack_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044480 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B790 /* hpack_encoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044490 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7B0 /* hpack_encoder_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444A0 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7D0 /* hpack_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444B0 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B7F0 /* hpack_parser_table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444C0 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B810 /* http2_settings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444D0 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B830 /* huffsyms.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444E0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B840 /* internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000444F0 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B880 /* stream_map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044500 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8A0 /* varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044510 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B8E0 /* inproc_transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044520 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B900 /* config_dump.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044530 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B920 /* deprecation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044540 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B940 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044550 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B960 /* accesslog.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044560 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B980 /* bootstrap.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044570 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9A0 /* circuit_breaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044580 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9C0 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044590 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001B9E0 /* filter.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445A0 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA00 /* outlier_detection.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445B0 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA20 /* address.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445C0 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA40 /* backoff.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445D0 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA60 /* base.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445E0 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BA80 /* config_source.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000445F0 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAA0 /* event_service_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044600 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAC0 /* extension.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044610 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BAE0 /* grpc_service.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044620 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB00 /* health_check.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044630 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB20 /* http_uri.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044640 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB40 /* protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044650 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB60 /* proxy_protocol.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044660 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BB80 /* resolver.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044670 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBA0 /* socket_option.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044680 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBC0 /* substitution_format_string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044690 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BBE0 /* udp_socket_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446A0 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC00 /* endpoint.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446B0 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC20 /* endpoint_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446C0 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC40 /* load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446D0 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC60 /* api_listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446E0 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BC80 /* listener.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000446F0 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCA0 /* listener_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044700 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCC0 /* quic_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044710 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BCE0 /* udp_listener_config.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044720 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD00 /* stats.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044730 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD20 /* overload.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044740 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD40 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044750 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD60 /* route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044760 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BD80 /* route_components.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044770 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDA0 /* scoped_route.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044780 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDC0 /* http_tracer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044790 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BDE0 /* cluster.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447A0 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE00 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447B0 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE20 /* fault.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447C0 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE40 /* rbac.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447D0 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE60 /* router.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447E0 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BE80 /* http_connection_manager.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000447F0 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEA0 /* cert.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044800 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEC0 /* common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044810 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BEE0 /* secret.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044820 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF00 /* tls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044830 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF20 /* cds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044840 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF40 /* ads.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044850 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF60 /* discovery.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044860 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BF80 /* eds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044870 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFA0 /* lds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044880 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFC0 /* lrs.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044890 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001BFE0 /* rds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448A0 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C000 /* srds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448B0 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C020 /* csds.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448C0 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C040 /* path_transformation.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448D0 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C060 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448E0 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C080 /* node.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000448F0 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0A0 /* number.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044900 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0C0 /* path.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044910 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C0E0 /* regex.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044920 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C100 /* string.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044930 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C120 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044940 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C140 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044950 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C160 /* metadata.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044960 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C180 /* custom_tag.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044970 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1A0 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044980 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1C0 /* percent.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044990 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C1E0 /* range.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449A0 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C200 /* semantic_version.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449B0 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C220 /* annotations.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449C0 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C240 /* checked.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449D0 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C260 /* eval.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449E0 /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C280 /* explain.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000449F0 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2A0 /* syntax.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A00 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2C0 /* value.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A10 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C2E0 /* http.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A20 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C300 /* any.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A30 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C320 /* descriptor.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A40 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C340 /* duration.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A50 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C360 /* empty.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A60 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C380 /* struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A70 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3A0 /* timestamp.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A80 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3C0 /* wrappers.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044A90 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C3E0 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AA0 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C400 /* altscontext.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AB0 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C420 /* handshaker.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AC0 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C440 /* transport_security_common.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AD0 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C460 /* health.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AE0 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C480 /* load_balancer.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044AF0 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4A0 /* rls.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B00 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4C0 /* migrate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B10 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C4E0 /* security.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B20 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C500 /* sensitive.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B30 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C520 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B40 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C540 /* versioning.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B50 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C560 /* validate.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B60 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C580 /* status.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B70 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5A0 /* authority.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B80 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5C0 /* collection_entry.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044B90 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C5E0 /* context_params.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BA0 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C600 /* resource.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BB0 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C620 /* resource_locator.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BC0 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C640 /* resource_name.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BD0 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C660 /* orca_load_report.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BE0 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C680 /* typed_struct.upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044BF0 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6A0 /* config_dump.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C00 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6C0 /* deprecation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C10 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C6E0 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C20 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C700 /* accesslog.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C30 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C720 /* bootstrap.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C40 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C740 /* circuit_breaker.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C50 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C760 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C60 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C780 /* filter.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C70 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7A0 /* outlier_detection.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C80 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7C0 /* address.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044C90 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C7E0 /* backoff.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CA0 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C800 /* base.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CB0 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C820 /* config_source.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CC0 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C840 /* event_service_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CD0 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C860 /* extension.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CE0 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C880 /* grpc_service.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044CF0 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8A0 /* health_check.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D00 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8C0 /* http_uri.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D10 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C8E0 /* protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D20 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C900 /* proxy_protocol.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D30 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C920 /* resolver.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D40 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C940 /* socket_option.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D50 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C960 /* substitution_format_string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D60 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C980 /* udp_socket_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D70 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9A0 /* endpoint.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D80 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9C0 /* endpoint_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044D90 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001C9E0 /* load_report.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DA0 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA00 /* api_listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DB0 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA20 /* listener.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DC0 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA40 /* listener_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DD0 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA60 /* quic_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DE0 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CA80 /* udp_listener_config.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044DF0 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAA0 /* stats.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E00 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAC0 /* overload.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E10 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CAE0 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E20 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB00 /* route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E30 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB20 /* route_components.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E40 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB40 /* scoped_route.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E50 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB60 /* http_tracer.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E60 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CB80 /* cluster.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E70 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBA0 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E80 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBC0 /* fault.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044E90 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CBE0 /* rbac.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044EA0 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC00 /* router.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044EB0 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC20 /* http_connection_manager.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044EC0 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC40 /* cert.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044ED0 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC60 /* common.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044EE0 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CC80 /* secret.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044EF0 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCA0 /* tls.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F00 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCC0 /* cds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F10 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CCE0 /* ads.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F20 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD00 /* discovery.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F30 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD20 /* eds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F40 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD40 /* lds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F50 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD60 /* lrs.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F60 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CD80 /* rds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F70 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDA0 /* srds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F80 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDC0 /* csds.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044F90 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CDE0 /* path_transformation.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FA0 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE00 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FB0 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE20 /* node.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FC0 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE40 /* number.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FD0 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE60 /* path.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FE0 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CE80 /* regex.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00044FF0 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEA0 /* string.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045000 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEC0 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045010 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CEE0 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045020 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF00 /* metadata.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045030 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF20 /* custom_tag.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045040 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF40 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045050 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF60 /* percent.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045060 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CF80 /* range.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045070 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFA0 /* semantic_version.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045080 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFC0 /* annotations.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045090 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001CFE0 /* checked.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450A0 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D000 /* eval.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450B0 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D020 /* explain.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450C0 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D040 /* syntax.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450D0 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D060 /* value.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450E0 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D080 /* http.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000450F0 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0A0 /* any.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045100 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0C0 /* descriptor.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045110 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D0E0 /* duration.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045120 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D100 /* empty.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045130 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D120 /* struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045140 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D140 /* timestamp.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045150 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D160 /* wrappers.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045160 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D180 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045170 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1A0 /* migrate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045180 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1C0 /* security.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045190 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D1E0 /* sensitive.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451A0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D200 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451B0 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D220 /* versioning.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451C0 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D240 /* validate.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451D0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D260 /* status.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451E0 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D280 /* authority.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000451F0 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2A0 /* collection_entry.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045200 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2C0 /* context_params.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045210 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D2E0 /* resource.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045220 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D300 /* resource_locator.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045230 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D320 /* resource_name.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045240 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D340 /* typed_struct.upbdefs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045250 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D350 /* certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045260 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D370 /* certificate_provider_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045270 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D390 /* certificate_provider_store.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045280 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3B0 /* file_watcher_certificate_provider_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045290 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3C0 /* upb_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452A0 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D3E0 /* xds_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452B0 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D400 /* xds_bootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452C0 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D420 /* xds_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452D0 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D430 /* xds_channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452E0 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D450 /* xds_channel_creds.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000452F0 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D470 /* xds_channel_stack_modifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045300 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D490 /* xds_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045310 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4B0 /* xds_client_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045320 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4D0 /* xds_cluster.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045330 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D4F0 /* xds_common_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045340 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D510 /* xds_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045350 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D530 /* xds_http_fault_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045360 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D550 /* xds_http_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045370 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D570 /* xds_http_rbac_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045380 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D590 /* xds_listener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045390 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5B0 /* xds_resource_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453A0 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5C0 /* xds_resource_type_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453B0 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D5E0 /* xds_route_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453C0 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D600 /* xds_routing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453D0 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D630 /* parse_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453E0 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D650 /* sockaddr_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000453F0 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D660 /* avl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045400 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D680 /* backoff.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045410 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D690 /* call_tracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045420 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6B0 /* channel_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045430 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6D0 /* channel_args_preconditioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045440 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D6F0 /* channel_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045450 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D710 /* channel_stack_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045460 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D730 /* channel_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045470 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D750 /* channelz.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045480 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D770 /* channelz_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045490 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D790 /* connected_channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454A0 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7A0 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454B0 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7C0 /* handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454C0 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7D0 /* handshaker_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454D0 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D7F0 /* handshaker_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454E0 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D810 /* status_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000454F0 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D840 /* compression_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045500 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D860 /* message_compress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045510 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D880 /* core_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045520 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8A0 /* stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045530 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8C0 /* stats_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045540 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D8E0 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045550 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D900 /* channel_args_endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045560 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D930 /* event_engine_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045570 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D960 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045580 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D980 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045590 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001D9E0 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455A0 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA80 /* murmur_hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455B0 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DA90 /* spinlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455C0 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAB0 /* string.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455D0 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DAF0 /* string_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455E0 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB70 /* time_precise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000455F0 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DB90 /* tls.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045600 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBA0 /* tmpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045610 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DBE0 /* useful.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045620 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC00 /* atomic_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045630 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC10 /* bitset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045640 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC20 /* chunked_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045650 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC30 /* construct_destruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045660 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC40 /* cpp_impl_of.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045670 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC50 /* debug_location.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045680 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC60 /* dual_ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045690 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DC80 /* examine_stack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456A0 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCA0 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456B0 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCB0 /* global_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456C0 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCC0 /* global_config_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456D0 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCE0 /* global_config_env.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456E0 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DCF0 /* global_config_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000456F0 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD10 /* host_port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045700 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD20 /* manual_constructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045710 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD30 /* memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045720 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD50 /* mpscq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045730 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD60 /* orphanable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045740 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD70 /* ref_counted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045750 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD80 /* ref_counted_ptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045760 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DD90 /* stat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045770 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDD0 /* status_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045780 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDE0 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045790 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DDF0 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457A0 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE00 /* thd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457B0 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE40 /* time_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457C0 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE60 /* format_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457D0 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DE80 /* httpcli.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457E0 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEB0 /* parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000457F0 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEC0 /* block_annotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045800 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DEE0 /* buffer_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045810 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF00 /* call_combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045820 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF20 /* cfstream_handle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045830 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF30 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045840 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF50 /* combiner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045850 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF70 /* dynamic_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045860 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DF90 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045870 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFB0 /* endpoint_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045880 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001DFC0 /* endpoint_pair.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045890 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E010 /* error.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458A0 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E030 /* error_cfstream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458B0 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E040 /* error_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458C0 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E060 /* ev_apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458D0 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E080 /* ev_epoll1_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458E0 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0A0 /* ev_epollex_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000458F0 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0C0 /* ev_poll_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045900 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E0E0 /* ev_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045910 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E110 /* closure.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045920 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E130 /* endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045930 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E160 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045940 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E170 /* promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045950 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E190 /* resolved_address_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045960 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1B0 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045970 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E1F0 /* exec_ctx.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045980 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E210 /* executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045990 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E230 /* mpmcqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459A0 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E250 /* threadpool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459B0 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E280 /* gethostname.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459C0 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E2C0 /* grpc_if_nametoindex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459D0 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E300 /* internal_errqueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459E0 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E320 /* iocp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000459F0 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E340 /* iomgr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A00 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E360 /* iomgr_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A10 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E380 /* iomgr_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A20 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3D0 /* is_epollexclusive_available.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A30 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E3F0 /* load_file.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A40 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E410 /* lockfree_event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A50 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E420 /* nameser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A60 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E440 /* polling_entity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A70 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E460 /* pollset.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A80 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E480 /* pollset_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045A90 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4A0 /* pollset_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AA0 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4C0 /* pollset_set_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AB0 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E4E0 /* pollset_set_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AC0 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E500 /* pollset_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AD0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E510 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AE0 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E520 /* python_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045AF0 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E540 /* resolve_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B00 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E560 /* resolve_address_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B10 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E570 /* resolve_address_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B20 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E590 /* resolve_address_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B30 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5B0 /* resolve_address_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B40 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5C0 /* resolved_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B50 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5D0 /* sockaddr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B60 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5E0 /* sockaddr_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B70 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E5F0 /* sockaddr_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B80 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E610 /* socket_factory_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045B90 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E630 /* socket_mutator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BA0 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E640 /* socket_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BB0 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E680 /* socket_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BC0 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6B0 /* socket_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BD0 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6C0 /* sys_epoll_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BE0 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E6E0 /* tcp_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045BF0 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E720 /* tcp_client_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C00 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E750 /* tcp_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C10 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E770 /* tcp_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C20 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E790 /* tcp_server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C30 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E7C0 /* tcp_server_utils_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C40 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E820 /* tcp_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C50 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E840 /* time_averaged_stats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C60 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E860 /* timer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C70 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E880 /* timer_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C80 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8A0 /* timer_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045C90 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8C0 /* timer_heap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CA0 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E8E0 /* timer_manager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CB0 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E900 /* unix_sockets_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CC0 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E950 /* wakeup_fd_pipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CD0 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E970 /* wakeup_fd_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CE0 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E990 /* work_serializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045CF0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9A0 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D00 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001E9D0 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D10 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA00 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D20 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA30 /* timers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D30 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA50 /* activity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D40 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA60 /* context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D50 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA70 /* basic_seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D60 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA80 /* promise_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D70 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EA90 /* promise_like.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D80 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAA0 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045D90 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAB0 /* switch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DA0 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAC0 /* exec_ctx_wakeup_scheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DB0 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAD0 /* loop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DC0 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAE0 /* map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DD0 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EAF0 /* poll.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DE0 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB00 /* race.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045DF0 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB10 /* seq.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E00 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB30 /* resolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E10 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB40 /* resolver_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E20 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB60 /* resolver_registry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E30 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EB80 /* server_address.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E40 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBA0 /* api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E50 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBC0 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E60 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EBE0 /* memory_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E70 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC00 /* resource_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E80 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC20 /* thread_quota.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045E90 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC40 /* trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045EA0 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC50 /* authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045EB0 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC60 /* authorization_policy_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045EC0 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EC90 /* evaluate_args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045ED0 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECB0 /* grpc_authorization_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045EE0 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECD0 /* matchers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045EF0 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ECF0 /* rbac_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F00 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED10 /* sdk_server_authz_filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F10 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED30 /* security_context.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F20 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED50 /* alts_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F30 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001ED70 /* check_gcp_environment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F40 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EDD0 /* grpc_alts_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F50 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE00 /* composite_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F60 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE20 /* credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F70 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE40 /* aws_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F80 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE60 /* aws_request_signer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045F90 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EE80 /* external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FA0 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEA0 /* file_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FB0 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEC0 /* url_external_account_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FC0 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EEE0 /* fake_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FD0 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF10 /* google_default_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FE0 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF30 /* iam_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00045FF0 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF60 /* json_token.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046000 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EF80 /* jwt_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046010 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFA0 /* jwt_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046020 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFC0 /* local_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046030 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001EFE0 /* oauth2_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046040 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F000 /* plugin_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046050 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F020 /* ssl_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046060 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F040 /* grpc_tls_certificate_distributor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046070 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F060 /* grpc_tls_certificate_provider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046080 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F080 /* grpc_tls_certificate_verifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046090 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0A0 /* grpc_tls_credentials_options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460A0 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0C0 /* tls_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460B0 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F0E0 /* tls_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460C0 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F100 /* xds_credentials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460D0 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F120 /* alts_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460E0 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F140 /* fake_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000460F0 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F160 /* insecure_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046100 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F170 /* load_system_roots.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046110 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1A0 /* load_system_roots_linux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046120 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1C0 /* local_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046130 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F1E0 /* security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046140 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F200 /* ssl_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046150 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F220 /* ssl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046160 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F240 /* ssl_utils_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046170 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F260 /* tls_security_connector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046180 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F270 /* auth_filters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046190 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2A0 /* secure_endpoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461A0 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2C0 /* security_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461B0 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F2F0 /* tsi_error.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461C0 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F310 /* json_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461D0 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F330 /* service_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461E0 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F340 /* service_config_call_data.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000461F0 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F360 /* service_config_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046200 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F380 /* b64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046210 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3A0 /* percent_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046220 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F3C0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046230 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F400 /* slice_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046240 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F420 /* slice_refcount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046250 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F430 /* slice_refcount_base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046260 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F450 /* slice_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046270 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F470 /* slice_string_helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046280 /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F480 /* slice_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046290 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4A0 /* api_trace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462A0 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F4C0 /* builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462B0 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F500 /* call.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462C0 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F530 /* call_test_only.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462D0 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F550 /* channel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462E0 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F570 /* channel_init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000462F0 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5A0 /* channel_stack_type.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046300 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5C0 /* completion_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046310 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F5E0 /* completion_queue_factory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046320 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F600 /* event_string.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046330 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F620 /* init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046340 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F650 /* lame_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046350 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F680 /* server.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046360 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6A0 /* validate_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046370 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6D0 /* bdp_estimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046380 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F6F0 /* byte_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046390 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F710 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463A0 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F730 /* error_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463B0 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F740 /* http2_errors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463C0 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F750 /* metadata_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463D0 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F770 /* parsed_metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463E0 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F790 /* pid_controller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000463F0 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7B0 /* status_conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046400 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7D0 /* timeout_encoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046410 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F7F0 /* transport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046420 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F800 /* transport_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046430 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F830 /* uri_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046440 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F870 /* gsec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046450 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F890 /* alts_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046460 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8B0 /* alts_crypter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046470 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8D0 /* alts_frame_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046480 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F8F0 /* alts_record_protocol_crypter_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046490 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F930 /* frame_handler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464A0 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F950 /* alts_handshaker_client.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464B0 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F970 /* alts_shared_resource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464C0 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F990 /* alts_tsi_handshaker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464D0 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9A0 /* alts_tsi_handshaker_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464E0 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9C0 /* alts_tsi_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000464F0 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001F9E0 /* transport_security_common_api.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046500 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA00 /* alts_grpc_integrity_only_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046510 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA20 /* alts_grpc_privacy_integrity_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046520 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA30 /* alts_grpc_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046530 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA50 /* alts_grpc_record_protocol_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046540 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA70 /* alts_iovec_record_protocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046550 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FA90 /* alts_zero_copy_grpc_protector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046560 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAB0 /* fake_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046570 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAD0 /* local_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046580 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FAE0 /* ssl_session.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046590 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB10 /* ssl_session_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465A0 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB40 /* ssl_transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465B0 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB50 /* ssl_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465C0 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB70 /* transport_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465D0 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FB90 /* transport_security_grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465E0 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBA0 /* transport_security_interface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000465F0 /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FBB0 /* bitmap256.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046600 /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC00 /* filtered_re2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046610 /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC60 /* pod_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046620 /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FC80 /* prefilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046630 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCA0 /* prefilter_tree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046640 /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCC0 /* prog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046650 /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FCE0 /* re2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046660 /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD00 /* regexp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046670 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD20 /* set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046680 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD40 /* sparse_array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046690 /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD50 /* sparse_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466A0 /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FD70 /* stringpiece.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466B0 /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDA0 /* unicode_casefold.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466C0 /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDC0 /* unicode_groups.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466D0 /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDD0 /* walker-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466E0 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDE0 /* benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000466F0 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FDF0 /* flags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046700 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE00 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046710 /* malloc_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE10 /* malloc_counter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046720 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE20 /* mix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046730 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE30 /* mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046740 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE50 /* pcre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046750 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE80 /* strutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046760 /* test.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FE90 /* test.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046770 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEA0 /* utf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046780 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEB0 /* util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046790 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FED0 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467A0 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FEF0 /* decode_fast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467B0 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF00 /* decode_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467C0 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF20 /* def.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467D0 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF30 /* def.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467E0 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF50 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000467F0 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF70 /* msg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046800 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF80 /* msg_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046810 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FF90 /* port_def.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046820 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFA0 /* port_undef.inc */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046830 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFC0 /* reflection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046840 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFD0 /* reflection.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046850 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E0001FFF0 /* table_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046860 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020010 /* text_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046870 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020030 /* upb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046880 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020040 /* upb.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046890 /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020050 /* upb_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468A0 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020060 /* xxhash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468B0 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020080 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468C0 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020090 /* byte_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468D0 /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200A0 /* census.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468E0 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200B0 /* compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000468F0 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200C0 /* endpoint_config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046900 /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200D0 /* event_engine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046910 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200E0 /* memory_allocator_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046920 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000200F0 /* memory_allocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046930 /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020100 /* memory_request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046940 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020110 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046950 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020120 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046960 /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020130 /* grpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046970 /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020140 /* grpc_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046980 /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020150 /* grpc_security.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046990 /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020160 /* grpc_security_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469A0 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020170 /* atm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469B0 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020180 /* atm_gcc_atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469C0 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020190 /* atm_gcc_sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469D0 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201A0 /* atm_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469E0 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201B0 /* byte_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000469F0 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201C0 /* byte_buffer_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A00 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201D0 /* compression_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A10 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201E0 /* connectivity_state.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A20 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000201F0 /* fork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A30 /* gpr_slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020200 /* gpr_slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A40 /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020210 /* gpr_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A50 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020220 /* grpc_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A60 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020230 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A70 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020240 /* port_platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A80 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020250 /* propagation_bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046A90 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020260 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AA0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020270 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AB0 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020280 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AC0 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020290 /* sync_abseil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AD0 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202A0 /* sync_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AE0 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202B0 /* sync_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046AF0 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202C0 /* sync_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B00 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202D0 /* sync_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B10 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202E0 /* load_reporting.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B20 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000202F0 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B30 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020300 /* slice_buffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B40 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020310 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B50 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020320 /* alloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B60 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020330 /* atm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B70 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020340 /* atm_gcc_atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B80 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020350 /* atm_gcc_sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046B90 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020360 /* atm_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BA0 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020370 /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BB0 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020380 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BC0 /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020390 /* log_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BD0 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203A0 /* port_platform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BE0 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203B0 /* string_util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046BF0 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203C0 /* sync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C00 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203D0 /* sync_abseil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C10 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203E0 /* sync_custom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C20 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000203F0 /* sync_generic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C30 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020400 /* sync_posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C40 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020410 /* sync_windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C50 /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020420 /* thd_id.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C60 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020430 /* time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046C70 /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020440 /* workaround_list.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046CD0 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00046CC0 /* gRPC-Core-dummy.m */; }; + 46EB2E00046D60 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204A0 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046D70 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204B0 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046D80 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204C0 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046D90 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204D0 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046DA0 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204E0 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046DB0 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000204F0 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046DC0 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020500 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 46EB2E00046DD0 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020450 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046DE0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020460 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046DF0 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020470 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046E00 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020480 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046E10 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020490 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00046E70 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00046E60 /* glog-dummy.m */; }; + 46EB2E00046F80 /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020680 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046F90 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000206A0 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FA0 /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000206B0 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FB0 /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000206D0 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FC0 /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000206F0 /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FD0 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020710 /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FE0 /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020720 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00046FF0 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020750 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047000 /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020770 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047010 /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020790 /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047020 /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000207B0 /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047030 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000207E0 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047040 /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020800 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047050 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020820 /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047060 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020840 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047070 /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208A0 /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047080 /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208C0 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047090 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000208E0 /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470A0 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020900 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470B0 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020920 /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470C0 /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020940 /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470D0 /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020960 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470E0 /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020970 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000470F0 /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020980 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047100 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209A0 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047110 /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209C0 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047120 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209D0 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047130 /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000209E0 /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047140 /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A00 /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047150 /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A10 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047160 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A30 /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047170 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A40 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047180 /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A70 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E00047190 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A80 /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471A0 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AA0 /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471B0 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AC0 /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471C0 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B00 /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471D0 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B30 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471E0 /* testharness.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B40 /* testharness.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 46EB2E000471F0 /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020690 /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047200 /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000206C0 /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047210 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000206E0 /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047220 /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020700 /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047230 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020730 /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047240 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020740 /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047250 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020760 /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047260 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020780 /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047270 /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000207A0 /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047280 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000207C0 /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047290 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000207D0 /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472A0 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000207F0 /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472B0 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020810 /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472C0 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020830 /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472D0 /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020850 /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472E0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020860 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000472F0 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020870 /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047300 /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020880 /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047310 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020890 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047320 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208B0 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047330 /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208D0 /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047340 /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000208F0 /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047350 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020910 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047360 /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020930 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047370 /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020950 /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047380 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020990 /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047390 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209B0 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473A0 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000209F0 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473B0 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A20 /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473C0 /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A50 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473D0 /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A60 /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473E0 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020A90 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000473F0 /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AB0 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047400 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AD0 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047410 /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AE0 /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047420 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020AF0 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047430 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B10 /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047440 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B20 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047450 /* testharness.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B50 /* testharness.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047460 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B60 /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047470 /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B70 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047480 /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B80 /* c.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047490 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020B90 /* cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474A0 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BA0 /* comparator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474B0 /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BB0 /* db.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474C0 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BC0 /* dumpfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474D0 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BD0 /* env.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474E0 /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BE0 /* export.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000474F0 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020BF0 /* filter_policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047500 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C00 /* iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047510 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C10 /* options.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047520 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C20 /* slice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047530 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C30 /* status.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047540 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C40 /* table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047550 /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C50 /* table_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047560 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C60 /* write_batch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000475C0 /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000475B0 /* leveldb-library-dummy.m */; }; + 46EB2E00047650 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E30 /* buffer.c */; }; + 46EB2E00047660 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E40 /* bufferevent.c */; }; + 46EB2E00047670 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E50 /* bufferevent_filter.c */; }; + 46EB2E00047680 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E60 /* bufferevent_pair.c */; }; + 46EB2E00047690 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E70 /* bufferevent_ratelim.c */; }; + 46EB2E000476A0 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E80 /* bufferevent_sock.c */; }; + 46EB2E000476B0 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E90 /* event.c */; }; + 46EB2E000476C0 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EA0 /* evmap.c */; }; + 46EB2E000476D0 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EB0 /* evthread.c */; }; + 46EB2E000476E0 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EC0 /* evutil.c */; }; + 46EB2E000476F0 /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020ED0 /* evutil_rand.c */; }; + 46EB2E00047700 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EE0 /* evutil_time.c */; }; + 46EB2E00047710 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020EF0 /* kqueue.c */; }; + 46EB2E00047720 /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F00 /* listener.c */; }; + 46EB2E00047730 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F10 /* log.c */; }; + 46EB2E00047740 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F20 /* poll.c */; }; + 46EB2E00047750 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F30 /* select.c */; }; + 46EB2E00047760 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F40 /* signal.c */; }; + 46EB2E00047770 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F50 /* strlcpy.c */; }; + 46EB2E00047780 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F60 /* evdns.c */; }; + 46EB2E00047790 /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F70 /* event_tagging.c */; }; + 46EB2E000477A0 /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F80 /* evrpc.c */; }; + 46EB2E000477B0 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020F90 /* http.c */; }; + 46EB2E000477C0 /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C70 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000477D0 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C80 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000477E0 /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020C90 /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000477F0 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CA0 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047800 /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CB0 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047810 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CC0 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047820 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CD0 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047830 /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CE0 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047840 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020CF0 /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047850 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D00 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047860 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D10 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047870 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D20 /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047880 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D30 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047890 /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D40 /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478A0 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D50 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478B0 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D60 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478C0 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D70 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478D0 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D80 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478E0 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020D90 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000478F0 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DA0 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047900 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DB0 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047910 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DC0 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047920 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DD0 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047930 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DE0 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047940 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020DF0 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047950 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E00 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047960 /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E10 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047970 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020E20 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000479D0 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000479C0 /* libevent-dummy.m */; }; + 46EB2E00047A60 /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FB0 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047A70 /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FC0 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047A80 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FD0 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047A90 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021000 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047AA0 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021010 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047AB0 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021030 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047AC0 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021040 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047AD0 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00020FF0 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047AE0 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021020 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047AF0 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021050 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00047B00 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210D0 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B10 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000210F0 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B20 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021110 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B30 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021140 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B40 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021160 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B50 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021180 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B60 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000211A0 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B70 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000211C0 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B80 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000211E0 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047B90 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021200 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BA0 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021220 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BB0 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021240 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BC0 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021260 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BD0 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021270 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BE0 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021280 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047BF0 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021290 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C00 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212A0 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C10 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212D0 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C20 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212E0 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C30 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000212F0 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C40 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021300 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C50 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021310 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C60 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021320 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C70 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021330 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C80 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021340 /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047C90 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021350 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CA0 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021360 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CB0 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021370 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CC0 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021380 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CD0 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021390 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CE0 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213A0 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047CF0 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213C0 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D00 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213D0 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D10 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213E0 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D20 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000213F0 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D30 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021400 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D40 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021410 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D50 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021420 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D60 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021430 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D70 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021440 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D80 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021450 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047D90 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021460 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DA0 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021470 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DB0 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021480 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DC0 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214B0 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DD0 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214C0 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DE0 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214D0 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047DF0 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214E0 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E00 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000214F0 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E10 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021500 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E20 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021510 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E30 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021520 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E40 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021530 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E50 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021540 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E60 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021550 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E70 /* lossless_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021560 /* lossless_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E80 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215B0 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047E90 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215C0 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047EA0 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215D0 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047EB0 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215E0 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047EC0 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000215F0 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047ED0 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021600 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047EE0 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021610 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047EF0 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021620 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F00 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021630 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F10 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021640 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F20 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021650 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F30 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021660 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F40 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021670 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F50 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021680 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F60 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021690 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F70 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216B0 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F80 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216C0 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047F90 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216D0 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FA0 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216E0 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FB0 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000216F0 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FC0 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021710 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FD0 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021720 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FE0 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021740 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00047FF0 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021750 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048000 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021760 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048010 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021770 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048020 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021780 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048030 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217B0 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048040 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217C0 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048050 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000217F0 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048060 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021800 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048070 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021810 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048080 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021820 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048090 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021830 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480A0 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021850 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480B0 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021860 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480C0 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021880 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480D0 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021890 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480E0 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218A0 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000480F0 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218C0 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048100 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218D0 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048110 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218E0 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048120 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000218F0 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048130 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021900 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048140 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021910 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048150 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021920 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048160 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021930 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048170 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021940 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048180 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021950 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E00048190 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021960 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000481A0 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021970 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000481B0 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219A0 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000481C0 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219B0 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46EB2E000481D0 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021070 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000481E0 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021080 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000481F0 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021090 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048200 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000210A0 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048210 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000210B0 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048220 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000210C0 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048230 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000210E0 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048240 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021100 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048250 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021120 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048260 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021130 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048270 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021150 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048280 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021170 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048290 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021190 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482A0 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211B0 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482B0 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211D0 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482C0 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000211F0 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482D0 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021210 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482E0 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021230 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000482F0 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021250 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048300 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212B0 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048310 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000212C0 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048320 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000213B0 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048330 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021490 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048340 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000214A0 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048350 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021570 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048360 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021580 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048370 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021590 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048380 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000215A0 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048390 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000216A0 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483A0 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021700 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483B0 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021730 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483C0 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021790 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483D0 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000217A0 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483E0 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000217D0 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000483F0 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000217E0 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048400 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021840 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048410 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021870 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048420 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000218B0 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048430 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021980 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048440 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021990 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000484A0 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048490 /* libwebp-dummy.m */; }; + 46EB2E00048530 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219D0 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + 46EB2E00048540 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000219F0 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 46EB2E00048550 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A10 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 46EB2E00048560 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000219C0 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048570 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E000219E0 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048580 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A00 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048590 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A20 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000485F0 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000485E0 /* nanopb-dummy.m */; }; + 46EB2E00048680 /* ReactNativeConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A70 /* ReactNativeConfig.m */; }; + 46EB2E00048690 /* ReactNativeConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A90 /* ReactNativeConfigModule.m */; }; + 46EB2E000486A0 /* ReactNativeConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A60 /* ReactNativeConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000486B0 /* ReactNativeConfigModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021A80 /* ReactNativeConfigModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048710 /* react-native-config-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048700 /* react-native-config-dummy.m */; }; + 46EB2E000487A0 /* FlipperModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AB0 /* FlipperModule.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; + 46EB2E000487B0 /* FlipperReactNativeJavaScriptPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AD0 /* FlipperReactNativeJavaScriptPlugin.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; + 46EB2E000487C0 /* FlipperReactNativeJavaScriptPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AF0 /* FlipperReactNativeJavaScriptPluginManager.m */; settings = {COMPILER_FLAGS = "-DFB_SONARKIT_ENABLED=1"; }; }; + 46EB2E000487D0 /* FlipperModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AA0 /* FlipperModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000487E0 /* FlipperReactNativeJavaScriptPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AC0 /* FlipperReactNativeJavaScriptPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000487F0 /* FlipperReactNativeJavaScriptPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021AE0 /* FlipperReactNativeJavaScriptPluginManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048850 /* react-native-flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048840 /* react-native-flipper-dummy.m */; }; + 46EB2E000488E0 /* PdfManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B10 /* PdfManager.m */; }; + 46EB2E000488F0 /* RCTPdfPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B30 /* RCTPdfPageView.m */; }; + 46EB2E00048900 /* RCTPdfPageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B50 /* RCTPdfPageViewManager.m */; }; + 46EB2E00048910 /* RCTPdfView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B70 /* RCTPdfView.m */; }; + 46EB2E00048920 /* RCTPdfViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B90 /* RCTPdfViewManager.m */; }; + 46EB2E00048930 /* PdfManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B00 /* PdfManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048940 /* RCTPdfPageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B20 /* RCTPdfPageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048950 /* RCTPdfPageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B40 /* RCTPdfPageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048960 /* RCTPdfView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B60 /* RCTPdfView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048970 /* RCTPdfViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021B80 /* RCTPdfViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E000489D0 /* react-native-pdf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E000489C0 /* react-native-pdf-dummy.m */; }; + 46EB2E00048A60 /* RNCSafeAreaContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BB0 /* RNCSafeAreaContext.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048A70 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BD0 /* RNCSafeAreaProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048A80 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BF0 /* RNCSafeAreaProviderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048A90 /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C10 /* RNCSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AA0 /* RNCSafeAreaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C30 /* RNCSafeAreaUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AB0 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C50 /* RNCSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AC0 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C70 /* RNCSafeAreaViewEdges.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AD0 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C90 /* RNCSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AE0 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CB0 /* RNCSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048AF0 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CD0 /* RNCSafeAreaViewMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 46EB2E00048B00 /* RNCSafeAreaContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BA0 /* RNCSafeAreaContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B10 /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BC0 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B20 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021BE0 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B30 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C00 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B40 /* RNCSafeAreaUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C20 /* RNCSafeAreaUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B50 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C40 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B60 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C60 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B70 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021C80 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B80 /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CA0 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048B90 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CC0 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048BF0 /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048BE0 /* react-native-safe-area-context-dummy.m */; }; + 46EB2E00048C80 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CF0 /* RNCWebView.m */; }; + 46EB2E00048C90 /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D10 /* RNCWebViewManager.m */; }; + 46EB2E00048CA0 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D30 /* RNCWKProcessPoolManager.m */; }; + 46EB2E00048CB0 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021CE0 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048CC0 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D00 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048CD0 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00021D20 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048D30 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048D20 /* react-native-webview-dummy.m */; }; + 46EB2E00048E10 /* Pods-Hurt-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2E00048E00 /* Pods-Hurt-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EB2E00048E70 /* Pods-Hurt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EB2E00048E60 /* Pods-Hurt-dummy.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 46EB2E00049020 /* PBXContainerItemProxy */ = { + 46EB2E00048EF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EB28C63AFB5F6569AA780E440F9927E8; remoteInfo = BVLinearGradient; }; - 46EB2E00049040 /* PBXContainerItemProxy */ = { + 46EB2E00048F10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DB2B17EEE15C8E869A37C1514F4D378E; remoteInfo = Base64; }; - 46EB2E00049060 /* PBXContainerItemProxy */ = { + 46EB2E00048F30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; remoteInfo = "BoringSSL-GRPC"; }; - 46EB2E00049080 /* PBXContainerItemProxy */ = { + 46EB2E00048F50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - 46EB2E000490A0 /* PBXContainerItemProxy */ = { + 46EB2E00048F70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 9C3DB3789CFE35346F3ED3F31A5ABD6C; remoteInfo = CodePush; }; - 46EB2E000490C0 /* PBXContainerItemProxy */ = { + 46EB2E00048F90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E000490E0 /* PBXContainerItemProxy */ = { + 46EB2E00048FB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - 46EB2E00049100 /* PBXContainerItemProxy */ = { + 46EB2E00048FD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 46EB2E00049120 /* PBXContainerItemProxy */ = { + 46EB2E00048FF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E00049140 /* PBXContainerItemProxy */ = { + 46EB2E00049010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8F68D031908A0059566798048C48F776; remoteInfo = FirebaseABTesting; }; - 46EB2E00049160 /* PBXContainerItemProxy */ = { + 46EB2E00049030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 46EB2E00049180 /* PBXContainerItemProxy */ = { + 46EB2E00049050 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; remoteInfo = FirebaseAuth; }; - 46EB2E000491A0 /* PBXContainerItemProxy */ = { + 46EB2E00049070 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E000491C0 /* PBXContainerItemProxy */ = { + 46EB2E00049090 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 46EB2E000491E0 /* PBXContainerItemProxy */ = { + 46EB2E000490B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; remoteInfo = FirebaseCoreExtension; }; - 46EB2E00049200 /* PBXContainerItemProxy */ = { + 46EB2E000490D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; remoteInfo = FirebaseCoreInternal; }; - 46EB2E00049220 /* PBXContainerItemProxy */ = { + 46EB2E000490F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; remoteInfo = FirebaseCrashlytics; }; - 46EB2E00049240 /* PBXContainerItemProxy */ = { + 46EB2E00049110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 736AF68F6527ACF6B4A4C54728824A1C; remoteInfo = FirebaseDatabase; }; - 46EB2E00049260 /* PBXContainerItemProxy */ = { + 46EB2E00049130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; remoteInfo = FirebaseFirestore; }; - 46EB2E00049280 /* PBXContainerItemProxy */ = { + 46EB2E00049150 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 46EB2E000492A0 /* PBXContainerItemProxy */ = { + 46EB2E00049170 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5895B432FE4D2F6826C8FF25A09DB6D2; remoteInfo = FirebaseMessaging; }; - 46EB2E000492C0 /* PBXContainerItemProxy */ = { + 46EB2E00049190 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 51471EE35F2E9E19E51A74944E5ABB7F; remoteInfo = FirebaseRemoteConfig; }; - 46EB2E000492E0 /* PBXContainerItemProxy */ = { + 46EB2E000491B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; - 46EB2E00049300 /* PBXContainerItemProxy */ = { + 46EB2E000491D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; remoteInfo = "Flipper-Boost-iOSX"; }; - 46EB2E00049320 /* PBXContainerItemProxy */ = { + 46EB2E000491F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 46EB2E00049340 /* PBXContainerItemProxy */ = { + 46EB2E00049210 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; remoteInfo = "Flipper-Fmt"; }; - 46EB2E00049360 /* PBXContainerItemProxy */ = { + 46EB2E00049230 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 46EB2E00049380 /* PBXContainerItemProxy */ = { + 46EB2E00049250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; remoteInfo = "Flipper-Glog"; }; - 46EB2E000493A0 /* PBXContainerItemProxy */ = { + 46EB2E00049270 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - 46EB2E000493C0 /* PBXContainerItemProxy */ = { + 46EB2E00049290 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; - 46EB2E000493E0 /* PBXContainerItemProxy */ = { + 46EB2E000492B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; remoteInfo = FlipperKit; }; - 46EB2E00049400 /* PBXContainerItemProxy */ = { + 46EB2E000492D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D676E21115185671D7258A56944ABE98; remoteInfo = GTMSessionFetcher; }; - 46EB2E00049420 /* PBXContainerItemProxy */ = { + 46EB2E000492F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - 46EB2E00049440 /* PBXContainerItemProxy */ = { + 46EB2E00049310 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 46EB2E00049460 /* PBXContainerItemProxy */ = { + 46EB2E00049330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E00049480 /* PBXContainerItemProxy */ = { + 46EB2E00049350 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F95BD6B7EBE4B40A06D0F914262CA972; remoteInfo = JWT; }; - 46EB2E000494A0 /* PBXContainerItemProxy */ = { + 46EB2E00049370 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; remoteInfo = "Libuv-gRPC"; }; - 46EB2E000494C0 /* PBXContainerItemProxy */ = { + 46EB2E00049390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 46EB2E000494E0 /* PBXContainerItemProxy */ = { + 46EB2E000493B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 46EB2E00049500 /* PBXContainerItemProxy */ = { + 46EB2E000493D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E00049520 /* PBXContainerItemProxy */ = { + 46EB2E000493F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E00049540 /* PBXContainerItemProxy */ = { + 46EB2E00049410 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E00049560 /* PBXContainerItemProxy */ = { + 46EB2E00049430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; remoteInfo = RNCAsyncStorage; }; - 46EB2E00049580 /* PBXContainerItemProxy */ = { + 46EB2E00049450 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; remoteInfo = RNCMaskedView; }; - 46EB2E000495A0 /* PBXContainerItemProxy */ = { + 46EB2E00049470 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; remoteInfo = RNCPicker; }; - 46EB2E000495C0 /* PBXContainerItemProxy */ = { + 46EB2E00049490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; remoteInfo = RNDeviceInfo; }; - 46EB2E000495E0 /* PBXContainerItemProxy */ = { + 46EB2E000494B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; remoteInfo = RNFBAnalytics; }; - 46EB2E00049600 /* PBXContainerItemProxy */ = { + 46EB2E000494D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E00049620 /* PBXContainerItemProxy */ = { + 46EB2E000494F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 40074CA5658FB2002FAF3C521C19ADF9; remoteInfo = RNFBAuth; }; - 46EB2E00049640 /* PBXContainerItemProxy */ = { + 46EB2E00049510 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; remoteInfo = RNFBCrashlytics; }; - 46EB2E00049660 /* PBXContainerItemProxy */ = { + 46EB2E00049530 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 267E9AD363926B254B143B064F9CE7E4; remoteInfo = RNFBDatabase; }; - 46EB2E00049680 /* PBXContainerItemProxy */ = { + 46EB2E00049550 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1AEDCC056FB259475A44E0F2FC168000; remoteInfo = RNFBFirestore; }; - 46EB2E000496A0 /* PBXContainerItemProxy */ = { + 46EB2E00049570 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 0CFCC83772CE74C90F09C77D3F09ACAA; remoteInfo = RNFBMessaging; }; - 46EB2E000496C0 /* PBXContainerItemProxy */ = { + 46EB2E00049590 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DC1EA8F85F7C53B56B3A77622E7895D9; remoteInfo = RNFBRemoteConfig; }; - 46EB2E000496E0 /* PBXContainerItemProxy */ = { + 46EB2E000495B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; remoteInfo = RNFastImage; }; - 46EB2E00049700 /* PBXContainerItemProxy */ = { + 46EB2E000495D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; remoteInfo = RNGestureHandler; }; - 46EB2E00049720 /* PBXContainerItemProxy */ = { + 46EB2E000495F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 01902010C275AA793ECF6F87A82AE992; remoteInfo = RNRate; }; - 46EB2E00049740 /* PBXContainerItemProxy */ = { + 46EB2E00049610 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; remoteInfo = RNReanimated; }; - 46EB2E00049760 /* PBXContainerItemProxy */ = { + 46EB2E00049630 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DE32677FA772BFFD0172EB7EE9E4E7E9; remoteInfo = RNSVG; }; - 46EB2E00049780 /* PBXContainerItemProxy */ = { + 46EB2E00049650 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 214E42634D1E187D876346D36184B655; remoteInfo = RNScreens; }; - 46EB2E000497A0 /* PBXContainerItemProxy */ = { + 46EB2E00049670 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4C974BC7C0469FEEA85FA823D8870838; remoteInfo = RNShare; }; - 46EB2E000497C0 /* PBXContainerItemProxy */ = { + 46EB2E00049690 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; remoteInfo = RNVectorIcons; }; - 46EB2E000497E0 /* PBXContainerItemProxy */ = { + 46EB2E000496B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 46EB2E00049800 /* PBXContainerItemProxy */ = { + 46EB2E000496D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E00049820 /* PBXContainerItemProxy */ = { + 46EB2E000496F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E00049840 /* PBXContainerItemProxy */ = { + 46EB2E00049710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E16E206437995280D349D4B67695C894; remoteInfo = "React-CoreModules"; }; - 46EB2E00049860 /* PBXContainerItemProxy */ = { + 46EB2E00049730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; - 46EB2E00049880 /* PBXContainerItemProxy */ = { + 46EB2E00049750 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 46EB2E000498A0 /* PBXContainerItemProxy */ = { + 46EB2E00049770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 46EB2E000498C0 /* PBXContainerItemProxy */ = { + 46EB2E00049790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 46EB2E000498E0 /* PBXContainerItemProxy */ = { + 46EB2E000497B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 46EB2E00049900 /* PBXContainerItemProxy */ = { + 46EB2E000497D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 46EB2E00049920 /* PBXContainerItemProxy */ = { + 46EB2E000497F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - 46EB2E00049940 /* PBXContainerItemProxy */ = { + 46EB2E00049810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 46EB2E00049960 /* PBXContainerItemProxy */ = { + 46EB2E00049830 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 46EB2E00049980 /* PBXContainerItemProxy */ = { + 46EB2E00049850 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5D49FA97D16E84D298A7C7F5A6F1D615; remoteInfo = "React-bridging"; }; - 46EB2E000499A0 /* PBXContainerItemProxy */ = { + 46EB2E00049870 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 46EB2E000499C0 /* PBXContainerItemProxy */ = { + 46EB2E00049890 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E000499E0 /* PBXContainerItemProxy */ = { + 46EB2E000498B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 20F066A71CEA5EECC7463413442F2B77; remoteInfo = "React-hermes"; }; - 46EB2E00049A00 /* PBXContainerItemProxy */ = { + 46EB2E000498D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E00049A20 /* PBXContainerItemProxy */ = { + 46EB2E000498F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 46EB2E00049A40 /* PBXContainerItemProxy */ = { + 46EB2E00049910 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 46EB2E00049A60 /* PBXContainerItemProxy */ = { + 46EB2E00049930 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 083B602EA19B4AD50EC53C0602F29A7D; remoteInfo = "React-logger"; }; - 46EB2E00049A80 /* PBXContainerItemProxy */ = { + 46EB2E00049950 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E00049AA0 /* PBXContainerItemProxy */ = { + 46EB2E00049970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; remoteInfo = "React-runtimeexecutor"; }; - 46EB2E00049AC0 /* PBXContainerItemProxy */ = { + 46EB2E00049990 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E00049AE0 /* PBXContainerItemProxy */ = { + 46EB2E000499B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 46EB2E00049B00 /* PBXContainerItemProxy */ = { + 46EB2E000499D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - 46EB2E00049B20 /* PBXContainerItemProxy */ = { + 46EB2E000499F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F60E38364AFF5E1349FF07415B944396; remoteInfo = SSZipArchive; }; - 46EB2E00049B40 /* PBXContainerItemProxy */ = { + 46EB2E00049A10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1948D0B63D2CF6A48E18B0B292BC6091; remoteInfo = SocketRocket; }; - 46EB2E00049B60 /* PBXContainerItemProxy */ = { + 46EB2E00049A30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 46EB2E00049B80 /* PBXContainerItemProxy */ = { + 46EB2E00049A50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; remoteInfo = YogaKit; }; - 46EB2E00049BA0 /* PBXContainerItemProxy */ = { + 46EB2E00049A70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 46EB2E00049BC0 /* PBXContainerItemProxy */ = { + 46EB2E00049A90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EFEA55B1B776B6EB4B16F363BFE64D1A; remoteInfo = boost; }; - 46EB2E00049BE0 /* PBXContainerItemProxy */ = { + 46EB2E00049AB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; remoteInfo = fmt; }; - 46EB2E00049C00 /* PBXContainerItemProxy */ = { + 46EB2E00049AD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; remoteInfo = "gRPC-C++"; }; - 46EB2E00049C20 /* PBXContainerItemProxy */ = { + 46EB2E00049AF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; remoteInfo = "gRPC-Core"; }; - 46EB2E00049C40 /* PBXContainerItemProxy */ = { + 46EB2E00049B10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E00049C60 /* PBXContainerItemProxy */ = { + 46EB2E00049B30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; remoteInfo = "hermes-engine"; }; - 46EB2E00049C80 /* PBXContainerItemProxy */ = { + 46EB2E00049B50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; remoteInfo = "leveldb-library"; }; - 46EB2E00049CA0 /* PBXContainerItemProxy */ = { + 46EB2E00049B70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; remoteInfo = libevent; }; - 46EB2E00049CC0 /* PBXContainerItemProxy */ = { + 46EB2E00049B90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; - 46EB2E00049CE0 /* PBXContainerItemProxy */ = { + 46EB2E00049BB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E00049D00 /* PBXContainerItemProxy */ = { + 46EB2E00049BD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6422EB0A585557ED42A07B5D023BD98; remoteInfo = "react-native-config"; }; - 46EB2E00049D20 /* PBXContainerItemProxy */ = { + 46EB2E00049BF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F133385E353F127F269BD198DA330584; remoteInfo = "react-native-flipper"; }; - 46EB2E00049D40 /* PBXContainerItemProxy */ = { + 46EB2E00049C10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 951971F966B90DEAB7D250D9C65A8AC1; remoteInfo = "react-native-pdf"; }; - 46EB2E00049D60 /* PBXContainerItemProxy */ = { + 46EB2E00049C30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; remoteInfo = "react-native-safe-area-context"; }; - 46EB2E00049D80 /* PBXContainerItemProxy */ = { + 46EB2E00049C50 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 46EB2E00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 46EB2E00049C70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E00049DA0 /* PBXContainerItemProxy */ = { + 46EB2E00049C90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E00049DC0 /* PBXContainerItemProxy */ = { + 46EB2E00049CB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F60E38364AFF5E1349FF07415B944396; remoteInfo = SSZipArchive; }; - 46EB2E00049DE0 /* PBXContainerItemProxy */ = { + 46EB2E00049CD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F95BD6B7EBE4B40A06D0F914262CA972; remoteInfo = JWT; }; - 46EB2E00049E00 /* PBXContainerItemProxy */ = { + 46EB2E00049CF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DB2B17EEE15C8E869A37C1514F4D378E; remoteInfo = Base64; }; - 46EB2E00049E20 /* PBXContainerItemProxy */ = { + 46EB2E00049D10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E00049E40 /* PBXContainerItemProxy */ = { + 46EB2E00049D30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E00049E60 /* PBXContainerItemProxy */ = { + 46EB2E00049D50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E00049E80 /* PBXContainerItemProxy */ = { + 46EB2E00049D70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E00049EA0 /* PBXContainerItemProxy */ = { + 46EB2E00049D90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E00049EC0 /* PBXContainerItemProxy */ = { + 46EB2E00049DB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E00049EE0 /* PBXContainerItemProxy */ = { + 46EB2E00049DD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; remoteInfo = FirebaseAuth; }; - 46EB2E00049F00 /* PBXContainerItemProxy */ = { + 46EB2E00049DF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 46EB2E00049F20 /* PBXContainerItemProxy */ = { + 46EB2E00049E10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E00049F40 /* PBXContainerItemProxy */ = { + 46EB2E00049E30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; remoteInfo = FirebaseCrashlytics; }; - 46EB2E00049F60 /* PBXContainerItemProxy */ = { + 46EB2E00049E50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 736AF68F6527ACF6B4A4C54728824A1C; remoteInfo = FirebaseDatabase; }; - 46EB2E00049F80 /* PBXContainerItemProxy */ = { + 46EB2E00049E70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; remoteInfo = FirebaseFirestore; }; - 46EB2E00049FA0 /* PBXContainerItemProxy */ = { + 46EB2E00049E90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5895B432FE4D2F6826C8FF25A09DB6D2; remoteInfo = FirebaseMessaging; }; - 46EB2E00049FC0 /* PBXContainerItemProxy */ = { + 46EB2E00049EB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 51471EE35F2E9E19E51A74944E5ABB7F; remoteInfo = FirebaseRemoteConfig; }; - 46EB2E00049FE0 /* PBXContainerItemProxy */ = { + 46EB2E00049ED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A000 /* PBXContainerItemProxy */ = { + 46EB2E00049EF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A020 /* PBXContainerItemProxy */ = { + 46EB2E00049F10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 46EB2E0004A040 /* PBXContainerItemProxy */ = { + 46EB2E00049F30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A060 /* PBXContainerItemProxy */ = { + 46EB2E00049F50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A080 /* PBXContainerItemProxy */ = { + 46EB2E00049F70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - 46EB2E0004A0A0 /* PBXContainerItemProxy */ = { + 46EB2E00049F90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A0C0 /* PBXContainerItemProxy */ = { + 46EB2E00049FB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A0E0 /* PBXContainerItemProxy */ = { + 46EB2E00049FD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D676E21115185671D7258A56944ABE98; remoteInfo = GTMSessionFetcher; }; - 46EB2E0004A100 /* PBXContainerItemProxy */ = { + 46EB2E00049FF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A120 /* PBXContainerItemProxy */ = { + 46EB2E0004A010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 46EB2E0004A140 /* PBXContainerItemProxy */ = { + 46EB2E0004A030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; remoteInfo = FirebaseCoreInternal; }; - 46EB2E0004A160 /* PBXContainerItemProxy */ = { + 46EB2E0004A050 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 46EB2E0004A180 /* PBXContainerItemProxy */ = { + 46EB2E0004A070 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A1A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A090 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A1C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A0B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A1E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A0D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A200 /* PBXContainerItemProxy */ = { + 46EB2E0004A0F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A220 /* PBXContainerItemProxy */ = { + 46EB2E0004A110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 46EB2E0004A240 /* PBXContainerItemProxy */ = { + 46EB2E0004A130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 46EB2E0004A260 /* PBXContainerItemProxy */ = { + 46EB2E0004A150 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 46EB2E0004A280 /* PBXContainerItemProxy */ = { + 46EB2E0004A170 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A2A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A190 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A2C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A1B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; remoteInfo = "leveldb-library"; }; - 46EB2E0004A2E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A1D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A300 /* PBXContainerItemProxy */ = { + 46EB2E0004A1F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A320 /* PBXContainerItemProxy */ = { + 46EB2E0004A210 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 46EB2E0004A340 /* PBXContainerItemProxy */ = { + 46EB2E0004A230 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; remoteInfo = "gRPC-C++"; }; - 46EB2E0004A360 /* PBXContainerItemProxy */ = { + 46EB2E0004A250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; remoteInfo = "leveldb-library"; }; - 46EB2E0004A380 /* PBXContainerItemProxy */ = { + 46EB2E0004A270 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A3A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A290 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A3C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A2B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 46EB2E0004A3E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A2D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A400 /* PBXContainerItemProxy */ = { + 46EB2E0004A2F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 46EB2E0004A420 /* PBXContainerItemProxy */ = { + 46EB2E0004A310 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A440 /* PBXContainerItemProxy */ = { + 46EB2E0004A330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A460 /* PBXContainerItemProxy */ = { + 46EB2E0004A350 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 46EB2E0004A480 /* PBXContainerItemProxy */ = { + 46EB2E0004A370 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A4A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8F68D031908A0059566798048C48F776; remoteInfo = FirebaseABTesting; }; - 46EB2E0004A4C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A3B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 46EB2E0004A4E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A3D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 46EB2E0004A500 /* PBXContainerItemProxy */ = { + 46EB2E0004A3F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A520 /* PBXContainerItemProxy */ = { + 46EB2E0004A410 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 46EB2E0004A540 /* PBXContainerItemProxy */ = { + 46EB2E0004A430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; - 46EB2E0004A560 /* PBXContainerItemProxy */ = { + 46EB2E0004A450 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; remoteInfo = "Flipper-Boost-iOSX"; }; - 46EB2E0004A580 /* PBXContainerItemProxy */ = { + 46EB2E0004A470 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; remoteInfo = "Flipper-Glog"; }; - 46EB2E0004A5A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 46EB2E0004A5C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A4B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 46EB2E0004A5E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A4D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; remoteInfo = libevent; }; - 46EB2E0004A600 /* PBXContainerItemProxy */ = { + 46EB2E0004A4F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; remoteInfo = "Flipper-Fmt"; }; - 46EB2E0004A620 /* PBXContainerItemProxy */ = { + 46EB2E0004A510 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 46EB2E0004A640 /* PBXContainerItemProxy */ = { + 46EB2E0004A530 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; - 46EB2E0004A660 /* PBXContainerItemProxy */ = { + 46EB2E0004A550 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1948D0B63D2CF6A48E18B0B292BC6091; remoteInfo = SocketRocket; }; - 46EB2E0004A680 /* PBXContainerItemProxy */ = { + 46EB2E0004A570 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 46EB2E0004A6A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A590 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - 46EB2E0004A6C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A5B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - 46EB2E0004A6E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A5D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; remoteInfo = YogaKit; }; - 46EB2E0004A700 /* PBXContainerItemProxy */ = { + 46EB2E0004A5F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A720 /* PBXContainerItemProxy */ = { + 46EB2E0004A610 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A740 /* PBXContainerItemProxy */ = { + 46EB2E0004A630 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EB2E0004A760 /* PBXContainerItemProxy */ = { + 46EB2E0004A650 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 46EB2E0004A780 /* PBXContainerItemProxy */ = { + 46EB2E0004A670 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 46EB2E0004A7A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A690 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 46EB2E0004A7C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A6B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DB2B17EEE15C8E869A37C1514F4D378E; remoteInfo = Base64; }; - 46EB2E0004A7E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A6D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EFEA55B1B776B6EB4B16F363BFE64D1A; remoteInfo = boost; }; - 46EB2E0004A800 /* PBXContainerItemProxy */ = { + 46EB2E0004A6F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004A820 /* PBXContainerItemProxy */ = { + 46EB2E0004A710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004A840 /* PBXContainerItemProxy */ = { + 46EB2E0004A730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; remoteInfo = fmt; }; - 46EB2E0004A860 /* PBXContainerItemProxy */ = { + 46EB2E0004A750 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; remoteInfo = libevent; }; - 46EB2E0004A880 /* PBXContainerItemProxy */ = { + 46EB2E0004A770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - 46EB2E0004A8A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E0004A8C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A7B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A8E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A7D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A900 /* PBXContainerItemProxy */ = { + 46EB2E0004A7F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 46EB2E0004A920 /* PBXContainerItemProxy */ = { + 46EB2E0004A810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A940 /* PBXContainerItemProxy */ = { + 46EB2E0004A830 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A960 /* PBXContainerItemProxy */ = { + 46EB2E0004A850 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A980 /* PBXContainerItemProxy */ = { + 46EB2E0004A870 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004A9A0 /* PBXContainerItemProxy */ = { + 46EB2E0004A890 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004A9C0 /* PBXContainerItemProxy */ = { + 46EB2E0004A8B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004A9E0 /* PBXContainerItemProxy */ = { + 46EB2E0004A8D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AA00 /* PBXContainerItemProxy */ = { + 46EB2E0004A8F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AA20 /* PBXContainerItemProxy */ = { + 46EB2E0004A910 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004AA40 /* PBXContainerItemProxy */ = { + 46EB2E0004A930 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AA60 /* PBXContainerItemProxy */ = { + 46EB2E0004A950 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AA80 /* PBXContainerItemProxy */ = { + 46EB2E0004A970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004AAA0 /* PBXContainerItemProxy */ = { + 46EB2E0004A990 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AAC0 /* PBXContainerItemProxy */ = { + 46EB2E0004A9B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; remoteInfo = FirebaseCoreExtension; }; - 46EB2E0004AAE0 /* PBXContainerItemProxy */ = { + 46EB2E0004A9D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AB00 /* PBXContainerItemProxy */ = { + 46EB2E0004A9F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004AB20 /* PBXContainerItemProxy */ = { + 46EB2E0004AA10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AB40 /* PBXContainerItemProxy */ = { + 46EB2E0004AA30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AB60 /* PBXContainerItemProxy */ = { + 46EB2E0004AA50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004AB80 /* PBXContainerItemProxy */ = { + 46EB2E0004AA70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004ABA0 /* PBXContainerItemProxy */ = { + 46EB2E0004AA90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004ABC0 /* PBXContainerItemProxy */ = { + 46EB2E0004AAB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004ABE0 /* PBXContainerItemProxy */ = { + 46EB2E0004AAD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AC00 /* PBXContainerItemProxy */ = { + 46EB2E0004AAF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AC20 /* PBXContainerItemProxy */ = { + 46EB2E0004AB10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 46EB2E0004AC40 /* PBXContainerItemProxy */ = { + 46EB2E0004AB30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 46EB2E0004AC60 /* PBXContainerItemProxy */ = { + 46EB2E0004AB50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AC80 /* PBXContainerItemProxy */ = { + 46EB2E0004AB70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 46EB2E0004ACA0 /* PBXContainerItemProxy */ = { + 46EB2E0004AB90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - 46EB2E0004ACC0 /* PBXContainerItemProxy */ = { + 46EB2E0004ABB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004ACE0 /* PBXContainerItemProxy */ = { + 46EB2E0004ABD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AD00 /* PBXContainerItemProxy */ = { + 46EB2E0004ABF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004AD20 /* PBXContainerItemProxy */ = { + 46EB2E0004AC10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - 46EB2E0004AD40 /* PBXContainerItemProxy */ = { + 46EB2E0004AC30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 46EB2E0004AD60 /* PBXContainerItemProxy */ = { + 46EB2E0004AC50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E0004AD80 /* PBXContainerItemProxy */ = { + 46EB2E0004AC70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004ADA0 /* PBXContainerItemProxy */ = { + 46EB2E0004AC90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E16E206437995280D349D4B67695C894; remoteInfo = "React-CoreModules"; }; - 46EB2E0004ADC0 /* PBXContainerItemProxy */ = { + 46EB2E0004ACB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; - 46EB2E0004ADE0 /* PBXContainerItemProxy */ = { + 46EB2E0004ACD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 46EB2E0004AE00 /* PBXContainerItemProxy */ = { + 46EB2E0004ACF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 46EB2E0004AE20 /* PBXContainerItemProxy */ = { + 46EB2E0004AD10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 46EB2E0004AE40 /* PBXContainerItemProxy */ = { + 46EB2E0004AD30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 46EB2E0004AE60 /* PBXContainerItemProxy */ = { + 46EB2E0004AD50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - 46EB2E0004AE80 /* PBXContainerItemProxy */ = { + 46EB2E0004AD70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 46EB2E0004AEA0 /* PBXContainerItemProxy */ = { + 46EB2E0004AD90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 46EB2E0004AEC0 /* PBXContainerItemProxy */ = { + 46EB2E0004ADB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E0004AEE0 /* PBXContainerItemProxy */ = { + 46EB2E0004ADD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004AF00 /* PBXContainerItemProxy */ = { + 46EB2E0004ADF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 46EB2E0004AF20 /* PBXContainerItemProxy */ = { + 46EB2E0004AE10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 46EB2E0004AF40 /* PBXContainerItemProxy */ = { + 46EB2E0004AE30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004AF60 /* PBXContainerItemProxy */ = { + 46EB2E0004AE50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 46EB2E0004AF80 /* PBXContainerItemProxy */ = { + 46EB2E0004AE70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004AFA0 /* PBXContainerItemProxy */ = { + 46EB2E0004AE90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004AFC0 /* PBXContainerItemProxy */ = { + 46EB2E0004AEB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 46EB2E0004AFE0 /* PBXContainerItemProxy */ = { + 46EB2E0004AED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B000 /* PBXContainerItemProxy */ = { + 46EB2E0004AEF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B020 /* PBXContainerItemProxy */ = { + 46EB2E0004AF10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B040 /* PBXContainerItemProxy */ = { + 46EB2E0004AF30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 46EB2E0004B060 /* PBXContainerItemProxy */ = { + 46EB2E0004AF50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B080 /* PBXContainerItemProxy */ = { + 46EB2E0004AF70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B0A0 /* PBXContainerItemProxy */ = { + 46EB2E0004AF90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B0C0 /* PBXContainerItemProxy */ = { + 46EB2E0004AFB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; - 46EB2E0004B0E0 /* PBXContainerItemProxy */ = { + 46EB2E0004AFD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 46EB2E0004B100 /* PBXContainerItemProxy */ = { + 46EB2E0004AFF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 46EB2E0004B120 /* PBXContainerItemProxy */ = { + 46EB2E0004B010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 46EB2E0004B140 /* PBXContainerItemProxy */ = { + 46EB2E0004B030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 46EB2E0004B160 /* PBXContainerItemProxy */ = { + 46EB2E0004B050 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 46EB2E0004B180 /* PBXContainerItemProxy */ = { + 46EB2E0004B070 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - 46EB2E0004B1A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B090 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 46EB2E0004B1C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B0B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 46EB2E0004B1E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B0D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 46EB2E0004B200 /* PBXContainerItemProxy */ = { + 46EB2E0004B0F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 46EB2E0004B220 /* PBXContainerItemProxy */ = { + 46EB2E0004B110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B240 /* PBXContainerItemProxy */ = { + 46EB2E0004B130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E0004B260 /* PBXContainerItemProxy */ = { + 46EB2E0004B150 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B280 /* PBXContainerItemProxy */ = { + 46EB2E0004B170 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B2A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B190 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B2C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B1B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B2E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B1D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; remoteInfo = "React-Core-AccessibilityResources"; }; - 46EB2E0004B300 /* PBXContainerItemProxy */ = { + 46EB2E0004B1F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B320 /* PBXContainerItemProxy */ = { + 46EB2E0004B210 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E0004B340 /* PBXContainerItemProxy */ = { + 46EB2E0004B230 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E0004B360 /* PBXContainerItemProxy */ = { + 46EB2E0004B250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B380 /* PBXContainerItemProxy */ = { + 46EB2E0004B270 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 46EB2E0004B3A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B290 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 46EB2E0004B3C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B2B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004B3E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B2D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 46EB2E0004B400 /* PBXContainerItemProxy */ = { + 46EB2E0004B2F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B420 /* PBXContainerItemProxy */ = { + 46EB2E0004B310 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B440 /* PBXContainerItemProxy */ = { + 46EB2E0004B330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B460 /* PBXContainerItemProxy */ = { + 46EB2E0004B350 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B480 /* PBXContainerItemProxy */ = { + 46EB2E0004B370 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 46EB2E0004B4A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B4C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B3B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B4E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B3D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B500 /* PBXContainerItemProxy */ = { + 46EB2E0004B3F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B520 /* PBXContainerItemProxy */ = { + 46EB2E0004B410 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B540 /* PBXContainerItemProxy */ = { + 46EB2E0004B430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B560 /* PBXContainerItemProxy */ = { + 46EB2E0004B450 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B580 /* PBXContainerItemProxy */ = { + 46EB2E0004B470 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B5A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B5C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B4B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B5E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B4D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B600 /* PBXContainerItemProxy */ = { + 46EB2E0004B4F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B620 /* PBXContainerItemProxy */ = { + 46EB2E0004B510 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B640 /* PBXContainerItemProxy */ = { + 46EB2E0004B530 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B660 /* PBXContainerItemProxy */ = { + 46EB2E0004B550 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 46EB2E0004B680 /* PBXContainerItemProxy */ = { + 46EB2E0004B570 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B6A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B590 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B6C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B5B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B6E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B5D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B700 /* PBXContainerItemProxy */ = { + 46EB2E0004B5F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B720 /* PBXContainerItemProxy */ = { + 46EB2E0004B610 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B740 /* PBXContainerItemProxy */ = { + 46EB2E0004B630 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 46EB2E0004B760 /* PBXContainerItemProxy */ = { + 46EB2E0004B650 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B780 /* PBXContainerItemProxy */ = { + 46EB2E0004B670 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B7A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B690 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B7C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B6B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B7E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B6D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B800 /* PBXContainerItemProxy */ = { + 46EB2E0004B6F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B820 /* PBXContainerItemProxy */ = { + 46EB2E0004B710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B840 /* PBXContainerItemProxy */ = { + 46EB2E0004B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B860 /* PBXContainerItemProxy */ = { + 46EB2E0004B750 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B880 /* PBXContainerItemProxy */ = { + 46EB2E0004B770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B8A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B8C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B7B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B8E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B7D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004B900 /* PBXContainerItemProxy */ = { + 46EB2E0004B7F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B920 /* PBXContainerItemProxy */ = { + 46EB2E0004B810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004B940 /* PBXContainerItemProxy */ = { + 46EB2E0004B830 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B960 /* PBXContainerItemProxy */ = { + 46EB2E0004B850 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004B980 /* PBXContainerItemProxy */ = { + 46EB2E0004B870 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004B9A0 /* PBXContainerItemProxy */ = { + 46EB2E0004B890 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 66B8F5758E6F90E16807A85C003CE61F; remoteInfo = "React-Codegen"; }; - 46EB2E0004B9C0 /* PBXContainerItemProxy */ = { + 46EB2E0004B8B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 46EB2E0004B9E0 /* PBXContainerItemProxy */ = { + 46EB2E0004B8D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BA00 /* PBXContainerItemProxy */ = { + 46EB2E0004B8F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004BA20 /* PBXContainerItemProxy */ = { + 46EB2E0004B910 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BA40 /* PBXContainerItemProxy */ = { + 46EB2E0004B930 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BA60 /* PBXContainerItemProxy */ = { + 46EB2E0004B950 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EFEA55B1B776B6EB4B16F363BFE64D1A; remoteInfo = boost; }; - 46EB2E0004BA80 /* PBXContainerItemProxy */ = { + 46EB2E0004B970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004BAA0 /* PBXContainerItemProxy */ = { + 46EB2E0004B990 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BAC0 /* PBXContainerItemProxy */ = { + 46EB2E0004B9B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BAE0 /* PBXContainerItemProxy */ = { + 46EB2E0004B9D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 46EB2E0004BB00 /* PBXContainerItemProxy */ = { + 46EB2E0004B9F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 46EB2E0004BB20 /* PBXContainerItemProxy */ = { + 46EB2E0004BA10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; remoteInfo = "React-runtimeexecutor"; }; - 46EB2E0004BB40 /* PBXContainerItemProxy */ = { + 46EB2E0004BA30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E0004BB60 /* PBXContainerItemProxy */ = { + 46EB2E0004BA50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BB80 /* PBXContainerItemProxy */ = { + 46EB2E0004BA70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 083B602EA19B4AD50EC53C0602F29A7D; remoteInfo = "React-logger"; }; - 46EB2E0004BBA0 /* PBXContainerItemProxy */ = { + 46EB2E0004BA90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E0004BBC0 /* PBXContainerItemProxy */ = { + 46EB2E0004BAB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BBE0 /* PBXContainerItemProxy */ = { + 46EB2E0004BAD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 46EB2E0004BC00 /* PBXContainerItemProxy */ = { + 46EB2E0004BAF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 46EB2E0004BC20 /* PBXContainerItemProxy */ = { + 46EB2E0004BB10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E0004BC40 /* PBXContainerItemProxy */ = { + 46EB2E0004BB30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BC60 /* PBXContainerItemProxy */ = { + 46EB2E0004BB50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004BC80 /* PBXContainerItemProxy */ = { + 46EB2E0004BB70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BCA0 /* PBXContainerItemProxy */ = { + 46EB2E0004BB90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; remoteInfo = "hermes-engine"; }; - 46EB2E0004BCC0 /* PBXContainerItemProxy */ = { + 46EB2E0004BBB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EFEA55B1B776B6EB4B16F363BFE64D1A; remoteInfo = boost; }; - 46EB2E0004BCE0 /* PBXContainerItemProxy */ = { + 46EB2E0004BBD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004BD00 /* PBXContainerItemProxy */ = { + 46EB2E0004BBF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BD20 /* PBXContainerItemProxy */ = { + 46EB2E0004BC10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BD40 /* PBXContainerItemProxy */ = { + 46EB2E0004BC30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E0004BD60 /* PBXContainerItemProxy */ = { + 46EB2E0004BC50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BD80 /* PBXContainerItemProxy */ = { + 46EB2E0004BC70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E0004BDA0 /* PBXContainerItemProxy */ = { + 46EB2E0004BC90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BDC0 /* PBXContainerItemProxy */ = { + 46EB2E0004BCB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004BDE0 /* PBXContainerItemProxy */ = { + 46EB2E0004BCD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BE00 /* PBXContainerItemProxy */ = { + 46EB2E0004BCF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BE20 /* PBXContainerItemProxy */ = { + 46EB2E0004BD10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BE40 /* PBXContainerItemProxy */ = { + 46EB2E0004BD30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 083B602EA19B4AD50EC53C0602F29A7D; remoteInfo = "React-logger"; }; - 46EB2E0004BE60 /* PBXContainerItemProxy */ = { + 46EB2E0004BD50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 5D49FA97D16E84D298A7C7F5A6F1D615; remoteInfo = "React-bridging"; }; - 46EB2E0004BE80 /* PBXContainerItemProxy */ = { + 46EB2E0004BD70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 46EB2E0004BEA0 /* PBXContainerItemProxy */ = { + 46EB2E0004BD90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; remoteInfo = "React-perflogger"; }; - 46EB2E0004BEC0 /* PBXContainerItemProxy */ = { + 46EB2E0004BDB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004BEE0 /* PBXContainerItemProxy */ = { + 46EB2E0004BDD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 46EB2E0004BF00 /* PBXContainerItemProxy */ = { + 46EB2E0004BDF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 46EB2E0004BF20 /* PBXContainerItemProxy */ = { + 46EB2E0004BE10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004BF40 /* PBXContainerItemProxy */ = { + 46EB2E0004BE30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 46EB2E0004BF60 /* PBXContainerItemProxy */ = { + 46EB2E0004BE50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 46EB2E0004BF80 /* PBXContainerItemProxy */ = { + 46EB2E0004BE70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 46EB2E0004BFA0 /* PBXContainerItemProxy */ = { + 46EB2E0004BE90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; - 46EB2E0004BFC0 /* PBXContainerItemProxy */ = { + 46EB2E0004BEB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 46EB2E0004BFE0 /* PBXContainerItemProxy */ = { + 46EB2E0004BED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; }; - 46EB2E0004C000 /* PBXContainerItemProxy */ = { + 46EB2E0004BEF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; remoteInfo = "gRPC-Core"; }; - 46EB2E0004C020 /* PBXContainerItemProxy */ = { + 46EB2E0004BF10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 46EB2E0004C040 /* PBXContainerItemProxy */ = { + 46EB2E0004BF30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; remoteInfo = "BoringSSL-GRPC"; }; - 46EB2E0004C060 /* PBXContainerItemProxy */ = { + 46EB2E0004BF50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; remoteInfo = "Libuv-gRPC"; }; - 46EB2E0004C080 /* PBXContainerItemProxy */ = { + 46EB2E0004BF70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 46EB2E0004C0A0 /* PBXContainerItemProxy */ = { + 46EB2E0004BF90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004C0C0 /* PBXContainerItemProxy */ = { + 46EB2E0004BFB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004C0E0 /* PBXContainerItemProxy */ = { + 46EB2E0004BFD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 46EB2E0004C100 /* PBXContainerItemProxy */ = { + 46EB2E0004BFF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 46EB2E0004C120 /* PBXContainerItemProxy */ = { + 46EB2E0004C010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 46EB2E0004C140 /* PBXContainerItemProxy */ = { + 46EB2E0004C030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 46EB2E0004C160 /* PBXContainerItemProxy */ = { + 46EB2E0004C050 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 46EB2E0004C180 /* PBXContainerItemProxy */ = { + 46EB2E0004C070 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 46EB2E00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 46EB2E0004C090 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 46EB2E00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ @@ -11424,7 +11406,7 @@ 2577F299FCB0A19824FE989BE77B8E8F /* React-jsinspector */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsinspector"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 269BE773C9482484B70949A40F4EA525 /* React-RCTSettings */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTSettings"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2A06652291DB26EB217E00C0B4D8A07C /* RNRate */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNRate; path = libRNRate.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2A2CA8ECD2FE74426FEB496F6125C735 /* libPods-Hurt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Hurt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2A2CA8ECD2FE74426FEB496F6125C735 /* Pods-Hurt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-Hurt"; path = "libPods-Hurt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2DF82EE18981E98BA2339ECE2AB5F350 /* JWT */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = JWT; path = libJWT.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = PromisesObjC; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* RNFBAnalytics */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNFBAnalytics; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -11434,8877 +11416,8865 @@ 396DAFDC3DCFBF31A37A3CC9488C0DDC /* Flipper-Fmt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Fmt"; path = "libFlipper-Fmt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* glog */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = glog; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FirebaseAuth; path = libFirebaseAuth.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 46EB2E00000760 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00000770 /* BVLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradient.h; path = ios/BVLinearGradient.h; sourceTree = ""; }; - 46EB2E00000780 /* BVLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradient.m; path = ios/BVLinearGradient.m; sourceTree = ""; }; - 46EB2E00000790 /* BVLinearGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientLayer.h; path = ios/BVLinearGradientLayer.h; sourceTree = ""; }; - 46EB2E000007A0 /* BVLinearGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientLayer.m; path = ios/BVLinearGradientLayer.m; sourceTree = ""; }; - 46EB2E000007B0 /* BVLinearGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientManager.h; path = ios/BVLinearGradientManager.h; sourceTree = ""; }; - 46EB2E000007C0 /* BVLinearGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientManager.m; path = ios/BVLinearGradientManager.m; sourceTree = ""; }; - 46EB2E000007D0 /* MF_Base64Additions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MF_Base64Additions.h; path = Base64/MF_Base64Additions.h; sourceTree = ""; }; - 46EB2E000007E0 /* MF_Base64Additions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MF_Base64Additions.m; path = Base64/MF_Base64Additions.m; sourceTree = ""; }; - 46EB2E00000800 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; - 46EB2E00000810 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; - 46EB2E00000820 /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; - 46EB2E00000830 /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; - 46EB2E00000840 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; - 46EB2E00000850 /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; - 46EB2E00000860 /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; - 46EB2E00000870 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; - 46EB2E00000880 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; - 46EB2E00000890 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; - 46EB2E000008A0 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; - 46EB2E000008B0 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; - 46EB2E000008C0 /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; - 46EB2E000008D0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; - 46EB2E000008E0 /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; - 46EB2E000008F0 /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; - 46EB2E00000900 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; - 46EB2E00000910 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; - 46EB2E00000920 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; - 46EB2E00000930 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; - 46EB2E00000940 /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; - 46EB2E00000950 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; - 46EB2E00000960 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; - 46EB2E00000970 /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; - 46EB2E00000980 /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; - 46EB2E00000990 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; - 46EB2E000009A0 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; - 46EB2E000009B0 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; - 46EB2E000009C0 /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; - 46EB2E000009D0 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; - 46EB2E000009E0 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; - 46EB2E000009F0 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; - 46EB2E00000A00 /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; - 46EB2E00000A10 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; - 46EB2E00000A20 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; - 46EB2E00000A30 /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; - 46EB2E00000A40 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; - 46EB2E00000A50 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; - 46EB2E00000A60 /* cpu-aarch64-fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-aarch64-fuchsia.c"; path = "src/crypto/cpu-aarch64-fuchsia.c"; sourceTree = ""; }; - 46EB2E00000A70 /* cpu-aarch64-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-aarch64-linux.c"; path = "src/crypto/cpu-aarch64-linux.c"; sourceTree = ""; }; - 46EB2E00000A80 /* cpu-aarch64-win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-aarch64-win.c"; path = "src/crypto/cpu-aarch64-win.c"; sourceTree = ""; }; - 46EB2E00000A90 /* cpu-arm-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-arm-linux.c"; path = "src/crypto/cpu-arm-linux.c"; sourceTree = ""; }; - 46EB2E00000AA0 /* cpu-arm-linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cpu-arm-linux.h"; path = "src/crypto/cpu-arm-linux.h"; sourceTree = ""; }; - 46EB2E00000AB0 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; - 46EB2E00000AC0 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; - 46EB2E00000AD0 /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; - 46EB2E00000AE0 /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; - 46EB2E00000AF0 /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; - 46EB2E00000B00 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; - 46EB2E00000B10 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; - 46EB2E00000B20 /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; - 46EB2E00000B30 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; - 46EB2E00000B40 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; - 46EB2E00000B50 /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; - 46EB2E00000B60 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; - 46EB2E00000B70 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; - 46EB2E00000B80 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; - 46EB2E00000B90 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; - 46EB2E00000BA0 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; - 46EB2E00000BB0 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; - 46EB2E00000BC0 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; - 46EB2E00000BD0 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; - 46EB2E00000BE0 /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; - 46EB2E00000BF0 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; - 46EB2E00000C00 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; - 46EB2E00000C10 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; - 46EB2E00000C20 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; - 46EB2E00000C30 /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; - 46EB2E00000C40 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; - 46EB2E00000C50 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; - 46EB2E00000C60 /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; - 46EB2E00000C70 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; - 46EB2E00000C80 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; - 46EB2E00000C90 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; - 46EB2E00000CA0 /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; - 46EB2E00000CB0 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; - 46EB2E00000CC0 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; - 46EB2E00000CD0 /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; - 46EB2E00000CE0 /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; - 46EB2E00000CF0 /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; - 46EB2E00000D00 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; - 46EB2E00000D10 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; - 46EB2E00000D20 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; - 46EB2E00000D30 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; - 46EB2E00000D40 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; - 46EB2E00000D50 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; - 46EB2E00000D60 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; - 46EB2E00000D70 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; - 46EB2E00000D80 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; - 46EB2E00000D90 /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; - 46EB2E00000DA0 /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; - 46EB2E00000DB0 /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; - 46EB2E00000DC0 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; - 46EB2E00000DD0 /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; - 46EB2E00000DE0 /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; - 46EB2E00000DF0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; - 46EB2E00000E00 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; - 46EB2E00000E10 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; - 46EB2E00000E20 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; - 46EB2E00000E30 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; - 46EB2E00000E40 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; - 46EB2E00000E50 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; - 46EB2E00000E60 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; - 46EB2E00000E70 /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; - 46EB2E00000E80 /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; - 46EB2E00000E90 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; - 46EB2E00000EA0 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; - 46EB2E00000EB0 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; - 46EB2E00000EC0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; - 46EB2E00000ED0 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; - 46EB2E00000EE0 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; - 46EB2E00000EF0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; - 46EB2E00000F00 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; - 46EB2E00000F10 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; - 46EB2E00000F20 /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; - 46EB2E00000F30 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; - 46EB2E00000F40 /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; - 46EB2E00000F50 /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; - 46EB2E00000F60 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; - 46EB2E00000F70 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; - 46EB2E00000F80 /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; - 46EB2E00000F90 /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; - 46EB2E00000FA0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; - 46EB2E00000FB0 /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; - 46EB2E00000FC0 /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; - 46EB2E00000FD0 /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; - 46EB2E00000FE0 /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; - 46EB2E00000FF0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; - 46EB2E00001000 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; - 46EB2E00001010 /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; - 46EB2E00001020 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; - 46EB2E00001030 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; - 46EB2E00001040 /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; - 46EB2E00001050 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; - 46EB2E00001060 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; - 46EB2E00001070 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; - 46EB2E00001080 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; - 46EB2E00001090 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; - 46EB2E000010A0 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; - 46EB2E000010B0 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; - 46EB2E000010C0 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; - 46EB2E000010D0 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; - 46EB2E000010E0 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; - 46EB2E000010F0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; - 46EB2E00001100 /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; - 46EB2E00001110 /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; - 46EB2E00001120 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; - 46EB2E00001130 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; - 46EB2E00001140 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; - 46EB2E00001150 /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; - 46EB2E00001160 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; - 46EB2E00001170 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; - 46EB2E00001180 /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; - 46EB2E00001190 /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; - 46EB2E000011A0 /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; - 46EB2E000011B0 /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; - 46EB2E000011C0 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; - 46EB2E000011D0 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; - 46EB2E000011E0 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; - 46EB2E000011F0 /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; - 46EB2E00001200 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; - 46EB2E00001210 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; - 46EB2E00001220 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; - 46EB2E00001230 /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; - 46EB2E00001240 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; - 46EB2E00001250 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; - 46EB2E00001260 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; - 46EB2E00001270 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; - 46EB2E00001280 /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; - 46EB2E00001290 /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; - 46EB2E000012A0 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; - 46EB2E000012B0 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; - 46EB2E000012C0 /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; - 46EB2E000012D0 /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; - 46EB2E000012E0 /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; - 46EB2E000012F0 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; - 46EB2E00001300 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; - 46EB2E00001310 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; - 46EB2E00001320 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; - 46EB2E00001330 /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; - 46EB2E00001340 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; - 46EB2E00001350 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; - 46EB2E00001360 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; - 46EB2E00001370 /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; - 46EB2E00001380 /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; - 46EB2E00001390 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; - 46EB2E000013A0 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; - 46EB2E000013B0 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; - 46EB2E000013C0 /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; - 46EB2E000013D0 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; - 46EB2E000013E0 /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; - 46EB2E000013F0 /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; - 46EB2E00001400 /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; - 46EB2E00001410 /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; - 46EB2E00001420 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; - 46EB2E00001430 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; - 46EB2E00001440 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; - 46EB2E00001450 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; - 46EB2E00001460 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; - 46EB2E00001470 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; - 46EB2E00001480 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; - 46EB2E00001490 /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; - 46EB2E000014A0 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; - 46EB2E000014B0 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; - 46EB2E000014C0 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; - 46EB2E000014D0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; - 46EB2E000014E0 /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; - 46EB2E000014F0 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; - 46EB2E00001500 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; - 46EB2E00001510 /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; - 46EB2E00001520 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; - 46EB2E00001530 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; - 46EB2E00001540 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; - 46EB2E00001550 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; - 46EB2E00001560 /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; - 46EB2E00001570 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; - 46EB2E00001580 /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; - 46EB2E00001590 /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; - 46EB2E000015A0 /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; - 46EB2E000015B0 /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; - 46EB2E000015C0 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; - 46EB2E000015D0 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; - 46EB2E000015E0 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; - 46EB2E000015F0 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; - 46EB2E00001600 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; - 46EB2E00001610 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; - 46EB2E00001620 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; - 46EB2E00001630 /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; - 46EB2E00001640 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; - 46EB2E00001650 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; - 46EB2E00001660 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; - 46EB2E00001670 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; - 46EB2E00001680 /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; - 46EB2E00001690 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; - 46EB2E000016A0 /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; - 46EB2E000016B0 /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; - 46EB2E000016C0 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; - 46EB2E000016D0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; - 46EB2E000016E0 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; - 46EB2E000016F0 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; - 46EB2E00001700 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; - 46EB2E00001710 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; - 46EB2E00001720 /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; - 46EB2E00001730 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; - 46EB2E00001740 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; - 46EB2E00001750 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; - 46EB2E00001760 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; - 46EB2E00001770 /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; - 46EB2E00001780 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; - 46EB2E00001790 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; - 46EB2E000017A0 /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; - 46EB2E000017B0 /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; - 46EB2E000017C0 /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; - 46EB2E000017D0 /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; - 46EB2E000017E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; - 46EB2E000017F0 /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; - 46EB2E00001800 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; - 46EB2E00001810 /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; - 46EB2E00001820 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; - 46EB2E00001830 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; - 46EB2E00001840 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; - 46EB2E00001850 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; - 46EB2E00001860 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; - 46EB2E00001870 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; - 46EB2E00001880 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; - 46EB2E00001890 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; - 46EB2E000018A0 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; - 46EB2E000018B0 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; - 46EB2E000018C0 /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; - 46EB2E000018D0 /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; - 46EB2E000018E0 /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; - 46EB2E000018F0 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; - 46EB2E00001900 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; - 46EB2E00001910 /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; - 46EB2E00001920 /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; - 46EB2E00001930 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; - 46EB2E00001940 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; - 46EB2E00001950 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; - 46EB2E00001960 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; - 46EB2E00001970 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; - 46EB2E00001980 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; - 46EB2E00001990 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; - 46EB2E000019A0 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; - 46EB2E000019B0 /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; - 46EB2E000019C0 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; - 46EB2E000019D0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; - 46EB2E000019E0 /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; - 46EB2E000019F0 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; - 46EB2E00001A00 /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; - 46EB2E00001A10 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; - 46EB2E00001A20 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; - 46EB2E00001A30 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; - 46EB2E00001A40 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; - 46EB2E00001A50 /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; - 46EB2E00001A60 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; - 46EB2E00001A70 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; - 46EB2E00001A80 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; - 46EB2E00001A90 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; - 46EB2E00001AA0 /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; - 46EB2E00001AB0 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; - 46EB2E00001AC0 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; - 46EB2E00001AD0 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; - 46EB2E00001AE0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; - 46EB2E00001AF0 /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; - 46EB2E00001B00 /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; - 46EB2E00001B10 /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; - 46EB2E00001B20 /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; - 46EB2E00001B30 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; - 46EB2E00001B40 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; - 46EB2E00001B50 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; - 46EB2E00001B60 /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; - 46EB2E00001B70 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; - 46EB2E00001B80 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; - 46EB2E00001B90 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; - 46EB2E00001BA0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; - 46EB2E00001BB0 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; - 46EB2E00001BC0 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; - 46EB2E00001BD0 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; - 46EB2E00001BE0 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; - 46EB2E00001BF0 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; - 46EB2E00001C00 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; - 46EB2E00001C10 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; - 46EB2E00001C20 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; - 46EB2E00001C30 /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; - 46EB2E00001C40 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; - 46EB2E00001C50 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; - 46EB2E00001C60 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; - 46EB2E00001C70 /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; - 46EB2E00001C80 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; - 46EB2E00001C90 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; - 46EB2E00001CA0 /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; - 46EB2E00001CB0 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; - 46EB2E00001CC0 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; - 46EB2E00001CD0 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; - 46EB2E00001CE0 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; - 46EB2E00001CF0 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; - 46EB2E00001D00 /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; - 46EB2E00001D10 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; - 46EB2E00001D20 /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; - 46EB2E00001D30 /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; - 46EB2E00001D40 /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; - 46EB2E00001D50 /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; - 46EB2E00001D60 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; - 46EB2E00001D70 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; - 46EB2E00001D80 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; - 46EB2E00001D90 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; - 46EB2E00001DA0 /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; - 46EB2E00001DB0 /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; - 46EB2E00001DC0 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; - 46EB2E00001DD0 /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; - 46EB2E00001DE0 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; - 46EB2E00001DF0 /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; - 46EB2E00001E00 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; - 46EB2E00001E10 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; - 46EB2E00001E20 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; - 46EB2E00001E30 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; - 46EB2E00001E40 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; - 46EB2E00001E50 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; - 46EB2E00001E60 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; - 46EB2E00001E70 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; - 46EB2E00001E80 /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; - 46EB2E00001E90 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; - 46EB2E00001EA0 /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; - 46EB2E00001EB0 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; - 46EB2E00001EC0 /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; - 46EB2E00001ED0 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; - 46EB2E00001EE0 /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; - 46EB2E00001EF0 /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; - 46EB2E00001F00 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; - 46EB2E00001F10 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; - 46EB2E00001F20 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; - 46EB2E00001F30 /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; - 46EB2E00001F40 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; - 46EB2E00001F50 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; - 46EB2E00001F60 /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; - 46EB2E00001F70 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; - 46EB2E00001F80 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; - 46EB2E00001F90 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; - 46EB2E00001FA0 /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; - 46EB2E00001FB0 /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; - 46EB2E00001FC0 /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; - 46EB2E00001FD0 /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; - 46EB2E00001FE0 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; - 46EB2E00001FF0 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; - 46EB2E00002000 /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; - 46EB2E00002010 /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; - 46EB2E00002020 /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; - 46EB2E00002030 /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; - 46EB2E00002040 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; - 46EB2E00002050 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; - 46EB2E00002060 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; - 46EB2E00002070 /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; - 46EB2E00002080 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = err_data.c; sourceTree = ""; }; - 46EB2E000020A0 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; - 46EB2E000020B0 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; - 46EB2E000020C0 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; - 46EB2E000020D0 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; - 46EB2E000020E0 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; - 46EB2E000020F0 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; - 46EB2E00002100 /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; - 46EB2E00002110 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; - 46EB2E00002120 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; - 46EB2E00002130 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; - 46EB2E00002140 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; - 46EB2E00002150 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; - 46EB2E00002160 /* boringssl_prefix_symbols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = boringssl_prefix_symbols.h; path = src/include/openssl/boringssl_prefix_symbols.h; sourceTree = ""; }; - 46EB2E00002170 /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; - 46EB2E00002180 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; - 46EB2E00002190 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; - 46EB2E000021A0 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; - 46EB2E000021B0 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; - 46EB2E000021C0 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; - 46EB2E000021D0 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; - 46EB2E000021E0 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; - 46EB2E000021F0 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; - 46EB2E00002200 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; - 46EB2E00002210 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; - 46EB2E00002220 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; - 46EB2E00002230 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; - 46EB2E00002240 /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; - 46EB2E00002250 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; - 46EB2E00002260 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; - 46EB2E00002270 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; - 46EB2E00002280 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; - 46EB2E00002290 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; - 46EB2E000022A0 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; - 46EB2E000022B0 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; - 46EB2E000022C0 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; - 46EB2E000022D0 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; - 46EB2E000022E0 /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; - 46EB2E000022F0 /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; - 46EB2E00002300 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; - 46EB2E00002310 /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; - 46EB2E00002320 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; - 46EB2E00002330 /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; - 46EB2E00002340 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; - 46EB2E00002350 /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; - 46EB2E00002360 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; - 46EB2E00002370 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; - 46EB2E00002380 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; - 46EB2E00002390 /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; - 46EB2E000023A0 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; - 46EB2E000023B0 /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; - 46EB2E000023C0 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; - 46EB2E000023D0 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; - 46EB2E000023E0 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; - 46EB2E000023F0 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; - 46EB2E00002400 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; - 46EB2E00002410 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; - 46EB2E00002420 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; - 46EB2E00002430 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; - 46EB2E00002440 /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; - 46EB2E00002450 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; - 46EB2E00002460 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; - 46EB2E00002470 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; - 46EB2E00002480 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; - 46EB2E00002490 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; - 46EB2E000024A0 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; - 46EB2E000024B0 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; - 46EB2E000024C0 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; - 46EB2E000024D0 /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; - 46EB2E000024E0 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; - 46EB2E000024F0 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; - 46EB2E00002500 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; - 46EB2E00002510 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; - 46EB2E00002520 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; - 46EB2E00002530 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; - 46EB2E00002540 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; - 46EB2E00002550 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; - 46EB2E00002560 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; - 46EB2E00002570 /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; - 46EB2E00002580 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; - 46EB2E00002590 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; - 46EB2E000025A0 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; - 46EB2E000025B0 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; - 46EB2E000025C0 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; - 46EB2E000025D0 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; - 46EB2E000025E0 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 46EB2E000025F0 /* CodePush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodePush.h; path = ios/CodePush/CodePush.h; sourceTree = ""; }; - 46EB2E00002600 /* CodePush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePush.m; path = ios/CodePush/CodePush.m; sourceTree = ""; }; - 46EB2E00002610 /* CodePushConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushConfig.m; path = ios/CodePush/CodePushConfig.m; sourceTree = ""; }; - 46EB2E00002620 /* CodePushDownloadHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushDownloadHandler.m; path = ios/CodePush/CodePushDownloadHandler.m; sourceTree = ""; }; - 46EB2E00002630 /* CodePushErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushErrorUtils.m; path = ios/CodePush/CodePushErrorUtils.m; sourceTree = ""; }; - 46EB2E00002640 /* CodePushPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushPackage.m; path = ios/CodePush/CodePushPackage.m; sourceTree = ""; }; - 46EB2E00002650 /* CodePushTelemetryManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushTelemetryManager.m; path = ios/CodePush/CodePushTelemetryManager.m; sourceTree = ""; }; - 46EB2E00002660 /* CodePushUpdateUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushUpdateUtils.m; path = ios/CodePush/CodePushUpdateUtils.m; sourceTree = ""; }; - 46EB2E00002670 /* CodePushUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushUtils.m; path = ios/CodePush/CodePushUtils.m; sourceTree = ""; }; - 46EB2E00002680 /* RCTConvert+CodePushInstallMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushInstallMode.m"; path = "ios/CodePush/RCTConvert+CodePushInstallMode.m"; sourceTree = ""; }; - 46EB2E00002690 /* RCTConvert+CodePushUpdateState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushUpdateState.m"; path = "ios/CodePush/RCTConvert+CodePushUpdateState.m"; sourceTree = ""; }; - 46EB2E000026A0 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 46EB2E000026B0 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 46EB2E000026C0 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 46EB2E000026D0 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 46EB2E000026E0 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 46EB2E000026F0 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 46EB2E00002700 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 46EB2E00002710 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 46EB2E00002720 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 46EB2E00002730 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 46EB2E00002740 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 46EB2E00002750 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 46EB2E00002760 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 46EB2E00002770 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 46EB2E00002780 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 46EB2E00002790 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 46EB2E000027A0 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 46EB2E000027B0 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 46EB2E000027C0 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 46EB2E000027D0 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 46EB2E000027F0 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 46EB2E00002800 /* ABTConditionalUserPropertyController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTConditionalUserPropertyController.h; path = FirebaseABTesting/Sources/ABTConditionalUserPropertyController.h; sourceTree = ""; }; - 46EB2E00002810 /* ABTConditionalUserPropertyController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ABTConditionalUserPropertyController.m; path = FirebaseABTesting/Sources/ABTConditionalUserPropertyController.m; sourceTree = ""; }; - 46EB2E00002820 /* ABTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTConstants.h; path = FirebaseABTesting/Sources/ABTConstants.h; sourceTree = ""; }; - 46EB2E00002830 /* ABTExperimentPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ABTExperimentPayload.m; path = FirebaseABTesting/Sources/ABTExperimentPayload.m; sourceTree = ""; }; - 46EB2E00002840 /* FIRExperimentController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExperimentController.m; path = FirebaseABTesting/Sources/FIRExperimentController.m; sourceTree = ""; }; - 46EB2E00002850 /* FIRLifecycleEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLifecycleEvents.m; path = FirebaseABTesting/Sources/FIRLifecycleEvents.m; sourceTree = ""; }; - 46EB2E00002860 /* ABTExperimentPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTExperimentPayload.h; path = FirebaseABTesting/Sources/Private/ABTExperimentPayload.h; sourceTree = ""; }; - 46EB2E00002870 /* FirebaseABTestingInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTestingInternal.h; path = FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h; sourceTree = ""; }; - 46EB2E00002880 /* FirebaseABTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTesting.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FirebaseABTesting.h; sourceTree = ""; }; - 46EB2E00002890 /* FIRExperimentController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExperimentController.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FIRExperimentController.h; sourceTree = ""; }; - 46EB2E000028A0 /* FIRLifecycleEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLifecycleEvents.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FIRLifecycleEvents.h; sourceTree = ""; }; - 46EB2E000028B0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 46EB2E000028C0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 46EB2E000028D0 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 46EB2E000028E0 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 46EB2E000028F0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00002900 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00002910 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00002920 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00002930 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00002940 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00002950 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00002960 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00002970 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00002980 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00002990 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E000029A0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E000029B0 /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; - 46EB2E000029C0 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; - 46EB2E000029D0 /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; - 46EB2E000029E0 /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; - 46EB2E000029F0 /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; - 46EB2E00002A00 /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; - 46EB2E00002A10 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; - 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; - 46EB2E00002A30 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; - 46EB2E00002A40 /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; - 46EB2E00002A50 /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; - 46EB2E00002A60 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; - 46EB2E00002A70 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; - 46EB2E00002A80 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; - 46EB2E00002A90 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; - 46EB2E00002AA0 /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; - 46EB2E00002AB0 /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; - 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; - 46EB2E00002AD0 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; - 46EB2E00002AE0 /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; - 46EB2E00002AF0 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; - 46EB2E00002B00 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; - 46EB2E00002B10 /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; - 46EB2E00002B20 /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; - 46EB2E00002B30 /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; - 46EB2E00002B40 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; - 46EB2E00002B50 /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; - 46EB2E00002B60 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; - 46EB2E00002B70 /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; - 46EB2E00002B80 /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; - 46EB2E00002B90 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; - 46EB2E00002BA0 /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; - 46EB2E00002BB0 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; - 46EB2E00002BC0 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; - 46EB2E00002BD0 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; - 46EB2E00002BE0 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; - 46EB2E00002BF0 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; - 46EB2E00002C00 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; - 46EB2E00002C10 /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; - 46EB2E00002C20 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; - 46EB2E00002C30 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; - 46EB2E00002C40 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; - 46EB2E00002C50 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; - 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; - 46EB2E00002C70 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; - 46EB2E00002C80 /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; - 46EB2E00002C90 /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; - 46EB2E00002CA0 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; - 46EB2E00002CB0 /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; - 46EB2E00002CC0 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; - 46EB2E00002CD0 /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; - 46EB2E00002CE0 /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; - 46EB2E00002CF0 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; - 46EB2E00002D00 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; - 46EB2E00002D10 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; - 46EB2E00002D20 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; - 46EB2E00002D30 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; - 46EB2E00002D40 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; - 46EB2E00002D50 /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; - 46EB2E00002D60 /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; - 46EB2E00002D70 /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; - 46EB2E00002D80 /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; - 46EB2E00002D90 /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; - 46EB2E00002DA0 /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; - 46EB2E00002DB0 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; - 46EB2E00002DC0 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; - 46EB2E00002DD0 /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; - 46EB2E00002DE0 /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; - 46EB2E00002DF0 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; - 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; - 46EB2E00002E10 /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; - 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; - 46EB2E00002E30 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; - 46EB2E00002E40 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; - 46EB2E00002E50 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; - 46EB2E00002E60 /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; - 46EB2E00002E70 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; - 46EB2E00002E80 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; - 46EB2E00002E90 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; - 46EB2E00002EA0 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; - 46EB2E00002EB0 /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; - 46EB2E00002EC0 /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; - 46EB2E00002ED0 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; - 46EB2E00002EE0 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; - 46EB2E00002EF0 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; - 46EB2E00002F00 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; - 46EB2E00002F10 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; - 46EB2E00002F20 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; - 46EB2E00002F30 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; - 46EB2E00002F40 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; - 46EB2E00002F50 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; - 46EB2E00002F60 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; - 46EB2E00002F70 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; - 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; - 46EB2E00002F90 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; - 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; - 46EB2E00002FB0 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; - 46EB2E00002FC0 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; - 46EB2E00002FD0 /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; - 46EB2E00002FE0 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; - 46EB2E00002FF0 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; - 46EB2E00003000 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; - 46EB2E00003010 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; - 46EB2E00003020 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; - 46EB2E00003030 /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; - 46EB2E00003040 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; - 46EB2E00003050 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; - 46EB2E00003060 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; - 46EB2E00003070 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; - 46EB2E00003080 /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; - 46EB2E00003090 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; - 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; - 46EB2E000030B0 /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; - 46EB2E000030C0 /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; - 46EB2E000030D0 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; - 46EB2E000030E0 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; - 46EB2E000030F0 /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; - 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; - 46EB2E00003110 /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; - 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; - 46EB2E00003130 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; - 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; - 46EB2E00003150 /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; - 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; - 46EB2E00003170 /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; - 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; - 46EB2E00003190 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; - 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; - 46EB2E000031B0 /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; - 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; - 46EB2E000031D0 /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; - 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; - 46EB2E000031F0 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; - 46EB2E00003200 /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; - 46EB2E00003210 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; - 46EB2E00003220 /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; - 46EB2E00003230 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; - 46EB2E00003240 /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; - 46EB2E00003250 /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; - 46EB2E00003260 /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; - 46EB2E00003270 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; - 46EB2E00003280 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; - 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; - 46EB2E000032A0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; - 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; - 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; - 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; - 46EB2E000032E0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; - 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; - 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; - 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; - 46EB2E00003320 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; - 46EB2E00003330 /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; - 46EB2E00003340 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 46EB2E00003350 /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; - 46EB2E00003360 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; - 46EB2E00003370 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 46EB2E00003380 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; - 46EB2E00003390 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; - 46EB2E000033A0 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; - 46EB2E000033B0 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; - 46EB2E000033C0 /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; - 46EB2E000033D0 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; - 46EB2E000033F0 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; - 46EB2E00003400 /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 46EB2E00003410 /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; - 46EB2E00003420 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; - 46EB2E00003430 /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; - 46EB2E00003440 /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; - 46EB2E00003450 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; - 46EB2E00003460 /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; - 46EB2E00003470 /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; - 46EB2E00003480 /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; - 46EB2E00003490 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; - 46EB2E000034A0 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; - 46EB2E000034B0 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; - 46EB2E000034C0 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; - 46EB2E000034D0 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; - 46EB2E000034E0 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; - 46EB2E000034F0 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; - 46EB2E00003500 /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; - 46EB2E00003510 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; - 46EB2E00003520 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; - 46EB2E00003530 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; - 46EB2E00003540 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; - 46EB2E00003550 /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; - 46EB2E00003560 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; - 46EB2E00003570 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; - 46EB2E00003580 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; - 46EB2E00003590 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; - 46EB2E000035A0 /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; - 46EB2E000035B0 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; - 46EB2E000035C0 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; - 46EB2E000035D0 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; - 46EB2E000035E0 /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; - 46EB2E000035F0 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; - 46EB2E00003600 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; - 46EB2E00003610 /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; - 46EB2E00003620 /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; - 46EB2E00003630 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; - 46EB2E00003640 /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; - 46EB2E00003650 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; - 46EB2E00003660 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; - 46EB2E00003670 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; - 46EB2E00003680 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; - 46EB2E00003690 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; - 46EB2E000036A0 /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; - 46EB2E000036B0 /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; - 46EB2E000036C0 /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; - 46EB2E000036D0 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; - 46EB2E000036E0 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; - 46EB2E000036F0 /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; - 46EB2E00003700 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; - 46EB2E00003710 /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; - 46EB2E00003720 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; - 46EB2E00003730 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; - 46EB2E00003740 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; - 46EB2E00003750 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; - 46EB2E00003760 /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; - 46EB2E00003770 /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; - 46EB2E00003780 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; - 46EB2E00003790 /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; - 46EB2E000037A0 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; - 46EB2E000037B0 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; - 46EB2E000037C0 /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; - 46EB2E000037D0 /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; - 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; - 46EB2E000037F0 /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; - 46EB2E00003800 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; - 46EB2E00003810 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; - 46EB2E00003820 /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; - 46EB2E00003830 /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; - 46EB2E00003840 /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; - 46EB2E00003850 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; - 46EB2E00003860 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; - 46EB2E00003870 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; - 46EB2E00003880 /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; - 46EB2E00003890 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; - 46EB2E000038A0 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; - 46EB2E000038B0 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; - 46EB2E000038C0 /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; - 46EB2E000038D0 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; - 46EB2E000038E0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E000038F0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00003900 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00003910 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00003920 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00003930 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00003940 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00003950 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00003960 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00003970 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00003980 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00003990 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E000039A0 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 46EB2E000039B0 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 46EB2E000039C0 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 46EB2E000039D0 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 46EB2E000039E0 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 46EB2E000039F0 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - 46EB2E00003A00 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 46EB2E00003A10 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 46EB2E00003A20 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 46EB2E00003A30 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 46EB2E00003A40 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 46EB2E00003A50 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - 46EB2E00003A60 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 46EB2E00003A70 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - 46EB2E00003A80 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; - 46EB2E00003A90 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 46EB2E00003AA0 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; - 46EB2E00003AB0 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - 46EB2E00003AC0 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - 46EB2E00003AD0 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; - 46EB2E00003AE0 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - 46EB2E00003AF0 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 46EB2E00003B00 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - 46EB2E00003B10 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - 46EB2E00003B20 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - 46EB2E00003B30 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; - 46EB2E00003B40 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - 46EB2E00003B50 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - 46EB2E00003B60 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; - 46EB2E00003B70 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00003B80 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00003B90 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00003BA0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00003BB0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00003BC0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00003BD0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00003BE0 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00003BF0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00003C00 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00003C10 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00003C20 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00003C30 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 46EB2E00003C40 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 46EB2E00003C50 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - 46EB2E00003C60 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 46EB2E00003C70 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; - 46EB2E00003C80 /* FIRCoreDiagnostics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnostics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h; sourceTree = ""; }; - 46EB2E00003C90 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 46EB2E00003CA0 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 46EB2E00003CB0 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseCore/Extension/dummy.m; sourceTree = ""; }; - 46EB2E00003CC0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00003CD0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00003CE0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00003CF0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00003D00 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00003D10 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00003D20 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00003D30 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00003D40 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00003D50 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00003D60 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00003D70 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00003D80 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - 46EB2E00003D90 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - 46EB2E00003DA0 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - 46EB2E00003DB0 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; - 46EB2E00003DC0 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - 46EB2E00003DD0 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; - 46EB2E00003DE0 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 46EB2E00003DF0 /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - 46EB2E00003E00 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - 46EB2E00003E10 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - 46EB2E00003E20 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - 46EB2E00003E30 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; - 46EB2E00003E40 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; - 46EB2E00003E50 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; - 46EB2E00003E60 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; - 46EB2E00003E70 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; - 46EB2E00003E80 /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; - 46EB2E00003E90 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; - 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; - 46EB2E00003EB0 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; - 46EB2E00003EC0 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; - 46EB2E00003ED0 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; - 46EB2E00003EE0 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; - 46EB2E00003EF0 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; - 46EB2E00003F00 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; - 46EB2E00003F10 /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; - 46EB2E00003F20 /* FIRCLSAnalyticsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAnalyticsManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.h; sourceTree = ""; }; - 46EB2E00003F30 /* FIRCLSAnalyticsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAnalyticsManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.m; sourceTree = ""; }; - 46EB2E00003F40 /* FIRCLSExistingReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.h; sourceTree = ""; }; - 46EB2E00003F50 /* FIRCLSExistingReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExistingReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.m; sourceTree = ""; }; - 46EB2E00003F60 /* FIRCLSManagerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSManagerData.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.h; sourceTree = ""; }; - 46EB2E00003F70 /* FIRCLSManagerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSManagerData.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.m; sourceTree = ""; }; - 46EB2E00003F80 /* FIRCLSMetricKitManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMetricKitManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.h; sourceTree = ""; }; - 46EB2E00003F90 /* FIRCLSMetricKitManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMetricKitManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.m; sourceTree = ""; }; - 46EB2E00003FA0 /* FIRCLSNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNotificationManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.h; sourceTree = ""; }; - 46EB2E00003FB0 /* FIRCLSNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNotificationManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.m; sourceTree = ""; }; - 46EB2E00003FC0 /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; - 46EB2E00003FD0 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; - 46EB2E00003FE0 /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; - 46EB2E00003FF0 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; - 46EB2E00004000 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; - 46EB2E00004010 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; - 46EB2E00004020 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; - 46EB2E00004030 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; - 46EB2E00004040 /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; - 46EB2E00004050 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; - 46EB2E00004060 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; - 46EB2E00004070 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; - 46EB2E00004080 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; - 46EB2E00004090 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; - 46EB2E000040A0 /* FIRCrashlyticsReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlyticsReport.m; path = Crashlytics/Crashlytics/FIRCrashlyticsReport.m; sourceTree = ""; }; - 46EB2E000040B0 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; - 46EB2E000040C0 /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; - 46EB2E000040D0 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; - 46EB2E000040E0 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; - 46EB2E000040F0 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; - 46EB2E00004100 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; - 46EB2E00004110 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; - 46EB2E00004120 /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; - 46EB2E00004130 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; - 46EB2E00004140 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; - 46EB2E00004150 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; - 46EB2E00004160 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; - 46EB2E00004170 /* FIRCLSCallStackTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCallStackTree.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.h; sourceTree = ""; }; - 46EB2E00004180 /* FIRCLSCallStackTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCallStackTree.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.m; sourceTree = ""; }; - 46EB2E00004190 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; - 46EB2E000041A0 /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; - 46EB2E000041B0 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; - 46EB2E000041C0 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; - 46EB2E000041D0 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; - 46EB2E000041E0 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; - 46EB2E000041F0 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; - 46EB2E00004200 /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; - 46EB2E00004210 /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; - 46EB2E00004220 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; - 46EB2E00004230 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; - 46EB2E00004240 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; - 46EB2E00004250 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; - 46EB2E00004260 /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; - 46EB2E00004270 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; - 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; - 46EB2E00004290 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; - 46EB2E000042A0 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; - 46EB2E000042B0 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; - 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; - 46EB2E000042D0 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; - 46EB2E000042E0 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; - 46EB2E000042F0 /* FIRCLSLaunchMarkerModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLaunchMarkerModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.h; sourceTree = ""; }; - 46EB2E00004300 /* FIRCLSLaunchMarkerModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLaunchMarkerModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.m; sourceTree = ""; }; - 46EB2E00004310 /* FIRCLSOnDemandModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.h; sourceTree = ""; }; - 46EB2E00004320 /* FIRCLSOnDemandModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnDemandModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.m; sourceTree = ""; }; - 46EB2E00004330 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; - 46EB2E00004340 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; - 46EB2E00004350 /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; - 46EB2E00004360 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; - 46EB2E00004370 /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; - 46EB2E00004380 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; - 46EB2E00004390 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; - 46EB2E000043A0 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; - 46EB2E000043B0 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; - 46EB2E000043C0 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; - 46EB2E000043D0 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; - 46EB2E000043E0 /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; - 46EB2E000043F0 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; - 46EB2E00004400 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; - 46EB2E00004410 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; - 46EB2E00004420 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; - 46EB2E00004430 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; - 46EB2E00004440 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; - 46EB2E00004450 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; - 46EB2E00004460 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; - 46EB2E00004470 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; - 46EB2E00004480 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; - 46EB2E00004490 /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; - 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; - 46EB2E000044B0 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; - 46EB2E000044C0 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - 46EB2E000044D0 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; - 46EB2E000044E0 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; - 46EB2E000044F0 /* FIRCLSExistingReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSExistingReportManager_Private.h; sourceTree = ""; }; - 46EB2E00004500 /* FIRCLSOnDemandModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSOnDemandModel_Private.h; sourceTree = ""; }; - 46EB2E00004510 /* FIRCrashlyticsReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport_Private.h; path = Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h; sourceTree = ""; }; - 46EB2E00004520 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; - 46EB2E00004530 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; - 46EB2E00004540 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlytics.h; sourceTree = ""; }; - 46EB2E00004550 /* FIRCrashlyticsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h; sourceTree = ""; }; - 46EB2E00004560 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FirebaseCrashlytics.h; sourceTree = ""; }; - 46EB2E00004570 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRExceptionModel.h; sourceTree = ""; }; - 46EB2E00004580 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRStackFrame.h; sourceTree = ""; }; - 46EB2E00004590 /* FIRCLSSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.h; sourceTree = ""; }; - 46EB2E000045A0 /* FIRCLSSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.m; sourceTree = ""; }; - 46EB2E000045B0 /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; - 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; - 46EB2E000045D0 /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; - 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; - 46EB2E000045F0 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; - 46EB2E00004600 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; - 46EB2E00004610 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; - 46EB2E00004620 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; - 46EB2E00004630 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; - 46EB2E00004640 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; - 46EB2E00004650 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; - 46EB2E00004660 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; - 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; - 46EB2E00004680 /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; - 46EB2E00004690 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - 46EB2E000046A0 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; - 46EB2E000046B0 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; - 46EB2E000046C0 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; - 46EB2E000046D0 /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; - 46EB2E000046E0 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; - 46EB2E000046F0 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; - 46EB2E00004700 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - 46EB2E00004710 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - 46EB2E00004720 /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 46EB2E00004730 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; - 46EB2E00004740 /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; - 46EB2E00004750 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; - 46EB2E00004760 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; - 46EB2E00004770 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; - 46EB2E00004780 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; - 46EB2E00004790 /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; - 46EB2E000047A0 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; - 46EB2E000047B0 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; - 46EB2E000047C0 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; - 46EB2E000047D0 /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; - 46EB2E000047E0 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; - 46EB2E000047F0 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; - 46EB2E00004800 /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; - 46EB2E00004810 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; - 46EB2E00004820 /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; - 46EB2E00004830 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; - 46EB2E00004840 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; - 46EB2E00004850 /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; - 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; - 46EB2E00004870 /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; - 46EB2E00004880 /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; - 46EB2E00004890 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; - 46EB2E000048A0 /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; - 46EB2E000048B0 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; - 46EB2E000048C0 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; - 46EB2E000048D0 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; - 46EB2E000048E0 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; - 46EB2E000048F0 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; - 46EB2E00004900 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; - 46EB2E00004910 /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; - 46EB2E00004920 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; - 46EB2E00004930 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; - 46EB2E00004940 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00004950 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00004960 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00004970 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00004980 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00004990 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E000049A0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E000049B0 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E000049C0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E000049D0 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E000049E0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E000049F0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00004A00 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 46EB2E00004A10 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 46EB2E00004A20 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 46EB2E00004A30 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 46EB2E00004A40 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 46EB2E00004A50 /* FIRDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabase.m; path = FirebaseDatabase/Sources/Api/FIRDatabase.m; sourceTree = ""; }; - 46EB2E00004A60 /* FIRDatabaseComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseComponent.h; path = FirebaseDatabase/Sources/Api/FIRDatabaseComponent.h; sourceTree = ""; }; - 46EB2E00004A70 /* FIRDatabaseComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseComponent.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseComponent.m; sourceTree = ""; }; - 46EB2E00004A80 /* FIRDatabaseConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConfig.h; path = FirebaseDatabase/Sources/Api/FIRDatabaseConfig.h; sourceTree = ""; }; - 46EB2E00004A90 /* FIRDatabaseConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseConfig.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseConfig.m; sourceTree = ""; }; - 46EB2E00004AA0 /* FIRDatabaseQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseQuery.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseQuery.m; sourceTree = ""; }; - 46EB2E00004AB0 /* FIRDataSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDataSnapshot.m; path = FirebaseDatabase/Sources/Api/FIRDataSnapshot.m; sourceTree = ""; }; - 46EB2E00004AC0 /* FIRMutableData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMutableData.m; path = FirebaseDatabase/Sources/Api/FIRMutableData.m; sourceTree = ""; }; - 46EB2E00004AD0 /* FIRServerValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRServerValue.m; path = FirebaseDatabase/Sources/Api/FIRServerValue.m; sourceTree = ""; }; - 46EB2E00004AE0 /* FIRTransactionResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTransactionResult.m; path = FirebaseDatabase/Sources/Api/FIRTransactionResult.m; sourceTree = ""; }; - 46EB2E00004AF0 /* FIRDatabaseQuery_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQuery_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabaseQuery_Private.h; sourceTree = ""; }; - 46EB2E00004B00 /* FIRDatabaseReference_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseReference_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabaseReference_Private.h; sourceTree = ""; }; - 46EB2E00004B10 /* FIRDatabase_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabase_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabase_Private.h; sourceTree = ""; }; - 46EB2E00004B20 /* FIRDataSnapshot_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataSnapshot_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDataSnapshot_Private.h; sourceTree = ""; }; - 46EB2E00004B30 /* FIRMutableData_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMutableData_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRMutableData_Private.h; sourceTree = ""; }; - 46EB2E00004B40 /* FIRTransactionResult_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionResult_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRTransactionResult_Private.h; sourceTree = ""; }; - 46EB2E00004B50 /* FTypedefs_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTypedefs_Private.h; path = FirebaseDatabase/Sources/Api/Private/FTypedefs_Private.h; sourceTree = ""; }; - 46EB2E00004B60 /* FConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FConstants.h; path = FirebaseDatabase/Sources/Constants/FConstants.h; sourceTree = ""; }; - 46EB2E00004B70 /* FConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FConstants.m; path = FirebaseDatabase/Sources/Constants/FConstants.m; sourceTree = ""; }; - 46EB2E00004B80 /* FCompoundHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompoundHash.h; path = FirebaseDatabase/Sources/Core/FCompoundHash.h; sourceTree = ""; }; - 46EB2E00004B90 /* FCompoundHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCompoundHash.m; path = FirebaseDatabase/Sources/Core/FCompoundHash.m; sourceTree = ""; }; - 46EB2E00004BA0 /* FListenProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FListenProvider.h; path = FirebaseDatabase/Sources/Core/FListenProvider.h; sourceTree = ""; }; - 46EB2E00004BB0 /* FListenProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FListenProvider.m; path = FirebaseDatabase/Sources/Core/FListenProvider.m; sourceTree = ""; }; - 46EB2E00004BC0 /* FPersistentConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPersistentConnection.h; path = FirebaseDatabase/Sources/Core/FPersistentConnection.h; sourceTree = ""; }; - 46EB2E00004BD0 /* FPersistentConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPersistentConnection.m; path = FirebaseDatabase/Sources/Core/FPersistentConnection.m; sourceTree = ""; }; - 46EB2E00004BE0 /* FQueryParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FQueryParams.h; path = FirebaseDatabase/Sources/Core/FQueryParams.h; sourceTree = ""; }; - 46EB2E00004BF0 /* FQueryParams.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FQueryParams.m; path = FirebaseDatabase/Sources/Core/FQueryParams.m; sourceTree = ""; }; - 46EB2E00004C00 /* FQuerySpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FQuerySpec.h; path = FirebaseDatabase/Sources/Core/FQuerySpec.h; sourceTree = ""; }; - 46EB2E00004C10 /* FQuerySpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FQuerySpec.m; path = FirebaseDatabase/Sources/Core/FQuerySpec.m; sourceTree = ""; }; - 46EB2E00004C20 /* FRangeMerge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRangeMerge.h; path = FirebaseDatabase/Sources/Core/FRangeMerge.h; sourceTree = ""; }; - 46EB2E00004C30 /* FRangeMerge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRangeMerge.m; path = FirebaseDatabase/Sources/Core/FRangeMerge.m; sourceTree = ""; }; - 46EB2E00004C40 /* FRepo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepo.h; path = FirebaseDatabase/Sources/Core/FRepo.h; sourceTree = ""; }; - 46EB2E00004C50 /* FRepo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepo.m; path = FirebaseDatabase/Sources/Core/FRepo.m; sourceTree = ""; }; - 46EB2E00004C60 /* FRepoInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepoInfo.h; path = FirebaseDatabase/Sources/Core/FRepoInfo.h; sourceTree = ""; }; - 46EB2E00004C70 /* FRepoInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepoInfo.m; path = FirebaseDatabase/Sources/Core/FRepoInfo.m; sourceTree = ""; }; - 46EB2E00004C80 /* FRepoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepoManager.h; path = FirebaseDatabase/Sources/Core/FRepoManager.h; sourceTree = ""; }; - 46EB2E00004C90 /* FRepoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepoManager.m; path = FirebaseDatabase/Sources/Core/FRepoManager.m; sourceTree = ""; }; - 46EB2E00004CA0 /* FRepo_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepo_Private.h; path = FirebaseDatabase/Sources/Core/FRepo_Private.h; sourceTree = ""; }; - 46EB2E00004CB0 /* FServerValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FServerValues.h; path = FirebaseDatabase/Sources/Core/FServerValues.h; sourceTree = ""; }; - 46EB2E00004CC0 /* FServerValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FServerValues.m; path = FirebaseDatabase/Sources/Core/FServerValues.m; sourceTree = ""; }; - 46EB2E00004CD0 /* FSnapshotHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSnapshotHolder.h; path = FirebaseDatabase/Sources/Core/FSnapshotHolder.h; sourceTree = ""; }; - 46EB2E00004CE0 /* FSnapshotHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSnapshotHolder.m; path = FirebaseDatabase/Sources/Core/FSnapshotHolder.m; sourceTree = ""; }; - 46EB2E00004CF0 /* FSparseSnapshotTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSparseSnapshotTree.h; path = FirebaseDatabase/Sources/Core/FSparseSnapshotTree.h; sourceTree = ""; }; - 46EB2E00004D00 /* FSparseSnapshotTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSparseSnapshotTree.m; path = FirebaseDatabase/Sources/Core/FSparseSnapshotTree.m; sourceTree = ""; }; - 46EB2E00004D10 /* FSyncPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSyncPoint.h; path = FirebaseDatabase/Sources/Core/FSyncPoint.h; sourceTree = ""; }; - 46EB2E00004D20 /* FSyncPoint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSyncPoint.m; path = FirebaseDatabase/Sources/Core/FSyncPoint.m; sourceTree = ""; }; - 46EB2E00004D30 /* FSyncTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSyncTree.h; path = FirebaseDatabase/Sources/Core/FSyncTree.h; sourceTree = ""; }; - 46EB2E00004D40 /* FSyncTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSyncTree.m; path = FirebaseDatabase/Sources/Core/FSyncTree.m; sourceTree = ""; }; - 46EB2E00004D50 /* FWriteRecord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteRecord.h; path = FirebaseDatabase/Sources/Core/FWriteRecord.h; sourceTree = ""; }; - 46EB2E00004D60 /* FWriteRecord.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteRecord.m; path = FirebaseDatabase/Sources/Core/FWriteRecord.m; sourceTree = ""; }; - 46EB2E00004D70 /* FWriteTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteTree.h; path = FirebaseDatabase/Sources/Core/FWriteTree.h; sourceTree = ""; }; - 46EB2E00004D80 /* FWriteTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteTree.m; path = FirebaseDatabase/Sources/Core/FWriteTree.m; sourceTree = ""; }; - 46EB2E00004D90 /* FWriteTreeRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteTreeRef.h; path = FirebaseDatabase/Sources/Core/FWriteTreeRef.h; sourceTree = ""; }; - 46EB2E00004DA0 /* FWriteTreeRef.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteTreeRef.m; path = FirebaseDatabase/Sources/Core/FWriteTreeRef.m; sourceTree = ""; }; - 46EB2E00004DB0 /* FAckUserWrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FAckUserWrite.h; path = FirebaseDatabase/Sources/Core/Operation/FAckUserWrite.h; sourceTree = ""; }; - 46EB2E00004DC0 /* FAckUserWrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FAckUserWrite.m; path = FirebaseDatabase/Sources/Core/Operation/FAckUserWrite.m; sourceTree = ""; }; - 46EB2E00004DD0 /* FMerge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMerge.h; path = FirebaseDatabase/Sources/Core/Operation/FMerge.h; sourceTree = ""; }; - 46EB2E00004DE0 /* FMerge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMerge.m; path = FirebaseDatabase/Sources/Core/Operation/FMerge.m; sourceTree = ""; }; - 46EB2E00004DF0 /* FOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOperation.h; path = FirebaseDatabase/Sources/Core/Operation/FOperation.h; sourceTree = ""; }; - 46EB2E00004E00 /* FOperationSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOperationSource.h; path = FirebaseDatabase/Sources/Core/Operation/FOperationSource.h; sourceTree = ""; }; - 46EB2E00004E10 /* FOperationSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FOperationSource.m; path = FirebaseDatabase/Sources/Core/Operation/FOperationSource.m; sourceTree = ""; }; - 46EB2E00004E20 /* FOverwrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOverwrite.h; path = FirebaseDatabase/Sources/Core/Operation/FOverwrite.h; sourceTree = ""; }; - 46EB2E00004E30 /* FOverwrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FOverwrite.m; path = FirebaseDatabase/Sources/Core/Operation/FOverwrite.m; sourceTree = ""; }; - 46EB2E00004E40 /* FImmutableTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableTree.h; path = FirebaseDatabase/Sources/Core/Utilities/FImmutableTree.h; sourceTree = ""; }; - 46EB2E00004E50 /* FImmutableTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableTree.m; path = FirebaseDatabase/Sources/Core/Utilities/FImmutableTree.m; sourceTree = ""; }; - 46EB2E00004E60 /* FIRRetryHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRetryHelper.h; path = FirebaseDatabase/Sources/Core/Utilities/FIRRetryHelper.h; sourceTree = ""; }; - 46EB2E00004E70 /* FIRRetryHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRetryHelper.m; path = FirebaseDatabase/Sources/Core/Utilities/FIRRetryHelper.m; sourceTree = ""; }; - 46EB2E00004E80 /* FPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPath.h; path = FirebaseDatabase/Sources/Core/Utilities/FPath.h; sourceTree = ""; }; - 46EB2E00004E90 /* FPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPath.m; path = FirebaseDatabase/Sources/Core/Utilities/FPath.m; sourceTree = ""; }; - 46EB2E00004EA0 /* FTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTree.h; path = FirebaseDatabase/Sources/Core/Utilities/FTree.h; sourceTree = ""; }; - 46EB2E00004EB0 /* FTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTree.m; path = FirebaseDatabase/Sources/Core/Utilities/FTree.m; sourceTree = ""; }; - 46EB2E00004EC0 /* FTreeNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeNode.h; path = FirebaseDatabase/Sources/Core/Utilities/FTreeNode.h; sourceTree = ""; }; - 46EB2E00004ED0 /* FTreeNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeNode.m; path = FirebaseDatabase/Sources/Core/Utilities/FTreeNode.m; sourceTree = ""; }; - 46EB2E00004EE0 /* FCacheNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCacheNode.h; path = FirebaseDatabase/Sources/Core/View/FCacheNode.h; sourceTree = ""; }; - 46EB2E00004EF0 /* FCacheNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCacheNode.m; path = FirebaseDatabase/Sources/Core/View/FCacheNode.m; sourceTree = ""; }; - 46EB2E00004F00 /* FCancelEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCancelEvent.h; path = FirebaseDatabase/Sources/Core/View/FCancelEvent.h; sourceTree = ""; }; - 46EB2E00004F10 /* FCancelEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCancelEvent.m; path = FirebaseDatabase/Sources/Core/View/FCancelEvent.m; sourceTree = ""; }; - 46EB2E00004F20 /* FChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChange.h; path = FirebaseDatabase/Sources/Core/View/FChange.h; sourceTree = ""; }; - 46EB2E00004F30 /* FChange.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChange.m; path = FirebaseDatabase/Sources/Core/View/FChange.m; sourceTree = ""; }; - 46EB2E00004F40 /* FChildEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FChildEventRegistration.h; sourceTree = ""; }; - 46EB2E00004F50 /* FChildEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FChildEventRegistration.m; sourceTree = ""; }; - 46EB2E00004F60 /* FDataEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FDataEvent.h; path = FirebaseDatabase/Sources/Core/View/FDataEvent.h; sourceTree = ""; }; - 46EB2E00004F70 /* FDataEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FDataEvent.m; path = FirebaseDatabase/Sources/Core/View/FDataEvent.m; sourceTree = ""; }; - 46EB2E00004F80 /* FEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEvent.h; path = FirebaseDatabase/Sources/Core/View/FEvent.h; sourceTree = ""; }; - 46EB2E00004F90 /* FEventRaiser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventRaiser.h; path = FirebaseDatabase/Sources/Core/View/FEventRaiser.h; sourceTree = ""; }; - 46EB2E00004FA0 /* FEventRaiser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventRaiser.m; path = FirebaseDatabase/Sources/Core/View/FEventRaiser.m; sourceTree = ""; }; - 46EB2E00004FB0 /* FEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FEventRegistration.h; sourceTree = ""; }; - 46EB2E00004FC0 /* FChildChangeAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildChangeAccumulator.h; path = FirebaseDatabase/Sources/Core/View/Filter/FChildChangeAccumulator.h; sourceTree = ""; }; - 46EB2E00004FD0 /* FChildChangeAccumulator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildChangeAccumulator.m; path = FirebaseDatabase/Sources/Core/View/Filter/FChildChangeAccumulator.m; sourceTree = ""; }; - 46EB2E00004FE0 /* FCompleteChildSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompleteChildSource.h; path = FirebaseDatabase/Sources/Core/View/Filter/FCompleteChildSource.h; sourceTree = ""; }; - 46EB2E00004FF0 /* FIndexedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndexedFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FIndexedFilter.h; sourceTree = ""; }; - 46EB2E00005000 /* FIndexedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndexedFilter.m; path = FirebaseDatabase/Sources/Core/View/Filter/FIndexedFilter.m; sourceTree = ""; }; - 46EB2E00005010 /* FLimitedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLimitedFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FLimitedFilter.h; sourceTree = ""; }; - 46EB2E00005020 /* FLimitedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLimitedFilter.m; path = FirebaseDatabase/Sources/Core/View/Filter/FLimitedFilter.m; sourceTree = ""; }; - 46EB2E00005030 /* FNodeFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNodeFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FNodeFilter.h; sourceTree = ""; }; - 46EB2E00005040 /* FKeepSyncedEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKeepSyncedEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FKeepSyncedEventRegistration.h; sourceTree = ""; }; - 46EB2E00005050 /* FKeepSyncedEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKeepSyncedEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FKeepSyncedEventRegistration.m; sourceTree = ""; }; - 46EB2E00005060 /* FValueEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValueEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FValueEventRegistration.h; sourceTree = ""; }; - 46EB2E00005070 /* FValueEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValueEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FValueEventRegistration.m; sourceTree = ""; }; - 46EB2E00005080 /* FView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FView.h; path = FirebaseDatabase/Sources/Core/View/FView.h; sourceTree = ""; }; - 46EB2E00005090 /* FView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FView.m; path = FirebaseDatabase/Sources/Core/View/FView.m; sourceTree = ""; }; - 46EB2E000050A0 /* FViewCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewCache.h; path = FirebaseDatabase/Sources/Core/View/FViewCache.h; sourceTree = ""; }; - 46EB2E000050B0 /* FViewCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewCache.m; path = FirebaseDatabase/Sources/Core/View/FViewCache.m; sourceTree = ""; }; - 46EB2E000050C0 /* FClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FClock.h; path = FirebaseDatabase/Sources/FClock.h; sourceTree = ""; }; - 46EB2E000050D0 /* FClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FClock.m; path = FirebaseDatabase/Sources/FClock.m; sourceTree = ""; }; - 46EB2E000050E0 /* FEventGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventGenerator.h; path = FirebaseDatabase/Sources/FEventGenerator.h; sourceTree = ""; }; - 46EB2E000050F0 /* FEventGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventGenerator.m; path = FirebaseDatabase/Sources/FEventGenerator.m; sourceTree = ""; }; - 46EB2E00005100 /* FIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndex.h; path = FirebaseDatabase/Sources/FIndex.h; sourceTree = ""; }; - 46EB2E00005110 /* FIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndex.m; path = FirebaseDatabase/Sources/FIndex.m; sourceTree = ""; }; - 46EB2E00005120 /* FIRDatabaseConfig_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConfig_Private.h; path = FirebaseDatabase/Sources/FIRDatabaseConfig_Private.h; sourceTree = ""; }; - 46EB2E00005130 /* FIRDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseReference.m; path = FirebaseDatabase/Sources/FIRDatabaseReference.m; sourceTree = ""; }; - 46EB2E00005140 /* FKeyIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKeyIndex.h; path = FirebaseDatabase/Sources/FKeyIndex.h; sourceTree = ""; }; - 46EB2E00005150 /* FKeyIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKeyIndex.m; path = FirebaseDatabase/Sources/FKeyIndex.m; sourceTree = ""; }; - 46EB2E00005160 /* FListenComplete.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FListenComplete.h; path = FirebaseDatabase/Sources/FListenComplete.h; sourceTree = ""; }; - 46EB2E00005170 /* FListenComplete.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FListenComplete.m; path = FirebaseDatabase/Sources/FListenComplete.m; sourceTree = ""; }; - 46EB2E00005180 /* FMaxNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMaxNode.h; path = FirebaseDatabase/Sources/FMaxNode.h; sourceTree = ""; }; - 46EB2E00005190 /* FMaxNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMaxNode.m; path = FirebaseDatabase/Sources/FMaxNode.m; sourceTree = ""; }; - 46EB2E000051A0 /* FNamedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNamedNode.h; path = FirebaseDatabase/Sources/FNamedNode.h; sourceTree = ""; }; - 46EB2E000051B0 /* FNamedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FNamedNode.m; path = FirebaseDatabase/Sources/FNamedNode.m; sourceTree = ""; }; - 46EB2E000051C0 /* FPathIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPathIndex.h; path = FirebaseDatabase/Sources/FPathIndex.h; sourceTree = ""; }; - 46EB2E000051D0 /* FPathIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPathIndex.m; path = FirebaseDatabase/Sources/FPathIndex.m; sourceTree = ""; }; - 46EB2E000051E0 /* FPriorityIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPriorityIndex.h; path = FirebaseDatabase/Sources/FPriorityIndex.h; sourceTree = ""; }; - 46EB2E000051F0 /* FPriorityIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPriorityIndex.m; path = FirebaseDatabase/Sources/FPriorityIndex.m; sourceTree = ""; }; - 46EB2E00005200 /* FRangedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRangedFilter.h; path = FirebaseDatabase/Sources/FRangedFilter.h; sourceTree = ""; }; - 46EB2E00005210 /* FRangedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRangedFilter.m; path = FirebaseDatabase/Sources/FRangedFilter.m; sourceTree = ""; }; - 46EB2E00005220 /* FTransformedEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTransformedEnumerator.h; path = FirebaseDatabase/Sources/FTransformedEnumerator.h; sourceTree = ""; }; - 46EB2E00005230 /* FTransformedEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTransformedEnumerator.m; path = FirebaseDatabase/Sources/FTransformedEnumerator.m; sourceTree = ""; }; - 46EB2E00005240 /* FValueIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValueIndex.h; path = FirebaseDatabase/Sources/FValueIndex.h; sourceTree = ""; }; - 46EB2E00005250 /* FValueIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValueIndex.m; path = FirebaseDatabase/Sources/FValueIndex.m; sourceTree = ""; }; - 46EB2E00005260 /* FViewProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewProcessor.h; path = FirebaseDatabase/Sources/FViewProcessor.h; sourceTree = ""; }; - 46EB2E00005270 /* FViewProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewProcessor.m; path = FirebaseDatabase/Sources/FViewProcessor.m; sourceTree = ""; }; - 46EB2E00005280 /* FViewProcessorResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewProcessorResult.h; path = FirebaseDatabase/Sources/FViewProcessorResult.h; sourceTree = ""; }; - 46EB2E00005290 /* FViewProcessorResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewProcessorResult.m; path = FirebaseDatabase/Sources/FViewProcessorResult.m; sourceTree = ""; }; - 46EB2E000052A0 /* FIRDatabaseConnectionContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConnectionContextProvider.h; path = FirebaseDatabase/Sources/Login/FIRDatabaseConnectionContextProvider.h; sourceTree = ""; }; - 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseConnectionContextProvider.m; path = FirebaseDatabase/Sources/Login/FIRDatabaseConnectionContextProvider.m; sourceTree = ""; }; - 46EB2E000052C0 /* FCachePolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCachePolicy.h; path = FirebaseDatabase/Sources/Persistence/FCachePolicy.h; sourceTree = ""; }; - 46EB2E000052D0 /* FCachePolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCachePolicy.m; path = FirebaseDatabase/Sources/Persistence/FCachePolicy.m; sourceTree = ""; }; - 46EB2E000052E0 /* FLevelDBStorageEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLevelDBStorageEngine.h; path = FirebaseDatabase/Sources/Persistence/FLevelDBStorageEngine.h; sourceTree = ""; }; - 46EB2E000052F0 /* FLevelDBStorageEngine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLevelDBStorageEngine.m; path = FirebaseDatabase/Sources/Persistence/FLevelDBStorageEngine.m; sourceTree = ""; }; - 46EB2E00005300 /* FPendingPut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPendingPut.h; path = FirebaseDatabase/Sources/Persistence/FPendingPut.h; sourceTree = ""; }; - 46EB2E00005310 /* FPendingPut.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPendingPut.m; path = FirebaseDatabase/Sources/Persistence/FPendingPut.m; sourceTree = ""; }; - 46EB2E00005320 /* FPersistenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPersistenceManager.h; path = FirebaseDatabase/Sources/Persistence/FPersistenceManager.h; sourceTree = ""; }; - 46EB2E00005330 /* FPersistenceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPersistenceManager.m; path = FirebaseDatabase/Sources/Persistence/FPersistenceManager.m; sourceTree = ""; }; - 46EB2E00005340 /* FPruneForest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPruneForest.h; path = FirebaseDatabase/Sources/Persistence/FPruneForest.h; sourceTree = ""; }; - 46EB2E00005350 /* FPruneForest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPruneForest.m; path = FirebaseDatabase/Sources/Persistence/FPruneForest.m; sourceTree = ""; }; - 46EB2E00005360 /* FStorageEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FStorageEngine.h; path = FirebaseDatabase/Sources/Persistence/FStorageEngine.h; sourceTree = ""; }; - 46EB2E00005370 /* FTrackedQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTrackedQuery.h; path = FirebaseDatabase/Sources/Persistence/FTrackedQuery.h; sourceTree = ""; }; - 46EB2E00005380 /* FTrackedQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTrackedQuery.m; path = FirebaseDatabase/Sources/Persistence/FTrackedQuery.m; sourceTree = ""; }; - 46EB2E00005390 /* FTrackedQueryManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTrackedQueryManager.h; path = FirebaseDatabase/Sources/Persistence/FTrackedQueryManager.h; sourceTree = ""; }; - 46EB2E000053A0 /* FTrackedQueryManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTrackedQueryManager.m; path = FirebaseDatabase/Sources/Persistence/FTrackedQueryManager.m; sourceTree = ""; }; - 46EB2E000053B0 /* FIRDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabase.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabase.h; sourceTree = ""; }; - 46EB2E000053C0 /* FIRDatabaseQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQuery.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabaseQuery.h; sourceTree = ""; }; - 46EB2E000053D0 /* FIRDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseReference.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabaseReference.h; sourceTree = ""; }; - 46EB2E000053E0 /* FIRDataEventType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataEventType.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDataEventType.h; sourceTree = ""; }; - 46EB2E000053F0 /* FIRDataSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataSnapshot.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDataSnapshot.h; sourceTree = ""; }; - 46EB2E00005400 /* FirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseDatabase.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FirebaseDatabase.h; sourceTree = ""; }; - 46EB2E00005410 /* FIRMutableData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMutableData.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRMutableData.h; sourceTree = ""; }; - 46EB2E00005420 /* FIRServerValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRServerValue.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRServerValue.h; sourceTree = ""; }; - 46EB2E00005430 /* FIRTransactionResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionResult.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRTransactionResult.h; sourceTree = ""; }; - 46EB2E00005440 /* FConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FConnection.h; path = FirebaseDatabase/Sources/Realtime/FConnection.h; sourceTree = ""; }; - 46EB2E00005450 /* FConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FConnection.m; path = FirebaseDatabase/Sources/Realtime/FConnection.m; sourceTree = ""; }; - 46EB2E00005460 /* FWebSocketConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWebSocketConnection.h; path = FirebaseDatabase/Sources/Realtime/FWebSocketConnection.h; sourceTree = ""; }; - 46EB2E00005470 /* FWebSocketConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWebSocketConnection.m; path = FirebaseDatabase/Sources/Realtime/FWebSocketConnection.m; sourceTree = ""; }; - 46EB2E00005480 /* FChildrenNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildrenNode.h; path = FirebaseDatabase/Sources/Snapshot/FChildrenNode.h; sourceTree = ""; }; - 46EB2E00005490 /* FChildrenNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildrenNode.m; path = FirebaseDatabase/Sources/Snapshot/FChildrenNode.m; sourceTree = ""; }; - 46EB2E000054A0 /* FCompoundWrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompoundWrite.h; path = FirebaseDatabase/Sources/Snapshot/FCompoundWrite.h; sourceTree = ""; }; - 46EB2E000054B0 /* FCompoundWrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCompoundWrite.m; path = FirebaseDatabase/Sources/Snapshot/FCompoundWrite.m; sourceTree = ""; }; - 46EB2E000054C0 /* FEmptyNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEmptyNode.h; path = FirebaseDatabase/Sources/Snapshot/FEmptyNode.h; sourceTree = ""; }; - 46EB2E000054D0 /* FEmptyNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEmptyNode.m; path = FirebaseDatabase/Sources/Snapshot/FEmptyNode.m; sourceTree = ""; }; - 46EB2E000054E0 /* FIndexedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndexedNode.h; path = FirebaseDatabase/Sources/Snapshot/FIndexedNode.h; sourceTree = ""; }; - 46EB2E000054F0 /* FIndexedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndexedNode.m; path = FirebaseDatabase/Sources/Snapshot/FIndexedNode.m; sourceTree = ""; }; - 46EB2E00005500 /* FLeafNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLeafNode.h; path = FirebaseDatabase/Sources/Snapshot/FLeafNode.h; sourceTree = ""; }; - 46EB2E00005510 /* FLeafNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLeafNode.m; path = FirebaseDatabase/Sources/Snapshot/FLeafNode.m; sourceTree = ""; }; - 46EB2E00005520 /* FNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNode.h; path = FirebaseDatabase/Sources/Snapshot/FNode.h; sourceTree = ""; }; - 46EB2E00005530 /* FSnapshotUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSnapshotUtilities.h; path = FirebaseDatabase/Sources/Snapshot/FSnapshotUtilities.h; sourceTree = ""; }; - 46EB2E00005540 /* FSnapshotUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSnapshotUtilities.m; path = FirebaseDatabase/Sources/Snapshot/FSnapshotUtilities.m; sourceTree = ""; }; - 46EB2E00005550 /* FArraySortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FArraySortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FArraySortedDictionary.h; sourceTree = ""; }; - 46EB2E00005560 /* FArraySortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FArraySortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FArraySortedDictionary.m; sourceTree = ""; }; - 46EB2E00005570 /* FImmutableSortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableSortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedDictionary.h; sourceTree = ""; }; - 46EB2E00005580 /* FImmutableSortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableSortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedDictionary.m; sourceTree = ""; }; - 46EB2E00005590 /* FImmutableSortedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableSortedSet.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedSet.h; sourceTree = ""; }; - 46EB2E000055A0 /* FImmutableSortedSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableSortedSet.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedSet.m; sourceTree = ""; }; - 46EB2E000055B0 /* FLLRBEmptyNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBEmptyNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBEmptyNode.h; sourceTree = ""; }; - 46EB2E000055C0 /* FLLRBEmptyNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLLRBEmptyNode.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBEmptyNode.m; sourceTree = ""; }; - 46EB2E000055D0 /* FLLRBNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBNode.h; sourceTree = ""; }; - 46EB2E000055E0 /* FLLRBValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBValueNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBValueNode.h; sourceTree = ""; }; - 46EB2E000055F0 /* FLLRBValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLLRBValueNode.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBValueNode.m; sourceTree = ""; }; - 46EB2E00005600 /* FTreeSortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeSortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionary.h; sourceTree = ""; }; - 46EB2E00005610 /* FTreeSortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeSortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionary.m; sourceTree = ""; }; - 46EB2E00005620 /* FTreeSortedDictionaryEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeSortedDictionaryEnumerator.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionaryEnumerator.h; sourceTree = ""; }; - 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeSortedDictionaryEnumerator.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionaryEnumerator.m; sourceTree = ""; }; - 46EB2E00005640 /* fbase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fbase64.h; path = FirebaseDatabase/Sources/third_party/SocketRocket/fbase64.h; sourceTree = ""; }; - 46EB2E00005650 /* FSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSRWebSocket.h; path = FirebaseDatabase/Sources/third_party/SocketRocket/FSRWebSocket.h; sourceTree = ""; }; - 46EB2E00005660 /* FSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSRWebSocket.m; path = FirebaseDatabase/Sources/third_party/SocketRocket/FSRWebSocket.m; sourceTree = ""; }; - 46EB2E00005670 /* NSData+SRB64Additions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+SRB64Additions.h"; path = "FirebaseDatabase/Sources/third_party/SocketRocket/NSData+SRB64Additions.h"; sourceTree = ""; }; - 46EB2E00005680 /* NSData+SRB64Additions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+SRB64Additions.m"; path = "FirebaseDatabase/Sources/third_party/SocketRocket/NSData+SRB64Additions.m"; sourceTree = ""; }; - 46EB2E00005690 /* APLevelDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APLevelDB.h; path = "FirebaseDatabase/Sources/third_party/Wrap-leveldb/APLevelDB.h"; sourceTree = ""; }; - 46EB2E000056A0 /* FAtomicNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FAtomicNumber.h; path = FirebaseDatabase/Sources/Utilities/FAtomicNumber.h; sourceTree = ""; }; - 46EB2E000056B0 /* FAtomicNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FAtomicNumber.m; path = FirebaseDatabase/Sources/Utilities/FAtomicNumber.m; sourceTree = ""; }; - 46EB2E000056C0 /* FEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventEmitter.h; path = FirebaseDatabase/Sources/Utilities/FEventEmitter.h; sourceTree = ""; }; - 46EB2E000056D0 /* FEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventEmitter.m; path = FirebaseDatabase/Sources/Utilities/FEventEmitter.m; sourceTree = ""; }; - 46EB2E000056E0 /* FNextPushId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNextPushId.h; path = FirebaseDatabase/Sources/Utilities/FNextPushId.h; sourceTree = ""; }; - 46EB2E000056F0 /* FNextPushId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FNextPushId.m; path = FirebaseDatabase/Sources/Utilities/FNextPushId.m; sourceTree = ""; }; - 46EB2E00005700 /* FParsedUrl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FParsedUrl.h; path = FirebaseDatabase/Sources/Utilities/FParsedUrl.h; sourceTree = ""; }; - 46EB2E00005710 /* FParsedUrl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FParsedUrl.m; path = FirebaseDatabase/Sources/Utilities/FParsedUrl.m; sourceTree = ""; }; - 46EB2E00005720 /* FStringUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FStringUtilities.h; path = FirebaseDatabase/Sources/Utilities/FStringUtilities.h; sourceTree = ""; }; - 46EB2E00005730 /* FStringUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FStringUtilities.m; path = FirebaseDatabase/Sources/Utilities/FStringUtilities.m; sourceTree = ""; }; - 46EB2E00005740 /* FTypedefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTypedefs.h; path = FirebaseDatabase/Sources/Utilities/FTypedefs.h; sourceTree = ""; }; - 46EB2E00005750 /* FUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FUtilities.h; path = FirebaseDatabase/Sources/Utilities/FUtilities.h; sourceTree = ""; }; - 46EB2E00005760 /* FUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FUtilities.m; path = FirebaseDatabase/Sources/Utilities/FUtilities.m; sourceTree = ""; }; - 46EB2E00005770 /* FValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValidation.h; path = FirebaseDatabase/Sources/Utilities/FValidation.h; sourceTree = ""; }; - 46EB2E00005780 /* FValidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValidation.m; path = FirebaseDatabase/Sources/Utilities/FValidation.m; sourceTree = ""; }; - 46EB2E00005790 /* FTupleBoolBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleBoolBlock.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleBoolBlock.h; sourceTree = ""; }; - 46EB2E000057A0 /* FTupleBoolBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleBoolBlock.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleBoolBlock.m; sourceTree = ""; }; - 46EB2E000057B0 /* FTupleCallbackStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleCallbackStatus.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleCallbackStatus.h; sourceTree = ""; }; - 46EB2E000057C0 /* FTupleCallbackStatus.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleCallbackStatus.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleCallbackStatus.m; sourceTree = ""; }; - 46EB2E000057D0 /* FTupleFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleFirebase.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleFirebase.h; sourceTree = ""; }; - 46EB2E000057E0 /* FTupleFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleFirebase.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleFirebase.m; sourceTree = ""; }; - 46EB2E000057F0 /* FTupleNodePath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleNodePath.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleNodePath.h; sourceTree = ""; }; - 46EB2E00005800 /* FTupleNodePath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleNodePath.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleNodePath.m; sourceTree = ""; }; - 46EB2E00005810 /* FTupleObjectNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleObjectNode.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjectNode.h; sourceTree = ""; }; - 46EB2E00005820 /* FTupleObjectNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleObjectNode.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjectNode.m; sourceTree = ""; }; - 46EB2E00005830 /* FTupleObjects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleObjects.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjects.h; sourceTree = ""; }; - 46EB2E00005840 /* FTupleObjects.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleObjects.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjects.m; sourceTree = ""; }; - 46EB2E00005850 /* FTupleOnDisconnect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleOnDisconnect.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleOnDisconnect.h; sourceTree = ""; }; - 46EB2E00005860 /* FTupleOnDisconnect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleOnDisconnect.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleOnDisconnect.m; sourceTree = ""; }; - 46EB2E00005870 /* FTuplePathValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTuplePathValue.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTuplePathValue.h; sourceTree = ""; }; - 46EB2E00005880 /* FTuplePathValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTuplePathValue.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTuplePathValue.m; sourceTree = ""; }; - 46EB2E00005890 /* FTupleRemovedQueriesEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleRemovedQueriesEvents.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleRemovedQueriesEvents.h; sourceTree = ""; }; - 46EB2E000058A0 /* FTupleRemovedQueriesEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleRemovedQueriesEvents.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleRemovedQueriesEvents.m; sourceTree = ""; }; - 46EB2E000058B0 /* FTupleSetIdPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleSetIdPath.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleSetIdPath.h; sourceTree = ""; }; - 46EB2E000058C0 /* FTupleSetIdPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleSetIdPath.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleSetIdPath.m; sourceTree = ""; }; - 46EB2E000058D0 /* FTupleStringNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleStringNode.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleStringNode.h; sourceTree = ""; }; - 46EB2E000058E0 /* FTupleStringNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleStringNode.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleStringNode.m; sourceTree = ""; }; - 46EB2E000058F0 /* FTupleTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleTransaction.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTransaction.h; sourceTree = ""; }; - 46EB2E00005900 /* FTupleTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleTransaction.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTransaction.m; sourceTree = ""; }; - 46EB2E00005910 /* FTupleTSN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleTSN.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTSN.h; sourceTree = ""; }; - 46EB2E00005920 /* FTupleTSN.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleTSN.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTSN.m; sourceTree = ""; }; - 46EB2E00005930 /* FTupleUserCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleUserCallback.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleUserCallback.h; sourceTree = ""; }; - 46EB2E00005940 /* FTupleUserCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleUserCallback.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleUserCallback.m; sourceTree = ""; }; - 46EB2E00005950 /* APLevelDB.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = APLevelDB.mm; path = "FirebaseDatabase/Sources/third_party/Wrap-leveldb/APLevelDB.mm"; sourceTree = ""; }; - 46EB2E00005960 /* fbase64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fbase64.c; path = FirebaseDatabase/Sources/third_party/SocketRocket/fbase64.c; sourceTree = ""; }; - 46EB2E00005970 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 46EB2E00005980 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - 46EB2E00005990 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 46EB2E000059A0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E000059B0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E000059C0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E000059D0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E000059E0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E000059F0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00005A00 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00005A10 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00005A20 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00005A30 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00005A40 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00005A50 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00005A60 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - 46EB2E00005A70 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 46EB2E00005A80 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00005A90 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00005AA0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00005AB0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00005AC0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00005AD0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00005AE0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00005AF0 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00005B00 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00005B10 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00005B20 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00005B30 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00005B40 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - 46EB2E00005B50 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; - 46EB2E00005B60 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - 46EB2E00005B70 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; - 46EB2E00005B80 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; - 46EB2E00005B90 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - 46EB2E00005BA0 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; - 46EB2E00005BB0 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 46EB2E00005BC0 /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 46EB2E00005BD0 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - 46EB2E00005BE0 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; - 46EB2E00005BF0 /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; - 46EB2E00005C00 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; - 46EB2E00005C10 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; - 46EB2E00005C20 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; - 46EB2E00005C30 /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; - 46EB2E00005C40 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; - 46EB2E00005C50 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; - 46EB2E00005C60 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; - 46EB2E00005C70 /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; - 46EB2E00005C80 /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; - 46EB2E00005C90 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; - 46EB2E00005CA0 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; - 46EB2E00005CB0 /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; - 46EB2E00005CC0 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; - 46EB2E00005CD0 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; - 46EB2E00005CE0 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; - 46EB2E00005CF0 /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; - 46EB2E00005D00 /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; - 46EB2E00005D10 /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; - 46EB2E00005D20 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; - 46EB2E00005D30 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; - 46EB2E00005D40 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; - 46EB2E00005D50 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; - 46EB2E00005D60 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; - 46EB2E00005D70 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; - 46EB2E00005D80 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; - 46EB2E00005D90 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; - 46EB2E00005DA0 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; - 46EB2E00005DB0 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; - 46EB2E00005DC0 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; - 46EB2E00005DD0 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; - 46EB2E00005DE0 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; - 46EB2E00005DF0 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; - 46EB2E00005E00 /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; - 46EB2E00005E10 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; - 46EB2E00005E20 /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E30 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E40 /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E50 /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E60 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E70 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E80 /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; - 46EB2E00005E90 /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; - 46EB2E00005EA0 /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; - 46EB2E00005EB0 /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; - 46EB2E00005EC0 /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; - 46EB2E00005ED0 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; - 46EB2E00005EE0 /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; - 46EB2E00005EF0 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F00 /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F10 /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F20 /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F30 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F40 /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F50 /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; - 46EB2E00005F60 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; - 46EB2E00005F70 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; - 46EB2E00005F80 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; - 46EB2E00005F90 /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; - 46EB2E00005FA0 /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; - 46EB2E00005FB0 /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; - 46EB2E00005FC0 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; - 46EB2E00005FD0 /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; - 46EB2E00005FE0 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; - 46EB2E00005FF0 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; - 46EB2E00006000 /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; - 46EB2E00006010 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; - 46EB2E00006020 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; - 46EB2E00006030 /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; - 46EB2E00006040 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; - 46EB2E00006050 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; - 46EB2E00006060 /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; - 46EB2E00006070 /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; - 46EB2E00006080 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; - 46EB2E00006090 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; - 46EB2E000060A0 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; - 46EB2E000060B0 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; - 46EB2E000060C0 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; - 46EB2E000060D0 /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; - 46EB2E000060E0 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; - 46EB2E000060F0 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; - 46EB2E00006100 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; - 46EB2E00006110 /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; - 46EB2E00006120 /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; - 46EB2E00006130 /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; - 46EB2E00006140 /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; - 46EB2E00006150 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; - 46EB2E00006160 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; - 46EB2E00006170 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; - 46EB2E00006180 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; - 46EB2E00006190 /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; - 46EB2E000061A0 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; - 46EB2E000061B0 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; - 46EB2E000061C0 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; - 46EB2E000061D0 /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; - 46EB2E000061E0 /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; - 46EB2E000061F0 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; - 46EB2E00006200 /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; - 46EB2E00006210 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; - 46EB2E00006220 /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; - 46EB2E00006230 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; - 46EB2E00006240 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; - 46EB2E00006250 /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; - 46EB2E00006260 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; - 46EB2E00006270 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; - 46EB2E00006280 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; - 46EB2E00006290 /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; - 46EB2E000062A0 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; - 46EB2E000062B0 /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; - 46EB2E000062C0 /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; - 46EB2E000062D0 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; - 46EB2E000062E0 /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; - 46EB2E000062F0 /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; - 46EB2E00006300 /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; - 46EB2E00006310 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; - 46EB2E00006320 /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; - 46EB2E00006330 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; - 46EB2E00006340 /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; - 46EB2E00006350 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; - 46EB2E00006360 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; - 46EB2E00006370 /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; - 46EB2E00006380 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; - 46EB2E00006390 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; - 46EB2E000063A0 /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; - 46EB2E000063B0 /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; - 46EB2E000063C0 /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; - 46EB2E000063D0 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; - 46EB2E000063E0 /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; - 46EB2E000063F0 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; - 46EB2E00006400 /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; - 46EB2E00006410 /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; - 46EB2E00006420 /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; - 46EB2E00006430 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; - 46EB2E00006440 /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; - 46EB2E00006450 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; - 46EB2E00006460 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; - 46EB2E00006470 /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; - 46EB2E00006480 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; - 46EB2E00006490 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; - 46EB2E000064A0 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; - 46EB2E000064B0 /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; - 46EB2E000064C0 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; - 46EB2E000064D0 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; - 46EB2E000064E0 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; - 46EB2E000064F0 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; - 46EB2E00006500 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; - 46EB2E00006510 /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; - 46EB2E00006520 /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; - 46EB2E00006530 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; - 46EB2E00006540 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; - 46EB2E00006550 /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; - 46EB2E00006560 /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; - 46EB2E00006570 /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; - 46EB2E00006580 /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; - 46EB2E00006590 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; - 46EB2E000065A0 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; - 46EB2E000065B0 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; - 46EB2E000065C0 /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; - 46EB2E000065D0 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; - 46EB2E000065E0 /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; - 46EB2E000065F0 /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; - 46EB2E00006600 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; - 46EB2E00006610 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; - 46EB2E00006620 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; - 46EB2E00006630 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; - 46EB2E00006640 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; - 46EB2E00006650 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; - 46EB2E00006660 /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; - 46EB2E00006670 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; - 46EB2E00006680 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; - 46EB2E00006690 /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; - 46EB2E000066A0 /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; - 46EB2E000066B0 /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; - 46EB2E000066C0 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; - 46EB2E000066D0 /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; - 46EB2E000066E0 /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; - 46EB2E000066F0 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; - 46EB2E00006700 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; - 46EB2E00006710 /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; - 46EB2E00006720 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; - 46EB2E00006730 /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; - 46EB2E00006740 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; - 46EB2E00006750 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; - 46EB2E00006760 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; - 46EB2E00006770 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; - 46EB2E00006780 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; - 46EB2E00006790 /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; - 46EB2E000067A0 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; - 46EB2E000067B0 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; - 46EB2E000067C0 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; - 46EB2E000067D0 /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; - 46EB2E000067E0 /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; - 46EB2E000067F0 /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; - 46EB2E00006800 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; - 46EB2E00006810 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; - 46EB2E00006820 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; - 46EB2E00006830 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; - 46EB2E00006840 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; - 46EB2E00006850 /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; - 46EB2E00006860 /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; - 46EB2E00006870 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; - 46EB2E00006880 /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; - 46EB2E00006890 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; - 46EB2E000068A0 /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; - 46EB2E000068B0 /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; - 46EB2E000068C0 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; - 46EB2E000068D0 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; - 46EB2E000068E0 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; - 46EB2E000068F0 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; - 46EB2E00006900 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; - 46EB2E00006910 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; - 46EB2E00006920 /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; - 46EB2E00006930 /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; - 46EB2E00006940 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; - 46EB2E00006950 /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; - 46EB2E00006960 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; - 46EB2E00006970 /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; - 46EB2E00006980 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; - 46EB2E00006990 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; - 46EB2E000069A0 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; - 46EB2E000069B0 /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; - 46EB2E000069C0 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; - 46EB2E000069D0 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; - 46EB2E000069E0 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; - 46EB2E000069F0 /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; - 46EB2E00006A00 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; - 46EB2E00006A10 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; - 46EB2E00006A20 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; - 46EB2E00006A30 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; - 46EB2E00006A40 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 46EB2E00006A50 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - 46EB2E00006A60 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 46EB2E00006A70 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; - 46EB2E00006A80 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 46EB2E00006A90 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - 46EB2E00006AA0 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; - 46EB2E00006AB0 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - 46EB2E00006AC0 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - 46EB2E00006AD0 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 46EB2E00006AE0 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 46EB2E00006AF0 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 46EB2E00006B00 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 46EB2E00006B10 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; - 46EB2E00006B20 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - 46EB2E00006B40 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - 46EB2E00006B50 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 46EB2E00006B60 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - 46EB2E00006B80 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; - 46EB2E00006B90 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; - 46EB2E00006BA0 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; - 46EB2E00006BB0 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; - 46EB2E00006BC0 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 46EB2E00006BD0 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - 46EB2E00006BE0 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 46EB2E00006C00 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - 46EB2E00006C10 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - 46EB2E00006C20 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 46EB2E00006C30 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 46EB2E00006C50 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 46EB2E00006C60 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - 46EB2E00006C70 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 46EB2E00006C80 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; - 46EB2E00006C90 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; - 46EB2E00006CA0 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 46EB2E00006CB0 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; - 46EB2E00006CC0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00006CD0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00006CE0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00006CF0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00006D00 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00006D10 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00006D20 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00006D30 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00006D40 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00006D50 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00006D60 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E00006D70 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E00006D80 /* FirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseMessaging.h; path = FirebaseMessaging/Sources/FirebaseMessaging.h; sourceTree = ""; }; - 46EB2E00006D90 /* FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessaging.m; path = FirebaseMessaging/Sources/FIRMessaging.m; sourceTree = ""; }; - 46EB2E00006DA0 /* FIRMessagingAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAnalytics.h; path = FirebaseMessaging/Sources/FIRMessagingAnalytics.h; sourceTree = ""; }; - 46EB2E00006DB0 /* FIRMessagingAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAnalytics.m; path = FirebaseMessaging/Sources/FIRMessagingAnalytics.m; sourceTree = ""; }; - 46EB2E00006DC0 /* FIRMessagingCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCode.h; path = FirebaseMessaging/Sources/FIRMessagingCode.h; sourceTree = ""; }; - 46EB2E00006DD0 /* FIRMessagingConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingConstants.h; path = FirebaseMessaging/Sources/FIRMessagingConstants.h; sourceTree = ""; }; - 46EB2E00006DE0 /* FIRMessagingConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingConstants.m; path = FirebaseMessaging/Sources/FIRMessagingConstants.m; sourceTree = ""; }; - 46EB2E00006DF0 /* FIRMessagingContextManagerService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingContextManagerService.h; path = FirebaseMessaging/Sources/FIRMessagingContextManagerService.h; sourceTree = ""; }; - 46EB2E00006E00 /* FIRMessagingContextManagerService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingContextManagerService.m; path = FirebaseMessaging/Sources/FIRMessagingContextManagerService.m; sourceTree = ""; }; - 46EB2E00006E10 /* FIRMessagingDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingDefines.h; path = FirebaseMessaging/Sources/FIRMessagingDefines.h; sourceTree = ""; }; - 46EB2E00006E20 /* FIRMessagingExtensionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingExtensionHelper.m; path = FirebaseMessaging/Sources/FIRMessagingExtensionHelper.m; sourceTree = ""; }; - 46EB2E00006E30 /* FIRMessagingLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingLogger.h; path = FirebaseMessaging/Sources/FIRMessagingLogger.h; sourceTree = ""; }; - 46EB2E00006E40 /* FIRMessagingLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingLogger.m; path = FirebaseMessaging/Sources/FIRMessagingLogger.m; sourceTree = ""; }; - 46EB2E00006E50 /* FIRMessagingPendingTopicsList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPendingTopicsList.h; path = FirebaseMessaging/Sources/FIRMessagingPendingTopicsList.h; sourceTree = ""; }; - 46EB2E00006E60 /* FIRMessagingPendingTopicsList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPendingTopicsList.m; path = FirebaseMessaging/Sources/FIRMessagingPendingTopicsList.m; sourceTree = ""; }; - 46EB2E00006E70 /* FIRMessagingPersistentSyncMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPersistentSyncMessage.h; path = FirebaseMessaging/Sources/FIRMessagingPersistentSyncMessage.h; sourceTree = ""; }; - 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPersistentSyncMessage.m; path = FirebaseMessaging/Sources/FIRMessagingPersistentSyncMessage.m; sourceTree = ""; }; - 46EB2E00006E90 /* FIRMessagingPubSub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPubSub.h; path = FirebaseMessaging/Sources/FIRMessagingPubSub.h; sourceTree = ""; }; - 46EB2E00006EA0 /* FIRMessagingPubSub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPubSub.m; path = FirebaseMessaging/Sources/FIRMessagingPubSub.m; sourceTree = ""; }; - 46EB2E00006EB0 /* FIRMessagingRemoteNotificationsProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingRemoteNotificationsProxy.h; path = FirebaseMessaging/Sources/FIRMessagingRemoteNotificationsProxy.h; sourceTree = ""; }; - 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingRemoteNotificationsProxy.m; path = FirebaseMessaging/Sources/FIRMessagingRemoteNotificationsProxy.m; sourceTree = ""; }; - 46EB2E00006ED0 /* FIRMessagingRmqManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingRmqManager.h; path = FirebaseMessaging/Sources/FIRMessagingRmqManager.h; sourceTree = ""; }; - 46EB2E00006EE0 /* FIRMessagingRmqManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingRmqManager.m; path = FirebaseMessaging/Sources/FIRMessagingRmqManager.m; sourceTree = ""; }; - 46EB2E00006EF0 /* FIRMessagingSyncMessageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingSyncMessageManager.h; path = FirebaseMessaging/Sources/FIRMessagingSyncMessageManager.h; sourceTree = ""; }; - 46EB2E00006F00 /* FIRMessagingSyncMessageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingSyncMessageManager.m; path = FirebaseMessaging/Sources/FIRMessagingSyncMessageManager.m; sourceTree = ""; }; - 46EB2E00006F10 /* FIRMessagingTopicOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTopicOperation.h; path = FirebaseMessaging/Sources/FIRMessagingTopicOperation.h; sourceTree = ""; }; - 46EB2E00006F20 /* FIRMessagingTopicOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTopicOperation.m; path = FirebaseMessaging/Sources/FIRMessagingTopicOperation.m; sourceTree = ""; }; - 46EB2E00006F30 /* FIRMessagingTopicsCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTopicsCommon.h; path = FirebaseMessaging/Sources/FIRMessagingTopicsCommon.h; sourceTree = ""; }; - 46EB2E00006F40 /* FIRMessagingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingUtilities.h; path = FirebaseMessaging/Sources/FIRMessagingUtilities.h; sourceTree = ""; }; - 46EB2E00006F50 /* FIRMessagingUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingUtilities.m; path = FirebaseMessaging/Sources/FIRMessagingUtilities.m; sourceTree = ""; }; - 46EB2E00006F60 /* FIRMessaging_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessaging_Private.h; path = FirebaseMessaging/Sources/FIRMessaging_Private.h; sourceTree = ""; }; - 46EB2E00006F70 /* NSDictionary+FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+FIRMessaging.h"; path = "FirebaseMessaging/Sources/NSDictionary+FIRMessaging.h"; sourceTree = ""; }; - 46EB2E00006F80 /* NSDictionary+FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+FIRMessaging.m"; path = "FirebaseMessaging/Sources/NSDictionary+FIRMessaging.m"; sourceTree = ""; }; - 46EB2E00006F90 /* NSError+FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRMessaging.h"; path = "FirebaseMessaging/Sources/NSError+FIRMessaging.h"; sourceTree = ""; }; - 46EB2E00006FA0 /* NSError+FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRMessaging.m"; path = "FirebaseMessaging/Sources/NSError+FIRMessaging.m"; sourceTree = ""; }; - 46EB2E00006FB0 /* me.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = me.nanopb.c; path = FirebaseMessaging/Sources/Protogen/nanopb/me.nanopb.c; sourceTree = ""; }; - 46EB2E00006FC0 /* me.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = me.nanopb.h; path = FirebaseMessaging/Sources/Protogen/nanopb/me.nanopb.h; sourceTree = ""; }; - 46EB2E00006FD0 /* FirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseMessaging.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FirebaseMessaging.h; sourceTree = ""; }; - 46EB2E00006FE0 /* FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessaging.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FIRMessaging.h; sourceTree = ""; }; - 46EB2E00006FF0 /* FIRMessagingExtensionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingExtensionHelper.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FIRMessagingExtensionHelper.h; sourceTree = ""; }; - 46EB2E00007000 /* FIRMessagingAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAPNSInfo.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAPNSInfo.h; sourceTree = ""; }; - 46EB2E00007010 /* FIRMessagingAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAPNSInfo.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAPNSInfo.m; sourceTree = ""; }; - 46EB2E00007020 /* FIRMessagingAuthKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAuthKeychain.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthKeychain.h; sourceTree = ""; }; - 46EB2E00007030 /* FIRMessagingAuthKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAuthKeychain.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthKeychain.m; sourceTree = ""; }; - 46EB2E00007040 /* FIRMessagingAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAuthService.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthService.h; sourceTree = ""; }; - 46EB2E00007050 /* FIRMessagingAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAuthService.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthService.m; sourceTree = ""; }; - 46EB2E00007060 /* FIRMessagingBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingBackupExcludedPlist.h; path = FirebaseMessaging/Sources/Token/FIRMessagingBackupExcludedPlist.h; sourceTree = ""; }; - 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingBackupExcludedPlist.m; path = FirebaseMessaging/Sources/Token/FIRMessagingBackupExcludedPlist.m; sourceTree = ""; }; - 46EB2E00007080 /* FIRMessagingCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinPreferences.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinPreferences.h; sourceTree = ""; }; - 46EB2E00007090 /* FIRMessagingCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinPreferences.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinPreferences.m; sourceTree = ""; }; - 46EB2E000070A0 /* FIRMessagingCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinService.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinService.h; sourceTree = ""; }; - 46EB2E000070B0 /* FIRMessagingCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinService.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinService.m; sourceTree = ""; }; - 46EB2E000070C0 /* FIRMessagingCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinStore.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinStore.h; sourceTree = ""; }; - 46EB2E000070D0 /* FIRMessagingCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinStore.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinStore.m; sourceTree = ""; }; - 46EB2E000070E0 /* FIRMessagingKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingKeychain.h; path = FirebaseMessaging/Sources/Token/FIRMessagingKeychain.h; sourceTree = ""; }; - 46EB2E000070F0 /* FIRMessagingKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingKeychain.m; path = FirebaseMessaging/Sources/Token/FIRMessagingKeychain.m; sourceTree = ""; }; - 46EB2E00007100 /* FIRMessagingTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenDeleteOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenDeleteOperation.h; sourceTree = ""; }; - 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenDeleteOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenDeleteOperation.m; sourceTree = ""; }; - 46EB2E00007120 /* FIRMessagingTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenFetchOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenFetchOperation.h; sourceTree = ""; }; - 46EB2E00007130 /* FIRMessagingTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenFetchOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenFetchOperation.m; sourceTree = ""; }; - 46EB2E00007140 /* FIRMessagingTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenInfo.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenInfo.h; sourceTree = ""; }; - 46EB2E00007150 /* FIRMessagingTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenInfo.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenInfo.m; sourceTree = ""; }; - 46EB2E00007160 /* FIRMessagingTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenManager.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenManager.h; sourceTree = ""; }; - 46EB2E00007170 /* FIRMessagingTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenManager.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenManager.m; sourceTree = ""; }; - 46EB2E00007180 /* FIRMessagingTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenOperation.h; sourceTree = ""; }; - 46EB2E00007190 /* FIRMessagingTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenOperation.m; sourceTree = ""; }; - 46EB2E000071A0 /* FIRMessagingTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenStore.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenStore.h; sourceTree = ""; }; - 46EB2E000071B0 /* FIRMessagingTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenStore.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenStore.m; sourceTree = ""; }; - 46EB2E000071C0 /* FIRMessagingInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingInterop.h; path = FirebaseMessaging/Interop/FIRMessagingInterop.h; sourceTree = ""; }; - 46EB2E000071D0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 46EB2E000071E0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 46EB2E000071F0 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 46EB2E00007200 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 46EB2E00007210 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00007220 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00007230 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00007240 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00007250 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00007260 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00007270 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00007280 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00007290 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E000072A0 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E000072B0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E000072C0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E000072D0 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 46EB2E000072E0 /* FIRConfigValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfigValue.m; path = FirebaseRemoteConfig/Sources/FIRConfigValue.m; sourceTree = ""; }; - 46EB2E000072F0 /* FIRRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRemoteConfig.m; path = FirebaseRemoteConfig/Sources/FIRRemoteConfig.m; sourceTree = ""; }; - 46EB2E00007300 /* FIRRemoteConfigComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfigComponent.h; path = FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.h; sourceTree = ""; }; - 46EB2E00007310 /* FIRRemoteConfigComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRemoteConfigComponent.m; path = FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.m; sourceTree = ""; }; - 46EB2E00007320 /* FIRRemoteConfig_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfig_Private.h; path = FirebaseRemoteConfig/Sources/Private/FIRRemoteConfig_Private.h; sourceTree = ""; }; - 46EB2E00007330 /* RCNConfigFetch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigFetch.h; path = FirebaseRemoteConfig/Sources/Private/RCNConfigFetch.h; sourceTree = ""; }; - 46EB2E00007340 /* RCNConfigSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigSettings.h; path = FirebaseRemoteConfig/Sources/Private/RCNConfigSettings.h; sourceTree = ""; }; - 46EB2E00007350 /* FirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseRemoteConfig.h; path = FirebaseRemoteConfig/Sources/Public/FirebaseRemoteConfig/FirebaseRemoteConfig.h; sourceTree = ""; }; - 46EB2E00007360 /* FIRRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfig.h; path = FirebaseRemoteConfig/Sources/Public/FirebaseRemoteConfig/FIRRemoteConfig.h; sourceTree = ""; }; - 46EB2E00007370 /* RCNConfigConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigConstants.h; path = FirebaseRemoteConfig/Sources/RCNConfigConstants.h; sourceTree = ""; }; - 46EB2E00007380 /* RCNConfigContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigContent.h; path = FirebaseRemoteConfig/Sources/RCNConfigContent.h; sourceTree = ""; }; - 46EB2E00007390 /* RCNConfigContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigContent.m; path = FirebaseRemoteConfig/Sources/RCNConfigContent.m; sourceTree = ""; }; - 46EB2E000073A0 /* RCNConfigDBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigDBManager.h; path = FirebaseRemoteConfig/Sources/RCNConfigDBManager.h; sourceTree = ""; }; - 46EB2E000073B0 /* RCNConfigDBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigDBManager.m; path = FirebaseRemoteConfig/Sources/RCNConfigDBManager.m; sourceTree = ""; }; - 46EB2E000073C0 /* RCNConfigDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigDefines.h; path = FirebaseRemoteConfig/Sources/RCNConfigDefines.h; sourceTree = ""; }; - 46EB2E000073D0 /* RCNConfigExperiment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigExperiment.h; path = FirebaseRemoteConfig/Sources/RCNConfigExperiment.h; sourceTree = ""; }; - 46EB2E000073E0 /* RCNConfigExperiment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigExperiment.m; path = FirebaseRemoteConfig/Sources/RCNConfigExperiment.m; sourceTree = ""; }; - 46EB2E000073F0 /* RCNConfigFetch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigFetch.m; path = FirebaseRemoteConfig/Sources/RCNConfigFetch.m; sourceTree = ""; }; - 46EB2E00007400 /* RCNConfigSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigSettings.m; path = FirebaseRemoteConfig/Sources/RCNConfigSettings.m; sourceTree = ""; }; - 46EB2E00007410 /* RCNConfigValue_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigValue_Internal.h; path = FirebaseRemoteConfig/Sources/RCNConfigValue_Internal.h; sourceTree = ""; }; - 46EB2E00007420 /* RCNConstants3P.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConstants3P.m; path = FirebaseRemoteConfig/Sources/RCNConstants3P.m; sourceTree = ""; }; - 46EB2E00007430 /* RCNDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNDevice.h; path = FirebaseRemoteConfig/Sources/RCNDevice.h; sourceTree = ""; }; - 46EB2E00007440 /* RCNDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNDevice.m; path = FirebaseRemoteConfig/Sources/RCNDevice.m; sourceTree = ""; }; - 46EB2E00007450 /* RCNPersonalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNPersonalization.h; path = FirebaseRemoteConfig/Sources/RCNPersonalization.h; sourceTree = ""; }; - 46EB2E00007460 /* RCNPersonalization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNPersonalization.m; path = FirebaseRemoteConfig/Sources/RCNPersonalization.m; sourceTree = ""; }; - 46EB2E00007470 /* RCNUserDefaultsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNUserDefaultsManager.h; path = FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.h; sourceTree = ""; }; - 46EB2E00007480 /* RCNUserDefaultsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNUserDefaultsManager.m; path = FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.m; sourceTree = ""; }; - 46EB2E00007490 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 46EB2E000074A0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 46EB2E000074B0 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 46EB2E000074C0 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 46EB2E000074D0 /* ABTExperimentPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTExperimentPayload.h; path = FirebaseABTesting/Sources/Private/ABTExperimentPayload.h; sourceTree = ""; }; - 46EB2E000074E0 /* FirebaseABTestingInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTestingInternal.h; path = FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h; sourceTree = ""; }; - 46EB2E000074F0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 46EB2E00007500 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 46EB2E00007510 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 46EB2E00007520 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46EB2E00007530 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 46EB2E00007540 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 46EB2E00007550 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 46EB2E00007560 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 46EB2E00007570 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 46EB2E00007580 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 46EB2E00007590 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 46EB2E000075A0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 46EB2E000075B0 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 46EB2E000075C0 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; - 46EB2E000075D0 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; - 46EB2E000075E0 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; - 46EB2E000075F0 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; - 46EB2E00007600 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; - 46EB2E00007610 /* FlipperBase64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperBase64.cpp; path = xplat/Flipper/FlipperBase64.cpp; sourceTree = ""; }; - 46EB2E00007620 /* FlipperBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperBase64.h; path = xplat/Flipper/FlipperBase64.h; sourceTree = ""; }; - 46EB2E00007630 /* FlipperCertificateExchangeMedium.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateExchangeMedium.h; path = xplat/Flipper/FlipperCertificateExchangeMedium.h; sourceTree = ""; }; - 46EB2E00007640 /* FlipperCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateProvider.h; path = xplat/Flipper/FlipperCertificateProvider.h; sourceTree = ""; }; - 46EB2E00007650 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; - 46EB2E00007660 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; - 46EB2E00007670 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; - 46EB2E00007680 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; - 46EB2E00007690 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; - 46EB2E000076A0 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; - 46EB2E000076B0 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; - 46EB2E000076C0 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; - 46EB2E000076D0 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; - 46EB2E000076E0 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; - 46EB2E000076F0 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; - 46EB2E00007700 /* FlipperRSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocket.cpp; path = xplat/Flipper/FlipperRSocket.cpp; sourceTree = ""; }; - 46EB2E00007710 /* FlipperRSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocket.h; path = xplat/Flipper/FlipperRSocket.h; sourceTree = ""; }; - 46EB2E00007720 /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - 46EB2E00007730 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; - 46EB2E00007740 /* FlipperSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperSocket.h; path = xplat/Flipper/FlipperSocket.h; sourceTree = ""; }; - 46EB2E00007750 /* FlipperSocketProvider.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperSocketProvider.cpp; path = xplat/Flipper/FlipperSocketProvider.cpp; sourceTree = ""; }; - 46EB2E00007760 /* FlipperSocketProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperSocketProvider.h; path = xplat/Flipper/FlipperSocketProvider.h; sourceTree = ""; }; - 46EB2E00007770 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; - 46EB2E00007780 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; - 46EB2E00007790 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; - 46EB2E000077A0 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; - 46EB2E000077B0 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; - 46EB2E000077C0 /* FlipperTransportTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperTransportTypes.h; path = xplat/Flipper/FlipperTransportTypes.h; sourceTree = ""; }; - 46EB2E000077D0 /* FlipperURLSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperURLSerializer.cpp; path = xplat/Flipper/FlipperURLSerializer.cpp; sourceTree = ""; }; - 46EB2E000077E0 /* FlipperURLSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperURLSerializer.h; path = xplat/Flipper/FlipperURLSerializer.h; sourceTree = ""; }; - 46EB2E000077F0 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - 46EB2E00007800 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; - 46EB2E00007810 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - 46EB2E00007820 /* ontop_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; name = ontop_combined_all_macho_gas.S; path = asm/ontop_combined_all_macho_gas.S; sourceTree = ""; }; - 46EB2E00007830 /* make_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; name = make_combined_all_macho_gas.S; path = asm/make_combined_all_macho_gas.S; sourceTree = ""; }; - 46EB2E00007840 /* jump_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; name = jump_combined_all_macho_gas.S; path = asm/jump_combined_all_macho_gas.S; sourceTree = ""; }; - 46EB2E00007850 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 46EB2E00007860 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 46EB2E00007870 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 46EB2E00007880 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 46EB2E00007890 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 46EB2E000078A0 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 46EB2E000078B0 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 46EB2E000078C0 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 46EB2E000078D0 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 46EB2E000078E0 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 46EB2E000078F0 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 46EB2E00007900 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 46EB2E00007910 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 46EB2E00007920 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 46EB2E00007930 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 46EB2E00007940 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 46EB2E00007950 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 46EB2E00007960 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 46EB2E00007970 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = src/format.cc; sourceTree = ""; }; - 46EB2E00007980 /* args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = args.h; path = include/fmt/args.h; sourceTree = ""; }; - 46EB2E00007990 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; - 46EB2E000079A0 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; - 46EB2E000079B0 /* compile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compile.h; path = include/fmt/compile.h; sourceTree = ""; }; - 46EB2E000079C0 /* core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core.h; path = include/fmt/core.h; sourceTree = ""; }; - 46EB2E000079D0 /* format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "format-inl.h"; path = "include/fmt/format-inl.h"; sourceTree = ""; }; - 46EB2E000079E0 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = include/fmt/format.h; sourceTree = ""; }; - 46EB2E000079F0 /* locale.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = locale.h; path = include/fmt/locale.h; sourceTree = ""; }; - 46EB2E00007A00 /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; - 46EB2E00007A10 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; - 46EB2E00007A20 /* printf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = printf.h; path = include/fmt/printf.h; sourceTree = ""; }; - 46EB2E00007A30 /* ranges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ranges.h; path = include/fmt/ranges.h; sourceTree = ""; }; - 46EB2E00007A40 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; - 46EB2E00007A50 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 46EB2E00007A60 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - 46EB2E00007A70 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 46EB2E00007A80 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - 46EB2E00007A90 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - 46EB2E00007AA0 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 46EB2E00007AB0 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; - 46EB2E00007AC0 /* BenchmarkUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BenchmarkUtil.h; path = folly/BenchmarkUtil.h; sourceTree = ""; }; - 46EB2E00007AD0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 46EB2E00007AE0 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; - 46EB2E00007AF0 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; - 46EB2E00007B00 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; - 46EB2E00007B10 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - 46EB2E00007B20 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - 46EB2E00007B30 /* ConcurrentLazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentLazy.h; path = folly/ConcurrentLazy.h; sourceTree = ""; }; - 46EB2E00007B40 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; - 46EB2E00007B50 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - 46EB2E00007B60 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; - 46EB2E00007B70 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; - 46EB2E00007B80 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; - 46EB2E00007B90 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - 46EB2E00007BA0 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; - 46EB2E00007BB0 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; - 46EB2E00007BC0 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; - 46EB2E00007BD0 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; - 46EB2E00007BE0 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 46EB2E00007BF0 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; - 46EB2E00007C00 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 46EB2E00007C10 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; - 46EB2E00007C20 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; - 46EB2E00007C30 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 46EB2E00007C40 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; - 46EB2E00007C50 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; - 46EB2E00007C60 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; - 46EB2E00007C70 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 46EB2E00007C80 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - 46EB2E00007C90 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 46EB2E00007CA0 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; - 46EB2E00007CB0 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - 46EB2E00007CC0 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; - 46EB2E00007CD0 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - 46EB2E00007CE0 /* FollyMemcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FollyMemcpy.h; path = folly/FollyMemcpy.h; sourceTree = ""; }; - 46EB2E00007CF0 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; - 46EB2E00007D00 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - 46EB2E00007D10 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; - 46EB2E00007D20 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - 46EB2E00007D30 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - 46EB2E00007D40 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - 46EB2E00007D50 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 46EB2E00007D60 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - 46EB2E00007D70 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 46EB2E00007D80 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - 46EB2E00007D90 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 46EB2E00007DA0 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - 46EB2E00007DB0 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - 46EB2E00007DC0 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - 46EB2E00007DD0 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 46EB2E00007DE0 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - 46EB2E00007DF0 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - 46EB2E00007E00 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 46EB2E00007E10 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - 46EB2E00007E20 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - 46EB2E00007E30 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; - 46EB2E00007E40 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; - 46EB2E00007E50 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; - 46EB2E00007E60 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - 46EB2E00007E70 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - 46EB2E00007E80 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - 46EB2E00007E90 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; - 46EB2E00007EA0 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; - 46EB2E00007EB0 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 46EB2E00007EC0 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; - 46EB2E00007ED0 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; - 46EB2E00007EE0 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 46EB2E00007EF0 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; - 46EB2E00007F00 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; - 46EB2E00007F10 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; - 46EB2E00007F20 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; - 46EB2E00007F30 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 46EB2E00007F40 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; - 46EB2E00007F50 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; - 46EB2E00007F60 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; - 46EB2E00007F70 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - 46EB2E00007F80 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - 46EB2E00007F90 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; - 46EB2E00007FA0 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - 46EB2E00007FB0 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - 46EB2E00007FC0 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - 46EB2E00007FD0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - 46EB2E00007FE0 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - 46EB2E00007FF0 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; - 46EB2E00008000 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; - 46EB2E00008010 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; - 46EB2E00008020 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; - 46EB2E00008030 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; - 46EB2E00008040 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; - 46EB2E00008050 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; - 46EB2E00008060 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - 46EB2E00008070 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 46EB2E00008080 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - 46EB2E00008090 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - 46EB2E000080A0 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - 46EB2E000080B0 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; - 46EB2E000080C0 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; - 46EB2E000080D0 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 46EB2E000080E0 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; - 46EB2E000080F0 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - 46EB2E00008100 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; - 46EB2E00008110 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; - 46EB2E00008120 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - 46EB2E00008130 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; - 46EB2E00008140 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; - 46EB2E00008150 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; - 46EB2E00008160 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - 46EB2E00008170 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - 46EB2E00008180 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; - 46EB2E00008190 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - 46EB2E000081A0 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 46EB2E000081B0 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - 46EB2E000081C0 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; - 46EB2E000081D0 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 46EB2E000081E0 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; - 46EB2E000081F0 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - 46EB2E00008200 /* QueueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueueObserver.h; path = folly/concurrency/QueueObserver.h; sourceTree = ""; }; - 46EB2E00008210 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - 46EB2E00008220 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; - 46EB2E00008230 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; - 46EB2E00008240 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 46EB2E00008250 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 46EB2E00008260 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 46EB2E00008270 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 46EB2E00008280 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; - 46EB2E00008290 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; - 46EB2E000082A0 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - 46EB2E000082B0 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 46EB2E000082C0 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - 46EB2E000082D0 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - 46EB2E000082E0 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - 46EB2E000082F0 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; - 46EB2E00008300 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - 46EB2E00008310 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 46EB2E00008320 /* View.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = View.h; path = folly/container/View.h; sourceTree = ""; }; - 46EB2E00008330 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - 46EB2E00008340 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 46EB2E00008350 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - 46EB2E00008360 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 46EB2E00008370 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - 46EB2E00008380 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; - 46EB2E00008390 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; - 46EB2E000083A0 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 46EB2E000083B0 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; - 46EB2E000083C0 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 46EB2E000083D0 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - 46EB2E000083E0 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - 46EB2E000083F0 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; - 46EB2E00008400 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; - 46EB2E00008410 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 46EB2E00008420 /* FileUtilVectorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilVectorDetail.h; path = folly/detail/FileUtilVectorDetail.h; sourceTree = ""; }; - 46EB2E00008430 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 46EB2E00008440 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - 46EB2E00008450 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; - 46EB2E00008460 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 46EB2E00008470 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - 46EB2E00008480 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 46EB2E00008490 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; - 46EB2E000084A0 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; - 46EB2E000084B0 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - 46EB2E000084C0 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; - 46EB2E000084D0 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 46EB2E000084E0 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; - 46EB2E000084F0 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - 46EB2E00008500 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; - 46EB2E00008510 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; - 46EB2E00008520 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 46EB2E00008530 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - 46EB2E00008540 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; - 46EB2E00008550 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; - 46EB2E00008560 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; - 46EB2E00008570 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - 46EB2E00008580 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - 46EB2E00008590 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - 46EB2E000085A0 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - 46EB2E000085B0 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E000085C0 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 46EB2E000085D0 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E000085E0 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; - 46EB2E000085F0 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; - 46EB2E00008600 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; - 46EB2E00008610 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - 46EB2E00008620 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; - 46EB2E00008630 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - 46EB2E00008640 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - 46EB2E00008650 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - 46EB2E00008660 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; - 46EB2E00008670 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E00008680 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; - 46EB2E00008690 /* MeteredExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MeteredExecutor.h; path = folly/executors/MeteredExecutor.h; sourceTree = ""; }; - 46EB2E000086A0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - 46EB2E000086B0 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; - 46EB2E000086C0 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; - 46EB2E000086D0 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - 46EB2E000086E0 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - 46EB2E000086F0 /* StrandExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StrandExecutor.h; path = folly/executors/StrandExecutor.h; sourceTree = ""; }; - 46EB2E00008700 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; - 46EB2E00008710 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - 46EB2E00008720 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; - 46EB2E00008730 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 46EB2E00008740 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; - 46EB2E00008750 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; - 46EB2E00008760 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E00008770 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; - 46EB2E00008780 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; - 46EB2E00008790 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; - 46EB2E000087A0 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; - 46EB2E000087B0 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; - 46EB2E000087C0 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - 46EB2E000087D0 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; - 46EB2E000087E0 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - 46EB2E000087F0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - 46EB2E00008800 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 46EB2E00008810 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; - 46EB2E00008820 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - 46EB2E00008830 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; - 46EB2E00008840 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; - 46EB2E00008850 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; - 46EB2E00008860 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; - 46EB2E00008870 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; - 46EB2E00008880 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; - 46EB2E00008890 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 46EB2E000088A0 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 46EB2E000088B0 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; - 46EB2E000088C0 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - 46EB2E000088D0 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 46EB2E000088E0 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; - 46EB2E000088F0 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 46EB2E00008900 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - 46EB2E00008910 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; - 46EB2E00008920 /* PrimaryPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrimaryPtr.h; path = folly/experimental/PrimaryPtr.h; sourceTree = ""; }; - 46EB2E00008930 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; - 46EB2E00008940 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; - 46EB2E00008950 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; - 46EB2E00008960 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; - 46EB2E00008970 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; - 46EB2E00008980 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 46EB2E00008990 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; - 46EB2E000089A0 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; - 46EB2E000089B0 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; - 46EB2E000089C0 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 46EB2E000089D0 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; - 46EB2E000089E0 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; - 46EB2E000089F0 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; - 46EB2E00008A00 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - 46EB2E00008A10 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - 46EB2E00008A20 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; - 46EB2E00008A30 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; - 46EB2E00008A40 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; - 46EB2E00008A50 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - 46EB2E00008A60 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; - 46EB2E00008A70 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - 46EB2E00008A80 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - 46EB2E00008A90 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; - 46EB2E00008AA0 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; - 46EB2E00008AB0 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; - 46EB2E00008AC0 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; - 46EB2E00008AD0 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; - 46EB2E00008AE0 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; - 46EB2E00008AF0 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; - 46EB2E00008B00 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; - 46EB2E00008B10 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 46EB2E00008B20 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 46EB2E00008B30 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; - 46EB2E00008B40 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; - 46EB2E00008B50 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - 46EB2E00008B60 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; - 46EB2E00008B70 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; - 46EB2E00008B80 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - 46EB2E00008B90 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; - 46EB2E00008BA0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; - 46EB2E00008BB0 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - 46EB2E00008BC0 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - 46EB2E00008BD0 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; - 46EB2E00008BE0 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; - 46EB2E00008BF0 /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; - 46EB2E00008C00 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; - 46EB2E00008C10 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; - 46EB2E00008C20 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; - 46EB2E00008C30 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; - 46EB2E00008C40 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; - 46EB2E00008C50 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; - 46EB2E00008C60 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; - 46EB2E00008C70 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - 46EB2E00008C80 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - 46EB2E00008C90 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; - 46EB2E00008CA0 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; - 46EB2E00008CB0 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - 46EB2E00008CC0 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - 46EB2E00008CD0 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 46EB2E00008CE0 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 46EB2E00008CF0 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - 46EB2E00008D00 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; - 46EB2E00008D10 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - 46EB2E00008D20 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; - 46EB2E00008D30 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; - 46EB2E00008D40 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - 46EB2E00008D50 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; - 46EB2E00008D60 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - 46EB2E00008D70 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; - 46EB2E00008D80 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - 46EB2E00008D90 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; - 46EB2E00008DA0 /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; - 46EB2E00008DB0 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; - 46EB2E00008DC0 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; - 46EB2E00008DD0 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; - 46EB2E00008DE0 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - 46EB2E00008DF0 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - 46EB2E00008E00 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 46EB2E00008E10 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; - 46EB2E00008E20 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; - 46EB2E00008E30 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; - 46EB2E00008E40 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - 46EB2E00008E50 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; - 46EB2E00008E60 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; - 46EB2E00008E70 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; - 46EB2E00008E80 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; - 46EB2E00008E90 /* AtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotificationQueue-inl.h"; path = "folly/io/async/AtomicNotificationQueue-inl.h"; sourceTree = ""; }; - 46EB2E00008EA0 /* AtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotificationQueue.h; path = folly/io/async/AtomicNotificationQueue.h; sourceTree = ""; }; - 46EB2E00008EB0 /* CertificateIdentityVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateIdentityVerifier.h; path = folly/io/async/CertificateIdentityVerifier.h; sourceTree = ""; }; - 46EB2E00008EC0 /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - 46EB2E00008ED0 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 46EB2E00008EE0 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - 46EB2E00008EF0 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; - 46EB2E00008F00 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 46EB2E00008F10 /* EventBaseAtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseAtomicNotificationQueue-inl.h"; path = "folly/io/async/EventBaseAtomicNotificationQueue-inl.h"; sourceTree = ""; }; - 46EB2E00008F20 /* EventBaseAtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseAtomicNotificationQueue.h; path = folly/io/async/EventBaseAtomicNotificationQueue.h; sourceTree = ""; }; - 46EB2E00008F30 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; - 46EB2E00008F40 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; - 46EB2E00008F50 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; - 46EB2E00008F60 /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; - 46EB2E00008F70 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; - 46EB2E00008F80 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; - 46EB2E00008F90 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; - 46EB2E00008FA0 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; - 46EB2E00008FB0 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - 46EB2E00008FC0 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; - 46EB2E00008FD0 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 46EB2E00008FE0 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - 46EB2E00008FF0 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; - 46EB2E00009000 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; - 46EB2E00009010 /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; - 46EB2E00009020 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; - 46EB2E00009030 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; - 46EB2E00009040 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; - 46EB2E00009050 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - 46EB2E00009060 /* OpenSSLTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLTransportCertificate.h; path = folly/io/async/ssl/OpenSSLTransportCertificate.h; sourceTree = ""; }; - 46EB2E00009070 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - 46EB2E00009080 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; - 46EB2E00009090 /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; - 46EB2E000090A0 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 46EB2E000090B0 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 46EB2E000090C0 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; - 46EB2E000090D0 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 46EB2E000090E0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; - 46EB2E000090F0 /* Byte.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Byte.h; path = folly/lang/Byte.h; sourceTree = ""; }; - 46EB2E00009100 /* CArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CArray.h; path = folly/lang/CArray.h; sourceTree = ""; }; - 46EB2E00009110 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; - 46EB2E00009120 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; - 46EB2E00009130 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; - 46EB2E00009140 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; - 46EB2E00009150 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 46EB2E00009160 /* Extern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Extern.h; path = folly/lang/Extern.h; sourceTree = ""; }; - 46EB2E00009170 /* Keep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Keep.h; path = folly/lang/Keep.h; sourceTree = ""; }; - 46EB2E00009180 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - 46EB2E00009190 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - 46EB2E000091A0 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - 46EB2E000091B0 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; - 46EB2E000091C0 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; - 46EB2E000091D0 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - 46EB2E000091E0 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; - 46EB2E000091F0 /* Thunk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Thunk.h; path = folly/lang/Thunk.h; sourceTree = ""; }; - 46EB2E00009200 /* ToAscii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ToAscii.h; path = folly/lang/ToAscii.h; sourceTree = ""; }; - 46EB2E00009210 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - 46EB2E00009220 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - 46EB2E00009230 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; - 46EB2E00009240 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 46EB2E00009250 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - 46EB2E00009260 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - 46EB2E00009270 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - 46EB2E00009280 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - 46EB2E00009290 /* not_null-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "not_null-inl.h"; path = "folly/memory/not_null-inl.h"; sourceTree = ""; }; - 46EB2E000092A0 /* not_null.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = not_null.h; path = folly/memory/not_null.h; sourceTree = ""; }; - 46EB2E000092B0 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - 46EB2E000092C0 /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; - 46EB2E000092D0 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; - 46EB2E000092E0 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - 46EB2E000092F0 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; - 46EB2E00009300 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - 46EB2E00009310 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; - 46EB2E00009320 /* NetOpsDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOpsDispatcher.h; path = folly/net/NetOpsDispatcher.h; sourceTree = ""; }; - 46EB2E00009330 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; - 46EB2E00009340 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; - 46EB2E00009350 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; - 46EB2E00009360 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; - 46EB2E00009370 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; - 46EB2E00009380 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - 46EB2E00009390 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; - 46EB2E000093A0 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; - 46EB2E000093B0 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; - 46EB2E000093C0 /* SSLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionManager.h; path = folly/ssl/SSLSessionManager.h; sourceTree = ""; }; - 46EB2E000093D0 /* OpenSSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLSession.h; path = folly/ssl/detail/OpenSSLSession.h; sourceTree = ""; }; - 46EB2E000093E0 /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - 46EB2E000093F0 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; - 46EB2E00009400 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - 46EB2E00009410 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; - 46EB2E00009420 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - 46EB2E00009430 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; - 46EB2E00009440 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - 46EB2E00009450 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; - 46EB2E00009460 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - 46EB2E00009470 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; - 46EB2E00009480 /* DelayedInit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedInit.h; path = folly/synchronization/DelayedInit.h; sourceTree = ""; }; - 46EB2E00009490 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - 46EB2E000094A0 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - 46EB2E000094B0 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; - 46EB2E000094C0 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; - 46EB2E000094D0 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - 46EB2E000094E0 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; - 46EB2E000094F0 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; - 46EB2E00009500 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - 46EB2E00009510 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; - 46EB2E00009520 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; - 46EB2E00009530 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E00009540 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 46EB2E00009550 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - 46EB2E00009560 /* Lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lock.h; path = folly/synchronization/Lock.h; sourceTree = ""; }; - 46EB2E00009570 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; - 46EB2E00009580 /* NativeSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeSemaphore.h; path = folly/synchronization/NativeSemaphore.h; sourceTree = ""; }; - 46EB2E00009590 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; - 46EB2E000095A0 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; - 46EB2E000095B0 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; - 46EB2E000095C0 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = ""; }; - 46EB2E000095D0 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 46EB2E000095E0 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; - 46EB2E000095F0 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - 46EB2E00009600 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; - 46EB2E00009610 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 46EB2E00009620 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; - 46EB2E00009630 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; - 46EB2E00009640 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - 46EB2E00009650 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 46EB2E00009660 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; - 46EB2E00009670 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - 46EB2E00009680 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - 46EB2E00009690 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - 46EB2E000096A0 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; - 46EB2E000096B0 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; - 46EB2E000096C0 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; - 46EB2E000096D0 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; - 46EB2E000096E0 /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = ""; }; - 46EB2E000096F0 /* Sleeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sleeper.cpp; path = folly/synchronization/detail/Sleeper.cpp; sourceTree = ""; }; - 46EB2E00009700 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - 46EB2E00009710 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; - 46EB2E00009720 /* Pid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pid.h; path = folly/system/Pid.h; sourceTree = ""; }; - 46EB2E00009730 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; - 46EB2E00009740 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; - 46EB2E00009750 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; - 46EB2E00009760 /* AsyncStack-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AsyncStack-inl.h"; path = "folly/tracing/AsyncStack-inl.h"; sourceTree = ""; }; - 46EB2E00009770 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/tracing/AsyncStack.h; sourceTree = ""; }; - 46EB2E00009780 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; - 46EB2E00009790 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; - 46EB2E000097A0 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; - 46EB2E000097B0 /* AsyncStack.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncStack.cpp; path = folly/tracing/AsyncStack.cpp; sourceTree = ""; }; - 46EB2E000097C0 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; - 46EB2E000097D0 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; - 46EB2E000097E0 /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; - 46EB2E000097F0 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; - 46EB2E00009800 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; - 46EB2E00009810 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 46EB2E00009820 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 46EB2E00009830 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 46EB2E00009840 /* ExceptionString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionString.cpp; path = folly/ExceptionString.cpp; sourceTree = ""; }; - 46EB2E00009850 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; - 46EB2E00009860 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; - 46EB2E00009870 /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - 46EB2E00009880 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; - 46EB2E00009890 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; - 46EB2E000098A0 /* FollyMemcpy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FollyMemcpy.cpp; path = folly/FollyMemcpy.cpp; sourceTree = ""; }; - 46EB2E000098B0 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 46EB2E000098C0 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; - 46EB2E000098D0 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; - 46EB2E000098E0 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - 46EB2E000098F0 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; - 46EB2E00009900 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 46EB2E00009910 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; - 46EB2E00009920 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 46EB2E00009930 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - 46EB2E00009940 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; - 46EB2E00009950 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; - 46EB2E00009960 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 46EB2E00009970 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 46EB2E00009980 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; - 46EB2E00009990 /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; - 46EB2E000099A0 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 46EB2E000099B0 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; - 46EB2E000099C0 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; - 46EB2E000099D0 /* Try.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Try.cpp; path = folly/Try.cpp; sourceTree = ""; }; - 46EB2E000099E0 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 46EB2E000099F0 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; - 46EB2E00009A00 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; - 46EB2E00009A10 /* QueueObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueueObserver.cpp; path = folly/concurrency/QueueObserver.cpp; sourceTree = ""; }; - 46EB2E00009A20 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 46EB2E00009A30 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 46EB2E00009A40 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; - 46EB2E00009A50 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; - 46EB2E00009A60 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; - 46EB2E00009A70 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - 46EB2E00009A80 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - 46EB2E00009A90 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; - 46EB2E00009AA0 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - 46EB2E00009AB0 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; - 46EB2E00009AC0 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; - 46EB2E00009AD0 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; - 46EB2E00009AE0 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; - 46EB2E00009AF0 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 46EB2E00009B00 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; - 46EB2E00009B10 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B20 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B30 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; - 46EB2E00009B40 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B50 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - 46EB2E00009B60 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B70 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B80 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - 46EB2E00009B90 /* MeteredExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MeteredExecutor.cpp; path = folly/executors/MeteredExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BA0 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BB0 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BC0 /* StrandExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StrandExecutor.cpp; path = folly/executors/StrandExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BD0 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BE0 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E00009BF0 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - 46EB2E00009C00 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; - 46EB2E00009C10 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; - 46EB2E00009C20 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 46EB2E00009C30 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; - 46EB2E00009C40 /* Promise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Promise.cpp; path = folly/futures/Promise.cpp; sourceTree = ""; }; - 46EB2E00009C50 /* SharedPromise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedPromise.cpp; path = folly/futures/SharedPromise.cpp; sourceTree = ""; }; - 46EB2E00009C60 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; - 46EB2E00009C70 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/futures/detail/Core.cpp; sourceTree = ""; }; - 46EB2E00009C80 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; - 46EB2E00009C90 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; - 46EB2E00009CA0 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 46EB2E00009CB0 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; - 46EB2E00009CC0 /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; - 46EB2E00009CD0 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 46EB2E00009CE0 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - 46EB2E00009CF0 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; - 46EB2E00009D00 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; - 46EB2E00009D10 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; - 46EB2E00009D20 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; - 46EB2E00009D30 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; - 46EB2E00009D40 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; - 46EB2E00009D50 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; - 46EB2E00009D60 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; - 46EB2E00009D70 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; - 46EB2E00009D80 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; - 46EB2E00009D90 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; - 46EB2E00009DA0 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 46EB2E00009DB0 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; - 46EB2E00009DC0 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 46EB2E00009DD0 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - 46EB2E00009DE0 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; - 46EB2E00009DF0 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; - 46EB2E00009E00 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; - 46EB2E00009E10 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; - 46EB2E00009E20 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 46EB2E00009E30 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; - 46EB2E00009E40 /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - 46EB2E00009E50 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; - 46EB2E00009E60 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; - 46EB2E00009E70 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 46EB2E00009E80 /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - 46EB2E00009E90 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; - 46EB2E00009EA0 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 46EB2E00009EB0 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 46EB2E00009EC0 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = folly/lang/Exception.cpp; sourceTree = ""; }; - 46EB2E00009ED0 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; - 46EB2E00009EE0 /* ToAscii.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ToAscii.cpp; path = folly/lang/ToAscii.cpp; sourceTree = ""; }; - 46EB2E00009EF0 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - 46EB2E00009F00 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 46EB2E00009F10 /* SanitizeAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeAddress.cpp; path = folly/memory/SanitizeAddress.cpp; sourceTree = ""; }; - 46EB2E00009F20 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; - 46EB2E00009F30 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - 46EB2E00009F40 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 46EB2E00009F50 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 46EB2E00009F60 /* NetOpsDispatcher.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOpsDispatcher.cpp; path = folly/net/NetOpsDispatcher.cpp; sourceTree = ""; }; - 46EB2E00009F70 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; - 46EB2E00009F80 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - 46EB2E00009F90 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; - 46EB2E00009FA0 /* SSLSessionManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLSessionManager.cpp; path = folly/ssl/SSLSessionManager.cpp; sourceTree = ""; }; - 46EB2E00009FB0 /* OpenSSLSession.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLSession.cpp; path = folly/ssl/detail/OpenSSLSession.cpp; sourceTree = ""; }; - 46EB2E00009FC0 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; - 46EB2E00009FD0 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - 46EB2E00009FE0 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - 46EB2E00009FF0 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - 46EB2E0000A000 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - 46EB2E0000A010 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000A020 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - 46EB2E0000A030 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; - 46EB2E0000A040 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; - 46EB2E0000A050 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; - 46EB2E0000A060 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; - 46EB2E0000A070 /* Pid.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Pid.cpp; path = folly/system/Pid.cpp; sourceTree = ""; }; - 46EB2E0000A080 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; - 46EB2E0000A090 /* ThreadId.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadId.cpp; path = folly/system/ThreadId.cpp; sourceTree = ""; }; - 46EB2E0000A0A0 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - 46EB2E0000A0B0 /* Accumulate-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Accumulate-inl.h"; path = "folly/experimental/coro/Accumulate-inl.h"; sourceTree = ""; }; - 46EB2E0000A0C0 /* Accumulate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Accumulate.h; path = folly/experimental/coro/Accumulate.h; sourceTree = ""; }; - 46EB2E0000A0D0 /* AsyncGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGenerator.h; path = folly/experimental/coro/AsyncGenerator.h; sourceTree = ""; }; - 46EB2E0000A0E0 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/experimental/coro/AsyncPipe.h; sourceTree = ""; }; - 46EB2E0000A0F0 /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; - 46EB2E0000A100 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/experimental/coro/AsyncStack.h; sourceTree = ""; }; - 46EB2E0000A110 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/experimental/coro/Baton.h; sourceTree = ""; }; - 46EB2E0000A120 /* BlockingWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingWait.h; path = folly/experimental/coro/BlockingWait.h; sourceTree = ""; }; - 46EB2E0000A130 /* Collect-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Collect-inl.h"; path = "folly/experimental/coro/Collect-inl.h"; sourceTree = ""; }; - 46EB2E0000A140 /* Collect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Collect.h; path = folly/experimental/coro/Collect.h; sourceTree = ""; }; - 46EB2E0000A150 /* Concat-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Concat-inl.h"; path = "folly/experimental/coro/Concat-inl.h"; sourceTree = ""; }; - 46EB2E0000A160 /* Concat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Concat.h; path = folly/experimental/coro/Concat.h; sourceTree = ""; }; - 46EB2E0000A170 /* Coroutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Coroutine.h; path = folly/experimental/coro/Coroutine.h; sourceTree = ""; }; - 46EB2E0000A180 /* CurrentExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentExecutor.h; path = folly/experimental/coro/CurrentExecutor.h; sourceTree = ""; }; - 46EB2E0000A190 /* Dematerialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Dematerialize-inl.h"; path = "folly/experimental/coro/Dematerialize-inl.h"; sourceTree = ""; }; - 46EB2E0000A1A0 /* Dematerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dematerialize.h; path = folly/experimental/coro/Dematerialize.h; sourceTree = ""; }; - 46EB2E0000A1B0 /* DetachOnCancel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DetachOnCancel.h; path = folly/experimental/coro/DetachOnCancel.h; sourceTree = ""; }; - 46EB2E0000A1C0 /* Filter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Filter-inl.h"; path = "folly/experimental/coro/Filter-inl.h"; sourceTree = ""; }; - 46EB2E0000A1D0 /* Filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filter.h; path = folly/experimental/coro/Filter.h; sourceTree = ""; }; - 46EB2E0000A1E0 /* FutureUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureUtil.h; path = folly/experimental/coro/FutureUtil.h; sourceTree = ""; }; - 46EB2E0000A1F0 /* Generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Generator.h; path = folly/experimental/coro/Generator.h; sourceTree = ""; }; - 46EB2E0000A200 /* GmockHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GmockHelpers.h; path = folly/experimental/coro/GmockHelpers.h; sourceTree = ""; }; - 46EB2E0000A210 /* GtestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GtestHelpers.h; path = folly/experimental/coro/GtestHelpers.h; sourceTree = ""; }; - 46EB2E0000A220 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/experimental/coro/Invoke.h; sourceTree = ""; }; - 46EB2E0000A230 /* Materialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Materialize-inl.h"; path = "folly/experimental/coro/Materialize-inl.h"; sourceTree = ""; }; - 46EB2E0000A240 /* Materialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Materialize.h; path = folly/experimental/coro/Materialize.h; sourceTree = ""; }; - 46EB2E0000A250 /* Merge-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Merge-inl.h"; path = "folly/experimental/coro/Merge-inl.h"; sourceTree = ""; }; - 46EB2E0000A260 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; - 46EB2E0000A270 /* Multiplex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Multiplex-inl.h"; path = "folly/experimental/coro/Multiplex-inl.h"; sourceTree = ""; }; - 46EB2E0000A280 /* Multiplex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Multiplex.h; path = folly/experimental/coro/Multiplex.h; sourceTree = ""; }; - 46EB2E0000A290 /* Mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mutex.h; path = folly/experimental/coro/Mutex.h; sourceTree = ""; }; - 46EB2E0000A2A0 /* Result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Result.h; path = folly/experimental/coro/Result.h; sourceTree = ""; }; - 46EB2E0000A2B0 /* Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retry.h; path = folly/experimental/coro/Retry.h; sourceTree = ""; }; - 46EB2E0000A2C0 /* RustAdaptors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RustAdaptors.h; path = folly/experimental/coro/RustAdaptors.h; sourceTree = ""; }; - 46EB2E0000A2D0 /* SharedLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedLock.h; path = folly/experimental/coro/SharedLock.h; sourceTree = ""; }; - 46EB2E0000A2E0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/experimental/coro/SharedMutex.h; sourceTree = ""; }; - 46EB2E0000A2F0 /* Sleep-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Sleep-inl.h"; path = "folly/experimental/coro/Sleep-inl.h"; sourceTree = ""; }; - 46EB2E0000A300 /* Sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleep.h; path = folly/experimental/coro/Sleep.h; sourceTree = ""; }; - 46EB2E0000A310 /* Task.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Task.h; path = folly/experimental/coro/Task.h; sourceTree = ""; }; - 46EB2E0000A320 /* TimedWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedWait.h; path = folly/experimental/coro/TimedWait.h; sourceTree = ""; }; - 46EB2E0000A330 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; - 46EB2E0000A340 /* Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timeout.h; path = folly/experimental/coro/Timeout.h; sourceTree = ""; }; - 46EB2E0000A350 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/Traits.h; sourceTree = ""; }; - 46EB2E0000A360 /* Transform-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Transform-inl.h"; path = "folly/experimental/coro/Transform-inl.h"; sourceTree = ""; }; - 46EB2E0000A370 /* Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Transform.h; path = folly/experimental/coro/Transform.h; sourceTree = ""; }; - 46EB2E0000A380 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/experimental/coro/UnboundedQueue.h; sourceTree = ""; }; - 46EB2E0000A390 /* ViaIfAsync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViaIfAsync.h; path = folly/experimental/coro/ViaIfAsync.h; sourceTree = ""; }; - 46EB2E0000A3A0 /* Wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wait.h; path = folly/experimental/coro/Wait.h; sourceTree = ""; }; - 46EB2E0000A3B0 /* WithAsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithAsyncStack.h; path = folly/experimental/coro/WithAsyncStack.h; sourceTree = ""; }; - 46EB2E0000A3C0 /* WithCancellation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithCancellation.h; path = folly/experimental/coro/WithCancellation.h; sourceTree = ""; }; - 46EB2E0000A3D0 /* Dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dwarf.h; path = folly/experimental/symbolizer/Dwarf.h; sourceTree = ""; }; - 46EB2E0000A3E0 /* Elf-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Elf-inl.h"; path = "folly/experimental/symbolizer/Elf-inl.h"; sourceTree = ""; }; - 46EB2E0000A3F0 /* Elf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Elf.h; path = folly/experimental/symbolizer/Elf.h; sourceTree = ""; }; - 46EB2E0000A400 /* ElfCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ElfCache.h; path = folly/experimental/symbolizer/ElfCache.h; sourceTree = ""; }; - 46EB2E0000A410 /* LineReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LineReader.h; path = folly/experimental/symbolizer/LineReader.h; sourceTree = ""; }; - 46EB2E0000A420 /* SignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandler.h; path = folly/experimental/symbolizer/SignalHandler.h; sourceTree = ""; }; - 46EB2E0000A430 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/symbolizer/StackTrace.h; sourceTree = ""; }; - 46EB2E0000A440 /* SymbolizedFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizedFrame.h; path = folly/experimental/symbolizer/SymbolizedFrame.h; sourceTree = ""; }; - 46EB2E0000A450 /* SymbolizePrinter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizePrinter.h; path = folly/experimental/symbolizer/SymbolizePrinter.h; sourceTree = ""; }; - 46EB2E0000A460 /* Symbolizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Symbolizer.h; path = folly/experimental/symbolizer/Symbolizer.h; sourceTree = ""; }; - 46EB2E0000A470 /* Addr2Line.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Addr2Line.cpp; path = folly/experimental/symbolizer/Addr2Line.cpp; sourceTree = ""; }; - 46EB2E0000A480 /* Dwarf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Dwarf.cpp; path = folly/experimental/symbolizer/Dwarf.cpp; sourceTree = ""; }; - 46EB2E0000A490 /* Elf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Elf.cpp; path = folly/experimental/symbolizer/Elf.cpp; sourceTree = ""; }; - 46EB2E0000A4A0 /* ElfCache.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ElfCache.cpp; path = folly/experimental/symbolizer/ElfCache.cpp; sourceTree = ""; }; - 46EB2E0000A4B0 /* LineReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LineReader.cpp; path = folly/experimental/symbolizer/LineReader.cpp; sourceTree = ""; }; - 46EB2E0000A4C0 /* SignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SignalHandler.cpp; path = folly/experimental/symbolizer/SignalHandler.cpp; sourceTree = ""; }; - 46EB2E0000A4D0 /* StackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StackTrace.cpp; path = folly/experimental/symbolizer/StackTrace.cpp; sourceTree = ""; }; - 46EB2E0000A4E0 /* SymbolizedFrame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SymbolizedFrame.cpp; path = folly/experimental/symbolizer/SymbolizedFrame.cpp; sourceTree = ""; }; - 46EB2E0000A4F0 /* SymbolizePrinter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SymbolizePrinter.cpp; path = folly/experimental/symbolizer/SymbolizePrinter.cpp; sourceTree = ""; }; - 46EB2E0000A500 /* Symbolizer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Symbolizer.cpp; path = folly/experimental/symbolizer/Symbolizer.cpp; sourceTree = ""; }; - 46EB2E0000A510 /* AddTasks-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AddTasks-inl.h"; path = "folly/fibers/AddTasks-inl.h"; sourceTree = ""; }; - 46EB2E0000A520 /* AddTasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AddTasks.h; path = folly/fibers/AddTasks.h; sourceTree = ""; }; - 46EB2E0000A530 /* AtomicBatchDispatcher-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicBatchDispatcher-inl.h"; path = "folly/fibers/AtomicBatchDispatcher-inl.h"; sourceTree = ""; }; - 46EB2E0000A540 /* AtomicBatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicBatchDispatcher.h; path = folly/fibers/AtomicBatchDispatcher.h; sourceTree = ""; }; - 46EB2E0000A550 /* BatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchDispatcher.h; path = folly/fibers/BatchDispatcher.h; sourceTree = ""; }; - 46EB2E0000A560 /* BatchSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchSemaphore.h; path = folly/fibers/BatchSemaphore.h; sourceTree = ""; }; - 46EB2E0000A570 /* Baton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Baton-inl.h"; path = "folly/fibers/Baton-inl.h"; sourceTree = ""; }; - 46EB2E0000A580 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/fibers/Baton.h; sourceTree = ""; }; - 46EB2E0000A590 /* BoostContextCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BoostContextCompatibility.h; path = folly/fibers/BoostContextCompatibility.h; sourceTree = ""; }; - 46EB2E0000A5A0 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/fibers/CallOnce.h; sourceTree = ""; }; - 46EB2E0000A5B0 /* EventBaseLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseLoopController-inl.h"; path = "folly/fibers/EventBaseLoopController-inl.h"; sourceTree = ""; }; - 46EB2E0000A5C0 /* EventBaseLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLoopController.h; path = folly/fibers/EventBaseLoopController.h; sourceTree = ""; }; - 46EB2E0000A5D0 /* ExecutorBasedLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorBasedLoopController.h; path = folly/fibers/ExecutorBasedLoopController.h; sourceTree = ""; }; - 46EB2E0000A5E0 /* ExecutorLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorLoopController-inl.h"; path = "folly/fibers/ExecutorLoopController-inl.h"; sourceTree = ""; }; - 46EB2E0000A5F0 /* ExecutorLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorLoopController.h; path = folly/fibers/ExecutorLoopController.h; sourceTree = ""; }; - 46EB2E0000A600 /* Fiber-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Fiber-inl.h"; path = "folly/fibers/Fiber-inl.h"; sourceTree = ""; }; - 46EB2E0000A610 /* Fiber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fiber.h; path = folly/fibers/Fiber.h; sourceTree = ""; }; - 46EB2E0000A620 /* FiberManager-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManager-inl.h"; path = "folly/fibers/FiberManager-inl.h"; sourceTree = ""; }; - 46EB2E0000A630 /* FiberManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManager.h; path = folly/fibers/FiberManager.h; sourceTree = ""; }; - 46EB2E0000A640 /* FiberManagerInternal-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerInternal-inl.h"; path = "folly/fibers/FiberManagerInternal-inl.h"; sourceTree = ""; }; - 46EB2E0000A650 /* FiberManagerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerInternal.h; path = folly/fibers/FiberManagerInternal.h; sourceTree = ""; }; - 46EB2E0000A660 /* FiberManagerMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerMap-inl.h"; path = "folly/fibers/FiberManagerMap-inl.h"; sourceTree = ""; }; - 46EB2E0000A670 /* FiberManagerMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerMap.h; path = folly/fibers/FiberManagerMap.h; sourceTree = ""; }; - 46EB2E0000A680 /* ForEach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ForEach-inl.h"; path = "folly/fibers/ForEach-inl.h"; sourceTree = ""; }; - 46EB2E0000A690 /* ForEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ForEach.h; path = folly/fibers/ForEach.h; sourceTree = ""; }; - 46EB2E0000A6A0 /* GenericBaton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericBaton.h; path = folly/fibers/GenericBaton.h; sourceTree = ""; }; - 46EB2E0000A6B0 /* GuardPageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GuardPageAllocator.h; path = folly/fibers/GuardPageAllocator.h; sourceTree = ""; }; - 46EB2E0000A6C0 /* LoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoopController.h; path = folly/fibers/LoopController.h; sourceTree = ""; }; - 46EB2E0000A6D0 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/fibers/Promise-inl.h"; sourceTree = ""; }; - 46EB2E0000A6E0 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/fibers/Promise.h; sourceTree = ""; }; - 46EB2E0000A6F0 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/fibers/Semaphore.h; sourceTree = ""; }; - 46EB2E0000A700 /* SemaphoreBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SemaphoreBase.h; path = folly/fibers/SemaphoreBase.h; sourceTree = ""; }; - 46EB2E0000A710 /* SimpleLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleLoopController.h; path = folly/fibers/SimpleLoopController.h; sourceTree = ""; }; - 46EB2E0000A720 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; - 46EB2E0000A730 /* TimedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedMutex.h; path = folly/fibers/TimedMutex.h; sourceTree = ""; }; - 46EB2E0000A740 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = folly/fibers/traits.h; sourceTree = ""; }; - 46EB2E0000A750 /* WhenN-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WhenN-inl.h"; path = "folly/fibers/WhenN-inl.h"; sourceTree = ""; }; - 46EB2E0000A760 /* WhenN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhenN.h; path = folly/fibers/WhenN.h; sourceTree = ""; }; - 46EB2E0000A770 /* BatchSemaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchSemaphore.cpp; path = folly/fibers/BatchSemaphore.cpp; sourceTree = ""; }; - 46EB2E0000A780 /* Baton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Baton.cpp; path = folly/fibers/Baton.cpp; sourceTree = ""; }; - 46EB2E0000A790 /* Fiber.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fiber.cpp; path = folly/fibers/Fiber.cpp; sourceTree = ""; }; - 46EB2E0000A7A0 /* FiberManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FiberManager.cpp; path = folly/fibers/FiberManager.cpp; sourceTree = ""; }; - 46EB2E0000A7B0 /* GuardPageAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GuardPageAllocator.cpp; path = folly/fibers/GuardPageAllocator.cpp; sourceTree = ""; }; - 46EB2E0000A7C0 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/fibers/Semaphore.cpp; sourceTree = ""; }; - 46EB2E0000A7D0 /* SemaphoreBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SemaphoreBase.cpp; path = folly/fibers/SemaphoreBase.cpp; sourceTree = ""; }; - 46EB2E0000A7E0 /* SimpleLoopController.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SimpleLoopController.cpp; path = folly/fibers/SimpleLoopController.cpp; sourceTree = ""; }; - 46EB2E0000A7F0 /* Debug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = folly/experimental/symbolizer/detail/Debug.h; sourceTree = ""; }; - 46EB2E0000A800 /* AsyncFileWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncFileWriter.h; path = folly/logging/AsyncFileWriter.h; sourceTree = ""; }; - 46EB2E0000A810 /* AsyncLogWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncLogWriter.h; path = folly/logging/AsyncLogWriter.h; sourceTree = ""; }; - 46EB2E0000A820 /* BridgeFromGoogleLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeFromGoogleLogging.h; path = folly/logging/BridgeFromGoogleLogging.h; sourceTree = ""; }; - 46EB2E0000A830 /* CustomLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomLogFormatter.h; path = folly/logging/CustomLogFormatter.h; sourceTree = ""; }; - 46EB2E0000A840 /* FileHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileHandlerFactory.h; path = folly/logging/FileHandlerFactory.h; sourceTree = ""; }; - 46EB2E0000A850 /* FileWriterFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileWriterFactory.h; path = folly/logging/FileWriterFactory.h; sourceTree = ""; }; - 46EB2E0000A860 /* GlogStyleFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlogStyleFormatter.h; path = folly/logging/GlogStyleFormatter.h; sourceTree = ""; }; - 46EB2E0000A870 /* ImmediateFileWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImmediateFileWriter.h; path = folly/logging/ImmediateFileWriter.h; sourceTree = ""; }; - 46EB2E0000A880 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/logging/Init.h; sourceTree = ""; }; - 46EB2E0000A890 /* LogCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogCategory.h; path = folly/logging/LogCategory.h; sourceTree = ""; }; - 46EB2E0000A8A0 /* LogCategoryConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogCategoryConfig.h; path = folly/logging/LogCategoryConfig.h; sourceTree = ""; }; - 46EB2E0000A8B0 /* LogConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogConfig.h; path = folly/logging/LogConfig.h; sourceTree = ""; }; - 46EB2E0000A8C0 /* LogConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogConfigParser.h; path = folly/logging/LogConfigParser.h; sourceTree = ""; }; - 46EB2E0000A8D0 /* LogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogFormatter.h; path = folly/logging/LogFormatter.h; sourceTree = ""; }; - 46EB2E0000A8E0 /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = folly/logging/Logger.h; sourceTree = ""; }; - 46EB2E0000A8F0 /* LoggerDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerDB.h; path = folly/logging/LoggerDB.h; sourceTree = ""; }; - 46EB2E0000A900 /* LogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandler.h; path = folly/logging/LogHandler.h; sourceTree = ""; }; - 46EB2E0000A910 /* LogHandlerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandlerConfig.h; path = folly/logging/LogHandlerConfig.h; sourceTree = ""; }; - 46EB2E0000A920 /* LogHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandlerFactory.h; path = folly/logging/LogHandlerFactory.h; sourceTree = ""; }; - 46EB2E0000A930 /* LogLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogLevel.h; path = folly/logging/LogLevel.h; sourceTree = ""; }; - 46EB2E0000A940 /* LogMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogMessage.h; path = folly/logging/LogMessage.h; sourceTree = ""; }; - 46EB2E0000A950 /* LogName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogName.h; path = folly/logging/LogName.h; sourceTree = ""; }; - 46EB2E0000A960 /* LogStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogStream.h; path = folly/logging/LogStream.h; sourceTree = ""; }; - 46EB2E0000A970 /* LogStreamProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogStreamProcessor.h; path = folly/logging/LogStreamProcessor.h; sourceTree = ""; }; - 46EB2E0000A980 /* LogWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogWriter.h; path = folly/logging/LogWriter.h; sourceTree = ""; }; - 46EB2E0000A990 /* ObjectToString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectToString.h; path = folly/logging/ObjectToString.h; sourceTree = ""; }; - 46EB2E0000A9A0 /* RateLimiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RateLimiter.h; path = folly/logging/RateLimiter.h; sourceTree = ""; }; - 46EB2E0000A9B0 /* StandardLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StandardLogHandler.h; path = folly/logging/StandardLogHandler.h; sourceTree = ""; }; - 46EB2E0000A9C0 /* StandardLogHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StandardLogHandlerFactory.h; path = folly/logging/StandardLogHandlerFactory.h; sourceTree = ""; }; - 46EB2E0000A9D0 /* StreamHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamHandlerFactory.h; path = folly/logging/StreamHandlerFactory.h; sourceTree = ""; }; - 46EB2E0000A9E0 /* xlog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xlog.h; path = folly/logging/xlog.h; sourceTree = ""; }; - 46EB2E0000A9F0 /* AsyncFileWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncFileWriter.cpp; path = folly/logging/AsyncFileWriter.cpp; sourceTree = ""; }; - 46EB2E0000AA00 /* AsyncLogWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncLogWriter.cpp; path = folly/logging/AsyncLogWriter.cpp; sourceTree = ""; }; - 46EB2E0000AA10 /* BridgeFromGoogleLogging.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeFromGoogleLogging.cpp; path = folly/logging/BridgeFromGoogleLogging.cpp; sourceTree = ""; }; - 46EB2E0000AA20 /* CustomLogFormatter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CustomLogFormatter.cpp; path = folly/logging/CustomLogFormatter.cpp; sourceTree = ""; }; - 46EB2E0000AA30 /* FileHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileHandlerFactory.cpp; path = folly/logging/FileHandlerFactory.cpp; sourceTree = ""; }; - 46EB2E0000AA40 /* FileWriterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileWriterFactory.cpp; path = folly/logging/FileWriterFactory.cpp; sourceTree = ""; }; - 46EB2E0000AA50 /* GlogStyleFormatter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlogStyleFormatter.cpp; path = folly/logging/GlogStyleFormatter.cpp; sourceTree = ""; }; - 46EB2E0000AA60 /* ImmediateFileWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImmediateFileWriter.cpp; path = folly/logging/ImmediateFileWriter.cpp; sourceTree = ""; }; - 46EB2E0000AA70 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/logging/Init.cpp; sourceTree = ""; }; - 46EB2E0000AA80 /* InitWeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InitWeak.cpp; path = folly/logging/InitWeak.cpp; sourceTree = ""; }; - 46EB2E0000AA90 /* LogCategory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategory.cpp; path = folly/logging/LogCategory.cpp; sourceTree = ""; }; - 46EB2E0000AAA0 /* LogCategoryConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategoryConfig.cpp; path = folly/logging/LogCategoryConfig.cpp; sourceTree = ""; }; - 46EB2E0000AAB0 /* LogConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfig.cpp; path = folly/logging/LogConfig.cpp; sourceTree = ""; }; - 46EB2E0000AAC0 /* LogConfigParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfigParser.cpp; path = folly/logging/LogConfigParser.cpp; sourceTree = ""; }; - 46EB2E0000AAD0 /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = folly/logging/Logger.cpp; sourceTree = ""; }; - 46EB2E0000AAE0 /* LoggerDB.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerDB.cpp; path = folly/logging/LoggerDB.cpp; sourceTree = ""; }; - 46EB2E0000AAF0 /* LogHandlerConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogHandlerConfig.cpp; path = folly/logging/LogHandlerConfig.cpp; sourceTree = ""; }; - 46EB2E0000AB00 /* LogLevel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogLevel.cpp; path = folly/logging/LogLevel.cpp; sourceTree = ""; }; - 46EB2E0000AB10 /* LogMessage.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogMessage.cpp; path = folly/logging/LogMessage.cpp; sourceTree = ""; }; - 46EB2E0000AB20 /* LogName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogName.cpp; path = folly/logging/LogName.cpp; sourceTree = ""; }; - 46EB2E0000AB30 /* LogStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogStream.cpp; path = folly/logging/LogStream.cpp; sourceTree = ""; }; - 46EB2E0000AB40 /* LogStreamProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogStreamProcessor.cpp; path = folly/logging/LogStreamProcessor.cpp; sourceTree = ""; }; - 46EB2E0000AB50 /* ObjectToString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectToString.cpp; path = folly/logging/ObjectToString.cpp; sourceTree = ""; }; - 46EB2E0000AB60 /* RateLimiter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RateLimiter.cpp; path = folly/logging/RateLimiter.cpp; sourceTree = ""; }; - 46EB2E0000AB70 /* StandardLogHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandler.cpp; path = folly/logging/StandardLogHandler.cpp; sourceTree = ""; }; - 46EB2E0000AB80 /* StandardLogHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandlerFactory.cpp; path = folly/logging/StandardLogHandlerFactory.cpp; sourceTree = ""; }; - 46EB2E0000AB90 /* StreamHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamHandlerFactory.cpp; path = folly/logging/StreamHandlerFactory.cpp; sourceTree = ""; }; - 46EB2E0000ABA0 /* xlog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xlog.cpp; path = folly/logging/xlog.cpp; sourceTree = ""; }; - 46EB2E0000ABB0 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/experimental/coro/detail/Barrier.h; sourceTree = ""; }; - 46EB2E0000ABC0 /* BarrierTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarrierTask.h; path = folly/experimental/coro/detail/BarrierTask.h; sourceTree = ""; }; - 46EB2E0000ABD0 /* CurrentAsyncFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentAsyncFrame.h; path = folly/experimental/coro/detail/CurrentAsyncFrame.h; sourceTree = ""; }; - 46EB2E0000ABE0 /* Helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Helpers.h; path = folly/experimental/coro/detail/Helpers.h; sourceTree = ""; }; - 46EB2E0000ABF0 /* InlineTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineTask.h; path = folly/experimental/coro/detail/InlineTask.h; sourceTree = ""; }; - 46EB2E0000AC00 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/experimental/coro/detail/Malloc.h; sourceTree = ""; }; - 46EB2E0000AC10 /* ManualLifetime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualLifetime.h; path = folly/experimental/coro/detail/ManualLifetime.h; sourceTree = ""; }; - 46EB2E0000AC20 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/detail/Traits.h; sourceTree = ""; }; - 46EB2E0000AC30 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/experimental/coro/detail/Malloc.cpp; sourceTree = ""; }; - 46EB2E0000AC40 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; - 46EB2E0000AC50 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; - 46EB2E0000AC60 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; - 46EB2E0000AC70 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - 46EB2E0000AC80 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; - 46EB2E0000AC90 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; - 46EB2E0000ACA0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 46EB2E0000ACB0 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; - 46EB2E0000ACC0 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - 46EB2E0000ACD0 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; - 46EB2E0000ACE0 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - 46EB2E0000ACF0 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; - 46EB2E0000AD00 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; - 46EB2E0000AD10 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 46EB2E0000AD20 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 46EB2E0000AD30 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; - 46EB2E0000AD40 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; - 46EB2E0000AD50 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 46EB2E0000AD60 /* Observable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observable-inl.h"; path = "folly/experimental/observer/Observable-inl.h"; sourceTree = ""; }; - 46EB2E0000AD70 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = folly/experimental/observer/Observable.h; sourceTree = ""; }; - 46EB2E0000AD80 /* Observer-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-inl.h"; path = "folly/experimental/observer/Observer-inl.h"; sourceTree = ""; }; - 46EB2E0000AD90 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; - 46EB2E0000ADA0 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; - 46EB2E0000ADB0 /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; - 46EB2E0000ADC0 /* SimpleObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleObservable.h; path = folly/experimental/observer/SimpleObservable.h; sourceTree = ""; }; - 46EB2E0000ADD0 /* WithJitter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WithJitter-inl.h"; path = "folly/experimental/observer/WithJitter-inl.h"; sourceTree = ""; }; - 46EB2E0000ADE0 /* WithJitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithJitter.h; path = folly/experimental/observer/WithJitter.h; sourceTree = ""; }; - 46EB2E0000ADF0 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; - 46EB2E0000AE00 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; - 46EB2E0000AE10 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; - 46EB2E0000AE20 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - 46EB2E0000AE30 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; - 46EB2E0000AE40 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 46EB2E0000AE50 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - 46EB2E0000AE60 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - 46EB2E0000AE70 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; - 46EB2E0000AE80 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; - 46EB2E0000AE90 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 46EB2E0000AEA0 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - 46EB2E0000AEB0 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; - 46EB2E0000AEC0 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - 46EB2E0000AED0 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 46EB2E0000AEE0 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - 46EB2E0000AEF0 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - 46EB2E0000AF00 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; - 46EB2E0000AF10 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; - 46EB2E0000AF20 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; - 46EB2E0000AF30 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - 46EB2E0000AF40 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; - 46EB2E0000AF50 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; - 46EB2E0000AF60 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; - 46EB2E0000AF70 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 46EB2E0000AF80 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; - 46EB2E0000AF90 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - 46EB2E0000AFA0 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; - 46EB2E0000AFB0 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; - 46EB2E0000AFC0 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - 46EB2E0000AFD0 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; - 46EB2E0000AFE0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/experimental/observer/detail/Core.h; sourceTree = ""; }; - 46EB2E0000AFF0 /* GraphCycleDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GraphCycleDetector.h; path = folly/experimental/observer/detail/GraphCycleDetector.h; sourceTree = ""; }; - 46EB2E0000B000 /* ObserverManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObserverManager.h; path = folly/experimental/observer/detail/ObserverManager.h; sourceTree = ""; }; - 46EB2E0000B010 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/experimental/observer/detail/Core.cpp; sourceTree = ""; }; - 46EB2E0000B020 /* ObserverManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverManager.cpp; path = folly/experimental/observer/detail/ObserverManager.cpp; sourceTree = ""; }; - 46EB2E0000B030 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; - 46EB2E0000B040 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; - 46EB2E0000B050 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; - 46EB2E0000B060 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; - 46EB2E0000B070 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; - 46EB2E0000B080 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; - 46EB2E0000B090 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; - 46EB2E0000B0A0 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; - 46EB2E0000B0B0 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; - 46EB2E0000B0C0 /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; - 46EB2E0000B0D0 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; - 46EB2E0000B0E0 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; - 46EB2E0000B0F0 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; - 46EB2E0000B100 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; - 46EB2E0000B110 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; - 46EB2E0000B120 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; - 46EB2E0000B130 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; - 46EB2E0000B140 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; - 46EB2E0000B150 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; - 46EB2E0000B160 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - 46EB2E0000B170 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; - 46EB2E0000B180 /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; - 46EB2E0000B190 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; - 46EB2E0000B1A0 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; - 46EB2E0000B1B0 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; - 46EB2E0000B1C0 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - 46EB2E0000B1D0 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; - 46EB2E0000B1E0 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; - 46EB2E0000B1F0 /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; - 46EB2E0000B200 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - 46EB2E0000B210 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; - 46EB2E0000B220 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; - 46EB2E0000B230 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - 46EB2E0000B240 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; - 46EB2E0000B250 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; - 46EB2E0000B260 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; - 46EB2E0000B270 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; - 46EB2E0000B280 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; - 46EB2E0000B290 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; - 46EB2E0000B2A0 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 46EB2E0000B2B0 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; - 46EB2E0000B2C0 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; - 46EB2E0000B2D0 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; - 46EB2E0000B2E0 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - 46EB2E0000B2F0 /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; - 46EB2E0000B300 /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; - 46EB2E0000B310 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; - 46EB2E0000B320 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; - 46EB2E0000B330 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - 46EB2E0000B340 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; - 46EB2E0000B350 /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 46EB2E0000B360 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; - 46EB2E0000B370 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; - 46EB2E0000B380 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; - 46EB2E0000B390 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; - 46EB2E0000B3A0 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - 46EB2E0000B3B0 /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; - 46EB2E0000B3C0 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; - 46EB2E0000B3D0 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; - 46EB2E0000B3E0 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; - 46EB2E0000B3F0 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; - 46EB2E0000B400 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - 46EB2E0000B410 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; - 46EB2E0000B420 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; - 46EB2E0000B430 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; - 46EB2E0000B440 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; - 46EB2E0000B450 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; - 46EB2E0000B460 /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; - 46EB2E0000B470 /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - 46EB2E0000B480 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; - 46EB2E0000B490 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - 46EB2E0000B4A0 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; - 46EB2E0000B4B0 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; - 46EB2E0000B4C0 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - 46EB2E0000B4D0 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; - 46EB2E0000B4E0 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; - 46EB2E0000B4F0 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; - 46EB2E0000B500 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; - 46EB2E0000B510 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; - 46EB2E0000B520 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; - 46EB2E0000B530 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; - 46EB2E0000B540 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - 46EB2E0000B550 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 46EB2E0000B560 /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; - 46EB2E0000B570 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; - 46EB2E0000B580 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; - 46EB2E0000B590 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; - 46EB2E0000B5A0 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; - 46EB2E0000B5B0 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; - 46EB2E0000B5C0 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; - 46EB2E0000B5D0 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; - 46EB2E0000B5E0 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - 46EB2E0000B5F0 /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; - 46EB2E0000B600 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; - 46EB2E0000B610 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; - 46EB2E0000B620 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; - 46EB2E0000B630 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - 46EB2E0000B640 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; - 46EB2E0000B650 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - 46EB2E0000B660 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - 46EB2E0000B670 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; - 46EB2E0000B680 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - 46EB2E0000B690 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; - 46EB2E0000B6A0 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; - 46EB2E0000B6B0 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; - 46EB2E0000B6C0 /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; - 46EB2E0000B6D0 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; - 46EB2E0000B6E0 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; - 46EB2E0000B6F0 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 46EB2E0000B700 /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; - 46EB2E0000B710 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; - 46EB2E0000B720 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; - 46EB2E0000B730 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; - 46EB2E0000B740 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; - 46EB2E0000B750 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; - 46EB2E0000B760 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; - 46EB2E0000B770 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; - 46EB2E0000B780 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; - 46EB2E0000B790 /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; - 46EB2E0000B7A0 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; - 46EB2E0000B7B0 /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; - 46EB2E0000B7C0 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; - 46EB2E0000B7D0 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; - 46EB2E0000B7E0 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; - 46EB2E0000B7F0 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; - 46EB2E0000B800 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - 46EB2E0000B810 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; - 46EB2E0000B820 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; - 46EB2E0000B830 /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - 46EB2E0000B840 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 46EB2E0000B850 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; - 46EB2E0000B860 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; - 46EB2E0000B870 /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; - 46EB2E0000B880 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; - 46EB2E0000B890 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - 46EB2E0000B8A0 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; - 46EB2E0000B8B0 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; - 46EB2E0000B8C0 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; - 46EB2E0000B8D0 /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; - 46EB2E0000B8E0 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; - 46EB2E0000B8F0 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; - 46EB2E0000B900 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; - 46EB2E0000B910 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - 46EB2E0000B920 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; - 46EB2E0000B930 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; - 46EB2E0000B940 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; - 46EB2E0000B950 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; - 46EB2E0000B960 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - 46EB2E0000B970 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; - 46EB2E0000B980 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - 46EB2E0000B990 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; - 46EB2E0000B9A0 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - 46EB2E0000B9B0 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; - 46EB2E0000B9C0 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; - 46EB2E0000B9D0 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; - 46EB2E0000B9E0 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; - 46EB2E0000B9F0 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; - 46EB2E0000BA00 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; - 46EB2E0000BA10 /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; - 46EB2E0000BA20 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; - 46EB2E0000BA30 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; - 46EB2E0000BA40 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; - 46EB2E0000BA50 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; - 46EB2E0000BA60 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; - 46EB2E0000BA70 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; - 46EB2E0000BA90 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; - 46EB2E0000BAA0 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; - 46EB2E0000BAB0 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; - 46EB2E0000BAC0 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; - 46EB2E0000BAD0 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; - 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; - 46EB2E0000BAF0 /* FlipperKitCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitCertificateProvider.h; path = iOS/FlipperKit/FlipperKitCertificateProvider.h; sourceTree = ""; }; - 46EB2E0000BB00 /* FlipperPlatformWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlatformWebSocket.h; path = iOS/FlipperKit/FlipperPlatformWebSocket.h; sourceTree = ""; }; - 46EB2E0000BB10 /* FlipperPlatformWebSocket.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperPlatformWebSocket.mm; path = iOS/FlipperKit/FlipperPlatformWebSocket.mm; sourceTree = ""; }; - 46EB2E0000BB20 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; - 46EB2E0000BB30 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; - 46EB2E0000BB40 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; - 46EB2E0000BB50 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; - 46EB2E0000BB60 /* FlipperWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperWebSocket.h; path = iOS/FlipperKit/FlipperWebSocket.h; sourceTree = ""; }; - 46EB2E0000BB70 /* FlipperWebSocket.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperWebSocket.mm; path = iOS/FlipperKit/FlipperWebSocket.mm; sourceTree = ""; }; - 46EB2E0000BB80 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; - 46EB2E0000BB90 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; - 46EB2E0000BBA0 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 46EB2E0000BBB0 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; - 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; - 46EB2E0000BBD0 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 46EB2E0000BBE0 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; - 46EB2E0000BBF0 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; - 46EB2E0000BC00 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; - 46EB2E0000BC10 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; - 46EB2E0000BC40 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; - 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; - 46EB2E0000BC70 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; - 46EB2E0000BC90 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - 46EB2E0000BCA0 /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; - 46EB2E0000BCB0 /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; - 46EB2E0000BCD0 /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; - 46EB2E0000BCE0 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; - 46EB2E0000BD00 /* FlipperKitLayoutDescriptorMapperProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutDescriptorMapperProtocol.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/FlipperKitLayoutDescriptorMapperProtocol.h; sourceTree = ""; }; - 46EB2E0000BD10 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKHiddenWindow.h; sourceTree = ""; }; - 46EB2E0000BD20 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKHiddenWindow.m; sourceTree = ""; }; - 46EB2E0000BD30 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKInvalidation.h; sourceTree = ""; }; - 46EB2E0000BD40 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKInvalidation.m; sourceTree = ""; }; - 46EB2E0000BD50 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNamed.h; sourceTree = ""; }; - 46EB2E0000BD60 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKNamed.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNamed.mm; sourceTree = ""; }; - 46EB2E0000BD70 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNodeDescriptor.h; sourceTree = ""; }; - 46EB2E0000BD80 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNodeDescriptor.mm; sourceTree = ""; }; - 46EB2E0000BD90 /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObject.h; sourceTree = ""; }; - 46EB2E0000BDA0 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKObject.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObject.mm; sourceTree = ""; }; - 46EB2E0000BDB0 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObjectHash.h; sourceTree = ""; }; - 46EB2E0000BDC0 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSearchResultNode.h; sourceTree = ""; }; - 46EB2E0000BDD0 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSearchResultNode.m; sourceTree = ""; }; - 46EB2E0000BDE0 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSwizzle.h; sourceTree = ""; }; - 46EB2E0000BDF0 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSwizzle.mm; sourceTree = ""; }; - 46EB2E0000BE00 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListener.h; sourceTree = ""; }; - 46EB2E0000BE10 /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListenerImpl.h; sourceTree = ""; }; - 46EB2E0000BE20 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListenerImpl.m; sourceTree = ""; }; - 46EB2E0000BE30 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTouch.h; sourceTree = ""; }; - 46EB2E0000BE40 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTouch.m; sourceTree = ""; }; - 46EB2E0000BE50 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKYogaKitHelper.h; sourceTree = ""; }; - 46EB2E0000BE60 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; - 46EB2E0000BE70 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; - 46EB2E0000BE80 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; - 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; - 46EB2E0000BEA0 /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIView+SKInvalidation.h"; sourceTree = ""; }; - 46EB2E0000BEB0 /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIView+SKInvalidation.mm"; sourceTree = ""; }; - 46EB2E0000BED0 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKApplicationDescriptor.h; sourceTree = ""; }; - 46EB2E0000BEE0 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKApplicationDescriptor.m; sourceTree = ""; }; - 46EB2E0000BEF0 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKButtonDescriptor.h; sourceTree = ""; }; - 46EB2E0000BF00 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKButtonDescriptor.mm; sourceTree = ""; }; - 46EB2E0000BF10 /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; - 46EB2E0000BF20 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; - 46EB2E0000BF30 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; - 46EB2E0000BF40 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; - 46EB2E0000BF50 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.h; sourceTree = ""; }; - 46EB2E0000BF60 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.mm; sourceTree = ""; }; - 46EB2E0000BF80 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; - 46EB2E0000BF90 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; - 46EB2E0000BFA0 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - 46EB2E0000BFB0 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - 46EB2E0000BFD0 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; - 46EB2E0000BFF0 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; - 46EB2E0000C000 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; - 46EB2E0000C010 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; - 46EB2E0000C020 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; - 46EB2E0000C030 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 46EB2E0000C040 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - 46EB2E0000C050 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; - 46EB2E0000C060 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; - 46EB2E0000C070 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; - 46EB2E0000C080 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; - 46EB2E0000C090 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; - 46EB2E0000C0A0 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; - 46EB2E0000C0C0 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; - 46EB2E0000C0D0 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; - 46EB2E0000C0F0 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; - 46EB2E0000C100 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; - 46EB2E0000C110 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; - 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 46EB2E0000C140 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; - 46EB2E0000C150 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; - 46EB2E0000C160 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; - 46EB2E0000C170 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; - 46EB2E0000C180 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; - 46EB2E0000C190 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; - 46EB2E0000C1A0 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; - 46EB2E0000C1B0 /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; - 46EB2E0000C1C0 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; - 46EB2E0000C1D0 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; - 46EB2E0000C1F0 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - 46EB2E0000C200 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; - 46EB2E0000C210 /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; - 46EB2E0000C220 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; - 46EB2E0000C230 /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; - 46EB2E0000C240 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; - 46EB2E0000C250 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; - 46EB2E0000C260 /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 46EB2E0000C270 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - 46EB2E0000C280 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 46EB2E0000C290 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - 46EB2E0000C2A0 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; - 46EB2E0000C2B0 /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; - 46EB2E0000C2C0 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - 46EB2E0000C2D0 /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; - 46EB2E0000C2E0 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - 46EB2E0000C2F0 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 46EB2E0000C300 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 46EB2E0000C310 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - 46EB2E0000C320 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 46EB2E0000C330 /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; - 46EB2E0000C340 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 46EB2E0000C350 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - 46EB2E0000C360 /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; - 46EB2E0000C370 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 46EB2E0000C380 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; - 46EB2E0000C390 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; - 46EB2E0000C3A0 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; - 46EB2E0000C3B0 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; - 46EB2E0000C3C0 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; - 46EB2E0000C3D0 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; - 46EB2E0000C3E0 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; - 46EB2E0000C3F0 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; - 46EB2E0000C400 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; - 46EB2E0000C410 /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; - 46EB2E0000C420 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - 46EB2E0000C430 /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; - 46EB2E0000C440 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - 46EB2E0000C450 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - 46EB2E0000C460 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 46EB2E0000C470 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 46EB2E0000C480 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - 46EB2E0000C490 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - 46EB2E0000C4A0 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; - 46EB2E0000C4B0 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - 46EB2E0000C4C0 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; - 46EB2E0000C4D0 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; - 46EB2E0000C4E0 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; - 46EB2E0000C4F0 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; - 46EB2E0000C500 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; - 46EB2E0000C510 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; - 46EB2E0000C520 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; - 46EB2E0000C530 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; - 46EB2E0000C540 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; - 46EB2E0000C550 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - 46EB2E0000C560 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 46EB2E0000C570 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 46EB2E0000C580 /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; - 46EB2E0000C590 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - 46EB2E0000C5A0 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - 46EB2E0000C5B0 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 46EB2E0000C5C0 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 46EB2E0000C5D0 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; - 46EB2E0000C5E0 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - 46EB2E0000C5F0 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - 46EB2E0000C600 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - 46EB2E0000C620 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 46EB2E0000C630 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - 46EB2E0000C640 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 46EB2E0000C650 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; - 46EB2E0000C660 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 46EB2E0000C670 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - 46EB2E0000C680 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 46EB2E0000C690 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 46EB2E0000C6B0 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 46EB2E0000C6C0 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - 46EB2E0000C6D0 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 46EB2E0000C6E0 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 46EB2E0000C6F0 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; - 46EB2E0000C700 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 46EB2E0000C710 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; - 46EB2E0000C720 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; - 46EB2E0000C730 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - 46EB2E0000C740 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; - 46EB2E0000C750 /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; - 46EB2E0000C760 /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; - 46EB2E0000C770 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 46EB2E0000C780 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 46EB2E0000C790 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 46EB2E0000C7A0 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; - 46EB2E0000C7B0 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; - 46EB2E0000C7D0 /* GULObjectSwizzler+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULObjectSwizzler+Internal.h"; path = "GoogleUtilities/ISASwizzler/GULObjectSwizzler+Internal.h"; sourceTree = ""; }; - 46EB2E0000C7E0 /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; - 46EB2E0000C7F0 /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; - 46EB2E0000C800 /* GULObjectSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULObjectSwizzler.h; path = GoogleUtilities/ISASwizzler/Public/GoogleUtilities/GULObjectSwizzler.h; sourceTree = ""; }; - 46EB2E0000C810 /* GULSwizzledObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzledObject.h; path = GoogleUtilities/ISASwizzler/Public/GoogleUtilities/GULSwizzledObject.h; sourceTree = ""; }; - 46EB2E0000C830 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 46EB2E0000C840 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - 46EB2E0000C850 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - 46EB2E0000C870 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 46EB2E0000C880 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 46EB2E0000C890 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; - 46EB2E0000C8B0 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 46EB2E0000C8C0 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; - 46EB2E0000C8E0 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 46EB2E0000C8F0 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 46EB2E0000C900 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 46EB2E0000C910 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - 46EB2E0000C920 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 46EB2E0000C930 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - 46EB2E0000C940 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; - 46EB2E0000C950 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - 46EB2E0000C960 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 46EB2E0000C970 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - 46EB2E0000C980 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - 46EB2E0000C9A0 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 46EB2E0000C9B0 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 46EB2E0000C9C0 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - 46EB2E0000C9D0 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 46EB2E0000C9F0 /* GULProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULProxy.h; path = GoogleUtilities/SwizzlerTestHelpers/GULProxy.h; sourceTree = ""; }; - 46EB2E0000CA00 /* GULProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULProxy.m; path = GoogleUtilities/SwizzlerTestHelpers/GULProxy.m; sourceTree = ""; }; - 46EB2E0000CA10 /* GULRuntimeClassDiff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeClassDiff.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassDiff.h; sourceTree = ""; }; - 46EB2E0000CA20 /* GULRuntimeClassDiff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeClassDiff.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassDiff.m; sourceTree = ""; }; - 46EB2E0000CA30 /* GULRuntimeClassSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeClassSnapshot.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassSnapshot.h; sourceTree = ""; }; - 46EB2E0000CA40 /* GULRuntimeClassSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeClassSnapshot.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassSnapshot.m; sourceTree = ""; }; - 46EB2E0000CA50 /* GULRuntimeDiff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeDiff.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeDiff.h; sourceTree = ""; }; - 46EB2E0000CA60 /* GULRuntimeDiff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeDiff.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeDiff.m; sourceTree = ""; }; - 46EB2E0000CA70 /* GULRuntimeSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeSnapshot.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeSnapshot.h; sourceTree = ""; }; - 46EB2E0000CA80 /* GULRuntimeSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeSnapshot.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeSnapshot.m; sourceTree = ""; }; - 46EB2E0000CA90 /* GULRuntimeStateHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeStateHelper.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeStateHelper.h; sourceTree = ""; }; - 46EB2E0000CAA0 /* GULRuntimeStateHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeStateHelper.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeStateHelper.m; sourceTree = ""; }; - 46EB2E0000CAB0 /* GULSwizzler+Unswizzle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULSwizzler+Unswizzle.m"; path = "GoogleUtilities/SwizzlerTestHelpers/GULSwizzler+Unswizzle.m"; sourceTree = ""; }; - 46EB2E0000CAC0 /* GULSwizzlingCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzlingCache.h; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache.h; sourceTree = ""; }; - 46EB2E0000CAD0 /* GULSwizzlingCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzlingCache.m; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache.m; sourceTree = ""; }; - 46EB2E0000CAE0 /* GULSwizzlingCache_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzlingCache_Private.h; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache_Private.h; sourceTree = ""; }; - 46EB2E0000CAF0 /* GULSwizzler+Unswizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULSwizzler+Unswizzle.h"; path = "GoogleUtilities/SwizzlerTestHelpers/Public/GoogleUtilities/GULSwizzler+Unswizzle.h"; sourceTree = ""; }; - 46EB2E0000CB10 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 46EB2E0000CB20 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; - 46EB2E0000CB30 /* JWTAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithm.h; path = Core/Algorithms/Base/JWTAlgorithm.h; sourceTree = ""; }; - 46EB2E0000CB40 /* JWTAlgorithmErrorDescription+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTAlgorithmErrorDescription+Subclass.h"; path = "Core/Algorithms/Base/JWTAlgorithmErrorDescription+Subclass.h"; sourceTree = ""; }; - 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTAlgorithmErrorDescription+Subclass.m"; path = "Core/Algorithms/Base/JWTAlgorithmErrorDescription+Subclass.m"; sourceTree = ""; }; - 46EB2E0000CB60 /* JWTAlgorithmErrorDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmErrorDescription.h; path = Core/Algorithms/Base/JWTAlgorithmErrorDescription.h; sourceTree = ""; }; - 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmErrorDescription.m; path = Core/Algorithms/Base/JWTAlgorithmErrorDescription.m; sourceTree = ""; }; - 46EB2E0000CB80 /* JWTAlgorithmFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmFactory.h; path = Core/Algorithms/Base/JWTAlgorithmFactory.h; sourceTree = ""; }; - 46EB2E0000CB90 /* JWTAlgorithmFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmFactory.m; path = Core/Algorithms/Base/JWTAlgorithmFactory.m; sourceTree = ""; }; - 46EB2E0000CBA0 /* JWTAlgorithmNone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmNone.h; path = Core/Algorithms/Base/JWTAlgorithmNone.h; sourceTree = ""; }; - 46EB2E0000CBB0 /* JWTAlgorithmNone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmNone.m; path = Core/Algorithms/Base/JWTAlgorithmNone.m; sourceTree = ""; }; - 46EB2E0000CBC0 /* JWTAlgorithmAsymmetricBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmAsymmetricBase.h; path = Core/Algorithms/ESFamily/JWTAlgorithmAsymmetricBase.h; sourceTree = ""; }; - 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmAsymmetricBase.m; path = Core/Algorithms/ESFamily/JWTAlgorithmAsymmetricBase.m; sourceTree = ""; }; - 46EB2E0000CBE0 /* JWTAlgorithmESBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmESBase.h; path = Core/Algorithms/ESFamily/JWTAlgorithmESBase.h; sourceTree = ""; }; - 46EB2E0000CBF0 /* JWTAlgorithmESBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmESBase.m; path = Core/Algorithms/ESFamily/JWTAlgorithmESBase.m; sourceTree = ""; }; - 46EB2E0000CC00 /* JWTAlgorithmDataHolder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTAlgorithmDataHolder+FluentStyle.h"; path = "Core/Algorithms/Holders/JWTAlgorithmDataHolder+FluentStyle.h"; sourceTree = ""; }; - 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTAlgorithmDataHolder+FluentStyle.m"; path = "Core/Algorithms/Holders/JWTAlgorithmDataHolder+FluentStyle.m"; sourceTree = ""; }; - 46EB2E0000CC20 /* JWTAlgorithmDataHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmDataHolder.h; path = Core/Algorithms/Holders/JWTAlgorithmDataHolder.h; sourceTree = ""; }; - 46EB2E0000CC30 /* JWTAlgorithmDataHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmDataHolder.m; path = Core/Algorithms/Holders/JWTAlgorithmDataHolder.m; sourceTree = ""; }; - 46EB2E0000CC40 /* JWTAlgorithmDataHolderChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmDataHolderChain.h; path = Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.h; sourceTree = ""; }; - 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmDataHolderChain.m; path = Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.m; sourceTree = ""; }; - 46EB2E0000CC60 /* JWTAlgorithmHSBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmHSBase.h; path = Core/Algorithms/HSFamily/JWTAlgorithmHSBase.h; sourceTree = ""; }; - 46EB2E0000CC70 /* JWTAlgorithmHSBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmHSBase.m; path = Core/Algorithms/HSFamily/JWTAlgorithmHSBase.m; sourceTree = ""; }; - 46EB2E0000CC80 /* JWTAlgorithmRSBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmRSBase.h; path = Core/Algorithms/RSFamily/JWTAlgorithmRSBase.h; sourceTree = ""; }; - 46EB2E0000CC90 /* JWTAlgorithmRSBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmRSBase.m; path = Core/Algorithms/RSFamily/JWTAlgorithmRSBase.m; sourceTree = ""; }; - 46EB2E0000CCA0 /* JWTRSAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTRSAlgorithm.h; path = Core/Algorithms/RSFamily/JWTRSAlgorithm.h; sourceTree = ""; }; - 46EB2E0000CCB0 /* JWTCryptoKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoKey.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.h; sourceTree = ""; }; - 46EB2E0000CCC0 /* JWTCryptoKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoKey.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.m; sourceTree = ""; }; - 46EB2E0000CCD0 /* JWTCryptoKeyExtractor+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoKeyExtractor+FluentStyle.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor+FluentStyle.h"; sourceTree = ""; }; - 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoKeyExtractor+FluentStyle.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor+FluentStyle.m"; sourceTree = ""; }; - 46EB2E0000CCF0 /* JWTCryptoKeyExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoKeyExtractor.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.h; sourceTree = ""; }; - 46EB2E0000CD00 /* JWTCryptoKeyExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoKeyExtractor.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.m; sourceTree = ""; }; - 46EB2E0000CD10 /* JWTCryptoSecurity+ErrorHandling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+ErrorHandling.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ErrorHandling.h"; sourceTree = ""; }; - 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+ErrorHandling.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ErrorHandling.m"; sourceTree = ""; }; - 46EB2E0000CD30 /* JWTCryptoSecurity+ExternalRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+ExternalRepresentation.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ExternalRepresentation.h"; sourceTree = ""; }; - 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+ExternalRepresentation.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ExternalRepresentation.m"; sourceTree = ""; }; - 46EB2E0000CD50 /* JWTCryptoSecurity+Extraction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+Extraction.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+Extraction.h"; sourceTree = ""; }; - 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+Extraction.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+Extraction.m"; sourceTree = ""; }; - 46EB2E0000CD70 /* JWTCryptoSecurity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoSecurity.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.h; sourceTree = ""; }; - 46EB2E0000CD80 /* JWTCryptoSecurity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoSecurity.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.m; sourceTree = ""; }; - 46EB2E0000CD90 /* JWTClaim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaim.h; path = Core/ClaimSet/JWTClaim.h; sourceTree = ""; }; - 46EB2E0000CDA0 /* JWTClaim.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaim.m; path = Core/ClaimSet/JWTClaim.m; sourceTree = ""; }; - 46EB2E0000CDB0 /* JWTClaimBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimBase.h; path = Core/ClaimSet/JWTClaimBase.h; sourceTree = ""; }; - 46EB2E0000CDC0 /* JWTClaimBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimBase.m; path = Core/ClaimSet/JWTClaimBase.m; sourceTree = ""; }; - 46EB2E0000CDD0 /* JWTClaimSerializerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimSerializerBase.h; path = Core/ClaimSet/JWTClaimSerializerBase.h; sourceTree = ""; }; - 46EB2E0000CDE0 /* JWTClaimSerializerBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimSerializerBase.m; path = Core/ClaimSet/JWTClaimSerializerBase.m; sourceTree = ""; }; - 46EB2E0000CDF0 /* JWTClaimSerializerVariations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimSerializerVariations.h; path = Core/ClaimSet/JWTClaimSerializerVariations.h; sourceTree = ""; }; - 46EB2E0000CE00 /* JWTClaimSerializerVariations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimSerializerVariations.m; path = Core/ClaimSet/JWTClaimSerializerVariations.m; sourceTree = ""; }; - 46EB2E0000CE10 /* JWTClaimsProviderBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsProviderBase.h; path = Core/ClaimSet/JWTClaimsProviderBase.h; sourceTree = ""; }; - 46EB2E0000CE20 /* JWTClaimsProviderBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsProviderBase.m; path = Core/ClaimSet/JWTClaimsProviderBase.m; sourceTree = ""; }; - 46EB2E0000CE30 /* JWTClaimsSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSet.h; path = Core/ClaimSet/JWTClaimsSet.h; sourceTree = ""; }; - 46EB2E0000CE40 /* JWTClaimsSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSet.m; path = Core/ClaimSet/JWTClaimsSet.m; sourceTree = ""; }; - 46EB2E0000CE50 /* JWTClaimsSetBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetBase.h; path = Core/ClaimSet/JWTClaimsSetBase.h; sourceTree = ""; }; - 46EB2E0000CE60 /* JWTClaimsSetBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetBase.m; path = Core/ClaimSet/JWTClaimsSetBase.m; sourceTree = ""; }; - 46EB2E0000CE70 /* JWTClaimsSetCoordinatorBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetCoordinatorBase.h; path = Core/ClaimSet/JWTClaimsSetCoordinatorBase.h; sourceTree = ""; }; - 46EB2E0000CE80 /* JWTClaimsSetCoordinatorBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetCoordinatorBase.m; path = Core/ClaimSet/JWTClaimsSetCoordinatorBase.m; sourceTree = ""; }; - 46EB2E0000CE90 /* JWTClaimsSetDSLBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetDSLBase.h; path = Core/ClaimSet/JWTClaimsSetDSLBase.h; sourceTree = ""; }; - 46EB2E0000CEA0 /* JWTClaimsSetDSLBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetDSLBase.m; path = Core/ClaimSet/JWTClaimsSetDSLBase.m; sourceTree = ""; }; - 46EB2E0000CEB0 /* JWTClaimsSetSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetSerializer.h; path = Core/ClaimSet/JWTClaimsSetSerializer.h; sourceTree = ""; }; - 46EB2E0000CEC0 /* JWTClaimsSetSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetSerializer.m; path = Core/ClaimSet/JWTClaimsSetSerializer.m; sourceTree = ""; }; - 46EB2E0000CED0 /* JWTClaimsSetSerializerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetSerializerBase.h; path = Core/ClaimSet/JWTClaimsSetSerializerBase.h; sourceTree = ""; }; - 46EB2E0000CEE0 /* JWTClaimsSetSerializerBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetSerializerBase.m; path = Core/ClaimSet/JWTClaimsSetSerializerBase.m; sourceTree = ""; }; - 46EB2E0000CEF0 /* JWTClaimsSetsProtocols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetsProtocols.h; path = Core/ClaimSet/JWTClaimsSetsProtocols.h; sourceTree = ""; }; - 46EB2E0000CF00 /* JWTClaimsSetVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetVerifier.h; path = Core/ClaimSet/JWTClaimsSetVerifier.h; sourceTree = ""; }; - 46EB2E0000CF10 /* JWTClaimsSetVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetVerifier.m; path = Core/ClaimSet/JWTClaimsSetVerifier.m; sourceTree = ""; }; - 46EB2E0000CF20 /* JWTClaimsSetVerifierBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetVerifierBase.h; path = Core/ClaimSet/JWTClaimsSetVerifierBase.h; sourceTree = ""; }; - 46EB2E0000CF30 /* JWTClaimsSetVerifierBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetVerifierBase.m; path = Core/ClaimSet/JWTClaimsSetVerifierBase.m; sourceTree = ""; }; - 46EB2E0000CF40 /* JWTClaimVariations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimVariations.h; path = Core/ClaimSet/JWTClaimVariations.h; sourceTree = ""; }; - 46EB2E0000CF50 /* JWTClaimVariations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimVariations.m; path = Core/ClaimSet/JWTClaimVariations.m; sourceTree = ""; }; - 46EB2E0000CF60 /* JWTClaimVerifierBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimVerifierBase.h; path = Core/ClaimSet/JWTClaimVerifierBase.h; sourceTree = ""; }; - 46EB2E0000CF70 /* JWTClaimVerifierBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimVerifierBase.m; path = Core/ClaimSet/JWTClaimVerifierBase.m; sourceTree = ""; }; - 46EB2E0000CF80 /* JWTClaimVerifierVariations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimVerifierVariations.h; path = Core/ClaimSet/JWTClaimVerifierVariations.h; sourceTree = ""; }; - 46EB2E0000CF90 /* JWTClaimVerifierVariations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimVerifierVariations.m; path = Core/ClaimSet/JWTClaimVerifierVariations.m; sourceTree = ""; }; - 46EB2E0000CFA0 /* JWTBuilder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTBuilder+FluentStyle.h"; path = "Core/Coding/JWTBuilder+FluentStyle.h"; sourceTree = ""; }; - 46EB2E0000CFB0 /* JWTBuilder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTBuilder+FluentStyle.m"; path = "Core/Coding/JWTBuilder+FluentStyle.m"; sourceTree = ""; }; - 46EB2E0000CFC0 /* JWTCoding+ResultTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+ResultTypes.h"; path = "Core/Coding/JWTCoding+ResultTypes.h"; sourceTree = ""; }; - 46EB2E0000CFD0 /* JWTCoding+ResultTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+ResultTypes.m"; path = "Core/Coding/JWTCoding+ResultTypes.m"; sourceTree = ""; }; - 46EB2E0000CFE0 /* JWTCoding+VersionOne.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionOne.h"; path = "Core/Coding/JWTCoding+VersionOne.h"; sourceTree = ""; }; - 46EB2E0000CFF0 /* JWTCoding+VersionOne.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionOne.m"; path = "Core/Coding/JWTCoding+VersionOne.m"; sourceTree = ""; }; - 46EB2E0000D000 /* JWTCoding+VersionThree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionThree.h"; path = "Core/Coding/JWTCoding+VersionThree.h"; sourceTree = ""; }; - 46EB2E0000D010 /* JWTCoding+VersionThree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionThree.m"; path = "Core/Coding/JWTCoding+VersionThree.m"; sourceTree = ""; }; - 46EB2E0000D020 /* JWTCoding+VersionTwo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionTwo.h"; path = "Core/Coding/JWTCoding+VersionTwo.h"; sourceTree = ""; }; - 46EB2E0000D030 /* JWTCoding+VersionTwo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionTwo.m"; path = "Core/Coding/JWTCoding+VersionTwo.m"; sourceTree = ""; }; - 46EB2E0000D040 /* JWTCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCoding.h; path = Core/Coding/JWTCoding.h; sourceTree = ""; }; - 46EB2E0000D050 /* JWTCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCoding.m; path = Core/Coding/JWTCoding.m; sourceTree = ""; }; - 46EB2E0000D060 /* JWTCodingBuilder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCodingBuilder+FluentStyle.h"; path = "Core/Coding/JWTCodingBuilder+FluentStyle.h"; sourceTree = ""; }; - 46EB2E0000D070 /* JWTCodingBuilder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCodingBuilder+FluentStyle.m"; path = "Core/Coding/JWTCodingBuilder+FluentStyle.m"; sourceTree = ""; }; - 46EB2E0000D080 /* JWT.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWT.h; path = Core/FrameworkSupplement/JWT.h; sourceTree = ""; }; - 46EB2E0000D090 /* JWTBase64Coder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTBase64Coder.h; path = Core/Supplement/JWTBase64Coder.h; sourceTree = ""; }; - 46EB2E0000D0A0 /* JWTBase64Coder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTBase64Coder.m; path = Core/Supplement/JWTBase64Coder.m; sourceTree = ""; }; - 46EB2E0000D0B0 /* JWTDeprecations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTDeprecations.h; path = Core/Supplement/JWTDeprecations.h; sourceTree = ""; }; - 46EB2E0000D0C0 /* JWTErrorDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTErrorDescription.h; path = Core/Supplement/JWTErrorDescription.h; sourceTree = ""; }; - 46EB2E0000D0D0 /* JWTErrorDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTErrorDescription.m; path = Core/Supplement/JWTErrorDescription.m; sourceTree = ""; }; - 46EB2E0000D0F0 /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; - 46EB2E0000D100 /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = idna.c; path = src/idna.c; sourceTree = ""; }; - 46EB2E0000D110 /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inet.c; path = src/inet.c; sourceTree = ""; }; - 46EB2E0000D120 /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; - 46EB2E0000D130 /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; - 46EB2E0000D140 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timer.c; path = src/timer.c; sourceTree = ""; }; - 46EB2E0000D150 /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; - 46EB2E0000D160 /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; - 46EB2E0000D170 /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = version.c; path = src/version.c; sourceTree = ""; }; - 46EB2E0000D180 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = async.c; path = src/unix/async.c; sourceTree = ""; }; - 46EB2E0000D190 /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = core.c; path = src/unix/core.c; sourceTree = ""; }; - 46EB2E0000D1A0 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; - 46EB2E0000D1B0 /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; - 46EB2E0000D1C0 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; - 46EB2E0000D1D0 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; - 46EB2E0000D1E0 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; - 46EB2E0000D1F0 /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; - 46EB2E0000D200 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; - 46EB2E0000D210 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; - 46EB2E0000D220 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = process.c; path = src/unix/process.c; sourceTree = ""; }; - 46EB2E0000D230 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; - 46EB2E0000D240 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; - 46EB2E0000D250 /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; - 46EB2E0000D260 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; - 46EB2E0000D270 /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; - 46EB2E0000D280 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; - 46EB2E0000D290 /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; - 46EB2E0000D2A0 /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; - 46EB2E0000D2B0 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; - 46EB2E0000D2C0 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; - 46EB2E0000D2D0 /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; - 46EB2E0000D2E0 /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; - 46EB2E0000D2F0 /* heap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "heap-inl.h"; path = "src/heap-inl.h"; sourceTree = ""; }; - 46EB2E0000D300 /* idna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idna.h; path = src/idna.h; sourceTree = ""; }; - 46EB2E0000D310 /* queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = queue.h; path = src/queue.h; sourceTree = ""; }; - 46EB2E0000D320 /* strscpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strscpy.h; path = src/strscpy.h; sourceTree = ""; }; - 46EB2E0000D330 /* uv-common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "uv-common.h"; path = "src/uv-common.h"; sourceTree = ""; }; - 46EB2E0000D340 /* atomic-ops.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "atomic-ops.h"; path = "src/unix/atomic-ops.h"; sourceTree = ""; }; - 46EB2E0000D350 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/unix/internal.h; sourceTree = ""; }; - 46EB2E0000D360 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/unix/spinlock.h; sourceTree = ""; }; - 46EB2E0000D380 /* uv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uv.h; path = include/uv.h; sourceTree = ""; }; - 46EB2E0000D390 /* errno.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno.h; path = include/uv/errno.h; sourceTree = ""; }; - 46EB2E0000D3A0 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = include/uv/threadpool.h; sourceTree = ""; }; - 46EB2E0000D3B0 /* version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version.h; path = include/uv/version.h; sourceTree = ""; }; - 46EB2E0000D3C0 /* tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tree.h; path = include/uv/tree.h; sourceTree = ""; }; - 46EB2E0000D3D0 /* unix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix.h; path = include/uv/unix.h; sourceTree = ""; }; - 46EB2E0000D3E0 /* darwin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = darwin.h; path = include/uv/darwin.h; sourceTree = ""; }; - 46EB2E0000D3F0 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 46EB2E0000D400 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 46EB2E0000D410 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 46EB2E0000D420 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 46EB2E0000D430 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - 46EB2E0000D440 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - 46EB2E0000D450 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 46EB2E0000D460 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 46EB2E0000D470 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 46EB2E0000D480 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 46EB2E0000D490 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 46EB2E0000D4A0 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 46EB2E0000D4B0 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 46EB2E0000D4C0 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 46EB2E0000D4D0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 46EB2E0000D4E0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - 46EB2E0000D4F0 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 46EB2E0000D500 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 46EB2E0000D510 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 46EB2E0000D520 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 46EB2E0000D530 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 46EB2E0000D540 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 46EB2E0000D550 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 46EB2E0000D560 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 46EB2E0000D570 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 46EB2E0000D580 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 46EB2E0000D590 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 46EB2E0000D5A0 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 46EB2E0000D5B0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 46EB2E0000D5C0 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 46EB2E0000D5D0 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 46EB2E0000D5E0 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 46EB2E0000D5F0 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - 46EB2E0000D600 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 46EB2E0000D610 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 46EB2E0000D620 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 46EB2E0000D630 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - 46EB2E0000D640 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - 46EB2E0000D650 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 46EB2E0000D660 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 46EB2E0000D670 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 46EB2E0000D680 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 46EB2E0000D690 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 46EB2E0000D6A0 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; - 46EB2E0000D6B0 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 46EB2E0000D6C0 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; - 46EB2E0000D6D0 /* ToAscii.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ToAscii.cpp; path = folly/lang/ToAscii.cpp; sourceTree = ""; }; - 46EB2E0000D6E0 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 46EB2E0000D6F0 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 46EB2E0000D700 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 46EB2E0000D710 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 46EB2E0000D720 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 46EB2E0000D730 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 46EB2E0000D740 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 46EB2E0000D750 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 46EB2E0000D760 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 46EB2E0000D770 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 46EB2E0000D780 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = folly/lang/Exception.cpp; sourceTree = ""; }; - 46EB2E0000D790 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 46EB2E0000D7A0 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 46EB2E0000D7B0 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - 46EB2E0000D7C0 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; - 46EB2E0000D7D0 /* ThreadId.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadId.cpp; path = folly/system/ThreadId.cpp; sourceTree = ""; }; - 46EB2E0000D7E0 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; - 46EB2E0000D7F0 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 46EB2E0000D800 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - 46EB2E0000D810 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 46EB2E0000D820 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - 46EB2E0000D830 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - 46EB2E0000D840 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 46EB2E0000D850 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; - 46EB2E0000D860 /* BenchmarkUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BenchmarkUtil.h; path = folly/BenchmarkUtil.h; sourceTree = ""; }; - 46EB2E0000D870 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 46EB2E0000D880 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; - 46EB2E0000D890 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; - 46EB2E0000D8A0 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; - 46EB2E0000D8B0 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - 46EB2E0000D8C0 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - 46EB2E0000D8D0 /* ConcurrentLazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentLazy.h; path = folly/ConcurrentLazy.h; sourceTree = ""; }; - 46EB2E0000D8E0 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; - 46EB2E0000D8F0 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - 46EB2E0000D900 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; - 46EB2E0000D910 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; - 46EB2E0000D920 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; - 46EB2E0000D930 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - 46EB2E0000D940 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; - 46EB2E0000D950 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; - 46EB2E0000D960 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; - 46EB2E0000D970 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; - 46EB2E0000D980 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 46EB2E0000D990 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; - 46EB2E0000D9A0 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 46EB2E0000D9B0 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; - 46EB2E0000D9C0 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; - 46EB2E0000D9D0 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 46EB2E0000D9E0 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; - 46EB2E0000D9F0 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; - 46EB2E0000DA00 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; - 46EB2E0000DA10 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 46EB2E0000DA20 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - 46EB2E0000DA30 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 46EB2E0000DA40 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; - 46EB2E0000DA50 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - 46EB2E0000DA60 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; - 46EB2E0000DA70 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - 46EB2E0000DA80 /* FollyMemcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FollyMemcpy.h; path = folly/FollyMemcpy.h; sourceTree = ""; }; - 46EB2E0000DA90 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; - 46EB2E0000DAA0 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - 46EB2E0000DAB0 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; - 46EB2E0000DAC0 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - 46EB2E0000DAD0 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - 46EB2E0000DAE0 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - 46EB2E0000DAF0 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 46EB2E0000DB00 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - 46EB2E0000DB10 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 46EB2E0000DB20 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - 46EB2E0000DB30 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 46EB2E0000DB40 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - 46EB2E0000DB50 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - 46EB2E0000DB60 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - 46EB2E0000DB70 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 46EB2E0000DB80 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - 46EB2E0000DB90 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - 46EB2E0000DBA0 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 46EB2E0000DBB0 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - 46EB2E0000DBC0 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - 46EB2E0000DBD0 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; - 46EB2E0000DBE0 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; - 46EB2E0000DBF0 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - 46EB2E0000DC00 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - 46EB2E0000DC10 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - 46EB2E0000DC20 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; - 46EB2E0000DC30 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; - 46EB2E0000DC40 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 46EB2E0000DC50 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; - 46EB2E0000DC60 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; - 46EB2E0000DC70 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 46EB2E0000DC80 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; - 46EB2E0000DC90 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; - 46EB2E0000DCA0 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; - 46EB2E0000DCB0 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; - 46EB2E0000DCC0 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 46EB2E0000DCD0 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; - 46EB2E0000DCE0 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; - 46EB2E0000DCF0 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; - 46EB2E0000DD00 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - 46EB2E0000DD10 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - 46EB2E0000DD20 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; - 46EB2E0000DD30 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - 46EB2E0000DD40 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - 46EB2E0000DD50 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - 46EB2E0000DD60 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - 46EB2E0000DD70 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - 46EB2E0000DD80 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; - 46EB2E0000DD90 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; - 46EB2E0000DDA0 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; - 46EB2E0000DDB0 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; - 46EB2E0000DDC0 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; - 46EB2E0000DDD0 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; - 46EB2E0000DDE0 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; - 46EB2E0000DDF0 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - 46EB2E0000DE00 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 46EB2E0000DE10 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - 46EB2E0000DE20 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - 46EB2E0000DE30 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - 46EB2E0000DE40 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; - 46EB2E0000DE50 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; - 46EB2E0000DE60 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 46EB2E0000DE70 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; - 46EB2E0000DE80 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - 46EB2E0000DE90 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; - 46EB2E0000DEA0 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; - 46EB2E0000DEB0 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - 46EB2E0000DEC0 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; - 46EB2E0000DED0 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; - 46EB2E0000DEE0 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; - 46EB2E0000DEF0 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - 46EB2E0000DF00 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - 46EB2E0000DF10 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; - 46EB2E0000DF20 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - 46EB2E0000DF30 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; - 46EB2E0000DF40 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; - 46EB2E0000DF50 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 46EB2E0000DF60 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 46EB2E0000DF70 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 46EB2E0000DF80 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 46EB2E0000DF90 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; - 46EB2E0000DFA0 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; - 46EB2E0000DFB0 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - 46EB2E0000DFC0 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 46EB2E0000DFD0 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - 46EB2E0000DFE0 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - 46EB2E0000DFF0 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - 46EB2E0000E000 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; - 46EB2E0000E010 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - 46EB2E0000E020 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 46EB2E0000E030 /* View.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = View.h; path = folly/container/View.h; sourceTree = ""; }; - 46EB2E0000E040 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - 46EB2E0000E050 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 46EB2E0000E060 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - 46EB2E0000E070 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 46EB2E0000E080 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - 46EB2E0000E090 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; - 46EB2E0000E0A0 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; - 46EB2E0000E0B0 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 46EB2E0000E0C0 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; - 46EB2E0000E0D0 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 46EB2E0000E0E0 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - 46EB2E0000E0F0 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - 46EB2E0000E100 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; - 46EB2E0000E110 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; - 46EB2E0000E120 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 46EB2E0000E130 /* FileUtilVectorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilVectorDetail.h; path = folly/detail/FileUtilVectorDetail.h; sourceTree = ""; }; - 46EB2E0000E140 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 46EB2E0000E150 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - 46EB2E0000E160 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; - 46EB2E0000E170 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 46EB2E0000E180 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - 46EB2E0000E190 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 46EB2E0000E1A0 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; - 46EB2E0000E1B0 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; - 46EB2E0000E1C0 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - 46EB2E0000E1D0 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; - 46EB2E0000E1E0 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 46EB2E0000E1F0 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; - 46EB2E0000E200 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - 46EB2E0000E210 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; - 46EB2E0000E220 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; - 46EB2E0000E230 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 46EB2E0000E240 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - 46EB2E0000E250 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; - 46EB2E0000E260 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; - 46EB2E0000E270 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; - 46EB2E0000E280 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - 46EB2E0000E290 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - 46EB2E0000E2A0 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; - 46EB2E0000E2B0 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; - 46EB2E0000E2C0 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; - 46EB2E0000E2D0 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - 46EB2E0000E2E0 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - 46EB2E0000E2F0 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 46EB2E0000E300 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 46EB2E0000E310 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - 46EB2E0000E320 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 46EB2E0000E330 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 46EB2E0000E340 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; - 46EB2E0000E350 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 46EB2E0000E360 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; - 46EB2E0000E370 /* Byte.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Byte.h; path = folly/lang/Byte.h; sourceTree = ""; }; - 46EB2E0000E380 /* CArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CArray.h; path = folly/lang/CArray.h; sourceTree = ""; }; - 46EB2E0000E390 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; - 46EB2E0000E3A0 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; - 46EB2E0000E3B0 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; - 46EB2E0000E3C0 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; - 46EB2E0000E3D0 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 46EB2E0000E3E0 /* Extern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Extern.h; path = folly/lang/Extern.h; sourceTree = ""; }; - 46EB2E0000E3F0 /* Keep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Keep.h; path = folly/lang/Keep.h; sourceTree = ""; }; - 46EB2E0000E400 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - 46EB2E0000E410 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - 46EB2E0000E420 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - 46EB2E0000E430 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; - 46EB2E0000E440 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; - 46EB2E0000E450 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - 46EB2E0000E460 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; - 46EB2E0000E470 /* Thunk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Thunk.h; path = folly/lang/Thunk.h; sourceTree = ""; }; - 46EB2E0000E480 /* ToAscii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ToAscii.h; path = folly/lang/ToAscii.h; sourceTree = ""; }; - 46EB2E0000E490 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - 46EB2E0000E4A0 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - 46EB2E0000E4B0 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; - 46EB2E0000E4C0 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 46EB2E0000E4D0 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - 46EB2E0000E4E0 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - 46EB2E0000E4F0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - 46EB2E0000E500 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - 46EB2E0000E510 /* not_null-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "not_null-inl.h"; path = "folly/memory/not_null-inl.h"; sourceTree = ""; }; - 46EB2E0000E520 /* not_null.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = not_null.h; path = folly/memory/not_null.h; sourceTree = ""; }; - 46EB2E0000E530 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - 46EB2E0000E540 /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; - 46EB2E0000E550 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; - 46EB2E0000E560 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - 46EB2E0000E570 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; - 46EB2E0000E580 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - 46EB2E0000E590 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; - 46EB2E0000E5A0 /* NetOpsDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOpsDispatcher.h; path = folly/net/NetOpsDispatcher.h; sourceTree = ""; }; - 46EB2E0000E5B0 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; - 46EB2E0000E5C0 /* TcpInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpInfo.h; path = folly/net/TcpInfo.h; sourceTree = ""; }; - 46EB2E0000E5D0 /* TcpInfoTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpInfoTypes.h; path = folly/net/TcpInfoTypes.h; sourceTree = ""; }; - 46EB2E0000E5E0 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; - 46EB2E0000E5F0 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; - 46EB2E0000E600 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - 46EB2E0000E610 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; - 46EB2E0000E620 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; - 46EB2E0000E630 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - 46EB2E0000E640 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; - 46EB2E0000E650 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 46EB2E0000E660 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; - 46EB2E0000E670 /* Filesystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filesystem.h; path = folly/portability/Filesystem.h; sourceTree = ""; }; - 46EB2E0000E680 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; - 46EB2E0000E690 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; - 46EB2E0000E6A0 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; - 46EB2E0000E6B0 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - 46EB2E0000E6C0 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; - 46EB2E0000E6D0 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; - 46EB2E0000E6E0 /* Libunwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libunwind.h; path = folly/portability/Libunwind.h; sourceTree = ""; }; - 46EB2E0000E6F0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 46EB2E0000E700 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - 46EB2E0000E710 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; - 46EB2E0000E720 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - 46EB2E0000E730 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 46EB2E0000E740 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - 46EB2E0000E750 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 46EB2E0000E760 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - 46EB2E0000E770 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 46EB2E0000E780 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - 46EB2E0000E790 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; - 46EB2E0000E7A0 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; - 46EB2E0000E7B0 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - 46EB2E0000E7C0 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; - 46EB2E0000E7D0 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; - 46EB2E0000E7E0 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 46EB2E0000E7F0 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 46EB2E0000E800 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; - 46EB2E0000E810 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - 46EB2E0000E820 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - 46EB2E0000E830 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; - 46EB2E0000E840 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; - 46EB2E0000E850 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 46EB2E0000E870 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; - 46EB2E0000E880 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; - 46EB2E0000E890 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; - 46EB2E0000E8A0 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; - 46EB2E0000E8B0 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 46EB2E0000E8C0 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; - 46EB2E0000E8D0 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; - 46EB2E0000E8E0 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; - 46EB2E0000E8F0 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 46EB2E0000E900 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 46EB2E0000E910 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; - 46EB2E0000E920 /* Promise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Promise.cpp; path = folly/futures/Promise.cpp; sourceTree = ""; }; - 46EB2E0000E930 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; - 46EB2E0000E940 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - 46EB2E0000E950 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; - 46EB2E0000E960 /* SharedPromise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedPromise.cpp; path = folly/futures/SharedPromise.cpp; sourceTree = ""; }; - 46EB2E0000E970 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; - 46EB2E0000E980 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; - 46EB2E0000E990 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - 46EB2E0000E9A0 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; - 46EB2E0000E9B0 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/futures/detail/Core.cpp; sourceTree = ""; }; - 46EB2E0000E9C0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; - 46EB2E0000E9D0 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - 46EB2E0000E9E0 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - 46EB2E0000E9F0 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; - 46EB2E0000EA00 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - 46EB2E0000EA10 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EA20 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E0000EA30 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 46EB2E0000EA40 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EA50 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E0000EA60 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; - 46EB2E0000EA70 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; - 46EB2E0000EA80 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; - 46EB2E0000EA90 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; - 46EB2E0000EAA0 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - 46EB2E0000EAB0 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EAC0 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; - 46EB2E0000EAD0 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - 46EB2E0000EAE0 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - 46EB2E0000EAF0 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EB00 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - 46EB2E0000EB10 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - 46EB2E0000EB20 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; - 46EB2E0000EB30 /* IOThreadPoolDeadlockDetectorObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolDeadlockDetectorObserver.cpp; path = folly/executors/IOThreadPoolDeadlockDetectorObserver.cpp; sourceTree = ""; }; - 46EB2E0000EB40 /* IOThreadPoolDeadlockDetectorObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolDeadlockDetectorObserver.h; path = folly/executors/IOThreadPoolDeadlockDetectorObserver.h; sourceTree = ""; }; - 46EB2E0000EB50 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EB60 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E0000EB70 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EB80 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; - 46EB2E0000EB90 /* MeteredExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MeteredExecutor.cpp; path = folly/executors/MeteredExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EBA0 /* MeteredExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MeteredExecutor.h; path = folly/executors/MeteredExecutor.h; sourceTree = ""; }; - 46EB2E0000EBB0 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EBC0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - 46EB2E0000EBD0 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; - 46EB2E0000EBE0 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; - 46EB2E0000EBF0 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EC00 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - 46EB2E0000EC10 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - 46EB2E0000EC20 /* StrandExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StrandExecutor.cpp; path = folly/executors/StrandExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EC30 /* StrandExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StrandExecutor.h; path = folly/executors/StrandExecutor.h; sourceTree = ""; }; - 46EB2E0000EC40 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EC50 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; - 46EB2E0000EC60 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EC70 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E0000EC80 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EC90 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; - 46EB2E0000ECA0 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; - 46EB2E0000ECB0 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - 46EB2E0000ECC0 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; - 46EB2E0000ECD0 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; - 46EB2E0000ECE0 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; - 46EB2E0000ECF0 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - 46EB2E0000ED00 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; - 46EB2E0000ED10 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 46EB2E0000ED20 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; - 46EB2E0000ED30 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 46EB2E0000ED40 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; - 46EB2E0000ED50 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - 46EB2E0000ED60 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; - 46EB2E0000ED70 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 46EB2E0000ED80 /* DeadlockDetector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DeadlockDetector.cpp; path = folly/concurrency/DeadlockDetector.cpp; sourceTree = ""; }; - 46EB2E0000ED90 /* DeadlockDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeadlockDetector.h; path = folly/concurrency/DeadlockDetector.h; sourceTree = ""; }; - 46EB2E0000EDA0 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; - 46EB2E0000EDB0 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - 46EB2E0000EDC0 /* QueueObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueueObserver.cpp; path = folly/concurrency/QueueObserver.cpp; sourceTree = ""; }; - 46EB2E0000EDD0 /* QueueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueueObserver.h; path = folly/concurrency/QueueObserver.h; sourceTree = ""; }; - 46EB2E0000EDE0 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - 46EB2E0000EDF0 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; - 46EB2E0000EE00 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - 46EB2E0000EE10 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - 46EB2E0000EE20 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; - 46EB2E0000EE30 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - 46EB2E0000EE40 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; - 46EB2E0000EE50 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - 46EB2E0000EE60 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - 46EB2E0000EE70 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; - 46EB2E0000EE80 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - 46EB2E0000EE90 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; - 46EB2E0000EEA0 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - 46EB2E0000EEB0 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; - 46EB2E0000EEC0 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - 46EB2E0000EED0 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; - 46EB2E0000EEE0 /* DelayedInit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedInit.h; path = folly/synchronization/DelayedInit.h; sourceTree = ""; }; - 46EB2E0000EEF0 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - 46EB2E0000EF00 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - 46EB2E0000EF10 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - 46EB2E0000EF20 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; - 46EB2E0000EF30 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; - 46EB2E0000EF40 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - 46EB2E0000EF50 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - 46EB2E0000EF60 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; - 46EB2E0000EF70 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; - 46EB2E0000EF80 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - 46EB2E0000EF90 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; - 46EB2E0000EFA0 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; - 46EB2E0000EFB0 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; - 46EB2E0000EFC0 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 46EB2E0000EFD0 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 46EB2E0000EFE0 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = folly/synchronization/Latch.h; sourceTree = ""; }; - 46EB2E0000EFF0 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - 46EB2E0000F000 /* Lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lock.h; path = folly/synchronization/Lock.h; sourceTree = ""; }; - 46EB2E0000F010 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; - 46EB2E0000F020 /* NativeSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeSemaphore.h; path = folly/synchronization/NativeSemaphore.h; sourceTree = ""; }; - 46EB2E0000F030 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - 46EB2E0000F040 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; - 46EB2E0000F050 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; - 46EB2E0000F060 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; - 46EB2E0000F070 /* Rcu.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Rcu.cpp; path = folly/synchronization/Rcu.cpp; sourceTree = ""; }; - 46EB2E0000F080 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = ""; }; - 46EB2E0000F090 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 46EB2E0000F0A0 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; - 46EB2E0000F0B0 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; - 46EB2E0000F0C0 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - 46EB2E0000F0D0 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; - 46EB2E0000F0E0 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 46EB2E0000F0F0 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; - 46EB2E0000F100 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; - 46EB2E0000F110 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; - 46EB2E0000F120 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - 46EB2E0000F130 /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = ""; }; - 46EB2E0000F140 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 46EB2E0000F150 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; - 46EB2E0000F160 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - 46EB2E0000F170 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - 46EB2E0000F180 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - 46EB2E0000F190 /* Sleeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sleeper.cpp; path = folly/synchronization/detail/Sleeper.cpp; sourceTree = ""; }; - 46EB2E0000F1A0 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; - 46EB2E0000F1B0 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; - 46EB2E0000F1C0 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; - 46EB2E0000F1D0 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; - 46EB2E0000F1E0 /* Try.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Try.cpp; path = folly/Try.cpp; sourceTree = ""; }; - 46EB2E0000F1F0 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; - 46EB2E0000F200 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; - 46EB2E0000F210 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; - 46EB2E0000F220 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - 46EB2E0000F230 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; - 46EB2E0000F240 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - 46EB2E0000F250 /* AtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotificationQueue-inl.h"; path = "folly/io/async/AtomicNotificationQueue-inl.h"; sourceTree = ""; }; - 46EB2E0000F260 /* AtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotificationQueue.h; path = folly/io/async/AtomicNotificationQueue.h; sourceTree = ""; }; - 46EB2E0000F270 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 46EB2E0000F280 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - 46EB2E0000F290 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 46EB2E0000F2A0 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 46EB2E0000F2B0 /* EventBaseAtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseAtomicNotificationQueue-inl.h"; path = "folly/io/async/EventBaseAtomicNotificationQueue-inl.h"; sourceTree = ""; }; - 46EB2E0000F2C0 /* EventBaseAtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseAtomicNotificationQueue.h; path = folly/io/async/EventBaseAtomicNotificationQueue.h; sourceTree = ""; }; - 46EB2E0000F2D0 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; - 46EB2E0000F2E0 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; - 46EB2E0000F2F0 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 46EB2E0000F300 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; - 46EB2E0000F310 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - 46EB2E0000F320 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; - 46EB2E0000F330 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; - 46EB2E0000F340 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; - 46EB2E0000F350 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; - 46EB2E0000F360 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; - 46EB2E0000F370 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; - 46EB2E0000F380 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - 46EB2E0000F390 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; - 46EB2E0000F3A0 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 46EB2E0000F3B0 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - 46EB2E0000F3C0 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; - 46EB2E0000F3D0 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; - 46EB2E0000F3E0 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 46EB2E0000F3F0 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; - 46EB2E0000F400 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; - 46EB2E0000F410 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; - 46EB2E0000F420 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - 46EB2E0000F430 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 46EB2E0000F440 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - 46EB2E0000F450 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - 46EB2E0000F460 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; - 46EB2E0000F470 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; - 46EB2E0000F480 /* AsyncStack.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncStack.cpp; path = folly/tracing/AsyncStack.cpp; sourceTree = ""; }; - 46EB2E0000F490 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/tracing/AsyncStack.h; sourceTree = ""; }; - 46EB2E0000F4A0 /* AsyncStack-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AsyncStack-inl.h"; path = "folly/tracing/AsyncStack-inl.h"; sourceTree = ""; }; - 46EB2E0000F4B0 /* ExceptionString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionString.cpp; path = folly/ExceptionString.cpp; sourceTree = ""; }; - 46EB2E0000F4C0 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; - 46EB2E0000F4D0 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; - 46EB2E0000F4E0 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 46EB2E0000F4F0 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; - 46EB2E0000F500 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 46EB2E0000F510 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; - 46EB2E0000F520 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; - 46EB2E0000F530 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - 46EB2E0000F540 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - 46EB2E0000F550 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; - 46EB2E0000F560 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; - 46EB2E0000F570 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - 46EB2E0000F580 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; - 46EB2E0000F590 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; - 46EB2E0000F5A0 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/Traits.h; sourceTree = ""; }; - 46EB2E0000F5B0 /* AddTasks-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AddTasks-inl.h"; path = "folly/fibers/AddTasks-inl.h"; sourceTree = ""; }; - 46EB2E0000F5C0 /* AddTasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AddTasks.h; path = folly/fibers/AddTasks.h; sourceTree = ""; }; - 46EB2E0000F5D0 /* AtomicBatchDispatcher-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicBatchDispatcher-inl.h"; path = "folly/fibers/AtomicBatchDispatcher-inl.h"; sourceTree = ""; }; - 46EB2E0000F5E0 /* AtomicBatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicBatchDispatcher.h; path = folly/fibers/AtomicBatchDispatcher.h; sourceTree = ""; }; - 46EB2E0000F5F0 /* BatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchDispatcher.h; path = folly/fibers/BatchDispatcher.h; sourceTree = ""; }; - 46EB2E0000F600 /* BatchSemaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchSemaphore.cpp; path = folly/fibers/BatchSemaphore.cpp; sourceTree = ""; }; - 46EB2E0000F610 /* BatchSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchSemaphore.h; path = folly/fibers/BatchSemaphore.h; sourceTree = ""; }; - 46EB2E0000F620 /* Baton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Baton-inl.h"; path = "folly/fibers/Baton-inl.h"; sourceTree = ""; }; - 46EB2E0000F630 /* Baton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Baton.cpp; path = folly/fibers/Baton.cpp; sourceTree = ""; }; - 46EB2E0000F640 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/fibers/Baton.h; sourceTree = ""; }; - 46EB2E0000F650 /* BoostContextCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BoostContextCompatibility.h; path = folly/fibers/BoostContextCompatibility.h; sourceTree = ""; }; - 46EB2E0000F660 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/fibers/CallOnce.h; sourceTree = ""; }; - 46EB2E0000F670 /* EventBaseLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseLoopController-inl.h"; path = "folly/fibers/EventBaseLoopController-inl.h"; sourceTree = ""; }; - 46EB2E0000F680 /* EventBaseLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLoopController.h; path = folly/fibers/EventBaseLoopController.h; sourceTree = ""; }; - 46EB2E0000F690 /* ExecutorBasedLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorBasedLoopController.h; path = folly/fibers/ExecutorBasedLoopController.h; sourceTree = ""; }; - 46EB2E0000F6A0 /* ExecutorLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorLoopController-inl.h"; path = "folly/fibers/ExecutorLoopController-inl.h"; sourceTree = ""; }; - 46EB2E0000F6B0 /* ExecutorLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorLoopController.h; path = folly/fibers/ExecutorLoopController.h; sourceTree = ""; }; - 46EB2E0000F6C0 /* Fiber-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Fiber-inl.h"; path = "folly/fibers/Fiber-inl.h"; sourceTree = ""; }; - 46EB2E0000F6D0 /* Fiber.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fiber.cpp; path = folly/fibers/Fiber.cpp; sourceTree = ""; }; - 46EB2E0000F6E0 /* Fiber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fiber.h; path = folly/fibers/Fiber.h; sourceTree = ""; }; - 46EB2E0000F6F0 /* FiberManager-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManager-inl.h"; path = "folly/fibers/FiberManager-inl.h"; sourceTree = ""; }; - 46EB2E0000F700 /* FiberManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FiberManager.cpp; path = folly/fibers/FiberManager.cpp; sourceTree = ""; }; - 46EB2E0000F710 /* FiberManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManager.h; path = folly/fibers/FiberManager.h; sourceTree = ""; }; - 46EB2E0000F720 /* FiberManagerInternal-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerInternal-inl.h"; path = "folly/fibers/FiberManagerInternal-inl.h"; sourceTree = ""; }; - 46EB2E0000F730 /* FiberManagerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerInternal.h; path = folly/fibers/FiberManagerInternal.h; sourceTree = ""; }; - 46EB2E0000F740 /* FiberManagerMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerMap-inl.h"; path = "folly/fibers/FiberManagerMap-inl.h"; sourceTree = ""; }; - 46EB2E0000F750 /* FiberManagerMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerMap.h; path = folly/fibers/FiberManagerMap.h; sourceTree = ""; }; - 46EB2E0000F760 /* ForEach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ForEach-inl.h"; path = "folly/fibers/ForEach-inl.h"; sourceTree = ""; }; - 46EB2E0000F770 /* ForEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ForEach.h; path = folly/fibers/ForEach.h; sourceTree = ""; }; - 46EB2E0000F780 /* GenericBaton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericBaton.h; path = folly/fibers/GenericBaton.h; sourceTree = ""; }; - 46EB2E0000F790 /* GuardPageAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GuardPageAllocator.cpp; path = folly/fibers/GuardPageAllocator.cpp; sourceTree = ""; }; - 46EB2E0000F7A0 /* GuardPageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GuardPageAllocator.h; path = folly/fibers/GuardPageAllocator.h; sourceTree = ""; }; - 46EB2E0000F7B0 /* LoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoopController.h; path = folly/fibers/LoopController.h; sourceTree = ""; }; - 46EB2E0000F7C0 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/fibers/Promise-inl.h"; sourceTree = ""; }; - 46EB2E0000F7D0 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/fibers/Promise.h; sourceTree = ""; }; - 46EB2E0000F7E0 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/fibers/Semaphore.cpp; sourceTree = ""; }; - 46EB2E0000F7F0 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/fibers/Semaphore.h; sourceTree = ""; }; - 46EB2E0000F800 /* SemaphoreBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SemaphoreBase.cpp; path = folly/fibers/SemaphoreBase.cpp; sourceTree = ""; }; - 46EB2E0000F810 /* SemaphoreBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SemaphoreBase.h; path = folly/fibers/SemaphoreBase.h; sourceTree = ""; }; - 46EB2E0000F820 /* SimpleLoopController.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SimpleLoopController.cpp; path = folly/fibers/SimpleLoopController.cpp; sourceTree = ""; }; - 46EB2E0000F830 /* SimpleLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleLoopController.h; path = folly/fibers/SimpleLoopController.h; sourceTree = ""; }; - 46EB2E0000F840 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; - 46EB2E0000F850 /* TimedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedMutex.h; path = folly/fibers/TimedMutex.h; sourceTree = ""; }; - 46EB2E0000F860 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = folly/fibers/traits.h; sourceTree = ""; }; - 46EB2E0000F870 /* WhenN-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WhenN-inl.h"; path = "folly/fibers/WhenN-inl.h"; sourceTree = ""; }; - 46EB2E0000F880 /* WhenN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhenN.h; path = folly/fibers/WhenN.h; sourceTree = ""; }; - 46EB2E0000F890 /* Coroutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Coroutine.h; path = folly/experimental/coro/Coroutine.h; sourceTree = ""; }; - 46EB2E0000F8A0 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; - 46EB2E0000F8B0 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - 46EB2E0000F8C0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - 46EB2E0000F8D0 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 46EB2E0000F8E0 /* Bser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bser.h; path = folly/experimental/bser/Bser.h; sourceTree = ""; }; - 46EB2E0000F8F0 /* AtomicQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicQueue.h; path = folly/experimental/channels/detail/AtomicQueue.h; sourceTree = ""; }; - 46EB2E0000F900 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; - 46EB2E0000F910 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - 46EB2E0000F920 /* Accumulate-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Accumulate-inl.h"; path = "folly/experimental/coro/Accumulate-inl.h"; sourceTree = ""; }; - 46EB2E0000F930 /* Accumulate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Accumulate.h; path = folly/experimental/coro/Accumulate.h; sourceTree = ""; }; - 46EB2E0000F940 /* AsyncGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGenerator.h; path = folly/experimental/coro/AsyncGenerator.h; sourceTree = ""; }; - 46EB2E0000F950 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/experimental/coro/AsyncPipe.h; sourceTree = ""; }; - 46EB2E0000F960 /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; - 46EB2E0000F970 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/experimental/coro/AsyncStack.h; sourceTree = ""; }; - 46EB2E0000F980 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/experimental/coro/Baton.h; sourceTree = ""; }; - 46EB2E0000F990 /* BlockingWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingWait.h; path = folly/experimental/coro/BlockingWait.h; sourceTree = ""; }; - 46EB2E0000F9A0 /* Collect-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Collect-inl.h"; path = "folly/experimental/coro/Collect-inl.h"; sourceTree = ""; }; - 46EB2E0000F9B0 /* Collect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Collect.h; path = folly/experimental/coro/Collect.h; sourceTree = ""; }; - 46EB2E0000F9C0 /* Concat-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Concat-inl.h"; path = "folly/experimental/coro/Concat-inl.h"; sourceTree = ""; }; - 46EB2E0000F9D0 /* Concat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Concat.h; path = folly/experimental/coro/Concat.h; sourceTree = ""; }; - 46EB2E0000F9E0 /* CurrentExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentExecutor.h; path = folly/experimental/coro/CurrentExecutor.h; sourceTree = ""; }; - 46EB2E0000F9F0 /* Dematerialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Dematerialize-inl.h"; path = "folly/experimental/coro/Dematerialize-inl.h"; sourceTree = ""; }; - 46EB2E0000FA00 /* Dematerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dematerialize.h; path = folly/experimental/coro/Dematerialize.h; sourceTree = ""; }; - 46EB2E0000FA10 /* DetachOnCancel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DetachOnCancel.h; path = folly/experimental/coro/DetachOnCancel.h; sourceTree = ""; }; - 46EB2E0000FA20 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/experimental/coro/detail/Barrier.h; sourceTree = ""; }; - 46EB2E0000FA30 /* BarrierTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarrierTask.h; path = folly/experimental/coro/detail/BarrierTask.h; sourceTree = ""; }; - 46EB2E0000FA40 /* CurrentAsyncFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentAsyncFrame.h; path = folly/experimental/coro/detail/CurrentAsyncFrame.h; sourceTree = ""; }; - 46EB2E0000FA50 /* Helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Helpers.h; path = folly/experimental/coro/detail/Helpers.h; sourceTree = ""; }; - 46EB2E0000FA60 /* InlineTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineTask.h; path = folly/experimental/coro/detail/InlineTask.h; sourceTree = ""; }; - 46EB2E0000FA70 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/experimental/coro/detail/Malloc.h; sourceTree = ""; }; - 46EB2E0000FA80 /* ManualLifetime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualLifetime.h; path = folly/experimental/coro/detail/ManualLifetime.h; sourceTree = ""; }; - 46EB2E0000FA90 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/detail/Traits.h; sourceTree = ""; }; - 46EB2E0000FAA0 /* Filter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Filter-inl.h"; path = "folly/experimental/coro/Filter-inl.h"; sourceTree = ""; }; - 46EB2E0000FAB0 /* Filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filter.h; path = folly/experimental/coro/Filter.h; sourceTree = ""; }; - 46EB2E0000FAC0 /* FutureUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureUtil.h; path = folly/experimental/coro/FutureUtil.h; sourceTree = ""; }; - 46EB2E0000FAD0 /* Generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Generator.h; path = folly/experimental/coro/Generator.h; sourceTree = ""; }; - 46EB2E0000FAE0 /* GmockHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GmockHelpers.h; path = folly/experimental/coro/GmockHelpers.h; sourceTree = ""; }; - 46EB2E0000FAF0 /* GtestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GtestHelpers.h; path = folly/experimental/coro/GtestHelpers.h; sourceTree = ""; }; - 46EB2E0000FB00 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/experimental/coro/Invoke.h; sourceTree = ""; }; - 46EB2E0000FB10 /* Materialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Materialize-inl.h"; path = "folly/experimental/coro/Materialize-inl.h"; sourceTree = ""; }; - 46EB2E0000FB20 /* Materialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Materialize.h; path = folly/experimental/coro/Materialize.h; sourceTree = ""; }; - 46EB2E0000FB30 /* Merge-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Merge-inl.h"; path = "folly/experimental/coro/Merge-inl.h"; sourceTree = ""; }; - 46EB2E0000FB40 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; - 46EB2E0000FB50 /* Multiplex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Multiplex-inl.h"; path = "folly/experimental/coro/Multiplex-inl.h"; sourceTree = ""; }; - 46EB2E0000FB60 /* Multiplex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Multiplex.h; path = folly/experimental/coro/Multiplex.h; sourceTree = ""; }; - 46EB2E0000FB70 /* Mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mutex.h; path = folly/experimental/coro/Mutex.h; sourceTree = ""; }; - 46EB2E0000FB80 /* Result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Result.h; path = folly/experimental/coro/Result.h; sourceTree = ""; }; - 46EB2E0000FB90 /* Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retry.h; path = folly/experimental/coro/Retry.h; sourceTree = ""; }; - 46EB2E0000FBA0 /* RustAdaptors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RustAdaptors.h; path = folly/experimental/coro/RustAdaptors.h; sourceTree = ""; }; - 46EB2E0000FBB0 /* SharedLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedLock.h; path = folly/experimental/coro/SharedLock.h; sourceTree = ""; }; - 46EB2E0000FBC0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/experimental/coro/SharedMutex.h; sourceTree = ""; }; - 46EB2E0000FBD0 /* Sleep-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Sleep-inl.h"; path = "folly/experimental/coro/Sleep-inl.h"; sourceTree = ""; }; - 46EB2E0000FBE0 /* Sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleep.h; path = folly/experimental/coro/Sleep.h; sourceTree = ""; }; - 46EB2E0000FBF0 /* SmallUnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallUnboundedQueue.h; path = folly/experimental/coro/SmallUnboundedQueue.h; sourceTree = ""; }; - 46EB2E0000FC00 /* Task.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Task.h; path = folly/experimental/coro/Task.h; sourceTree = ""; }; - 46EB2E0000FC10 /* TimedWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedWait.h; path = folly/experimental/coro/TimedWait.h; sourceTree = ""; }; - 46EB2E0000FC20 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; - 46EB2E0000FC30 /* Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timeout.h; path = folly/experimental/coro/Timeout.h; sourceTree = ""; }; - 46EB2E0000FC40 /* Transform-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Transform-inl.h"; path = "folly/experimental/coro/Transform-inl.h"; sourceTree = ""; }; - 46EB2E0000FC50 /* Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Transform.h; path = folly/experimental/coro/Transform.h; sourceTree = ""; }; - 46EB2E0000FC60 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/experimental/coro/UnboundedQueue.h; sourceTree = ""; }; - 46EB2E0000FC70 /* ViaIfAsync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViaIfAsync.h; path = folly/experimental/coro/ViaIfAsync.h; sourceTree = ""; }; - 46EB2E0000FC80 /* Wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wait.h; path = folly/experimental/coro/Wait.h; sourceTree = ""; }; - 46EB2E0000FC90 /* WithAsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithAsyncStack.h; path = folly/experimental/coro/WithAsyncStack.h; sourceTree = ""; }; - 46EB2E0000FCA0 /* WithCancellation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithCancellation.h; path = folly/experimental/coro/WithCancellation.h; sourceTree = ""; }; - 46EB2E0000FCB0 /* Blake2xb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Blake2xb.h; path = folly/experimental/crypto/Blake2xb.h; sourceTree = ""; }; - 46EB2E0000FCC0 /* LtHashInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LtHashInternal.h; path = folly/experimental/crypto/detail/LtHashInternal.h; sourceTree = ""; }; - 46EB2E0000FCD0 /* LtHash-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "LtHash-inl.h"; path = "folly/experimental/crypto/LtHash-inl.h"; sourceTree = ""; }; - 46EB2E0000FCE0 /* LtHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LtHash.h; path = folly/experimental/crypto/LtHash.h; sourceTree = ""; }; - 46EB2E0000FCF0 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; - 46EB2E0000FD00 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; - 46EB2E0000FD10 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; - 46EB2E0000FD20 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; - 46EB2E0000FD30 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; - 46EB2E0000FD40 /* ExceptionAbi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionAbi.h; path = folly/experimental/exception_tracer/ExceptionAbi.h; sourceTree = ""; }; - 46EB2E0000FD50 /* ExceptionCounterLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionCounterLib.h; path = folly/experimental/exception_tracer/ExceptionCounterLib.h; sourceTree = ""; }; - 46EB2E0000FD60 /* ExceptionTracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionTracer.h; path = folly/experimental/exception_tracer/ExceptionTracer.h; sourceTree = ""; }; - 46EB2E0000FD70 /* ExceptionTracerLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionTracerLib.h; path = folly/experimental/exception_tracer/ExceptionTracerLib.h; sourceTree = ""; }; - 46EB2E0000FD80 /* SmartExceptionTracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmartExceptionTracer.h; path = folly/experimental/exception_tracer/SmartExceptionTracer.h; sourceTree = ""; }; - 46EB2E0000FD90 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/exception_tracer/StackTrace.h; sourceTree = ""; }; - 46EB2E0000FDA0 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 46EB2E0000FDB0 /* FlatCombining.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombining.h; path = folly/experimental/flat_combining/FlatCombining.h; sourceTree = ""; }; - 46EB2E0000FDC0 /* FlatCombiningExamples.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningExamples.h; path = folly/experimental/flat_combining/test/FlatCombiningExamples.h; sourceTree = ""; }; - 46EB2E0000FDD0 /* FlatCombiningTestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningTestHelpers.h; path = folly/experimental/flat_combining/test/FlatCombiningTestHelpers.h; sourceTree = ""; }; - 46EB2E0000FDE0 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 46EB2E0000FDF0 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; - 46EB2E0000FE00 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - 46EB2E0000FE10 /* AsyncBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncBase.h; path = folly/experimental/io/AsyncBase.h; sourceTree = ""; }; - 46EB2E0000FE20 /* AsyncIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncIO.h; path = folly/experimental/io/AsyncIO.h; sourceTree = ""; }; - 46EB2E0000FE30 /* FsUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FsUtil.h; path = folly/experimental/io/FsUtil.h; sourceTree = ""; }; - 46EB2E0000FE40 /* HugePages.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HugePages.h; path = folly/experimental/io/HugePages.h; sourceTree = ""; }; - 46EB2E0000FE50 /* IoUring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoUring.h; path = folly/experimental/io/IoUring.h; sourceTree = ""; }; - 46EB2E0000FE60 /* IoUringBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoUringBackend.h; path = folly/experimental/io/IoUringBackend.h; sourceTree = ""; }; - 46EB2E0000FE70 /* SimpleAsyncIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleAsyncIO.h; path = folly/experimental/io/SimpleAsyncIO.h; sourceTree = ""; }; - 46EB2E0000FE80 /* AsyncBaseTestLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncBaseTestLib.h; path = folly/experimental/io/test/AsyncBaseTestLib.h; sourceTree = ""; }; - 46EB2E0000FE90 /* IoTestTempFileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoTestTempFileUtil.h; path = folly/experimental/io/test/IoTestTempFileUtil.h; sourceTree = ""; }; - 46EB2E0000FEA0 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 46EB2E0000FEB0 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; - 46EB2E0000FEC0 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 46EB2E0000FED0 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - 46EB2E0000FEE0 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; - 46EB2E0000FEF0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/experimental/observer/detail/Core.h; sourceTree = ""; }; - 46EB2E0000FF00 /* GraphCycleDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GraphCycleDetector.h; path = folly/experimental/observer/detail/GraphCycleDetector.h; sourceTree = ""; }; - 46EB2E0000FF10 /* ObserverManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObserverManager.h; path = folly/experimental/observer/detail/ObserverManager.h; sourceTree = ""; }; - 46EB2E0000FF20 /* Observable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observable-inl.h"; path = "folly/experimental/observer/Observable-inl.h"; sourceTree = ""; }; - 46EB2E0000FF30 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = folly/experimental/observer/Observable.h; sourceTree = ""; }; - 46EB2E0000FF40 /* Observer-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-inl.h"; path = "folly/experimental/observer/Observer-inl.h"; sourceTree = ""; }; - 46EB2E0000FF50 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; - 46EB2E0000FF60 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; - 46EB2E0000FF70 /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; - 46EB2E0000FF80 /* SimpleObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleObservable.h; path = folly/experimental/observer/SimpleObservable.h; sourceTree = ""; }; - 46EB2E0000FF90 /* WithJitter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WithJitter-inl.h"; path = "folly/experimental/observer/WithJitter-inl.h"; sourceTree = ""; }; - 46EB2E0000FFA0 /* WithJitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithJitter.h; path = folly/experimental/observer/WithJitter.h; sourceTree = ""; }; - 46EB2E0000FFB0 /* PrimaryPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrimaryPtr.h; path = folly/experimental/PrimaryPtr.h; sourceTree = ""; }; - 46EB2E0000FFC0 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; - 46EB2E0000FFD0 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; - 46EB2E0000FFE0 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; - 46EB2E0000FFF0 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; - 46EB2E00010000 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 46EB2E00010010 /* SettingsImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SettingsImpl.h; path = folly/experimental/settings/detail/SettingsImpl.h; sourceTree = ""; }; - 46EB2E00010020 /* Settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Settings.h; path = folly/experimental/settings/Settings.h; sourceTree = ""; }; - 46EB2E00010030 /* SettingsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SettingsMetadata.h; path = folly/experimental/settings/SettingsMetadata.h; sourceTree = ""; }; - 46EB2E00010040 /* a.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = a.h; path = folly/experimental/settings/test/a.h; sourceTree = ""; }; - 46EB2E00010050 /* b.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b.h; path = folly/experimental/settings/test/b.h; sourceTree = ""; }; - 46EB2E00010060 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; - 46EB2E00010070 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; - 46EB2E00010080 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 46EB2E00010090 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; - 46EB2E000100A0 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; - 46EB2E000100B0 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; - 46EB2E000100C0 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - 46EB2E000100D0 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - 46EB2E000100E0 /* Debug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = folly/experimental/symbolizer/detail/Debug.h; sourceTree = ""; }; - 46EB2E000100F0 /* Dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dwarf.h; path = folly/experimental/symbolizer/Dwarf.h; sourceTree = ""; }; - 46EB2E00010100 /* Elf-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Elf-inl.h"; path = "folly/experimental/symbolizer/Elf-inl.h"; sourceTree = ""; }; - 46EB2E00010110 /* Elf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Elf.h; path = folly/experimental/symbolizer/Elf.h; sourceTree = ""; }; - 46EB2E00010120 /* ElfCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ElfCache.h; path = folly/experimental/symbolizer/ElfCache.h; sourceTree = ""; }; - 46EB2E00010130 /* LineReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LineReader.h; path = folly/experimental/symbolizer/LineReader.h; sourceTree = ""; }; - 46EB2E00010140 /* SignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandler.h; path = folly/experimental/symbolizer/SignalHandler.h; sourceTree = ""; }; - 46EB2E00010150 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/symbolizer/StackTrace.h; sourceTree = ""; }; - 46EB2E00010160 /* SymbolizedFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizedFrame.h; path = folly/experimental/symbolizer/SymbolizedFrame.h; sourceTree = ""; }; - 46EB2E00010170 /* SymbolizePrinter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizePrinter.h; path = folly/experimental/symbolizer/SymbolizePrinter.h; sourceTree = ""; }; - 46EB2E00010180 /* Symbolizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Symbolizer.h; path = folly/experimental/symbolizer/Symbolizer.h; sourceTree = ""; }; - 46EB2E00010190 /* SignalHandlerTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandlerTest.h; path = folly/experimental/symbolizer/test/SignalHandlerTest.h; sourceTree = ""; }; - 46EB2E000101A0 /* SymbolizerTestUtils-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SymbolizerTestUtils-inl.h"; path = "folly/experimental/symbolizer/test/SymbolizerTestUtils-inl.h"; sourceTree = ""; }; - 46EB2E000101B0 /* SymbolizerTestUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizerTestUtils.h; path = folly/experimental/symbolizer/test/SymbolizerTestUtils.h; sourceTree = ""; }; - 46EB2E000101C0 /* CodingTestUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingTestUtils.h; path = folly/experimental/test/CodingTestUtils.h; sourceTree = ""; }; - 46EB2E000101D0 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; - 46EB2E000101E0 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; - 46EB2E000101F0 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; - 46EB2E00010200 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - 46EB2E00010210 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; - 46EB2E00010220 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - 46EB2E00010230 /* Pid.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Pid.cpp; path = folly/system/Pid.cpp; sourceTree = ""; }; - 46EB2E00010240 /* Pid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pid.h; path = folly/system/Pid.h; sourceTree = ""; }; - 46EB2E00010250 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - 46EB2E00010260 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - 46EB2E00010270 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 46EB2E00010280 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - 46EB2E00010290 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 46EB2E000102A0 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 46EB2E000102B0 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; - 46EB2E000102C0 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; - 46EB2E000102D0 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; - 46EB2E000102E0 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - 46EB2E000102F0 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; - 46EB2E00010300 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 46EB2E00010310 /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = ""; }; - 46EB2E00010320 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = ""; }; - 46EB2E00010330 /* RNCPickerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerLabel.h; path = ios/RNCPickerLabel.h; sourceTree = ""; }; - 46EB2E00010340 /* RNCPickerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerLabel.m; path = ios/RNCPickerLabel.m; sourceTree = ""; }; - 46EB2E00010350 /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = ""; }; - 46EB2E00010360 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = ""; }; - 46EB2E00010370 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 46EB2E00010380 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 46EB2E00010390 /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = ""; }; - 46EB2E000103A0 /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = ""; }; - 46EB2E000103B0 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 46EB2E000103C0 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 46EB2E000103D0 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; - 46EB2E000103E0 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; - 46EB2E000103F0 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; - 46EB2E00010400 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; - 46EB2E00010410 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; - 46EB2E00010420 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; - 46EB2E00010430 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; - 46EB2E00010440 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; - 46EB2E00010450 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; - 46EB2E00010460 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; - 46EB2E00010470 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; - 46EB2E00010480 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; - 46EB2E00010490 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; - 46EB2E000104A0 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; - 46EB2E000104B0 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; - 46EB2E000104C0 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; - 46EB2E000104D0 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; - 46EB2E000104E0 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; - 46EB2E000104F0 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; - 46EB2E00010500 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; - 46EB2E00010510 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; - 46EB2E00010520 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; - 46EB2E00010530 /* RNFBAuthModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAuthModule.h; path = ios/RNFBAuth/RNFBAuthModule.h; sourceTree = ""; }; - 46EB2E00010540 /* RNFBAuthModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAuthModule.m; path = ios/RNFBAuth/RNFBAuthModule.m; sourceTree = ""; }; - 46EB2E00010550 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; - 46EB2E00010560 /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; - 46EB2E00010570 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; - 46EB2E00010580 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; - 46EB2E00010590 /* RNFBCrashlyticsNativeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsNativeHelper.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.h; sourceTree = ""; }; - 46EB2E000105A0 /* RNFBCrashlyticsNativeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsNativeHelper.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.m; sourceTree = ""; }; - 46EB2E000105B0 /* RNFBDatabaseCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseCommon.h; path = ios/RNFBDatabase/RNFBDatabaseCommon.h; sourceTree = ""; }; - 46EB2E000105C0 /* RNFBDatabaseCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseCommon.m; path = ios/RNFBDatabase/RNFBDatabaseCommon.m; sourceTree = ""; }; - 46EB2E000105D0 /* RNFBDatabaseModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseModule.h; path = ios/RNFBDatabase/RNFBDatabaseModule.h; sourceTree = ""; }; - 46EB2E000105E0 /* RNFBDatabaseModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseModule.m; path = ios/RNFBDatabase/RNFBDatabaseModule.m; sourceTree = ""; }; - 46EB2E000105F0 /* RNFBDatabaseOnDisconnectModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseOnDisconnectModule.h; path = ios/RNFBDatabase/RNFBDatabaseOnDisconnectModule.h; sourceTree = ""; }; - 46EB2E00010600 /* RNFBDatabaseOnDisconnectModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseOnDisconnectModule.m; path = ios/RNFBDatabase/RNFBDatabaseOnDisconnectModule.m; sourceTree = ""; }; - 46EB2E00010610 /* RNFBDatabaseQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseQuery.h; path = ios/RNFBDatabase/RNFBDatabaseQuery.h; sourceTree = ""; }; - 46EB2E00010620 /* RNFBDatabaseQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseQuery.m; path = ios/RNFBDatabase/RNFBDatabaseQuery.m; sourceTree = ""; }; - 46EB2E00010630 /* RNFBDatabaseQueryModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseQueryModule.h; path = ios/RNFBDatabase/RNFBDatabaseQueryModule.h; sourceTree = ""; }; - 46EB2E00010640 /* RNFBDatabaseQueryModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseQueryModule.m; path = ios/RNFBDatabase/RNFBDatabaseQueryModule.m; sourceTree = ""; }; - 46EB2E00010650 /* RNFBDatabaseReferenceModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseReferenceModule.h; path = ios/RNFBDatabase/RNFBDatabaseReferenceModule.h; sourceTree = ""; }; - 46EB2E00010660 /* RNFBDatabaseReferenceModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseReferenceModule.m; path = ios/RNFBDatabase/RNFBDatabaseReferenceModule.m; sourceTree = ""; }; - 46EB2E00010670 /* RNFBDatabaseTransactionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseTransactionModule.h; path = ios/RNFBDatabase/RNFBDatabaseTransactionModule.h; sourceTree = ""; }; - 46EB2E00010680 /* RNFBDatabaseTransactionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseTransactionModule.m; path = ios/RNFBDatabase/RNFBDatabaseTransactionModule.m; sourceTree = ""; }; - 46EB2E00010690 /* RCTConvert+FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRLoggerLevel.h"; path = "ios/RNFBFirestore/RCTConvert+FIRLoggerLevel.h"; sourceTree = ""; }; - 46EB2E000106A0 /* RCTConvert+FIRLoggerLevel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRLoggerLevel.m"; path = "ios/RNFBFirestore/RCTConvert+FIRLoggerLevel.m"; sourceTree = ""; }; - 46EB2E000106B0 /* RNFBFirestoreCollectionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreCollectionModule.h; path = ios/RNFBFirestore/RNFBFirestoreCollectionModule.h; sourceTree = ""; }; - 46EB2E000106C0 /* RNFBFirestoreCollectionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreCollectionModule.m; path = ios/RNFBFirestore/RNFBFirestoreCollectionModule.m; sourceTree = ""; }; - 46EB2E000106D0 /* RNFBFirestoreCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreCommon.h; path = ios/RNFBFirestore/RNFBFirestoreCommon.h; sourceTree = ""; }; - 46EB2E000106E0 /* RNFBFirestoreCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreCommon.m; path = ios/RNFBFirestore/RNFBFirestoreCommon.m; sourceTree = ""; }; - 46EB2E000106F0 /* RNFBFirestoreDocumentModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreDocumentModule.h; path = ios/RNFBFirestore/RNFBFirestoreDocumentModule.h; sourceTree = ""; }; - 46EB2E00010700 /* RNFBFirestoreDocumentModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreDocumentModule.m; path = ios/RNFBFirestore/RNFBFirestoreDocumentModule.m; sourceTree = ""; }; - 46EB2E00010710 /* RNFBFirestoreModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreModule.h; path = ios/RNFBFirestore/RNFBFirestoreModule.h; sourceTree = ""; }; - 46EB2E00010720 /* RNFBFirestoreModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreModule.m; path = ios/RNFBFirestore/RNFBFirestoreModule.m; sourceTree = ""; }; - 46EB2E00010730 /* RNFBFirestoreQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreQuery.h; path = ios/RNFBFirestore/RNFBFirestoreQuery.h; sourceTree = ""; }; - 46EB2E00010740 /* RNFBFirestoreQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreQuery.m; path = ios/RNFBFirestore/RNFBFirestoreQuery.m; sourceTree = ""; }; - 46EB2E00010750 /* RNFBFirestoreSerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreSerialize.h; path = ios/RNFBFirestore/RNFBFirestoreSerialize.h; sourceTree = ""; }; - 46EB2E00010760 /* RNFBFirestoreSerialize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreSerialize.m; path = ios/RNFBFirestore/RNFBFirestoreSerialize.m; sourceTree = ""; }; - 46EB2E00010770 /* RNFBFirestoreTransactionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreTransactionModule.h; path = ios/RNFBFirestore/RNFBFirestoreTransactionModule.h; sourceTree = ""; }; - 46EB2E00010780 /* RNFBFirestoreTransactionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreTransactionModule.m; path = ios/RNFBFirestore/RNFBFirestoreTransactionModule.m; sourceTree = ""; }; - 46EB2E00010790 /* RNFBMessaging+AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+AppDelegate.h"; path = "ios/RNFBMessaging/RNFBMessaging+AppDelegate.h"; sourceTree = ""; }; - 46EB2E000107A0 /* RNFBMessaging+AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+AppDelegate.m"; path = "ios/RNFBMessaging/RNFBMessaging+AppDelegate.m"; sourceTree = ""; }; - 46EB2E000107B0 /* RNFBMessaging+FIRMessagingDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+FIRMessagingDelegate.h"; path = "ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.h"; sourceTree = ""; }; - 46EB2E000107C0 /* RNFBMessaging+FIRMessagingDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+FIRMessagingDelegate.m"; path = "ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.m"; sourceTree = ""; }; - 46EB2E000107D0 /* RNFBMessaging+NSNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+NSNotificationCenter.h"; path = "ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.h"; sourceTree = ""; }; - 46EB2E000107E0 /* RNFBMessaging+NSNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+NSNotificationCenter.m"; path = "ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.m"; sourceTree = ""; }; - 46EB2E000107F0 /* RNFBMessaging+UNUserNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+UNUserNotificationCenter.h"; path = "ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.h"; sourceTree = ""; }; - 46EB2E00010800 /* RNFBMessaging+UNUserNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+UNUserNotificationCenter.m"; path = "ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.m"; sourceTree = ""; }; - 46EB2E00010810 /* RNFBMessagingModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMessagingModule.h; path = ios/RNFBMessaging/RNFBMessagingModule.h; sourceTree = ""; }; - 46EB2E00010820 /* RNFBMessagingModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMessagingModule.m; path = ios/RNFBMessaging/RNFBMessagingModule.m; sourceTree = ""; }; - 46EB2E00010830 /* RNFBMessagingSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMessagingSerializer.h; path = ios/RNFBMessaging/RNFBMessagingSerializer.h; sourceTree = ""; }; - 46EB2E00010840 /* RNFBMessagingSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMessagingSerializer.m; path = ios/RNFBMessaging/RNFBMessagingSerializer.m; sourceTree = ""; }; - 46EB2E00010850 /* RNFBConfigModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBConfigModule.h; path = ios/RNFBConfig/RNFBConfigModule.h; sourceTree = ""; }; - 46EB2E00010860 /* RNFBConfigModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBConfigModule.m; path = ios/RNFBConfig/RNFBConfigModule.m; sourceTree = ""; }; - 46EB2E00010870 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - 46EB2E00010880 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - 46EB2E00010890 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 46EB2E000108A0 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 46EB2E000108B0 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - 46EB2E000108C0 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 46EB2E000108D0 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 46EB2E000108E0 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 46EB2E00010900 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - 46EB2E00010910 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 46EB2E00010920 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - 46EB2E00010930 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 46EB2E00010940 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 46EB2E00010950 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - 46EB2E00010960 /* RNManualHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNManualHandler.h; sourceTree = ""; }; - 46EB2E00010970 /* RNManualHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNManualHandler.m; sourceTree = ""; }; - 46EB2E00010980 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 46EB2E00010990 /* RNNativeViewHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RNNativeViewHandler.mm; sourceTree = ""; }; - 46EB2E000109A0 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - 46EB2E000109B0 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 46EB2E000109C0 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 46EB2E000109D0 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 46EB2E000109E0 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 46EB2E000109F0 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 46EB2E00010A00 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 46EB2E00010A10 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 46EB2E00010A20 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - 46EB2E00010A30 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 46EB2E00010A40 /* RNGestureHandlerActionType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerActionType.h; path = ios/RNGestureHandlerActionType.h; sourceTree = ""; }; - 46EB2E00010A50 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 46EB2E00010A60 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 46EB2E00010A70 /* RNGestureHandlerButtonComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButtonComponentView.h; path = ios/RNGestureHandlerButtonComponentView.h; sourceTree = ""; }; - 46EB2E00010A80 /* RNGestureHandlerButtonComponentView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNGestureHandlerButtonComponentView.mm; path = ios/RNGestureHandlerButtonComponentView.mm; sourceTree = ""; }; - 46EB2E00010A90 /* RNGestureHandlerButtonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButtonManager.h; path = ios/RNGestureHandlerButtonManager.h; sourceTree = ""; }; - 46EB2E00010AA0 /* RNGestureHandlerButtonManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButtonManager.m; path = ios/RNGestureHandlerButtonManager.m; sourceTree = ""; }; - 46EB2E00010AB0 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 46EB2E00010AC0 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 46EB2E00010AD0 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 46EB2E00010AE0 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 46EB2E00010AF0 /* RNGestureHandlerManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNGestureHandlerManager.mm; path = ios/RNGestureHandlerManager.mm; sourceTree = ""; }; - 46EB2E00010B00 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 46EB2E00010B10 /* RNGestureHandlerModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNGestureHandlerModule.mm; path = ios/RNGestureHandlerModule.mm; sourceTree = ""; }; - 46EB2E00010B20 /* RNGestureHandlerPointerTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerPointerTracker.h; path = ios/RNGestureHandlerPointerTracker.h; sourceTree = ""; }; - 46EB2E00010B30 /* RNGestureHandlerPointerTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerPointerTracker.m; path = ios/RNGestureHandlerPointerTracker.m; sourceTree = ""; }; - 46EB2E00010B40 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - 46EB2E00010B50 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - 46EB2E00010B60 /* RNGestureHandlerRootViewComponentView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNGestureHandlerRootViewComponentView.mm; path = ios/RNGestureHandlerRootViewComponentView.mm; sourceTree = ""; }; - 46EB2E00010B70 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 46EB2E00010B80 /* RNGestureHandlerStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerStateManager.h; path = ios/RNGestureHandlerStateManager.h; sourceTree = ""; }; - 46EB2E00010B90 /* RNGHTouchEventType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGHTouchEventType.h; path = ios/RNGHTouchEventType.h; sourceTree = ""; }; - 46EB2E00010BA0 /* RNManualActivationRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNManualActivationRecognizer.h; path = ios/RNManualActivationRecognizer.h; sourceTree = ""; }; - 46EB2E00010BB0 /* RNManualActivationRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNManualActivationRecognizer.m; path = ios/RNManualActivationRecognizer.m; sourceTree = ""; }; - 46EB2E00010BC0 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 46EB2E00010BD0 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 46EB2E00010BE0 /* RNRate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRate.h; path = ios/RNRate.h; sourceTree = ""; }; - 46EB2E00010BF0 /* RNRate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRate.m; path = ios/RNRate.m; sourceTree = ""; }; - 46EB2E00010C20 /* REAAnimationsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAnimationsManager.h; sourceTree = ""; }; - 46EB2E00010C30 /* REAAnimationsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAnimationsManager.m; sourceTree = ""; }; - 46EB2E00010C40 /* REASnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASnapshot.h; sourceTree = ""; }; - 46EB2E00010C50 /* REASnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASnapshot.m; sourceTree = ""; }; - 46EB2E00010C60 /* REAUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAUIManager.h; sourceTree = ""; }; - 46EB2E00010C70 /* REAUIManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = REAUIManager.mm; sourceTree = ""; }; - 46EB2E00010C90 /* NativeMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeMethods.h; sourceTree = ""; }; - 46EB2E00010CA0 /* NativeMethods.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = NativeMethods.mm; sourceTree = ""; }; - 46EB2E00010CB0 /* NativeProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeProxy.h; sourceTree = ""; }; - 46EB2E00010CC0 /* NativeProxy.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = NativeProxy.mm; sourceTree = ""; }; - 46EB2E00010CD0 /* REAInitializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAInitializer.h; sourceTree = ""; }; - 46EB2E00010CE0 /* REAInitializer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = REAInitializer.mm; sourceTree = ""; }; - 46EB2E00010CF0 /* REAIOSErrorHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSErrorHandler.h; sourceTree = ""; }; - 46EB2E00010D00 /* REAIOSErrorHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = REAIOSErrorHandler.mm; sourceTree = ""; }; - 46EB2E00010D10 /* REAIOSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSLogger.h; sourceTree = ""; }; - 46EB2E00010D20 /* REAIOSLogger.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = REAIOSLogger.mm; sourceTree = ""; }; - 46EB2E00010D30 /* REAIOSScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSScheduler.h; sourceTree = ""; }; - 46EB2E00010D40 /* REAIOSScheduler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = REAIOSScheduler.mm; sourceTree = ""; }; - 46EB2E00010D50 /* UIResponder+Reanimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+Reanimated.h"; sourceTree = ""; }; - 46EB2E00010D60 /* UIResponder+Reanimated.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = "UIResponder+Reanimated.mm"; sourceTree = ""; }; - 46EB2E00010D80 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 46EB2E00010D90 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 46EB2E00010DA0 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - 46EB2E00010DB0 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - 46EB2E00010DC0 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 46EB2E00010DD0 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 46EB2E00010DE0 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 46EB2E00010DF0 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - 46EB2E00010E00 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 46EB2E00010E10 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 46EB2E00010E20 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 46EB2E00010E30 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - 46EB2E00010E40 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - 46EB2E00010E50 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - 46EB2E00010E60 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 46EB2E00010E70 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - 46EB2E00010E80 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 46EB2E00010E90 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 46EB2E00010EA0 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - 46EB2E00010EB0 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 46EB2E00010EC0 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 46EB2E00010ED0 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - 46EB2E00010EE0 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - 46EB2E00010EF0 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - 46EB2E00010F00 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 46EB2E00010F10 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 46EB2E00010F20 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 46EB2E00010F30 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - 46EB2E00010F40 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - 46EB2E00010F50 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 46EB2E00010F60 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 46EB2E00010F70 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 46EB2E00010F80 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 46EB2E00010F90 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - 46EB2E00010FA0 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - 46EB2E00010FB0 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 46EB2E00010FC0 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 46EB2E00010FD0 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 46EB2E00010FE0 /* REAEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventDispatcher.h; sourceTree = ""; }; - 46EB2E00010FF0 /* REAEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventDispatcher.m; sourceTree = ""; }; - 46EB2E00011000 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAModule.h; sourceTree = ""; }; - 46EB2E00011010 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAModule.m; sourceTree = ""; }; - 46EB2E00011020 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANodesManager.h; sourceTree = ""; }; - 46EB2E00011030 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANodesManager.m; sourceTree = ""; }; - 46EB2E00011040 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAUtils.h; sourceTree = ""; }; - 46EB2E00011050 /* RNGestureHandlerStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNGestureHandlerStateManager.h; sourceTree = ""; }; - 46EB2E00011070 /* ReanimatedSensor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensor.h; sourceTree = ""; }; - 46EB2E00011080 /* ReanimatedSensor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ReanimatedSensor.m; sourceTree = ""; }; - 46EB2E00011090 /* ReanimatedSensorContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensorContainer.h; sourceTree = ""; }; - 46EB2E000110A0 /* ReanimatedSensorContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ReanimatedSensorContainer.m; sourceTree = ""; }; - 46EB2E000110B0 /* ReanimatedSensorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensorType.h; sourceTree = ""; }; - 46EB2E000110D0 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - 46EB2E000110E0 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - 46EB2E000110F0 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 46EB2E00011100 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - 46EB2E00011110 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 46EB2E00011120 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 46EB2E00011130 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 46EB2E00011140 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - 46EB2E00011150 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 46EB2E00011160 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 46EB2E00011170 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 46EB2E00011180 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 46EB2E000111C0 /* AnimatedSensorModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AnimatedSensorModule.cpp; sourceTree = ""; }; - 46EB2E000111E0 /* LayoutAnimationsProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LayoutAnimationsProxy.cpp; sourceTree = ""; }; - 46EB2E00011200 /* NativeReanimatedModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeReanimatedModule.cpp; sourceTree = ""; }; - 46EB2E00011210 /* NativeReanimatedModuleSpec.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeReanimatedModuleSpec.cpp; sourceTree = ""; }; - 46EB2E00011230 /* EventHandlerRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = EventHandlerRegistry.cpp; sourceTree = ""; }; - 46EB2E00011240 /* MapperRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MapperRegistry.cpp; sourceTree = ""; }; - 46EB2E00011250 /* WorkletsCache.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = WorkletsCache.cpp; sourceTree = ""; }; - 46EB2E00011270 /* FrozenObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = FrozenObject.cpp; sourceTree = ""; }; - 46EB2E00011280 /* MutableValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MutableValue.cpp; sourceTree = ""; }; - 46EB2E00011290 /* MutableValueSetterProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MutableValueSetterProxy.cpp; sourceTree = ""; }; - 46EB2E000112A0 /* RemoteObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObject.cpp; sourceTree = ""; }; - 46EB2E000112B0 /* ShareableValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ShareableValue.cpp; sourceTree = ""; }; - 46EB2E000112D0 /* FeaturesConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = FeaturesConfig.cpp; sourceTree = ""; }; - 46EB2E000112E0 /* JSIStoreValueUser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIStoreValueUser.cpp; sourceTree = ""; }; - 46EB2E000112F0 /* Mapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Mapper.cpp; sourceTree = ""; }; - 46EB2E00011300 /* RuntimeDecorator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeDecorator.cpp; sourceTree = ""; }; - 46EB2E00011310 /* Scheduler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Scheduler.cpp; sourceTree = ""; }; - 46EB2E00011320 /* WorkletEventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = WorkletEventHandler.cpp; sourceTree = ""; }; - 46EB2E00011350 /* AnimatedSensorModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AnimatedSensorModule.h; sourceTree = ""; }; - 46EB2E00011370 /* LayoutAnimationsProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LayoutAnimationsProxy.h; sourceTree = ""; }; - 46EB2E00011390 /* NativeReanimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeReanimatedModule.h; sourceTree = ""; }; - 46EB2E000113A0 /* NativeReanimatedModuleSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeReanimatedModuleSpec.h; sourceTree = ""; }; - 46EB2E000113C0 /* EventHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EventHandlerRegistry.h; sourceTree = ""; }; - 46EB2E000113D0 /* MapperRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MapperRegistry.h; sourceTree = ""; }; - 46EB2E000113E0 /* WorkletsCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WorkletsCache.h; sourceTree = ""; }; - 46EB2E00011400 /* FrozenObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FrozenObject.h; sourceTree = ""; }; - 46EB2E00011410 /* HostFunctionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HostFunctionHandler.h; sourceTree = ""; }; - 46EB2E00011420 /* MutableValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MutableValue.h; sourceTree = ""; }; - 46EB2E00011430 /* MutableValueSetterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MutableValueSetterProxy.h; sourceTree = ""; }; - 46EB2E00011440 /* RemoteObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObject.h; sourceTree = ""; }; - 46EB2E00011450 /* RuntimeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeManager.h; sourceTree = ""; }; - 46EB2E00011460 /* ShareableValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ShareableValue.h; sourceTree = ""; }; - 46EB2E00011470 /* SharedParent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedParent.h; sourceTree = ""; }; - 46EB2E00011480 /* ValueWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ValueWrapper.h; sourceTree = ""; }; - 46EB2E000114A0 /* ErrorHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorHandler.h; sourceTree = ""; }; - 46EB2E000114C0 /* FeaturesConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FeaturesConfig.h; sourceTree = ""; }; - 46EB2E000114D0 /* JSIStoreValueUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIStoreValueUser.h; sourceTree = ""; }; - 46EB2E000114E0 /* Mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Mapper.h; sourceTree = ""; }; - 46EB2E000114F0 /* PlatformDepMethodsHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PlatformDepMethodsHolder.h; sourceTree = ""; }; - 46EB2E00011500 /* ReanimatedHiddenHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedHiddenHeaders.h; sourceTree = ""; }; - 46EB2E00011510 /* RuntimeDecorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeDecorator.h; sourceTree = ""; }; - 46EB2E00011520 /* Scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Scheduler.h; sourceTree = ""; }; - 46EB2E00011530 /* WorkletEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WorkletEventHandler.h; sourceTree = ""; }; - 46EB2E00011550 /* RNSVGBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBrush.h; sourceTree = ""; }; - 46EB2E00011560 /* RNSVGBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGBrush.m; sourceTree = ""; }; - 46EB2E00011570 /* RNSVGBrushType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBrushType.h; sourceTree = ""; }; - 46EB2E00011580 /* RNSVGContextBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGContextBrush.h; sourceTree = ""; }; - 46EB2E00011590 /* RNSVGContextBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGContextBrush.m; sourceTree = ""; }; - 46EB2E000115A0 /* RNSVGPainter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPainter.h; sourceTree = ""; }; - 46EB2E000115B0 /* RNSVGPainter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPainter.m; sourceTree = ""; }; - 46EB2E000115C0 /* RNSVGPainterBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPainterBrush.h; sourceTree = ""; }; - 46EB2E000115D0 /* RNSVGPainterBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPainterBrush.m; sourceTree = ""; }; - 46EB2E000115E0 /* RNSVGSolidColorBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSolidColorBrush.h; sourceTree = ""; }; - 46EB2E000115F0 /* RNSVGSolidColorBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSolidColorBrush.m; sourceTree = ""; }; - 46EB2E00011610 /* RNSVGClipPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGClipPath.h; sourceTree = ""; }; - 46EB2E00011620 /* RNSVGClipPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGClipPath.m; sourceTree = ""; }; - 46EB2E00011630 /* RNSVGDefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGDefs.h; sourceTree = ""; }; - 46EB2E00011640 /* RNSVGDefs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGDefs.m; sourceTree = ""; }; - 46EB2E00011650 /* RNSVGForeignObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGForeignObject.h; sourceTree = ""; }; - 46EB2E00011660 /* RNSVGForeignObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGForeignObject.m; sourceTree = ""; }; - 46EB2E00011670 /* RNSVGGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGroup.h; sourceTree = ""; }; - 46EB2E00011680 /* RNSVGGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGroup.m; sourceTree = ""; }; - 46EB2E00011690 /* RNSVGImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGImage.h; sourceTree = ""; }; - 46EB2E000116A0 /* RNSVGImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGImage.m; sourceTree = ""; }; - 46EB2E000116B0 /* RNSVGLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLinearGradient.h; sourceTree = ""; }; - 46EB2E000116C0 /* RNSVGLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLinearGradient.m; sourceTree = ""; }; - 46EB2E000116D0 /* RNSVGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarker.h; sourceTree = ""; }; - 46EB2E000116E0 /* RNSVGMarker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarker.m; sourceTree = ""; }; - 46EB2E000116F0 /* RNSVGMask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMask.h; sourceTree = ""; }; - 46EB2E00011700 /* RNSVGMask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMask.m; sourceTree = ""; }; - 46EB2E00011710 /* RNSVGPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPath.h; sourceTree = ""; }; - 46EB2E00011720 /* RNSVGPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPath.m; sourceTree = ""; }; - 46EB2E00011730 /* RNSVGPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPattern.h; sourceTree = ""; }; - 46EB2E00011740 /* RNSVGPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPattern.m; sourceTree = ""; }; - 46EB2E00011750 /* RNSVGRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRadialGradient.h; sourceTree = ""; }; - 46EB2E00011760 /* RNSVGRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRadialGradient.m; sourceTree = ""; }; - 46EB2E00011770 /* RNSVGSvgView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSvgView.h; sourceTree = ""; }; - 46EB2E00011780 /* RNSVGSvgView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSvgView.m; sourceTree = ""; }; - 46EB2E00011790 /* RNSVGSymbol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSymbol.h; sourceTree = ""; }; - 46EB2E000117A0 /* RNSVGSymbol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSymbol.m; sourceTree = ""; }; - 46EB2E000117B0 /* RNSVGUse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUse.h; sourceTree = ""; }; - 46EB2E000117C0 /* RNSVGUse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGUse.m; sourceTree = ""; }; - 46EB2E000117D0 /* RNSVGContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGContainer.h; path = apple/RNSVGContainer.h; sourceTree = ""; }; - 46EB2E000117E0 /* RNSVGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGNode.h; path = apple/RNSVGNode.h; sourceTree = ""; }; - 46EB2E000117F0 /* RNSVGNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSVGNode.m; path = apple/RNSVGNode.m; sourceTree = ""; }; - 46EB2E00011800 /* RNSVGRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGRenderable.h; path = apple/RNSVGRenderable.h; sourceTree = ""; }; - 46EB2E00011810 /* RNSVGRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSVGRenderable.m; path = apple/RNSVGRenderable.m; sourceTree = ""; }; - 46EB2E00011820 /* RNSVGUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGUIKit.h; path = apple/RNSVGUIKit.h; sourceTree = ""; }; - 46EB2E00011840 /* RNSVGCircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCircle.h; sourceTree = ""; }; - 46EB2E00011850 /* RNSVGCircle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGCircle.m; sourceTree = ""; }; - 46EB2E00011860 /* RNSVGEllipse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGEllipse.h; sourceTree = ""; }; - 46EB2E00011870 /* RNSVGEllipse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGEllipse.m; sourceTree = ""; }; - 46EB2E00011880 /* RNSVGLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLine.h; sourceTree = ""; }; - 46EB2E00011890 /* RNSVGLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLine.m; sourceTree = ""; }; - 46EB2E000118A0 /* RNSVGRect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRect.h; sourceTree = ""; }; - 46EB2E000118B0 /* RNSVGRect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRect.m; sourceTree = ""; }; - 46EB2E000118D0 /* RNSVGFontData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGFontData.h; sourceTree = ""; }; - 46EB2E000118E0 /* RNSVGFontData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGFontData.m; sourceTree = ""; }; - 46EB2E000118F0 /* RNSVGGlyphContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGlyphContext.h; sourceTree = ""; }; - 46EB2E00011900 /* RNSVGGlyphContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGlyphContext.m; sourceTree = ""; }; - 46EB2E00011910 /* RNSVGPropHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPropHelper.h; sourceTree = ""; }; - 46EB2E00011920 /* RNSVGPropHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPropHelper.m; sourceTree = ""; }; - 46EB2E00011930 /* RNSVGText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGText.h; sourceTree = ""; }; - 46EB2E00011940 /* RNSVGText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGText.m; sourceTree = ""; }; - 46EB2E00011950 /* RNSVGTextPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextPath.h; sourceTree = ""; }; - 46EB2E00011960 /* RNSVGTextPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextPath.m; sourceTree = ""; }; - 46EB2E00011970 /* RNSVGTextProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextProperties.h; sourceTree = ""; }; - 46EB2E00011980 /* RNSVGTextProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextProperties.m; sourceTree = ""; }; - 46EB2E00011990 /* RNSVGTopAlignedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTopAlignedLabel.h; sourceTree = ""; }; - 46EB2E000119A0 /* RNSVGTopAlignedLabel.ios.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTopAlignedLabel.ios.m; sourceTree = ""; }; - 46EB2E000119B0 /* RNSVGTSpan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTSpan.h; sourceTree = ""; }; - 46EB2E000119C0 /* RNSVGTSpan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTSpan.m; sourceTree = ""; }; - 46EB2E000119E0 /* RCTConvert+RNSVG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+RNSVG.h"; sourceTree = ""; }; - 46EB2E000119F0 /* RCTConvert+RNSVG.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+RNSVG.m"; sourceTree = ""; }; - 46EB2E00011A00 /* RNSVGBezierElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBezierElement.h; sourceTree = ""; }; - 46EB2E00011A10 /* RNSVGBezierElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGBezierElement.m; sourceTree = ""; }; - 46EB2E00011A20 /* RNSVGCGFCRule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCGFCRule.h; sourceTree = ""; }; - 46EB2E00011A30 /* RNSVGLength.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLength.h; sourceTree = ""; }; - 46EB2E00011A40 /* RNSVGLength.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLength.m; sourceTree = ""; }; - 46EB2E00011A50 /* RNSVGMarkerPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarkerPosition.h; sourceTree = ""; }; - 46EB2E00011A60 /* RNSVGMarkerPosition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarkerPosition.m; sourceTree = ""; }; - 46EB2E00011A70 /* RNSVGPathMeasure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathMeasure.h; sourceTree = ""; }; - 46EB2E00011A80 /* RNSVGPathMeasure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathMeasure.m; sourceTree = ""; }; - 46EB2E00011A90 /* RNSVGPathParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathParser.h; sourceTree = ""; }; - 46EB2E00011AA0 /* RNSVGPathParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathParser.m; sourceTree = ""; }; - 46EB2E00011AB0 /* RNSVGUnits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUnits.h; sourceTree = ""; }; - 46EB2E00011AC0 /* RNSVGVBMOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGVBMOS.h; sourceTree = ""; }; - 46EB2E00011AD0 /* RNSVGVectorEffect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGVectorEffect.h; sourceTree = ""; }; - 46EB2E00011AE0 /* RNSVGViewBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGViewBox.h; sourceTree = ""; }; - 46EB2E00011AF0 /* RNSVGViewBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGViewBox.m; sourceTree = ""; }; - 46EB2E00011B10 /* RNSVGCircleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCircleManager.h; sourceTree = ""; }; - 46EB2E00011B20 /* RNSVGCircleManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGCircleManager.m; sourceTree = ""; }; - 46EB2E00011B30 /* RNSVGClipPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGClipPathManager.h; sourceTree = ""; }; - 46EB2E00011B40 /* RNSVGClipPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGClipPathManager.m; sourceTree = ""; }; - 46EB2E00011B50 /* RNSVGDefsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGDefsManager.h; sourceTree = ""; }; - 46EB2E00011B60 /* RNSVGDefsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGDefsManager.m; sourceTree = ""; }; - 46EB2E00011B70 /* RNSVGEllipseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGEllipseManager.h; sourceTree = ""; }; - 46EB2E00011B80 /* RNSVGEllipseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGEllipseManager.m; sourceTree = ""; }; - 46EB2E00011B90 /* RNSVGForeignObjectManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGForeignObjectManager.h; sourceTree = ""; }; - 46EB2E00011BA0 /* RNSVGForeignObjectManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGForeignObjectManager.m; sourceTree = ""; }; - 46EB2E00011BB0 /* RNSVGGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGroupManager.h; sourceTree = ""; }; - 46EB2E00011BC0 /* RNSVGGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGroupManager.m; sourceTree = ""; }; - 46EB2E00011BD0 /* RNSVGImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGImageManager.h; sourceTree = ""; }; - 46EB2E00011BE0 /* RNSVGImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGImageManager.m; sourceTree = ""; }; - 46EB2E00011BF0 /* RNSVGLinearGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLinearGradientManager.h; sourceTree = ""; }; - 46EB2E00011C00 /* RNSVGLinearGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLinearGradientManager.m; sourceTree = ""; }; - 46EB2E00011C10 /* RNSVGLineManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLineManager.h; sourceTree = ""; }; - 46EB2E00011C20 /* RNSVGLineManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLineManager.m; sourceTree = ""; }; - 46EB2E00011C30 /* RNSVGMarkerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarkerManager.h; sourceTree = ""; }; - 46EB2E00011C40 /* RNSVGMarkerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarkerManager.m; sourceTree = ""; }; - 46EB2E00011C50 /* RNSVGMaskManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMaskManager.h; sourceTree = ""; }; - 46EB2E00011C60 /* RNSVGMaskManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMaskManager.m; sourceTree = ""; }; - 46EB2E00011C70 /* RNSVGNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGNodeManager.h; sourceTree = ""; }; - 46EB2E00011C80 /* RNSVGNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGNodeManager.m; sourceTree = ""; }; - 46EB2E00011C90 /* RNSVGPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathManager.h; sourceTree = ""; }; - 46EB2E00011CA0 /* RNSVGPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathManager.m; sourceTree = ""; }; - 46EB2E00011CB0 /* RNSVGPatternManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPatternManager.h; sourceTree = ""; }; - 46EB2E00011CC0 /* RNSVGPatternManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPatternManager.m; sourceTree = ""; }; - 46EB2E00011CD0 /* RNSVGRadialGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRadialGradientManager.h; sourceTree = ""; }; - 46EB2E00011CE0 /* RNSVGRadialGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRadialGradientManager.m; sourceTree = ""; }; - 46EB2E00011CF0 /* RNSVGRectManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRectManager.h; sourceTree = ""; }; - 46EB2E00011D00 /* RNSVGRectManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRectManager.m; sourceTree = ""; }; - 46EB2E00011D10 /* RNSVGRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRenderableManager.h; sourceTree = ""; }; - 46EB2E00011D20 /* RNSVGRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRenderableManager.m; sourceTree = ""; }; - 46EB2E00011D30 /* RNSVGSvgViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSvgViewManager.h; sourceTree = ""; }; - 46EB2E00011D40 /* RNSVGSvgViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSvgViewManager.m; sourceTree = ""; }; - 46EB2E00011D50 /* RNSVGSymbolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSymbolManager.h; sourceTree = ""; }; - 46EB2E00011D60 /* RNSVGSymbolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSymbolManager.m; sourceTree = ""; }; - 46EB2E00011D70 /* RNSVGTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextManager.h; sourceTree = ""; }; - 46EB2E00011D80 /* RNSVGTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextManager.m; sourceTree = ""; }; - 46EB2E00011D90 /* RNSVGTextPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextPathManager.h; sourceTree = ""; }; - 46EB2E00011DA0 /* RNSVGTextPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextPathManager.m; sourceTree = ""; }; - 46EB2E00011DB0 /* RNSVGTSpanManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTSpanManager.h; sourceTree = ""; }; - 46EB2E00011DC0 /* RNSVGTSpanManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTSpanManager.m; sourceTree = ""; }; - 46EB2E00011DD0 /* RNSVGUseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUseManager.h; sourceTree = ""; }; - 46EB2E00011DE0 /* RNSVGUseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGUseManager.m; sourceTree = ""; }; - 46EB2E00011DF0 /* RNSConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSConvert.h; path = ios/RNSConvert.h; sourceTree = ""; }; - 46EB2E00011E00 /* RNSConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSConvert.mm; path = ios/RNSConvert.mm; sourceTree = ""; }; - 46EB2E00011E10 /* RNSEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSEnums.h; path = ios/RNSEnums.h; sourceTree = ""; }; - 46EB2E00011E20 /* RNSFullWindowOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSFullWindowOverlay.h; path = ios/RNSFullWindowOverlay.h; sourceTree = ""; }; - 46EB2E00011E30 /* RNSFullWindowOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSFullWindowOverlay.mm; path = ios/RNSFullWindowOverlay.mm; sourceTree = ""; }; - 46EB2E00011E40 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 46EB2E00011E50 /* RNSScreen.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreen.mm; path = ios/RNSScreen.mm; sourceTree = ""; }; - 46EB2E00011E60 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 46EB2E00011E70 /* RNSScreenContainer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenContainer.mm; path = ios/RNSScreenContainer.mm; sourceTree = ""; }; - 46EB2E00011E80 /* RNSScreenNavigationContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenNavigationContainer.h; path = ios/RNSScreenNavigationContainer.h; sourceTree = ""; }; - 46EB2E00011E90 /* RNSScreenNavigationContainer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenNavigationContainer.mm; path = ios/RNSScreenNavigationContainer.mm; sourceTree = ""; }; - 46EB2E00011EA0 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 46EB2E00011EB0 /* RNSScreenStack.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenStack.mm; path = ios/RNSScreenStack.mm; sourceTree = ""; }; - 46EB2E00011EC0 /* RNSScreenStackAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackAnimator.h; path = ios/RNSScreenStackAnimator.h; sourceTree = ""; }; - 46EB2E00011ED0 /* RNSScreenStackAnimator.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenStackAnimator.mm; path = ios/RNSScreenStackAnimator.mm; sourceTree = ""; }; - 46EB2E00011EE0 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 46EB2E00011EF0 /* RNSScreenStackHeaderConfig.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenStackHeaderConfig.mm; path = ios/RNSScreenStackHeaderConfig.mm; sourceTree = ""; }; - 46EB2E00011F00 /* RNSScreenStackHeaderSubview.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderSubview.h; path = ios/RNSScreenStackHeaderSubview.h; sourceTree = ""; }; - 46EB2E00011F10 /* RNSScreenStackHeaderSubview.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenStackHeaderSubview.mm; path = ios/RNSScreenStackHeaderSubview.mm; sourceTree = ""; }; - 46EB2E00011F20 /* RNSScreenViewEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenViewEvent.h; path = ios/RNSScreenViewEvent.h; sourceTree = ""; }; - 46EB2E00011F30 /* RNSScreenViewEvent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenViewEvent.mm; path = ios/RNSScreenViewEvent.mm; sourceTree = ""; }; - 46EB2E00011F40 /* RNSScreenWindowTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenWindowTraits.h; path = ios/RNSScreenWindowTraits.h; sourceTree = ""; }; - 46EB2E00011F50 /* RNSScreenWindowTraits.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSScreenWindowTraits.mm; path = ios/RNSScreenWindowTraits.mm; sourceTree = ""; }; - 46EB2E00011F60 /* RNSSearchBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSSearchBar.h; path = ios/RNSSearchBar.h; sourceTree = ""; }; - 46EB2E00011F70 /* RNSSearchBar.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNSSearchBar.mm; path = ios/RNSSearchBar.mm; sourceTree = ""; }; - 46EB2E00011F80 /* UIViewController+RNScreens.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+RNScreens.h"; path = "ios/UIViewController+RNScreens.h"; sourceTree = ""; }; - 46EB2E00011F90 /* UIViewController+RNScreens.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "UIViewController+RNScreens.mm"; path = "ios/UIViewController+RNScreens.mm"; sourceTree = ""; }; - 46EB2E00011FA0 /* UIWindow+RNScreens.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+RNScreens.h"; path = "ios/UIWindow+RNScreens.h"; sourceTree = ""; }; - 46EB2E00011FB0 /* UIWindow+RNScreens.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "UIWindow+RNScreens.mm"; path = "ios/UIWindow+RNScreens.mm"; sourceTree = ""; }; - 46EB2E00011FD0 /* RNSUIBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSUIBarButtonItem.h; sourceTree = ""; }; - 46EB2E00011FE0 /* RNSUIBarButtonItem.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RNSUIBarButtonItem.mm; sourceTree = ""; }; - 46EB2E00011FF0 /* EmailShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmailShare.h; path = ios/EmailShare.h; sourceTree = ""; }; - 46EB2E00012000 /* EmailShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EmailShare.m; path = ios/EmailShare.m; sourceTree = ""; }; - 46EB2E00012010 /* FacebookStories.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FacebookStories.h; path = ios/FacebookStories.h; sourceTree = ""; }; - 46EB2E00012020 /* FacebookStories.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FacebookStories.m; path = ios/FacebookStories.m; sourceTree = ""; }; - 46EB2E00012030 /* GenericShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericShare.h; path = ios/GenericShare.h; sourceTree = ""; }; - 46EB2E00012040 /* GenericShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GenericShare.m; path = ios/GenericShare.m; sourceTree = ""; }; - 46EB2E00012050 /* GooglePlusShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GooglePlusShare.h; path = ios/GooglePlusShare.h; sourceTree = ""; }; - 46EB2E00012060 /* GooglePlusShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GooglePlusShare.m; path = ios/GooglePlusShare.m; sourceTree = ""; }; - 46EB2E00012070 /* InstagramShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InstagramShare.h; path = ios/InstagramShare.h; sourceTree = ""; }; - 46EB2E00012080 /* InstagramShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InstagramShare.m; path = ios/InstagramShare.m; sourceTree = ""; }; - 46EB2E00012090 /* InstagramStories.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InstagramStories.h; path = ios/InstagramStories.h; sourceTree = ""; }; - 46EB2E000120A0 /* InstagramStories.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InstagramStories.m; path = ios/InstagramStories.m; sourceTree = ""; }; - 46EB2E000120B0 /* RNShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShare.h; path = ios/RNShare.h; sourceTree = ""; }; - 46EB2E000120C0 /* RNShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShare.m; path = ios/RNShare.m; sourceTree = ""; }; - 46EB2E000120D0 /* RNShareActivityItemSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShareActivityItemSource.h; path = ios/RNShareActivityItemSource.h; sourceTree = ""; }; - 46EB2E000120E0 /* RNShareActivityItemSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShareActivityItemSource.m; path = ios/RNShareActivityItemSource.m; sourceTree = ""; }; - 46EB2E000120F0 /* RNShareUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShareUtils.h; path = ios/RNShareUtils.h; sourceTree = ""; }; - 46EB2E00012100 /* RNShareUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShareUtils.m; path = ios/RNShareUtils.m; sourceTree = ""; }; - 46EB2E00012110 /* TelegramShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TelegramShare.h; path = ios/TelegramShare.h; sourceTree = ""; }; - 46EB2E00012120 /* TelegramShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TelegramShare.m; path = ios/TelegramShare.m; sourceTree = ""; }; - 46EB2E00012130 /* ViberShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViberShare.h; path = ios/ViberShare.h; sourceTree = ""; }; - 46EB2E00012140 /* ViberShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ViberShare.m; path = ios/ViberShare.m; sourceTree = ""; }; - 46EB2E00012150 /* WhatsAppShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhatsAppShare.h; path = ios/WhatsAppShare.h; sourceTree = ""; }; - 46EB2E00012160 /* WhatsAppShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WhatsAppShare.m; path = ios/WhatsAppShare.m; sourceTree = ""; }; - 46EB2E00012170 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 46EB2E00012180 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 46EB2E00012190 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 46EB2E000121A0 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 46EB2E000121C0 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - 46EB2E000121D0 /* RCTAccessibilityManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTAccessibilityManager+Internal.h"; path = "React/CoreModules/RCTAccessibilityManager+Internal.h"; sourceTree = ""; }; - 46EB2E000121E0 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; - 46EB2E000121F0 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; - 46EB2E00012200 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = ""; }; - 46EB2E00012210 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - 46EB2E00012220 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; - 46EB2E00012230 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; - 46EB2E00012240 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; - 46EB2E00012250 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; - 46EB2E00012260 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; - 46EB2E00012270 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; - 46EB2E00012280 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; - 46EB2E00012290 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; - 46EB2E000122A0 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = ""; }; - 46EB2E000122B0 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = ""; }; - 46EB2E000122C0 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 46EB2E000122D0 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; - 46EB2E000122E0 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; - 46EB2E000122F0 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 46EB2E00012300 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; - 46EB2E00012310 /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = ""; }; - 46EB2E00012320 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 46EB2E00012330 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; - 46EB2E00012340 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; - 46EB2E00012350 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; - 46EB2E00012360 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; - 46EB2E00012370 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; - 46EB2E00012380 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; - 46EB2E000123B0 /* RCTAppSetupUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppSetupUtils.h; sourceTree = ""; }; - 46EB2E000123C0 /* RCTAppSetupUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAppSetupUtils.mm; sourceTree = ""; }; - 46EB2E000123E0 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 46EB2E000123F0 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 46EB2E00012400 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 46EB2E00012410 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 46EB2E00012420 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 46EB2E00012430 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 46EB2E00012440 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 46EB2E00012450 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 46EB2E00012460 /* RCTBridgeModuleDecorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModuleDecorator.h; sourceTree = ""; }; - 46EB2E00012470 /* RCTBridgeModuleDecorator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridgeModuleDecorator.m; sourceTree = ""; }; - 46EB2E00012480 /* RCTBundleManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleManager.m; sourceTree = ""; }; - 46EB2E00012490 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 46EB2E000124A0 /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTBundleURLProvider.mm; sourceTree = ""; }; - 46EB2E000124B0 /* RCTCallableJSModules.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCallableJSModules.m; sourceTree = ""; }; - 46EB2E000124C0 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 46EB2E000124D0 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 46EB2E000124E0 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; - 46EB2E000124F0 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; - 46EB2E00012500 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 46EB2E00012510 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 46EB2E00012520 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 46EB2E00012530 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 46EB2E00012540 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 46EB2E00012550 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 46EB2E00012560 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 46EB2E00012570 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 46EB2E00012580 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 46EB2E00012590 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 46EB2E000125A0 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 46EB2E000125B0 /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = ""; }; - 46EB2E000125C0 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 46EB2E000125D0 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 46EB2E000125E0 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 46EB2E000125F0 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 46EB2E00012600 /* RCTInitializing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInitializing.h; sourceTree = ""; }; - 46EB2E00012610 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 46EB2E00012620 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 46EB2E00012630 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 46EB2E00012640 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 46EB2E00012650 /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = ""; }; - 46EB2E00012660 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 46EB2E00012670 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 46EB2E00012680 /* RCTJSThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSThread.h; sourceTree = ""; }; - 46EB2E00012690 /* RCTJSThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSThread.m; sourceTree = ""; }; - 46EB2E000126A0 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 46EB2E000126B0 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 46EB2E000126C0 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 46EB2E000126D0 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLog.mm; sourceTree = ""; }; - 46EB2E000126E0 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 46EB2E000126F0 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTManagedPointer.mm; sourceTree = ""; }; - 46EB2E00012700 /* RCTMockDef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMockDef.h; sourceTree = ""; }; - 46EB2E00012710 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 46EB2E00012720 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTModuleData.mm; sourceTree = ""; }; - 46EB2E00012730 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 46EB2E00012740 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTModuleMethod.mm; sourceTree = ""; }; - 46EB2E00012750 /* RCTModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuleRegistry.m; sourceTree = ""; }; - 46EB2E00012760 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 46EB2E00012770 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 46EB2E00012780 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 46EB2E00012790 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 46EB2E000127A0 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 46EB2E000127B0 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 46EB2E000127C0 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 46EB2E000127D0 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 46EB2E000127E0 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 46EB2E000127F0 /* RCTPerformanceLoggerLabels.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLoggerLabels.h; sourceTree = ""; }; - 46EB2E00012800 /* RCTPerformanceLoggerLabels.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLoggerLabels.m; sourceTree = ""; }; - 46EB2E00012810 /* RCTPLTag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPLTag.h; sourceTree = ""; }; - 46EB2E00012820 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; - 46EB2E00012830 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - 46EB2E00012840 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 46EB2E00012850 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 46EB2E00012860 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 46EB2E00012870 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 46EB2E00012880 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 46EB2E00012890 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 46EB2E000128A0 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 46EB2E000128B0 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 46EB2E000128C0 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - 46EB2E000128D0 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 46EB2E000128E0 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 46EB2E000128F0 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 46EB2E00012900 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 46EB2E00012910 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 46EB2E00012920 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 46EB2E00012930 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 46EB2E00012940 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - 46EB2E00012950 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; - 46EB2E00012960 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 46EB2E00012970 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 46EB2E00012980 /* RCTViewRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewRegistry.m; sourceTree = ""; }; - 46EB2E00012990 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 46EB2E000129A0 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 46EB2E000129C0 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 46EB2E000129D0 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurface.mm; sourceTree = ""; }; - 46EB2E000129E0 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 46EB2E000129F0 /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = ""; }; - 46EB2E00012A00 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 46EB2E00012A10 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 46EB2E00012A20 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 46EB2E00012A30 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 46EB2E00012A40 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 46EB2E00012A50 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 46EB2E00012A60 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 46EB2E00012A70 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 46EB2E00012A80 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 46EB2E00012A90 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurfaceView.mm; sourceTree = ""; }; - 46EB2E00012AB0 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 46EB2E00012AC0 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 46EB2E00012AD0 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 46EB2E00012AE0 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 46EB2E00012AF0 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 46EB2E00012B00 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 46EB2E00012B20 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 46EB2E00012B30 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 46EB2E00012B40 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 46EB2E00012B50 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = NSDataBigString.mm; sourceTree = ""; }; - 46EB2E00012B60 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTCxxBridge.mm; sourceTree = ""; }; - 46EB2E00012B70 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 46EB2E00012B80 /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = ""; }; - 46EB2E00012B90 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = ""; }; - 46EB2E00012BA0 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 46EB2E00012BB0 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTMessageThread.mm; sourceTree = ""; }; - 46EB2E00012BC0 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - 46EB2E00012BD0 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 46EB2E00012BF0 /* RCTDefaultCxxLogFunction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefaultCxxLogFunction.h; sourceTree = ""; }; - 46EB2E00012C00 /* RCTDefaultCxxLogFunction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDefaultCxxLogFunction.mm; sourceTree = ""; }; - 46EB2E00012C20 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 46EB2E00012C30 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 46EB2E00012C40 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTCxxMethod.mm; sourceTree = ""; }; - 46EB2E00012C50 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - 46EB2E00012C60 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTCxxModule.mm; sourceTree = ""; }; - 46EB2E00012C70 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 46EB2E00012C80 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTCxxUtils.mm; sourceTree = ""; }; - 46EB2E00012C90 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 46EB2E00012CA0 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNativeModule.mm; sourceTree = ""; }; - 46EB2E00012CC0 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 46EB2E00012CD0 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTFollyConvert.mm; sourceTree = ""; }; - 46EB2E00012CF0 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 46EB2E00012D00 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 46EB2E00012D10 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 46EB2E00012D20 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 46EB2E00012D30 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 46EB2E00012D40 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 46EB2E00012D50 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 46EB2E00012D60 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 46EB2E00012D70 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 46EB2E00012D80 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 46EB2E00012D90 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 46EB2E00012DA0 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 46EB2E00012DB0 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 46EB2E00012DC0 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 46EB2E00012DD0 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 46EB2E00012DE0 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 46EB2E00012DF0 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 46EB2E00012E00 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 46EB2E00012E20 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - 46EB2E00012E30 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 46EB2E00012E40 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 46EB2E00012E50 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 46EB2E00012E60 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 46EB2E00012E70 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 46EB2E00012E80 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.asm; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 46EB2E00012EA0 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 46EB2E00012EB0 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 46EB2E00012ED0 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 46EB2E00012EE0 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 46EB2E00012EF0 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 46EB2E00012F00 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 46EB2E00012F10 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 46EB2E00012F20 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 46EB2E00012F30 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 46EB2E00012F40 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 46EB2E00012F50 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 46EB2E00012F60 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 46EB2E00012F70 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 46EB2E00012F80 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 46EB2E00012F90 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 46EB2E00012FA0 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 46EB2E00012FB0 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 46EB2E00012FC0 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - 46EB2E00012FD0 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 46EB2E00012FE0 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 46EB2E00012FF0 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 46EB2E00013000 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 46EB2E00013010 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 46EB2E00013020 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTFont.mm; sourceTree = ""; }; - 46EB2E00013030 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 46EB2E00013040 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 46EB2E00013050 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 46EB2E00013060 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 46EB2E00013070 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 46EB2E00013080 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 46EB2E00013090 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 46EB2E000130A0 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 46EB2E000130B0 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 46EB2E000130C0 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 46EB2E000130D0 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 46EB2E000130E0 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 46EB2E000130F0 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 46EB2E00013100 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 46EB2E00013110 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 46EB2E00013120 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 46EB2E00013130 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 46EB2E00013140 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 46EB2E00013150 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 46EB2E00013160 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 46EB2E00013170 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 46EB2E00013180 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 46EB2E00013190 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 46EB2E000131A0 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 46EB2E000131B0 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 46EB2E000131C0 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 46EB2E000131D0 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 46EB2E000131E0 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 46EB2E000131F0 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 46EB2E00013200 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 46EB2E00013210 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 46EB2E00013220 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 46EB2E00013230 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 46EB2E00013240 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 46EB2E00013250 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 46EB2E00013260 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 46EB2E00013270 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 46EB2E00013280 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 46EB2E00013290 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 46EB2E000132A0 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 46EB2E000132B0 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - 46EB2E000132C0 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 46EB2E000132D0 /* RCTViewUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewUtils.h; sourceTree = ""; }; - 46EB2E000132E0 /* RCTViewUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewUtils.m; sourceTree = ""; }; - 46EB2E000132F0 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 46EB2E00013300 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 46EB2E00013320 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; - 46EB2E00013330 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 46EB2E00013340 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 46EB2E00013350 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 46EB2E00013360 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 46EB2E00013380 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 46EB2E00013390 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 46EB2E000133A0 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 46EB2E000133B0 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 46EB2E000133C0 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 46EB2E000133D0 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 46EB2E000133E0 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 46EB2E000133F0 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 46EB2E00013410 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 46EB2E00013420 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 46EB2E00013430 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 46EB2E00013440 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 46EB2E00013450 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 46EB2E00013460 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 46EB2E00013470 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - 46EB2E00013480 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; - 46EB2E00013490 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; - 46EB2E000134A0 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 46EB2E000134B0 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 46EB2E000134C0 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 46EB2E000134D0 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 46EB2E000134E0 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 46EB2E000134F0 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 46EB2E00013500 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 46EB2E00013530 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; - 46EB2E00013540 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; - 46EB2E00013550 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; - 46EB2E00013560 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 46EB2E00013570 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - 46EB2E00013580 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 46EB2E00013590 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 46EB2E000135A0 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 46EB2E000135B0 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTPackagerConnection.mm; sourceTree = ""; }; - 46EB2E000135D0 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 46EB2E000135E0 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTInspector.mm; sourceTree = ""; }; - 46EB2E000135F0 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 46EB2E00013600 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 46EB2E00013630 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 46EB2E00013640 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 46EB2E00013650 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 46EB2E00013660 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 46EB2E00013670 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 46EB2E00013690 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136A0 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136B0 /* RCTColorAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTColorAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136C0 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136D0 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136E0 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 46EB2E000136F0 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013700 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013710 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013720 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013730 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013740 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013750 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013760 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 46EB2E00013770 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; - 46EB2E00013780 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 46EB2E00013790 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 46EB2E000137A0 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 46EB2E000137B0 /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = ""; }; - 46EB2E000137D0 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - 46EB2E000137E0 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 46EB2E00013800 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 46EB2E00013810 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; - 46EB2E00013820 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 46EB2E00013830 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 46EB2E00013840 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 46EB2E00013850 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - 46EB2E00013860 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 46EB2E00013870 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 46EB2E00013880 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = ""; }; - 46EB2E00013890 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 46EB2E000138A0 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; - 46EB2E000138B0 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - 46EB2E000138C0 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 46EB2E000138D0 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 46EB2E000138E0 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 46EB2E000138F0 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 46EB2E00013900 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 46EB2E00013910 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 46EB2E00013920 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 46EB2E00013930 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 46EB2E00013940 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 46EB2E00013950 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 46EB2E00013970 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 46EB2E00013980 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; - 46EB2E000139A0 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 46EB2E000139B0 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 46EB2E000139C0 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 46EB2E000139D0 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 46EB2E000139E0 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 46EB2E000139F0 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 46EB2E00013A10 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 46EB2E00013A20 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; - 46EB2E00013A50 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 46EB2E00013A60 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - 46EB2E00013A80 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 46EB2E00013A90 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 46EB2E00013AA0 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 46EB2E00013AB0 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 46EB2E00013AC0 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 46EB2E00013AE0 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 46EB2E00013AF0 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 46EB2E00013B00 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 46EB2E00013B10 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 46EB2E00013B40 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 46EB2E00013B50 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 46EB2E00013B60 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 46EB2E00013B70 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 46EB2E00013B80 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 46EB2E00013B90 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 46EB2E00013BA0 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 46EB2E00013BB0 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 46EB2E00013BC0 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - 46EB2E00013BD0 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 46EB2E00013BE0 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - 46EB2E00013BF0 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 46EB2E00013C00 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 46EB2E00013C10 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 46EB2E00013C30 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 46EB2E00013C40 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 46EB2E00013C50 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 46EB2E00013C70 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 46EB2E00013C80 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 46EB2E00013CA0 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 46EB2E00013CB0 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; - 46EB2E00013CD0 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 46EB2E00013CE0 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 46EB2E00013CF0 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 46EB2E00013D00 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 46EB2E00013D10 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = CoreModulesPlugins.mm; sourceTree = ""; }; - 46EB2E00013D20 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAccessibilityManager.mm; sourceTree = ""; }; - 46EB2E00013D30 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTActionSheetManager.mm; sourceTree = ""; }; - 46EB2E00013D40 /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = ""; }; - 46EB2E00013D50 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAlertManager.mm; sourceTree = ""; }; - 46EB2E00013D60 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAppearance.mm; sourceTree = ""; }; - 46EB2E00013D70 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAppState.mm; sourceTree = ""; }; - 46EB2E00013D80 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; - 46EB2E00013D90 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTClipboard.mm; sourceTree = ""; }; - 46EB2E00013DA0 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDeviceInfo.mm; sourceTree = ""; }; - 46EB2E00013DB0 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDevLoadingView.mm; sourceTree = ""; }; - 46EB2E00013DC0 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDevMenu.mm; sourceTree = ""; }; - 46EB2E00013DD0 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDevSettings.mm; sourceTree = ""; }; - 46EB2E00013DE0 /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDevSplitBundleLoader.mm; sourceTree = ""; }; - 46EB2E00013DF0 /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTEventDispatcher.mm; sourceTree = ""; }; - 46EB2E00013E00 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 46EB2E00013E10 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 46EB2E00013E20 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTI18nManager.mm; sourceTree = ""; }; - 46EB2E00013E30 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTKeyboardObserver.mm; sourceTree = ""; }; - 46EB2E00013E40 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLogBox.mm; sourceTree = ""; }; - 46EB2E00013E50 /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLogBoxView.mm; sourceTree = ""; }; - 46EB2E00013E60 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTPerfMonitor.mm; sourceTree = ""; }; - 46EB2E00013E70 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTPlatform.mm; sourceTree = ""; }; - 46EB2E00013E80 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTRedBox.mm; sourceTree = ""; }; - 46EB2E00013E90 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSourceCode.mm; sourceTree = ""; }; - 46EB2E00013EA0 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTStatusBarManager.mm; sourceTree = ""; }; - 46EB2E00013EB0 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTTiming.mm; sourceTree = ""; }; - 46EB2E00013EC0 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; - 46EB2E00013ED0 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTWebSocketModule.mm; sourceTree = ""; }; - 46EB2E00013EF0 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 46EB2E00013F00 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 46EB2E00013F10 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 46EB2E00013F20 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 46EB2E00013F40 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013F50 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013F60 /* RCTColorAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTColorAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013F70 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013F80 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013F90 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FA0 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FB0 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FC0 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FD0 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FE0 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 46EB2E00013FF0 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 46EB2E00014000 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 46EB2E00014010 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 46EB2E00014020 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTAnimationPlugins.mm; sourceTree = ""; }; - 46EB2E00014030 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 46EB2E00014040 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; - 46EB2E00014050 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 46EB2E00014060 /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNativeAnimatedTurboModule.mm; sourceTree = ""; }; - 46EB2E00014070 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - 46EB2E00014080 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTBlobCollector.mm; sourceTree = ""; }; - 46EB2E00014090 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTBlobManager.mm; sourceTree = ""; }; - 46EB2E000140A0 /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = ""; }; - 46EB2E000140B0 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTBlobPlugins.mm; sourceTree = ""; }; - 46EB2E000140C0 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTFileReaderModule.mm; sourceTree = ""; }; - 46EB2E000140D0 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - 46EB2E000140E0 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; - 46EB2E000140F0 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; - 46EB2E00014100 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 46EB2E00014110 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 46EB2E00014120 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageEditingManager.mm; sourceTree = ""; }; - 46EB2E00014130 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageLoader.mm; sourceTree = ""; }; - 46EB2E00014140 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImagePlugins.mm; sourceTree = ""; }; - 46EB2E00014150 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 46EB2E00014160 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageStoreManager.mm; sourceTree = ""; }; - 46EB2E00014170 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; - 46EB2E00014180 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 46EB2E00014190 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageView.mm; sourceTree = ""; }; - 46EB2E000141A0 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTImageViewManager.mm; sourceTree = ""; }; - 46EB2E000141B0 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; - 46EB2E000141C0 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 46EB2E000141D0 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - 46EB2E000141E0 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLinkingManager.mm; sourceTree = ""; }; - 46EB2E000141F0 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTLinkingPlugins.mm; sourceTree = ""; }; - 46EB2E00014200 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTDataRequestHandler.mm; sourceTree = ""; }; - 46EB2E00014210 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTFileRequestHandler.mm; sourceTree = ""; }; - 46EB2E00014220 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 46EB2E00014230 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNetworking.mm; sourceTree = ""; }; - 46EB2E00014240 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 46EB2E00014250 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTNetworkTask.mm; sourceTree = ""; }; - 46EB2E00014260 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSettingsManager.mm; sourceTree = ""; }; - 46EB2E00014270 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTSettingsPlugins.mm; sourceTree = ""; }; - 46EB2E00014290 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 46EB2E000142A0 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 46EB2E000142C0 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 46EB2E000142D0 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 46EB2E000142E0 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 46EB2E000142F0 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 46EB2E00014310 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 46EB2E00014320 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 46EB2E00014330 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 46EB2E00014340 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 46EB2E00014370 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 46EB2E00014380 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 46EB2E00014390 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 46EB2E000143A0 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 46EB2E000143B0 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 46EB2E000143C0 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 46EB2E000143D0 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 46EB2E000143E0 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 46EB2E000143F0 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 46EB2E00014400 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 46EB2E00014410 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 46EB2E00014420 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 46EB2E00014440 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 46EB2E00014450 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 46EB2E00014460 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 46EB2E00014480 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 46EB2E00014490 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 46EB2E000144A0 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTVibration.mm; sourceTree = ""; }; - 46EB2E000144B0 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - 46EB2E000144C0 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = react/bridging/Array.h; sourceTree = ""; }; - 46EB2E000144D0 /* AString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AString.h; path = react/bridging/AString.h; sourceTree = ""; }; - 46EB2E000144E0 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = react/bridging/Base.h; sourceTree = ""; }; - 46EB2E000144F0 /* Bool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bool.h; path = react/bridging/Bool.h; sourceTree = ""; }; - 46EB2E00014500 /* Bridging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bridging.h; path = react/bridging/Bridging.h; sourceTree = ""; }; - 46EB2E00014510 /* CallbackWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallbackWrapper.h; path = react/bridging/CallbackWrapper.h; sourceTree = ""; }; - 46EB2E00014520 /* Class.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Class.h; path = react/bridging/Class.h; sourceTree = ""; }; - 46EB2E00014530 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = react/bridging/Convert.h; sourceTree = ""; }; - 46EB2E00014540 /* Error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Error.h; path = react/bridging/Error.h; sourceTree = ""; }; - 46EB2E00014550 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = react/bridging/Function.h; sourceTree = ""; }; - 46EB2E00014560 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LongLivedObject.cpp; path = react/bridging/LongLivedObject.cpp; sourceTree = ""; }; - 46EB2E00014570 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = react/bridging/LongLivedObject.h; sourceTree = ""; }; - 46EB2E00014580 /* Number.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Number.h; path = react/bridging/Number.h; sourceTree = ""; }; - 46EB2E00014590 /* Object.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Object.h; path = react/bridging/Object.h; sourceTree = ""; }; - 46EB2E000145A0 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = react/bridging/Promise.h; sourceTree = ""; }; - 46EB2E000145B0 /* Value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Value.h; path = react/bridging/Value.h; sourceTree = ""; }; - 46EB2E000145C0 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; - 46EB2E000145D0 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 46EB2E000145E0 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = ""; }; - 46EB2E000145F0 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 46EB2E00014600 /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = ""; }; - 46EB2E00014610 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; - 46EB2E00014620 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 46EB2E00014630 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 46EB2E00014640 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 46EB2E00014650 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = ""; }; - 46EB2E00014660 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 46EB2E00014670 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = ""; }; - 46EB2E00014680 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 46EB2E00014690 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = ""; }; - 46EB2E000146A0 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 46EB2E000146B0 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - 46EB2E000146C0 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 46EB2E000146D0 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 46EB2E000146E0 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 46EB2E000146F0 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = ""; }; - 46EB2E00014700 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 46EB2E00014710 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = ""; }; - 46EB2E00014720 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 46EB2E00014730 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 46EB2E00014740 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 46EB2E00014750 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 46EB2E00014760 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 46EB2E00014770 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 46EB2E00014780 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = ""; }; - 46EB2E00014790 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - 46EB2E000147A0 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; - 46EB2E000147B0 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 46EB2E000147C0 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 46EB2E000147D0 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 46EB2E000147F0 /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = ""; }; - 46EB2E00014800 /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = ""; }; - 46EB2E00014810 /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = ""; }; - 46EB2E00014820 /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = ""; }; - 46EB2E00014840 /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = ""; }; - 46EB2E00014850 /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = ""; }; - 46EB2E00014860 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = ""; }; - 46EB2E00014870 /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = ""; }; - 46EB2E00014880 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = ""; }; - 46EB2E00014890 /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = ""; }; - 46EB2E000148A0 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = ""; }; - 46EB2E000148B0 /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = ""; }; - 46EB2E000148D0 /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = ""; }; - 46EB2E000148E0 /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = ""; }; - 46EB2E000148F0 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = ""; }; - 46EB2E00014900 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = ""; }; - 46EB2E00014910 /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = ""; }; - 46EB2E00014920 /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = ""; }; - 46EB2E00014930 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = ""; }; - 46EB2E00014940 /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = ""; }; - 46EB2E00014950 /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = ""; }; - 46EB2E00014960 /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = ""; }; - 46EB2E00014970 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = ""; }; - 46EB2E00014980 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = ""; }; - 46EB2E00014990 /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = ""; }; - 46EB2E000149A0 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = ""; }; - 46EB2E000149B0 /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = ""; }; - 46EB2E000149C0 /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = ""; }; - 46EB2E000149E0 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = ""; }; - 46EB2E000149F0 /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = ""; }; - 46EB2E00014A00 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = ""; }; - 46EB2E00014A10 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = ""; }; - 46EB2E00014A20 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = ""; }; - 46EB2E00014A30 /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = ""; }; - 46EB2E00014A40 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = ""; }; - 46EB2E00014A50 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - 46EB2E00014A70 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 46EB2E00014A80 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 46EB2E00014A90 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - 46EB2E00014AA0 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = ""; }; - 46EB2E00014AB0 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 46EB2E00014AC0 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; - 46EB2E00014AD0 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 46EB2E00014AE0 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; - 46EB2E00014AF0 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 46EB2E00014B00 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 46EB2E00014B10 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 46EB2E00014B20 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 46EB2E00014B30 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 46EB2E00014B40 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 46EB2E00014B50 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - 46EB2E00014B60 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 46EB2E00014B70 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 46EB2E00014B80 /* react_native_log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = react_native_log.cpp; sourceTree = ""; }; - 46EB2E00014B90 /* react_native_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = react_native_log.h; sourceTree = ""; }; - 46EB2E00014BA0 /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = ""; }; - 46EB2E00014BB0 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = ""; }; - 46EB2E00014BC0 /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = ""; }; - 46EB2E00014BD0 /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = ""; }; - 46EB2E00014C10 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = ""; }; - 46EB2E00014C20 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = ""; }; - 46EB2E00014C30 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = ""; }; - 46EB2E00014C40 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = ""; }; - 46EB2E00014C50 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = ""; }; - 46EB2E00014C60 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = ""; }; - 46EB2E00014C70 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = ""; }; - 46EB2E00014C80 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = ""; }; - 46EB2E00014C90 /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = ""; }; - 46EB2E00014CA0 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = ""; }; - 46EB2E00014CB0 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; - 46EB2E00014CE0 /* RCTBlockGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlockGuard.h; sourceTree = ""; }; - 46EB2E00014CF0 /* RCTBlockGuard.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTBlockGuard.mm; sourceTree = ""; }; - 46EB2E00014D00 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 46EB2E00014D10 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTTurboModule.mm; sourceTree = ""; }; - 46EB2E00014D20 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 46EB2E00014D30 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - 46EB2E00014D50 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 46EB2E00014D60 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 46EB2E00014D70 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 46EB2E00014D80 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 46EB2E00014D90 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 46EB2E00014DA0 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 46EB2E00014DB0 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 46EB2E00014DC0 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 46EB2E00014DD0 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 46EB2E00014DE0 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 46EB2E00014DF0 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 46EB2E00014E00 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 46EB2E00014E10 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 46EB2E00014E20 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 46EB2E00014E30 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 46EB2E00014E40 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 46EB2E00014E50 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 46EB2E00014E60 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 46EB2E00014E70 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 46EB2E00014E80 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - 46EB2E00014E90 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 46EB2E00014EA0 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 46EB2E00014EB0 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; - 46EB2E00014EC0 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; - 46EB2E00014ED0 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 46EB2E00014EE0 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 46EB2E00014EF0 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 46EB2E00014F00 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - 46EB2E00014F10 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 46EB2E00014F20 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 46EB2E00014F30 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 46EB2E00014F40 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 46EB2E00014F50 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 46EB2E00014F60 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 46EB2E00014F70 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 46EB2E00014F80 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 46EB2E00014F90 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 46EB2E00014FA0 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 46EB2E00014FB0 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 46EB2E00014FC0 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 46EB2E00014FD0 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 46EB2E00014FE0 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 46EB2E00014FF0 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 46EB2E00015000 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - 46EB2E00015010 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 46EB2E00015020 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 46EB2E00015030 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 46EB2E00015040 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 46EB2E00015050 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 46EB2E00015060 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 46EB2E00015070 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 46EB2E00015080 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 46EB2E00015090 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 46EB2E000150A0 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 46EB2E000150B0 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 46EB2E000150C0 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 46EB2E000150D0 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 46EB2E000150E0 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 46EB2E000150F0 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 46EB2E00015100 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 46EB2E00015110 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 46EB2E00015120 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 46EB2E00015130 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 46EB2E00015140 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 46EB2E00015150 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 46EB2E00015160 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 46EB2E00015170 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 46EB2E00015180 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 46EB2E00015190 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 46EB2E000151A0 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 46EB2E000151B0 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 46EB2E000151C0 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - 46EB2E000151D0 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 46EB2E000151E0 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 46EB2E000151F0 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 46EB2E00015200 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 46EB2E00015210 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 46EB2E00015220 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 46EB2E00015230 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 46EB2E00015240 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - 46EB2E00015250 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 46EB2E00015260 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 46EB2E00015270 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 46EB2E00015280 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - 46EB2E00015290 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 46EB2E000152A0 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - 46EB2E000152B0 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 46EB2E000152C0 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 46EB2E000152D0 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 46EB2E000152E0 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 46EB2E000152F0 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 46EB2E00015300 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - 46EB2E00015310 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 46EB2E00015320 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 46EB2E00015330 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 46EB2E00015340 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 46EB2E00015350 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 46EB2E00015360 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 46EB2E00015370 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 46EB2E00015380 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 46EB2E00015390 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 46EB2E000153A0 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 46EB2E000153B0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 46EB2E000153C0 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 46EB2E000153D0 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 46EB2E000153E0 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 46EB2E000153F0 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 46EB2E00015400 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 46EB2E00015410 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 46EB2E00015420 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 46EB2E00015430 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 46EB2E00015440 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 46EB2E00015450 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 46EB2E00015460 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 46EB2E00015470 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 46EB2E00015480 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 46EB2E00015490 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 46EB2E000154A0 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 46EB2E000154B0 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 46EB2E000154C0 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 46EB2E000154D0 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 46EB2E000154E0 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 46EB2E000154F0 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 46EB2E00015500 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 46EB2E00015510 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - 46EB2E00015520 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 46EB2E00015530 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 46EB2E00015540 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 46EB2E00015550 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 46EB2E00015560 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 46EB2E00015570 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 46EB2E00015580 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 46EB2E00015590 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 46EB2E000155A0 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 46EB2E000155B0 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 46EB2E000155C0 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 46EB2E000155D0 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 46EB2E000155E0 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 46EB2E000155F0 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 46EB2E00015600 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 46EB2E00015610 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 46EB2E00015620 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 46EB2E00015630 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 46EB2E00015640 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - 46EB2E00015650 /* SDWebImageWebPCoderDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoderDefine.h; path = SDWebImageWebPCoder/Classes/SDWebImageWebPCoderDefine.h; sourceTree = ""; }; - 46EB2E00015660 /* SDWebImageWebPCoderDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageWebPCoderDefine.m; path = SDWebImageWebPCoder/Classes/SDWebImageWebPCoderDefine.m; sourceTree = ""; }; - 46EB2E00015670 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 46EB2E00015680 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 46EB2E00015690 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 46EB2E000156A0 /* SSZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipArchive.h; path = SSZipArchive/SSZipArchive.h; sourceTree = ""; }; - 46EB2E000156B0 /* SSZipArchive.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SSZipArchive.m; path = SSZipArchive/SSZipArchive.m; sourceTree = ""; }; - 46EB2E000156C0 /* SSZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipCommon.h; path = SSZipArchive/SSZipCommon.h; sourceTree = ""; }; - 46EB2E000156D0 /* ZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = SSZipArchive/ZipArchive.h; sourceTree = ""; }; - 46EB2E000156E0 /* mz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz.h; path = SSZipArchive/minizip/mz.h; sourceTree = ""; }; - 46EB2E000156F0 /* mz_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_compat.c; path = SSZipArchive/minizip/mz_compat.c; sourceTree = ""; }; - 46EB2E00015700 /* mz_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_compat.h; path = SSZipArchive/minizip/mz_compat.h; sourceTree = ""; }; - 46EB2E00015710 /* mz_crypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_crypt.c; path = SSZipArchive/minizip/mz_crypt.c; sourceTree = ""; }; - 46EB2E00015720 /* mz_crypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_crypt.h; path = SSZipArchive/minizip/mz_crypt.h; sourceTree = ""; }; - 46EB2E00015730 /* mz_crypt_apple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_crypt_apple.c; path = SSZipArchive/minizip/mz_crypt_apple.c; sourceTree = ""; }; - 46EB2E00015740 /* mz_os.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_os.c; path = SSZipArchive/minizip/mz_os.c; sourceTree = ""; }; - 46EB2E00015750 /* mz_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_os.h; path = SSZipArchive/minizip/mz_os.h; sourceTree = ""; }; - 46EB2E00015760 /* mz_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_os_posix.c; path = SSZipArchive/minizip/mz_os_posix.c; sourceTree = ""; }; - 46EB2E00015770 /* mz_strm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm.c; path = SSZipArchive/minizip/mz_strm.c; sourceTree = ""; }; - 46EB2E00015780 /* mz_strm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm.h; path = SSZipArchive/minizip/mz_strm.h; sourceTree = ""; }; - 46EB2E00015790 /* mz_strm_buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_buf.c; path = SSZipArchive/minizip/mz_strm_buf.c; sourceTree = ""; }; - 46EB2E000157A0 /* mz_strm_buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_buf.h; path = SSZipArchive/minizip/mz_strm_buf.h; sourceTree = ""; }; - 46EB2E000157B0 /* mz_strm_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_mem.c; path = SSZipArchive/minizip/mz_strm_mem.c; sourceTree = ""; }; - 46EB2E000157C0 /* mz_strm_mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_mem.h; path = SSZipArchive/minizip/mz_strm_mem.h; sourceTree = ""; }; - 46EB2E000157D0 /* mz_strm_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_os.h; path = SSZipArchive/minizip/mz_strm_os.h; sourceTree = ""; }; - 46EB2E000157E0 /* mz_strm_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_os_posix.c; path = SSZipArchive/minizip/mz_strm_os_posix.c; sourceTree = ""; }; - 46EB2E000157F0 /* mz_strm_pkcrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_pkcrypt.c; path = SSZipArchive/minizip/mz_strm_pkcrypt.c; sourceTree = ""; }; - 46EB2E00015800 /* mz_strm_pkcrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_pkcrypt.h; path = SSZipArchive/minizip/mz_strm_pkcrypt.h; sourceTree = ""; }; - 46EB2E00015810 /* mz_strm_split.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_split.c; path = SSZipArchive/minizip/mz_strm_split.c; sourceTree = ""; }; - 46EB2E00015820 /* mz_strm_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_split.h; path = SSZipArchive/minizip/mz_strm_split.h; sourceTree = ""; }; - 46EB2E00015830 /* mz_strm_wzaes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_wzaes.c; path = SSZipArchive/minizip/mz_strm_wzaes.c; sourceTree = ""; }; - 46EB2E00015840 /* mz_strm_wzaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_wzaes.h; path = SSZipArchive/minizip/mz_strm_wzaes.h; sourceTree = ""; }; - 46EB2E00015850 /* mz_strm_zlib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_strm_zlib.c; path = SSZipArchive/minizip/mz_strm_zlib.c; sourceTree = ""; }; - 46EB2E00015860 /* mz_strm_zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_zlib.h; path = SSZipArchive/minizip/mz_strm_zlib.h; sourceTree = ""; }; - 46EB2E00015870 /* mz_zip.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_zip.c; path = SSZipArchive/minizip/mz_zip.c; sourceTree = ""; }; - 46EB2E00015880 /* mz_zip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip.h; path = SSZipArchive/minizip/mz_zip.h; sourceTree = ""; }; - 46EB2E00015890 /* mz_zip_rw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mz_zip_rw.c; path = SSZipArchive/minizip/mz_zip_rw.c; sourceTree = ""; }; - 46EB2E000158A0 /* mz_zip_rw.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip_rw.h; path = SSZipArchive/minizip/mz_zip_rw.h; sourceTree = ""; }; - 46EB2E000158B0 /* SRDelegateController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRDelegateController.h; path = SocketRocket/Internal/Delegate/SRDelegateController.h; sourceTree = ""; }; - 46EB2E000158C0 /* SRDelegateController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRDelegateController.m; path = SocketRocket/Internal/Delegate/SRDelegateController.m; sourceTree = ""; }; - 46EB2E000158D0 /* SRIOConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRIOConsumer.h; path = SocketRocket/Internal/IOConsumer/SRIOConsumer.h; sourceTree = ""; }; - 46EB2E000158E0 /* SRIOConsumer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRIOConsumer.m; path = SocketRocket/Internal/IOConsumer/SRIOConsumer.m; sourceTree = ""; }; - 46EB2E000158F0 /* SRIOConsumerPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRIOConsumerPool.h; path = SocketRocket/Internal/IOConsumer/SRIOConsumerPool.h; sourceTree = ""; }; - 46EB2E00015900 /* SRIOConsumerPool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRIOConsumerPool.m; path = SocketRocket/Internal/IOConsumer/SRIOConsumerPool.m; sourceTree = ""; }; - 46EB2E00015910 /* NSRunLoop+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSRunLoop+SRWebSocketPrivate.h"; path = "SocketRocket/Internal/NSRunLoop+SRWebSocketPrivate.h"; sourceTree = ""; }; - 46EB2E00015920 /* NSURLRequest+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+SRWebSocketPrivate.h"; path = "SocketRocket/Internal/NSURLRequest+SRWebSocketPrivate.h"; sourceTree = ""; }; - 46EB2E00015930 /* SRProxyConnect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRProxyConnect.h; path = SocketRocket/Internal/Proxy/SRProxyConnect.h; sourceTree = ""; }; - 46EB2E00015940 /* SRProxyConnect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRProxyConnect.m; path = SocketRocket/Internal/Proxy/SRProxyConnect.m; sourceTree = ""; }; - 46EB2E00015950 /* SRRunLoopThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRRunLoopThread.h; path = SocketRocket/Internal/RunLoop/SRRunLoopThread.h; sourceTree = ""; }; - 46EB2E00015960 /* SRRunLoopThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRRunLoopThread.m; path = SocketRocket/Internal/RunLoop/SRRunLoopThread.m; sourceTree = ""; }; - 46EB2E00015970 /* SRPinningSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRPinningSecurityPolicy.h; path = SocketRocket/Internal/Security/SRPinningSecurityPolicy.h; sourceTree = ""; }; - 46EB2E00015980 /* SRPinningSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRPinningSecurityPolicy.m; path = SocketRocket/Internal/Security/SRPinningSecurityPolicy.m; sourceTree = ""; }; - 46EB2E00015990 /* SRConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRConstants.h; path = SocketRocket/Internal/SRConstants.h; sourceTree = ""; }; - 46EB2E000159A0 /* SRConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRConstants.m; path = SocketRocket/Internal/SRConstants.m; sourceTree = ""; }; - 46EB2E000159B0 /* SRError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRError.h; path = SocketRocket/Internal/Utilities/SRError.h; sourceTree = ""; }; - 46EB2E000159C0 /* SRError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRError.m; path = SocketRocket/Internal/Utilities/SRError.m; sourceTree = ""; }; - 46EB2E000159D0 /* SRHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRHash.h; path = SocketRocket/Internal/Utilities/SRHash.h; sourceTree = ""; }; - 46EB2E000159E0 /* SRHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRHash.m; path = SocketRocket/Internal/Utilities/SRHash.m; sourceTree = ""; }; - 46EB2E000159F0 /* SRHTTPConnectMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRHTTPConnectMessage.h; path = SocketRocket/Internal/Utilities/SRHTTPConnectMessage.h; sourceTree = ""; }; - 46EB2E00015A00 /* SRHTTPConnectMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRHTTPConnectMessage.m; path = SocketRocket/Internal/Utilities/SRHTTPConnectMessage.m; sourceTree = ""; }; - 46EB2E00015A10 /* SRLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRLog.h; path = SocketRocket/Internal/Utilities/SRLog.h; sourceTree = ""; }; - 46EB2E00015A20 /* SRLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRLog.m; path = SocketRocket/Internal/Utilities/SRLog.m; sourceTree = ""; }; - 46EB2E00015A30 /* SRMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRMutex.h; path = SocketRocket/Internal/Utilities/SRMutex.h; sourceTree = ""; }; - 46EB2E00015A40 /* SRMutex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRMutex.m; path = SocketRocket/Internal/Utilities/SRMutex.m; sourceTree = ""; }; - 46EB2E00015A50 /* SRRandom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRRandom.h; path = SocketRocket/Internal/Utilities/SRRandom.h; sourceTree = ""; }; - 46EB2E00015A60 /* SRRandom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRRandom.m; path = SocketRocket/Internal/Utilities/SRRandom.m; sourceTree = ""; }; - 46EB2E00015A70 /* SRSIMDHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRSIMDHelpers.h; path = SocketRocket/Internal/Utilities/SRSIMDHelpers.h; sourceTree = ""; }; - 46EB2E00015A80 /* SRSIMDHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRSIMDHelpers.m; path = SocketRocket/Internal/Utilities/SRSIMDHelpers.m; sourceTree = ""; }; - 46EB2E00015A90 /* SRURLUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRURLUtilities.h; path = SocketRocket/Internal/Utilities/SRURLUtilities.h; sourceTree = ""; }; - 46EB2E00015AA0 /* SRURLUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRURLUtilities.m; path = SocketRocket/Internal/Utilities/SRURLUtilities.m; sourceTree = ""; }; - 46EB2E00015AB0 /* NSRunLoop+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSRunLoop+SRWebSocket.h"; path = "SocketRocket/NSRunLoop+SRWebSocket.h"; sourceTree = ""; }; - 46EB2E00015AC0 /* NSRunLoop+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSRunLoop+SRWebSocket.m"; path = "SocketRocket/NSRunLoop+SRWebSocket.m"; sourceTree = ""; }; - 46EB2E00015AD0 /* NSURLRequest+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+SRWebSocket.h"; path = "SocketRocket/NSURLRequest+SRWebSocket.h"; sourceTree = ""; }; - 46EB2E00015AE0 /* NSURLRequest+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLRequest+SRWebSocket.m"; path = "SocketRocket/NSURLRequest+SRWebSocket.m"; sourceTree = ""; }; - 46EB2E00015AF0 /* SocketRocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketRocket.h; path = SocketRocket/SocketRocket.h; sourceTree = ""; }; - 46EB2E00015B00 /* SRSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRSecurityPolicy.h; path = SocketRocket/SRSecurityPolicy.h; sourceTree = ""; }; - 46EB2E00015B10 /* SRSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRSecurityPolicy.m; path = SocketRocket/SRSecurityPolicy.m; sourceTree = ""; }; - 46EB2E00015B20 /* SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRWebSocket.h; path = SocketRocket/SRWebSocket.h; sourceTree = ""; }; - 46EB2E00015B30 /* SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRWebSocket.m; path = SocketRocket/SRWebSocket.m; sourceTree = ""; }; - 46EB2E00015B40 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - 46EB2E00015B50 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 46EB2E00015B70 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = ""; }; - 46EB2E00015B80 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 46EB2E00015BA0 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; - 46EB2E00015BB0 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; - 46EB2E00015BC0 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 46EB2E00015BD0 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 46EB2E00015BE0 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 46EB2E00015BF0 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 46EB2E00015C00 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 46EB2E00015C10 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 46EB2E00015C20 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 46EB2E00015C30 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 46EB2E00015C40 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 46EB2E00015C50 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 46EB2E00015C60 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 46EB2E00015C70 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 46EB2E00015C80 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 46EB2E00015C90 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 46EB2E00015CA0 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 46EB2E00015CB0 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 46EB2E00015CC0 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 46EB2E00015CD0 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 46EB2E00015CE0 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 46EB2E00015CF0 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 46EB2E00015D00 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - 46EB2E00015D10 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 46EB2E00015D20 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 46EB2E00015D30 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 46EB2E00015D40 /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; - 46EB2E00015D50 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; - 46EB2E00015D60 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; - 46EB2E00015D70 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; - 46EB2E00015D80 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; - 46EB2E00015D90 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; - 46EB2E00015DC0 /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; - 46EB2E00015DE0 /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; - 46EB2E00015E10 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; - 46EB2E00015E30 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; - 46EB2E00015E40 /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; - 46EB2E00015E50 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; - 46EB2E00015E60 /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; - 46EB2E00015E70 /* low_level_scheduling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_scheduling.h; path = absl/base/internal/low_level_scheduling.h; sourceTree = ""; }; - 46EB2E00015E80 /* per_thread_tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_tls.h; path = absl/base/internal/per_thread_tls.h; sourceTree = ""; }; - 46EB2E00015E90 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; - 46EB2E00015EA0 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; - 46EB2E00015EB0 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; - 46EB2E00015EC0 /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; - 46EB2E00015ED0 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; - 46EB2E00015EE0 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; - 46EB2E00015EF0 /* tsan_mutex_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsan_mutex_interface.h; path = absl/base/internal/tsan_mutex_interface.h; sourceTree = ""; }; - 46EB2E00015F00 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; - 46EB2E00015F10 /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; - 46EB2E00015F30 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; - 46EB2E00015F40 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; - 46EB2E00015F50 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; - 46EB2E00015F60 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; - 46EB2E00015F70 /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; - 46EB2E00015F90 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; - 46EB2E00015FA0 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; - 46EB2E00015FB0 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; - 46EB2E00015FD0 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; - 46EB2E00015FE0 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; - 46EB2E00015FF0 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; - 46EB2E00016000 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; - 46EB2E00016010 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; - 46EB2E00016020 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; - 46EB2E00016030 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; - 46EB2E00016050 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; - 46EB2E00016060 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; - 46EB2E00016080 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; - 46EB2E00016090 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; - 46EB2E000160B0 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; - 46EB2E000160D0 /* fast_type_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_type_id.h; path = absl/base/internal/fast_type_id.h; sourceTree = ""; }; - 46EB2E000160F0 /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; - 46EB2E00016100 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; - 46EB2E00016120 /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; - 46EB2E00016130 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; - 46EB2E00016140 /* low_level_alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_alloc.h; path = absl/base/internal/low_level_alloc.h; sourceTree = ""; }; - 46EB2E00016160 /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; - 46EB2E00016180 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; - 46EB2E00016190 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; - 46EB2E000161B0 /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; - 46EB2E000161C0 /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; - 46EB2E000161D0 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; - 46EB2E000161E0 /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; - 46EB2E000161F0 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; - 46EB2E00016200 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; - 46EB2E00016220 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; - 46EB2E00016230 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; - 46EB2E00016250 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; - 46EB2E00016260 /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; - 46EB2E00016290 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; - 46EB2E000162B0 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; - 46EB2E000162D0 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; - 46EB2E000162F0 /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; - 46EB2E00016310 /* flat_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_map.h; path = absl/container/flat_hash_map.h; sourceTree = ""; }; - 46EB2E00016330 /* hash_function_defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_function_defaults.h; path = absl/container/internal/hash_function_defaults.h; sourceTree = ""; }; - 46EB2E00016350 /* hash_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy_traits.h; path = absl/container/internal/hash_policy_traits.h; sourceTree = ""; }; - 46EB2E00016370 /* hashtable_debug_hooks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtable_debug_hooks.h; path = absl/container/internal/hashtable_debug_hooks.h; sourceTree = ""; }; - 46EB2E00016390 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; - 46EB2E000163A0 /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; - 46EB2E000163B0 /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; - 46EB2E000163D0 /* have_sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = have_sse.h; path = absl/container/internal/have_sse.h; sourceTree = ""; }; - 46EB2E000163F0 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; - 46EB2E00016410 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; - 46EB2E00016430 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; - 46EB2E00016450 /* raw_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_map.h; path = absl/container/internal/raw_hash_map.h; sourceTree = ""; }; - 46EB2E00016470 /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; - 46EB2E00016480 /* raw_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_set.h; path = absl/container/internal/raw_hash_set.h; sourceTree = ""; }; - 46EB2E000164B0 /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; - 46EB2E000164C0 /* address_is_readable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_is_readable.h; path = absl/debugging/internal/address_is_readable.h; sourceTree = ""; }; - 46EB2E000164D0 /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; - 46EB2E000164E0 /* elf_mem_image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = elf_mem_image.h; path = absl/debugging/internal/elf_mem_image.h; sourceTree = ""; }; - 46EB2E000164F0 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; - 46EB2E00016500 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; - 46EB2E00016520 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; - 46EB2E00016530 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; - 46EB2E00016550 /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; - 46EB2E00016560 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; - 46EB2E00016570 /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; - 46EB2E00016580 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; - 46EB2E00016590 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; - 46EB2E000165A0 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; - 46EB2E000165B0 /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; - 46EB2E000165C0 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; - 46EB2E000165D0 /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; - 46EB2E000165E0 /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; - 46EB2E000165F0 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; - 46EB2E00016600 /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; - 46EB2E00016620 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; - 46EB2E00016630 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; - 46EB2E00016640 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; - 46EB2E00016650 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; - 46EB2E00016660 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; - 46EB2E00016670 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; - 46EB2E00016680 /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; - 46EB2E00016690 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; - 46EB2E000166C0 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; - 46EB2E000166D0 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; - 46EB2E000166F0 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; - 46EB2E00016700 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; - 46EB2E00016730 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; - 46EB2E00016740 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; - 46EB2E00016760 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; - 46EB2E00016770 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; - 46EB2E00016780 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; - 46EB2E000167A0 /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; - 46EB2E000167B0 /* low_level_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_hash.h; path = absl/hash/internal/low_level_hash.h; sourceTree = ""; }; - 46EB2E000167E0 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; - 46EB2E00016810 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; - 46EB2E00016840 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; - 46EB2E00016850 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; - 46EB2E00016870 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; - 46EB2E00016880 /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; - 46EB2E00016890 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; - 46EB2E000168A0 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; - 46EB2E000168C0 /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; - 46EB2E000168F0 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; - 46EB2E00016900 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; - 46EB2E00016920 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; - 46EB2E00016950 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; - 46EB2E00016960 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; - 46EB2E00016970 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; - 46EB2E00016980 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; - 46EB2E00016990 /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; - 46EB2E000169A0 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; - 46EB2E000169B0 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; - 46EB2E000169C0 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; - 46EB2E000169D0 /* log_uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_uniform_int_distribution.h; path = absl/random/log_uniform_int_distribution.h; sourceTree = ""; }; - 46EB2E000169E0 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; - 46EB2E000169F0 /* uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_int_distribution.h; path = absl/random/uniform_int_distribution.h; sourceTree = ""; }; - 46EB2E00016A00 /* uniform_real_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_real_distribution.h; path = absl/random/uniform_real_distribution.h; sourceTree = ""; }; - 46EB2E00016A10 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; - 46EB2E00016A40 /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; - 46EB2E00016A60 /* fast_uniform_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_uniform_bits.h; path = absl/random/internal/fast_uniform_bits.h; sourceTree = ""; }; - 46EB2E00016A80 /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; - 46EB2E00016AA0 /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; - 46EB2E00016AC0 /* iostream_state_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iostream_state_saver.h; path = absl/random/internal/iostream_state_saver.h; sourceTree = ""; }; - 46EB2E00016AE0 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; - 46EB2E00016B00 /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; - 46EB2E00016B20 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; - 46EB2E00016B30 /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; - 46EB2E00016B40 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; - 46EB2E00016B60 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; - 46EB2E00016B70 /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; - 46EB2E00016B90 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; - 46EB2E00016BA0 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; - 46EB2E00016BC0 /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; - 46EB2E00016BE0 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; - 46EB2E00016BF0 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; - 46EB2E00016C00 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; - 46EB2E00016C20 /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; - 46EB2E00016C40 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; - 46EB2E00016C50 /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; - 46EB2E00016C70 /* salted_seed_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = salted_seed_seq.h; path = absl/random/internal/salted_seed_seq.h; sourceTree = ""; }; - 46EB2E00016C90 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; - 46EB2E00016CA0 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; - 46EB2E00016CC0 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; - 46EB2E00016CE0 /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; - 46EB2E00016D00 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; - 46EB2E00016D20 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; - 46EB2E00016D40 /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; - 46EB2E00016D50 /* seed_gen_exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_gen_exception.h; path = absl/random/seed_gen_exception.h; sourceTree = ""; }; - 46EB2E00016D70 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; - 46EB2E00016D80 /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; - 46EB2E00016DB0 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; - 46EB2E00016DC0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; - 46EB2E00016DD0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; - 46EB2E00016DE0 /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; - 46EB2E00016DF0 /* status_payload_printer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_payload_printer.h; path = absl/status/status_payload_printer.h; sourceTree = ""; }; - 46EB2E00016E10 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; - 46EB2E00016E20 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; - 46EB2E00016E30 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; - 46EB2E00016E60 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; - 46EB2E00016E70 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; - 46EB2E00016E90 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; - 46EB2E00016EA0 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; - 46EB2E00016EB0 /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; - 46EB2E00016EC0 /* cord_rep_btree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree.h; path = absl/strings/internal/cord_rep_btree.h; sourceTree = ""; }; - 46EB2E00016ED0 /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; - 46EB2E00016EE0 /* cord_rep_btree_navigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_navigator.h; path = absl/strings/internal/cord_rep_btree_navigator.h; sourceTree = ""; }; - 46EB2E00016EF0 /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; - 46EB2E00016F00 /* cord_rep_btree_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_reader.h; path = absl/strings/internal/cord_rep_btree_reader.h; sourceTree = ""; }; - 46EB2E00016F10 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; - 46EB2E00016F20 /* cord_rep_consume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_consume.h; path = absl/strings/internal/cord_rep_consume.h; sourceTree = ""; }; - 46EB2E00016F30 /* cord_rep_flat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_flat.h; path = absl/strings/internal/cord_rep_flat.h; sourceTree = ""; }; - 46EB2E00016F40 /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; - 46EB2E00016F50 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; - 46EB2E00016F60 /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; - 46EB2E00016F80 /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; - 46EB2E00016F90 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; - 46EB2E00016FB0 /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; - 46EB2E00016FC0 /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; - 46EB2E00016FE0 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; - 46EB2E00016FF0 /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; - 46EB2E00017010 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; - 46EB2E00017030 /* cordz_update_scope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_scope.h; path = absl/strings/internal/cordz_update_scope.h; sourceTree = ""; }; - 46EB2E00017050 /* cordz_update_tracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_tracker.h; path = absl/strings/internal/cordz_update_tracker.h; sourceTree = ""; }; - 46EB2E00017070 /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; - 46EB2E00017080 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; - 46EB2E00017090 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; - 46EB2E000170A0 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; - 46EB2E000170B0 /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; - 46EB2E000170C0 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; - 46EB2E000170D0 /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; - 46EB2E000170E0 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; - 46EB2E00017100 /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; - 46EB2E00017120 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; - 46EB2E00017130 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; - 46EB2E00017140 /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; - 46EB2E00017150 /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; - 46EB2E00017160 /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; - 46EB2E00017170 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; - 46EB2E00017180 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; - 46EB2E00017190 /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; - 46EB2E000171A0 /* float_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = float_conversion.h; path = absl/strings/internal/str_format/float_conversion.h; sourceTree = ""; }; - 46EB2E000171B0 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; - 46EB2E000171C0 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; - 46EB2E000171D0 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; - 46EB2E000171E0 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; - 46EB2E00017200 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; - 46EB2E00017210 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; - 46EB2E00017220 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; - 46EB2E00017230 /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; - 46EB2E00017240 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; - 46EB2E00017250 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; - 46EB2E00017260 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; - 46EB2E00017270 /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; - 46EB2E00017280 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; - 46EB2E00017290 /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; - 46EB2E000172A0 /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; - 46EB2E000172B0 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; - 46EB2E000172C0 /* stl_type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_type_traits.h; path = absl/strings/internal/stl_type_traits.h; sourceTree = ""; }; - 46EB2E000172D0 /* str_join_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join_internal.h; path = absl/strings/internal/str_join_internal.h; sourceTree = ""; }; - 46EB2E000172E0 /* str_split_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split_internal.h; path = absl/strings/internal/str_split_internal.h; sourceTree = ""; }; - 46EB2E000172F0 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; - 46EB2E00017300 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; - 46EB2E00017310 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; - 46EB2E00017320 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; - 46EB2E00017330 /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; - 46EB2E00017340 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; - 46EB2E00017350 /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; - 46EB2E00017360 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; - 46EB2E00017370 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; - 46EB2E00017380 /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; - 46EB2E00017390 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; - 46EB2E000173A0 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; - 46EB2E000173B0 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; - 46EB2E000173C0 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; - 46EB2E000173D0 /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; - 46EB2E000173E0 /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; - 46EB2E000173F0 /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; - 46EB2E00017420 /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; - 46EB2E00017430 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; - 46EB2E00017450 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; - 46EB2E00017470 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; - 46EB2E00017480 /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; - 46EB2E00017490 /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; - 46EB2E000174A0 /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; - 46EB2E000174B0 /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; - 46EB2E000174C0 /* create_thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_thread_identity.h; path = absl/synchronization/internal/create_thread_identity.h; sourceTree = ""; }; - 46EB2E000174D0 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; - 46EB2E000174E0 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; - 46EB2E000174F0 /* per_thread_sem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_sem.h; path = absl/synchronization/internal/per_thread_sem.h; sourceTree = ""; }; - 46EB2E00017500 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; - 46EB2E00017510 /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; - 46EB2E00017520 /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; - 46EB2E00017530 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; - 46EB2E00017540 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; - 46EB2E00017550 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; - 46EB2E000175A0 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/internal/cctz/include/cctz/civil_time.h; sourceTree = ""; }; - 46EB2E000175B0 /* civil_time_detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time_detail.h; path = absl/time/internal/cctz/include/cctz/civil_time_detail.h; sourceTree = ""; }; - 46EB2E000175C0 /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; - 46EB2E000175E0 /* time_zone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone.h; path = absl/time/internal/cctz/include/cctz/time_zone.h; sourceTree = ""; }; - 46EB2E000175F0 /* zone_info_source.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zone_info_source.h; path = absl/time/internal/cctz/include/cctz/zone_info_source.h; sourceTree = ""; }; - 46EB2E00017600 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; - 46EB2E00017610 /* time_zone_fixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_fixed.h; path = absl/time/internal/cctz/src/time_zone_fixed.h; sourceTree = ""; }; - 46EB2E00017620 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; - 46EB2E00017630 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; - 46EB2E00017640 /* time_zone_if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_if.h; path = absl/time/internal/cctz/src/time_zone_if.h; sourceTree = ""; }; - 46EB2E00017650 /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; - 46EB2E00017660 /* time_zone_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_impl.h; path = absl/time/internal/cctz/src/time_zone_impl.h; sourceTree = ""; }; - 46EB2E00017670 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; - 46EB2E00017680 /* time_zone_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_info.h; path = absl/time/internal/cctz/src/time_zone_info.h; sourceTree = ""; }; - 46EB2E00017690 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; - 46EB2E000176A0 /* time_zone_libc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_libc.h; path = absl/time/internal/cctz/src/time_zone_libc.h; sourceTree = ""; }; - 46EB2E000176B0 /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; - 46EB2E000176C0 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; - 46EB2E000176D0 /* time_zone_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_posix.h; path = absl/time/internal/cctz/src/time_zone_posix.h; sourceTree = ""; }; - 46EB2E000176E0 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; - 46EB2E000176F0 /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; - 46EB2E00017710 /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; - 46EB2E00017720 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; - 46EB2E00017730 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; - 46EB2E00017740 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; - 46EB2E00017750 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; - 46EB2E00017760 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; - 46EB2E00017770 /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; - 46EB2E00017780 /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; - 46EB2E00017790 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; - 46EB2E000177A0 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; - 46EB2E000177D0 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; - 46EB2E000177F0 /* bad_any_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_any_cast.h; path = absl/types/bad_any_cast.h; sourceTree = ""; }; - 46EB2E00017810 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; - 46EB2E00017830 /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; - 46EB2E00017840 /* bad_optional_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_optional_access.h; path = absl/types/bad_optional_access.h; sourceTree = ""; }; - 46EB2E00017860 /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; - 46EB2E00017870 /* bad_variant_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_variant_access.h; path = absl/types/bad_variant_access.h; sourceTree = ""; }; - 46EB2E00017890 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; - 46EB2E000178B0 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; - 46EB2E000178C0 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; - 46EB2E000178E0 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; - 46EB2E000178F0 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; - 46EB2E00017910 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; - 46EB2E00017920 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; - 46EB2E00017950 /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; - 46EB2E00017960 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = src/format.cc; sourceTree = ""; }; - 46EB2E00017970 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; - 46EB2E00017980 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; - 46EB2E00017990 /* compile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compile.h; path = include/fmt/compile.h; sourceTree = ""; }; - 46EB2E000179A0 /* core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core.h; path = include/fmt/core.h; sourceTree = ""; }; - 46EB2E000179B0 /* format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "format-inl.h"; path = "include/fmt/format-inl.h"; sourceTree = ""; }; - 46EB2E000179C0 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = include/fmt/format.h; sourceTree = ""; }; - 46EB2E000179D0 /* locale.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = locale.h; path = include/fmt/locale.h; sourceTree = ""; }; - 46EB2E000179E0 /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; - 46EB2E000179F0 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; - 46EB2E00017A00 /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = include/fmt/posix.h; sourceTree = ""; }; - 46EB2E00017A10 /* printf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = printf.h; path = include/fmt/printf.h; sourceTree = ""; }; - 46EB2E00017A20 /* ranges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ranges.h; path = include/fmt/ranges.h; sourceTree = ""; }; - 46EB2E00017A40 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - 46EB2E00017A50 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - 46EB2E00017A60 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 46EB2E00017A70 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - 46EB2E00017A80 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - 46EB2E00017A90 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - 46EB2E00017AA0 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 46EB2E00017AB0 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - 46EB2E00017AC0 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 46EB2E00017AD0 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 46EB2E00017AE0 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - 46EB2E00017AF0 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - 46EB2E00017B00 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; - 46EB2E00017B10 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - 46EB2E00017B20 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - 46EB2E00017B30 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - 46EB2E00017B40 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 46EB2E00017B50 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 46EB2E00017B60 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; - 46EB2E00017B70 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 46EB2E00017B80 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 46EB2E00017B90 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - 46EB2E00017BA0 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - 46EB2E00017BB0 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - 46EB2E00017BC0 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - 46EB2E00017BD0 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - 46EB2E00017BE0 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; - 46EB2E00017BF0 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 46EB2E00017C00 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - 46EB2E00017C10 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; - 46EB2E00017C20 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 46EB2E00017C30 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 46EB2E00017C40 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - 46EB2E00017C50 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 46EB2E00017C60 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 46EB2E00017C70 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - 46EB2E00017C80 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 46EB2E00017C90 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - 46EB2E00017CA0 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - 46EB2E00017CB0 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 46EB2E00017CC0 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; - 46EB2E00017CD0 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - 46EB2E00017CE0 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; - 46EB2E00017CF0 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - 46EB2E00017D00 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - 46EB2E00017D10 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - 46EB2E00017D20 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - 46EB2E00017D30 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - 46EB2E00017D40 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - 46EB2E00017D50 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 46EB2E00017D60 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - 46EB2E00017D70 /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; - 46EB2E00017D80 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - 46EB2E00017D90 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - 46EB2E00017DA0 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - 46EB2E00017DB0 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - 46EB2E00017DC0 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - 46EB2E00017DD0 /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; - 46EB2E00017DE0 /* binder_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_connector.h; path = src/core/ext/transport/binder/client/binder_connector.h; sourceTree = ""; }; - 46EB2E00017DF0 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; - 46EB2E00017E00 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; - 46EB2E00017E10 /* channel_create_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_create_impl.h; path = src/core/ext/transport/binder/client/channel_create_impl.h; sourceTree = ""; }; - 46EB2E00017E20 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; - 46EB2E00017E30 /* connection_id_generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connection_id_generator.h; path = src/core/ext/transport/binder/client/connection_id_generator.h; sourceTree = ""; }; - 46EB2E00017E40 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; - 46EB2E00017E50 /* endpoint_binder_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_binder_pool.h; path = src/core/ext/transport/binder/client/endpoint_binder_pool.h; sourceTree = ""; }; - 46EB2E00017E60 /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; - 46EB2E00017E70 /* jni_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jni_utils.h; path = src/core/ext/transport/binder/client/jni_utils.h; sourceTree = ""; }; - 46EB2E00017E80 /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; - 46EB2E00017E90 /* security_policy_setting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_policy_setting.h; path = src/core/ext/transport/binder/client/security_policy_setting.h; sourceTree = ""; }; - 46EB2E00017EA0 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; - 46EB2E00017EB0 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; - 46EB2E00017EC0 /* binder_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_server.h; path = src/core/ext/transport/binder/server/binder_server.h; sourceTree = ""; }; - 46EB2E00017ED0 /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; - 46EB2E00017EE0 /* binder_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_stream.h; path = src/core/ext/transport/binder/transport/binder_stream.h; sourceTree = ""; }; - 46EB2E00017EF0 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; - 46EB2E00017F00 /* binder_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_transport.h; path = src/core/ext/transport/binder/transport/binder_transport.h; sourceTree = ""; }; - 46EB2E00017F10 /* binder_auto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_auto_utils.h; path = src/core/ext/transport/binder/utils/binder_auto_utils.h; sourceTree = ""; }; - 46EB2E00017F20 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; - 46EB2E00017F30 /* ndk_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ndk_binder.h; path = src/core/ext/transport/binder/utils/ndk_binder.h; sourceTree = ""; }; - 46EB2E00017F40 /* transport_stream_receiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver.h; sourceTree = ""; }; - 46EB2E00017F50 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; - 46EB2E00017F60 /* transport_stream_receiver_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver_impl.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.h; sourceTree = ""; }; - 46EB2E00017F70 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; - 46EB2E00017F80 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; - 46EB2E00017F90 /* binder_android.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_android.h; path = src/core/ext/transport/binder/wire_format/binder_android.h; sourceTree = ""; }; - 46EB2E00017FA0 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; - 46EB2E00017FB0 /* binder_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_constants.h; path = src/core/ext/transport/binder/wire_format/binder_constants.h; sourceTree = ""; }; - 46EB2E00017FC0 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; - 46EB2E00017FD0 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; - 46EB2E00017FE0 /* wire_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader.h; path = src/core/ext/transport/binder/wire_format/wire_reader.h; sourceTree = ""; }; - 46EB2E00017FF0 /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; - 46EB2E00018000 /* wire_reader_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader_impl.h; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.h; sourceTree = ""; }; - 46EB2E00018010 /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; - 46EB2E00018020 /* wire_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_writer.h; path = src/core/ext/transport/binder/wire_format/wire_writer.h; sourceTree = ""; }; - 46EB2E00018030 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 46EB2E00018040 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - 46EB2E00018050 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - 46EB2E00018060 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - 46EB2E00018070 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - 46EB2E00018080 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - 46EB2E00018090 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - 46EB2E000180A0 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - 46EB2E000180B0 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - 46EB2E000180C0 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - 46EB2E000180D0 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - 46EB2E000180E0 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - 46EB2E000180F0 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - 46EB2E00018100 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - 46EB2E00018110 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - 46EB2E00018120 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - 46EB2E00018130 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - 46EB2E00018140 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - 46EB2E00018150 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - 46EB2E00018160 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 46EB2E00018170 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - 46EB2E00018180 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 46EB2E00018190 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - 46EB2E000181A0 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - 46EB2E000181B0 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 46EB2E000181C0 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - 46EB2E000181D0 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - 46EB2E000181E0 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - 46EB2E000181F0 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 46EB2E00018200 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 46EB2E00018210 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 46EB2E00018220 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 46EB2E00018230 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 46EB2E00018240 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 46EB2E00018250 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 46EB2E00018260 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - 46EB2E00018270 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 46EB2E00018280 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 46EB2E00018290 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - 46EB2E000182A0 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 46EB2E000182B0 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - 46EB2E000182C0 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - 46EB2E000182D0 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 46EB2E000182E0 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 46EB2E000182F0 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 46EB2E00018300 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 46EB2E00018310 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 46EB2E00018320 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 46EB2E00018330 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 46EB2E00018340 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 46EB2E00018350 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 46EB2E00018360 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 46EB2E00018370 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 46EB2E00018380 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 46EB2E00018390 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 46EB2E000183A0 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 46EB2E000183B0 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 46EB2E000183C0 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 46EB2E000183D0 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 46EB2E000183E0 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - 46EB2E000183F0 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 46EB2E00018400 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 46EB2E00018410 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 46EB2E00018420 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 46EB2E00018430 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 46EB2E00018440 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 46EB2E00018450 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 46EB2E00018460 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - 46EB2E00018470 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 46EB2E00018480 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 46EB2E00018490 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 46EB2E000184A0 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 46EB2E000184B0 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 46EB2E000184C0 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - 46EB2E000184D0 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - 46EB2E000184E0 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; - 46EB2E000184F0 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 46EB2E00018500 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 46EB2E00018510 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; - 46EB2E00018520 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; - 46EB2E00018530 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 46EB2E00018540 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; - 46EB2E00018550 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; - 46EB2E00018560 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 46EB2E00018570 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - 46EB2E00018580 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 46EB2E00018590 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - 46EB2E000185A0 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 46EB2E000185B0 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 46EB2E000185C0 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 46EB2E000185D0 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 46EB2E000185E0 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - 46EB2E000185F0 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 46EB2E00018600 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 46EB2E00018610 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 46EB2E00018620 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 46EB2E00018630 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 46EB2E00018640 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 46EB2E00018650 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 46EB2E00018660 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - 46EB2E00018670 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 46EB2E00018680 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 46EB2E00018690 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; - 46EB2E000186A0 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 46EB2E000186B0 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; - 46EB2E000186C0 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - 46EB2E000186D0 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - 46EB2E000186E0 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 46EB2E000186F0 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 46EB2E00018700 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - 46EB2E00018710 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - 46EB2E00018720 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - 46EB2E00018730 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 46EB2E00018740 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - 46EB2E00018750 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 46EB2E00018760 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - 46EB2E00018770 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 46EB2E00018780 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 46EB2E00018790 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 46EB2E000187A0 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 46EB2E000187B0 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 46EB2E000187C0 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 46EB2E000187D0 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 46EB2E000187E0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 46EB2E000187F0 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 46EB2E00018800 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - 46EB2E00018810 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 46EB2E00018820 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 46EB2E00018830 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - 46EB2E00018840 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 46EB2E00018850 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - 46EB2E00018860 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 46EB2E00018870 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 46EB2E00018880 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 46EB2E00018890 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 46EB2E000188A0 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 46EB2E000188B0 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - 46EB2E000188C0 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 46EB2E000188D0 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - 46EB2E000188E0 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - 46EB2E000188F0 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018900 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018910 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018920 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018930 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018940 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018950 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018960 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018970 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018980 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018990 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189A0 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189B0 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189C0 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189D0 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189E0 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 46EB2E000189F0 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A00 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A10 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A20 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A30 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A40 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A50 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A60 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A70 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A80 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018A90 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AA0 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AB0 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AC0 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AD0 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AE0 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018AF0 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B00 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B10 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B20 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B30 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B40 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B50 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B60 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B70 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B80 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018B90 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BA0 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BB0 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BC0 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BD0 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BE0 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018BF0 /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C00 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C10 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C20 /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C30 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C40 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C50 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C60 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C70 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C80 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018C90 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CA0 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CB0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CC0 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CD0 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CE0 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018CF0 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D00 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D10 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D20 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D30 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D40 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D50 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D60 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D70 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D80 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018D90 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DA0 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DB0 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DC0 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DD0 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DE0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018DF0 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E00 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E10 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E20 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E30 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E40 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E50 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E60 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E70 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E80 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018E90 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018EA0 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018EB0 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018EC0 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018ED0 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018EE0 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018EF0 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E00018F00 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; - 46EB2E00018F10 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; - 46EB2E00018F20 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 46EB2E00018F30 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - 46EB2E00018F40 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 46EB2E00018F50 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 46EB2E00018F60 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 46EB2E00018F70 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - 46EB2E00018F80 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 46EB2E00018F90 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; - 46EB2E00018FA0 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - 46EB2E00018FB0 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 46EB2E00018FC0 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - 46EB2E00018FD0 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - 46EB2E00018FE0 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - 46EB2E00018FF0 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - 46EB2E00019000 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 46EB2E00019010 /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - 46EB2E00019020 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - 46EB2E00019030 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - 46EB2E00019040 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - 46EB2E00019050 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 46EB2E00019060 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 46EB2E00019070 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - 46EB2E00019080 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 46EB2E00019090 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - 46EB2E000190A0 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - 46EB2E000190B0 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 46EB2E000190C0 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - 46EB2E000190D0 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 46EB2E000190E0 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - 46EB2E000190F0 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 46EB2E00019100 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - 46EB2E00019110 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - 46EB2E00019120 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 46EB2E00019130 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - 46EB2E00019140 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - 46EB2E00019150 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 46EB2E00019160 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 46EB2E00019170 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; - 46EB2E00019180 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; - 46EB2E00019190 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 46EB2E000191A0 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - 46EB2E000191B0 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - 46EB2E000191C0 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 46EB2E000191D0 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - 46EB2E000191E0 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 46EB2E000191F0 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 46EB2E00019200 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 46EB2E00019210 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; - 46EB2E00019220 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; - 46EB2E00019230 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 46EB2E00019240 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - 46EB2E00019250 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - 46EB2E00019260 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 46EB2E00019270 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 46EB2E00019280 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - 46EB2E00019290 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - 46EB2E000192A0 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - 46EB2E000192B0 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - 46EB2E000192C0 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 46EB2E000192D0 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - 46EB2E000192E0 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - 46EB2E000192F0 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 46EB2E00019300 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 46EB2E00019310 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - 46EB2E00019320 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 46EB2E00019330 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - 46EB2E00019340 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 46EB2E00019350 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 46EB2E00019360 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - 46EB2E00019370 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 46EB2E00019380 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 46EB2E00019390 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - 46EB2E000193A0 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 46EB2E000193B0 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 46EB2E000193C0 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 46EB2E000193D0 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 46EB2E000193E0 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 46EB2E000193F0 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 46EB2E00019400 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - 46EB2E00019410 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 46EB2E00019420 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 46EB2E00019430 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - 46EB2E00019440 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 46EB2E00019450 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 46EB2E00019460 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - 46EB2E00019470 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - 46EB2E00019480 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 46EB2E00019490 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - 46EB2E000194A0 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 46EB2E000194B0 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - 46EB2E000194C0 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 46EB2E000194D0 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 46EB2E000194E0 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 46EB2E000194F0 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - 46EB2E00019500 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - 46EB2E00019510 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 46EB2E00019520 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 46EB2E00019530 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 46EB2E00019540 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 46EB2E00019550 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - 46EB2E00019560 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; - 46EB2E00019570 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 46EB2E00019580 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 46EB2E00019590 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; - 46EB2E000195A0 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - 46EB2E000195B0 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 46EB2E000195C0 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - 46EB2E000195D0 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; - 46EB2E000195E0 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; - 46EB2E000195F0 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 46EB2E00019600 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; - 46EB2E00019610 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; - 46EB2E00019620 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - 46EB2E00019630 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - 46EB2E00019640 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; - 46EB2E00019650 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; - 46EB2E00019660 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 46EB2E00019670 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - 46EB2E00019680 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - 46EB2E00019690 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - 46EB2E000196A0 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 46EB2E000196B0 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; - 46EB2E000196C0 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - 46EB2E000196D0 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; - 46EB2E000196E0 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - 46EB2E000196F0 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 46EB2E00019700 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 46EB2E00019710 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 46EB2E00019720 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 46EB2E00019730 /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; - 46EB2E00019740 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - 46EB2E00019750 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; - 46EB2E00019760 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - 46EB2E00019770 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - 46EB2E00019780 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 46EB2E00019790 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 46EB2E000197A0 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 46EB2E000197B0 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; - 46EB2E000197C0 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - 46EB2E000197D0 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; - 46EB2E000197E0 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - 46EB2E000197F0 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 46EB2E00019800 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 46EB2E00019810 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 46EB2E00019820 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - 46EB2E00019830 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - 46EB2E00019840 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 46EB2E00019850 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 46EB2E00019860 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 46EB2E00019870 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 46EB2E00019880 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; - 46EB2E00019890 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 46EB2E000198A0 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - 46EB2E000198B0 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - 46EB2E000198C0 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 46EB2E000198D0 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 46EB2E000198E0 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - 46EB2E000198F0 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 46EB2E00019900 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; - 46EB2E00019910 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 46EB2E00019920 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 46EB2E00019930 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 46EB2E00019940 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 46EB2E00019950 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 46EB2E00019960 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - 46EB2E00019970 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - 46EB2E00019980 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - 46EB2E00019990 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - 46EB2E000199A0 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 46EB2E000199B0 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - 46EB2E000199C0 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 46EB2E000199D0 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; - 46EB2E000199E0 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 46EB2E000199F0 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 46EB2E00019A00 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - 46EB2E00019A10 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - 46EB2E00019A20 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - 46EB2E00019A30 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 46EB2E00019A40 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; - 46EB2E00019A50 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - 46EB2E00019A60 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 46EB2E00019A70 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 46EB2E00019A80 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - 46EB2E00019A90 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 46EB2E00019AA0 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 46EB2E00019AB0 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 46EB2E00019AC0 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 46EB2E00019AD0 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - 46EB2E00019AE0 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - 46EB2E00019AF0 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 46EB2E00019B00 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - 46EB2E00019B10 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - 46EB2E00019B20 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - 46EB2E00019B30 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 46EB2E00019B40 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - 46EB2E00019B50 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - 46EB2E00019B60 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - 46EB2E00019B70 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - 46EB2E00019B80 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - 46EB2E00019B90 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 46EB2E00019BA0 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - 46EB2E00019BB0 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; - 46EB2E00019BC0 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - 46EB2E00019BD0 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - 46EB2E00019BE0 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - 46EB2E00019BF0 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - 46EB2E00019C00 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - 46EB2E00019C10 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 46EB2E00019C20 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; - 46EB2E00019C30 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 46EB2E00019C40 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - 46EB2E00019C50 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; - 46EB2E00019C60 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - 46EB2E00019C70 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 46EB2E00019C80 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - 46EB2E00019C90 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - 46EB2E00019CA0 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - 46EB2E00019CB0 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 46EB2E00019CC0 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - 46EB2E00019CD0 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - 46EB2E00019CE0 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - 46EB2E00019CF0 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 46EB2E00019D00 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - 46EB2E00019D10 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - 46EB2E00019D20 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - 46EB2E00019D30 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 46EB2E00019D40 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - 46EB2E00019D50 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 46EB2E00019D60 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - 46EB2E00019D70 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; - 46EB2E00019D80 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - 46EB2E00019D90 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - 46EB2E00019DA0 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - 46EB2E00019DB0 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 46EB2E00019DC0 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 46EB2E00019DD0 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - 46EB2E00019DE0 /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - 46EB2E00019DF0 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - 46EB2E00019E00 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - 46EB2E00019E10 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - 46EB2E00019E20 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - 46EB2E00019E30 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - 46EB2E00019E40 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - 46EB2E00019E50 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - 46EB2E00019E60 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - 46EB2E00019E70 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 46EB2E00019E80 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 46EB2E00019E90 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - 46EB2E00019EA0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - 46EB2E00019EB0 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - 46EB2E00019EC0 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 46EB2E00019ED0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 46EB2E00019EE0 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 46EB2E00019EF0 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - 46EB2E00019F00 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - 46EB2E00019F10 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; - 46EB2E00019F20 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - 46EB2E00019F30 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; - 46EB2E00019F40 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 46EB2E00019F50 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 46EB2E00019F60 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 46EB2E00019F70 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 46EB2E00019F80 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - 46EB2E00019F90 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 46EB2E00019FA0 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - 46EB2E00019FB0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 46EB2E00019FC0 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - 46EB2E00019FD0 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - 46EB2E00019FE0 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 46EB2E00019FF0 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 46EB2E0001A000 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 46EB2E0001A010 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 46EB2E0001A020 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 46EB2E0001A030 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; - 46EB2E0001A040 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 46EB2E0001A050 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 46EB2E0001A060 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - 46EB2E0001A070 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - 46EB2E0001A080 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 46EB2E0001A090 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - 46EB2E0001A0A0 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 46EB2E0001A0B0 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 46EB2E0001A0C0 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - 46EB2E0001A0D0 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - 46EB2E0001A0E0 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 46EB2E0001A0F0 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 46EB2E0001A100 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - 46EB2E0001A110 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - 46EB2E0001A120 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - 46EB2E0001A130 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - 46EB2E0001A140 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - 46EB2E0001A150 /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 46EB2E0001A160 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - 46EB2E0001A170 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - 46EB2E0001A180 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 46EB2E0001A190 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - 46EB2E0001A1A0 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - 46EB2E0001A1B0 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - 46EB2E0001A1C0 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 46EB2E0001A1D0 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - 46EB2E0001A1E0 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - 46EB2E0001A1F0 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - 46EB2E0001A200 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - 46EB2E0001A210 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - 46EB2E0001A220 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - 46EB2E0001A230 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - 46EB2E0001A240 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - 46EB2E0001A250 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - 46EB2E0001A260 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 46EB2E0001A270 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 46EB2E0001A280 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - 46EB2E0001A290 /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - 46EB2E0001A2A0 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; - 46EB2E0001A2B0 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; - 46EB2E0001A2C0 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; - 46EB2E0001A2D0 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; - 46EB2E0001A2E0 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; - 46EB2E0001A2F0 /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; - 46EB2E0001A300 /* create_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_internal.h; path = src/cpp/client/create_channel_internal.h; sourceTree = ""; }; - 46EB2E0001A310 /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; - 46EB2E0001A320 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; - 46EB2E0001A330 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; - 46EB2E0001A340 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; - 46EB2E0001A350 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; - 46EB2E0001A360 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; - 46EB2E0001A370 /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; - 46EB2E0001A380 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; - 46EB2E0001A390 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; - 46EB2E0001A3A0 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; - 46EB2E0001A3B0 /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; - 46EB2E0001A3C0 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; - 46EB2E0001A3D0 /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; - 46EB2E0001A3E0 /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; - 46EB2E0001A3F0 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; - 46EB2E0001A400 /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; - 46EB2E0001A410 /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; - 46EB2E0001A420 /* secure_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_auth_context.h; path = src/cpp/common/secure_auth_context.h; sourceTree = ""; }; - 46EB2E0001A430 /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; - 46EB2E0001A440 /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; - 46EB2E0001A450 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; - 46EB2E0001A460 /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; - 46EB2E0001A470 /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; - 46EB2E0001A480 /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; - 46EB2E0001A490 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; - 46EB2E0001A4A0 /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; - 46EB2E0001A4B0 /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; - 46EB2E0001A4C0 /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; - 46EB2E0001A4D0 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; - 46EB2E0001A4E0 /* dynamic_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_thread_pool.h; path = src/cpp/server/dynamic_thread_pool.h; sourceTree = ""; }; - 46EB2E0001A4F0 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; - 46EB2E0001A500 /* external_connection_acceptor_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_connection_acceptor_impl.h; path = src/cpp/server/external_connection_acceptor_impl.h; sourceTree = ""; }; - 46EB2E0001A510 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; - 46EB2E0001A520 /* default_health_check_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_health_check_service.h; path = src/cpp/server/health/default_health_check_service.h; sourceTree = ""; }; - 46EB2E0001A530 /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; - 46EB2E0001A540 /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; - 46EB2E0001A550 /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; - 46EB2E0001A560 /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; - 46EB2E0001A570 /* secure_server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_server_credentials.h; path = src/cpp/server/secure_server_credentials.h; sourceTree = ""; }; - 46EB2E0001A580 /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; - 46EB2E0001A590 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; - 46EB2E0001A5A0 /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; - 46EB2E0001A5B0 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; - 46EB2E0001A5C0 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; - 46EB2E0001A5D0 /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; - 46EB2E0001A5E0 /* thread_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool_interface.h; path = src/cpp/server/thread_pool_interface.h; sourceTree = ""; }; - 46EB2E0001A5F0 /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; - 46EB2E0001A600 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; - 46EB2E0001A610 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; - 46EB2E0001A620 /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; - 46EB2E0001A630 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; - 46EB2E0001A640 /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; - 46EB2E0001A650 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; - 46EB2E0001A660 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - 46EB2E0001A670 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 46EB2E0001A680 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; - 46EB2E0001A690 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - 46EB2E0001A6A0 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 46EB2E0001A6B0 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - 46EB2E0001A6C0 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - 46EB2E0001A6D0 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 46EB2E0001A6E0 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 46EB2E0001A6F0 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 46EB2E0001A700 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - 46EB2E0001A710 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - 46EB2E0001A720 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - 46EB2E0001A730 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - 46EB2E0001A740 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - 46EB2E0001A750 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - 46EB2E0001A760 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; - 46EB2E0001A770 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - 46EB2E0001A790 /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; - 46EB2E0001A7A0 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; - 46EB2E0001A7B0 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; - 46EB2E0001A7C0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; - 46EB2E0001A7D0 /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; - 46EB2E0001A7E0 /* create_channel_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_binder.h; path = include/grpcpp/create_channel_binder.h; sourceTree = ""; }; - 46EB2E0001A7F0 /* create_channel_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_posix.h; path = include/grpcpp/create_channel_posix.h; sourceTree = ""; }; - 46EB2E0001A800 /* health_check_service_server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_server_builder_option.h; path = include/grpcpp/ext/health_check_service_server_builder_option.h; sourceTree = ""; }; - 46EB2E0001A810 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/generic/async_generic_service.h; sourceTree = ""; }; - 46EB2E0001A820 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; - 46EB2E0001A830 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; - 46EB2E0001A840 /* health_check_service_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_interface.h; path = include/grpcpp/health_check_service_interface.h; sourceTree = ""; }; - 46EB2E0001A850 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; - 46EB2E0001A860 /* channel_argument_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_argument_option.h; path = include/grpcpp/impl/channel_argument_option.h; sourceTree = ""; }; - 46EB2E0001A870 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/client_unary_call.h; sourceTree = ""; }; - 46EB2E0001A880 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/impl/codegen/async_generic_service.h; sourceTree = ""; }; - 46EB2E0001A890 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; - 46EB2E0001A8A0 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/impl/codegen/async_unary_call.h; sourceTree = ""; }; - 46EB2E0001A8B0 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 46EB2E0001A8C0 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; - 46EB2E0001A8D0 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; - 46EB2E0001A8E0 /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/codegen/call_op_set.h; sourceTree = ""; }; - 46EB2E0001A8F0 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/codegen/call_op_set_interface.h; sourceTree = ""; }; - 46EB2E0001A900 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; - 46EB2E0001A910 /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; - 46EB2E0001A920 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; - 46EB2E0001A930 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; - 46EB2E0001A940 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; - 46EB2E0001A950 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/codegen/client_unary_call.h; sourceTree = ""; }; - 46EB2E0001A960 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; - 46EB2E0001A970 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/codegen/completion_queue_tag.h; sourceTree = ""; }; - 46EB2E0001A980 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; - 46EB2E0001A990 /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; - 46EB2E0001A9A0 /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; - 46EB2E0001A9B0 /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/codegen/create_auth_context.h; sourceTree = ""; }; - 46EB2E0001A9C0 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; - 46EB2E0001A9D0 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; - 46EB2E0001A9E0 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; - 46EB2E0001A9F0 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; - 46EB2E0001AA00 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; - 46EB2E0001AA10 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; - 46EB2E0001AA20 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; - 46EB2E0001AA30 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; - 46EB2E0001AA40 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/codegen/method_handler_impl.h; sourceTree = ""; }; - 46EB2E0001AA50 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; - 46EB2E0001AA60 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/codegen/rpc_service_method.h; sourceTree = ""; }; - 46EB2E0001AA70 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/impl/codegen/security/auth_context.h; sourceTree = ""; }; - 46EB2E0001AA80 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; - 46EB2E0001AA90 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; - 46EB2E0001AAA0 /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/codegen/server_callback_handlers.h; sourceTree = ""; }; - 46EB2E0001AAB0 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; - 46EB2E0001AAC0 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; - 46EB2E0001AAD0 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; - 46EB2E0001AAE0 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; - 46EB2E0001AAF0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; - 46EB2E0001AB00 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; - 46EB2E0001AB10 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/impl/codegen/status_code_enum.h; sourceTree = ""; }; - 46EB2E0001AB20 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; - 46EB2E0001AB30 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; - 46EB2E0001AB40 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; - 46EB2E0001AB50 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; - 46EB2E0001AB60 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; - 46EB2E0001AB70 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; - 46EB2E0001AB80 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/method_handler_impl.h; sourceTree = ""; }; - 46EB2E0001AB90 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; - 46EB2E0001ABA0 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/rpc_service_method.h; sourceTree = ""; }; - 46EB2E0001ABB0 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; - 46EB2E0001ABC0 /* server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_option.h; path = include/grpcpp/impl/server_builder_option.h; sourceTree = ""; }; - 46EB2E0001ABD0 /* server_builder_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_plugin.h; path = include/grpcpp/impl/server_builder_plugin.h; sourceTree = ""; }; - 46EB2E0001ABE0 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; - 46EB2E0001ABF0 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; - 46EB2E0001AC00 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; - 46EB2E0001AC10 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; - 46EB2E0001AC20 /* auth_metadata_processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_metadata_processor.h; path = include/grpcpp/security/auth_metadata_processor.h; sourceTree = ""; }; - 46EB2E0001AC30 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = include/grpcpp/security/authorization_policy_provider.h; sourceTree = ""; }; - 46EB2E0001AC40 /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; - 46EB2E0001AC50 /* binder_security_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_security_policy.h; path = include/grpcpp/security/binder_security_policy.h; sourceTree = ""; }; - 46EB2E0001AC60 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; - 46EB2E0001AC70 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; - 46EB2E0001AC80 /* tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_provider.h; path = include/grpcpp/security/tls_certificate_provider.h; sourceTree = ""; }; - 46EB2E0001AC90 /* tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_verifier.h; path = include/grpcpp/security/tls_certificate_verifier.h; sourceTree = ""; }; - 46EB2E0001ACA0 /* tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials_options.h; path = include/grpcpp/security/tls_credentials_options.h; sourceTree = ""; }; - 46EB2E0001ACB0 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; - 46EB2E0001ACC0 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; - 46EB2E0001ACD0 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; - 46EB2E0001ACE0 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; - 46EB2E0001ACF0 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; - 46EB2E0001AD00 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/support/async_unary_call.h; sourceTree = ""; }; - 46EB2E0001AD10 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; - 46EB2E0001AD20 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; - 46EB2E0001AD30 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; - 46EB2E0001AD40 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; - 46EB2E0001AD50 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; - 46EB2E0001AD60 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; - 46EB2E0001AD70 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; - 46EB2E0001AD80 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; - 46EB2E0001AD90 /* proto_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_reader.h; path = include/grpcpp/support/proto_buffer_reader.h; sourceTree = ""; }; - 46EB2E0001ADA0 /* proto_buffer_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_writer.h; path = include/grpcpp/support/proto_buffer_writer.h; sourceTree = ""; }; - 46EB2E0001ADB0 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; - 46EB2E0001ADC0 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; - 46EB2E0001ADD0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; - 46EB2E0001ADE0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; - 46EB2E0001ADF0 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/support/status_code_enum.h; sourceTree = ""; }; - 46EB2E0001AE00 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; - 46EB2E0001AE10 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; - 46EB2E0001AE20 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; - 46EB2E0001AE30 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; - 46EB2E0001AE40 /* validate_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_service_config.h; path = include/grpcpp/support/validate_service_config.h; sourceTree = ""; }; - 46EB2E0001AE50 /* xds_server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_server_builder.h; path = include/grpcpp/xds_server_builder.h; sourceTree = ""; }; - 46EB2E0001AE70 /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; - 46EB2E0001AE80 /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; - 46EB2E0001AE90 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - 46EB2E0001AEA0 /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; - 46EB2E0001AEB0 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - 46EB2E0001AEC0 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; - 46EB2E0001AED0 /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; - 46EB2E0001AEE0 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 46EB2E0001AEF0 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; - 46EB2E0001AF00 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - 46EB2E0001AF10 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; - 46EB2E0001AF20 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - 46EB2E0001AF30 /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; - 46EB2E0001AF40 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; - 46EB2E0001AF50 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - 46EB2E0001AF60 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 46EB2E0001AF70 /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; - 46EB2E0001AF80 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - 46EB2E0001AF90 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; - 46EB2E0001AFA0 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 46EB2E0001AFB0 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; - 46EB2E0001AFC0 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 46EB2E0001AFD0 /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; - 46EB2E0001AFE0 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - 46EB2E0001AFF0 /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; - 46EB2E0001B000 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - 46EB2E0001B010 /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; - 46EB2E0001B020 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; - 46EB2E0001B030 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; - 46EB2E0001B040 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - 46EB2E0001B050 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; - 46EB2E0001B060 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - 46EB2E0001B070 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; - 46EB2E0001B080 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - 46EB2E0001B090 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; - 46EB2E0001B0A0 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 46EB2E0001B0B0 /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; - 46EB2E0001B0C0 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 46EB2E0001B0D0 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; - 46EB2E0001B0E0 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; - 46EB2E0001B0F0 /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; - 46EB2E0001B100 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 46EB2E0001B110 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; - 46EB2E0001B120 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 46EB2E0001B130 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; - 46EB2E0001B140 /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; - 46EB2E0001B150 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; - 46EB2E0001B160 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - 46EB2E0001B170 /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; - 46EB2E0001B180 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; - 46EB2E0001B190 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - 46EB2E0001B1A0 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; - 46EB2E0001B1B0 /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; - 46EB2E0001B1C0 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - 46EB2E0001B1D0 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - 46EB2E0001B1E0 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; - 46EB2E0001B1F0 /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; - 46EB2E0001B200 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; - 46EB2E0001B210 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - 46EB2E0001B220 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; - 46EB2E0001B230 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; - 46EB2E0001B240 /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; - 46EB2E0001B250 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 46EB2E0001B260 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - 46EB2E0001B270 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; - 46EB2E0001B280 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; - 46EB2E0001B290 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; - 46EB2E0001B2A0 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; - 46EB2E0001B2B0 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 46EB2E0001B2C0 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; - 46EB2E0001B2D0 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; - 46EB2E0001B2E0 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; - 46EB2E0001B2F0 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; - 46EB2E0001B300 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 46EB2E0001B310 /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; - 46EB2E0001B320 /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; - 46EB2E0001B330 /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; - 46EB2E0001B340 /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; - 46EB2E0001B350 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - 46EB2E0001B360 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; - 46EB2E0001B370 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; - 46EB2E0001B380 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 46EB2E0001B390 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; - 46EB2E0001B3A0 /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; - 46EB2E0001B3B0 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; - 46EB2E0001B3C0 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 46EB2E0001B3D0 /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; - 46EB2E0001B3E0 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - 46EB2E0001B3F0 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; - 46EB2E0001B400 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 46EB2E0001B410 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; - 46EB2E0001B420 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - 46EB2E0001B430 /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; - 46EB2E0001B440 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - 46EB2E0001B450 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; - 46EB2E0001B460 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; - 46EB2E0001B470 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 46EB2E0001B480 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; - 46EB2E0001B490 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; - 46EB2E0001B4A0 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - 46EB2E0001B4B0 /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; - 46EB2E0001B4C0 /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; - 46EB2E0001B4D0 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; - 46EB2E0001B4E0 /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; - 46EB2E0001B4F0 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - 46EB2E0001B500 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; - 46EB2E0001B510 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - 46EB2E0001B520 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; - 46EB2E0001B530 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - 46EB2E0001B540 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; - 46EB2E0001B550 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - 46EB2E0001B560 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; - 46EB2E0001B570 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - 46EB2E0001B580 /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; - 46EB2E0001B590 /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; - 46EB2E0001B5A0 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - 46EB2E0001B5B0 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; - 46EB2E0001B5C0 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 46EB2E0001B5D0 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; - 46EB2E0001B5E0 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - 46EB2E0001B5F0 /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; - 46EB2E0001B600 /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; - 46EB2E0001B610 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; - 46EB2E0001B620 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - 46EB2E0001B630 /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; - 46EB2E0001B640 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - 46EB2E0001B650 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; - 46EB2E0001B660 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - 46EB2E0001B670 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; - 46EB2E0001B680 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - 46EB2E0001B690 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; - 46EB2E0001B6A0 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - 46EB2E0001B6B0 /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; - 46EB2E0001B6C0 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 46EB2E0001B6D0 /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; - 46EB2E0001B6E0 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - 46EB2E0001B6F0 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; - 46EB2E0001B700 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; - 46EB2E0001B710 /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; - 46EB2E0001B720 /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; - 46EB2E0001B730 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - 46EB2E0001B740 /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; - 46EB2E0001B750 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; - 46EB2E0001B760 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; - 46EB2E0001B770 /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; - 46EB2E0001B780 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - 46EB2E0001B790 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; - 46EB2E0001B7A0 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - 46EB2E0001B7B0 /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; - 46EB2E0001B7C0 /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; - 46EB2E0001B7D0 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - 46EB2E0001B7E0 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; - 46EB2E0001B7F0 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - 46EB2E0001B800 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; - 46EB2E0001B810 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - 46EB2E0001B820 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - 46EB2E0001B830 /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; - 46EB2E0001B840 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - 46EB2E0001B850 /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; - 46EB2E0001B860 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - 46EB2E0001B870 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; - 46EB2E0001B880 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - 46EB2E0001B890 /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; - 46EB2E0001B8A0 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - 46EB2E0001B8B0 /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; - 46EB2E0001B8C0 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - 46EB2E0001B8D0 /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; - 46EB2E0001B8E0 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - 46EB2E0001B8F0 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - 46EB2E0001B900 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; - 46EB2E0001B910 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - 46EB2E0001B920 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; - 46EB2E0001B930 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - 46EB2E0001B940 /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; - 46EB2E0001B950 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - 46EB2E0001B960 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; - 46EB2E0001B970 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 46EB2E0001B980 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; - 46EB2E0001B990 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - 46EB2E0001B9A0 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; - 46EB2E0001B9B0 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 46EB2E0001B9C0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - 46EB2E0001B9D0 /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; - 46EB2E0001B9E0 /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; - 46EB2E0001B9F0 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; - 46EB2E0001BA00 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - 46EB2E0001BA10 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; - 46EB2E0001BA20 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 46EB2E0001BA30 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; - 46EB2E0001BA40 /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; - 46EB2E0001BA50 /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; - 46EB2E0001BA60 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - 46EB2E0001BA70 /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; - 46EB2E0001BA80 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - 46EB2E0001BA90 /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; - 46EB2E0001BAA0 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - 46EB2E0001BAB0 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; - 46EB2E0001BAC0 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 46EB2E0001BAD0 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; - 46EB2E0001BAE0 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 46EB2E0001BAF0 /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; - 46EB2E0001BB00 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 46EB2E0001BB10 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; - 46EB2E0001BB20 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 46EB2E0001BB30 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; - 46EB2E0001BB40 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 46EB2E0001BB50 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; - 46EB2E0001BB60 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 46EB2E0001BB70 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; - 46EB2E0001BB80 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 46EB2E0001BB90 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; - 46EB2E0001BBA0 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - 46EB2E0001BBB0 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; - 46EB2E0001BBC0 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 46EB2E0001BBD0 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; - 46EB2E0001BBE0 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 46EB2E0001BBF0 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; - 46EB2E0001BC00 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - 46EB2E0001BC10 /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; - 46EB2E0001BC20 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 46EB2E0001BC30 /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; - 46EB2E0001BC40 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - 46EB2E0001BC50 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; - 46EB2E0001BC60 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - 46EB2E0001BC70 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; - 46EB2E0001BC80 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 46EB2E0001BC90 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; - 46EB2E0001BCA0 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 46EB2E0001BCB0 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; - 46EB2E0001BCC0 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 46EB2E0001BCD0 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; - 46EB2E0001BCE0 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 46EB2E0001BCF0 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; - 46EB2E0001BD00 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 46EB2E0001BD10 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; - 46EB2E0001BD20 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 46EB2E0001BD30 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; - 46EB2E0001BD40 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 46EB2E0001BD50 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; - 46EB2E0001BD60 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 46EB2E0001BD70 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; - 46EB2E0001BD80 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 46EB2E0001BD90 /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; - 46EB2E0001BDA0 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 46EB2E0001BDB0 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; - 46EB2E0001BDC0 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 46EB2E0001BDD0 /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; - 46EB2E0001BDE0 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 46EB2E0001BDF0 /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; - 46EB2E0001BE00 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 46EB2E0001BE10 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; - 46EB2E0001BE20 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 46EB2E0001BE30 /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; - 46EB2E0001BE40 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 46EB2E0001BE50 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; - 46EB2E0001BE60 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 46EB2E0001BE70 /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; - 46EB2E0001BE80 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 46EB2E0001BE90 /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; - 46EB2E0001BEA0 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - 46EB2E0001BEB0 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 46EB2E0001BEC0 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 46EB2E0001BED0 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; - 46EB2E0001BEE0 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 46EB2E0001BEF0 /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; - 46EB2E0001BF00 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 46EB2E0001BF10 /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; - 46EB2E0001BF20 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 46EB2E0001BF30 /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; - 46EB2E0001BF40 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 46EB2E0001BF50 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; - 46EB2E0001BF60 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 46EB2E0001BF70 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; - 46EB2E0001BF80 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 46EB2E0001BF90 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; - 46EB2E0001BFA0 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - 46EB2E0001BFB0 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 46EB2E0001BFC0 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 46EB2E0001BFD0 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; - 46EB2E0001BFE0 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 46EB2E0001BFF0 /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; - 46EB2E0001C000 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 46EB2E0001C010 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; - 46EB2E0001C020 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 46EB2E0001C030 /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; - 46EB2E0001C040 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 46EB2E0001C050 /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; - 46EB2E0001C060 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - 46EB2E0001C070 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; - 46EB2E0001C080 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - 46EB2E0001C090 /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; - 46EB2E0001C0A0 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; - 46EB2E0001C0B0 /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; - 46EB2E0001C0C0 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 46EB2E0001C0D0 /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; - 46EB2E0001C0E0 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 46EB2E0001C0F0 /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; - 46EB2E0001C100 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; - 46EB2E0001C110 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; - 46EB2E0001C120 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; - 46EB2E0001C130 /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; - 46EB2E0001C140 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 46EB2E0001C150 /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; - 46EB2E0001C160 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; - 46EB2E0001C170 /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; - 46EB2E0001C180 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; - 46EB2E0001C190 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; - 46EB2E0001C1A0 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 46EB2E0001C1B0 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; - 46EB2E0001C1C0 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - 46EB2E0001C1D0 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; - 46EB2E0001C1E0 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 46EB2E0001C1F0 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; - 46EB2E0001C200 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - 46EB2E0001C210 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; - 46EB2E0001C220 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 46EB2E0001C230 /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; - 46EB2E0001C240 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 46EB2E0001C250 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; - 46EB2E0001C260 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 46EB2E0001C270 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; - 46EB2E0001C280 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 46EB2E0001C290 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; - 46EB2E0001C2A0 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - 46EB2E0001C2B0 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; - 46EB2E0001C2C0 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 46EB2E0001C2D0 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; - 46EB2E0001C2E0 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 46EB2E0001C2F0 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; - 46EB2E0001C300 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 46EB2E0001C310 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; - 46EB2E0001C320 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 46EB2E0001C330 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; - 46EB2E0001C340 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 46EB2E0001C350 /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; - 46EB2E0001C360 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 46EB2E0001C370 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; - 46EB2E0001C380 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 46EB2E0001C390 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; - 46EB2E0001C3A0 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - 46EB2E0001C3B0 /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; - 46EB2E0001C3C0 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 46EB2E0001C3D0 /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; - 46EB2E0001C3E0 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 46EB2E0001C3F0 /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; - 46EB2E0001C400 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; - 46EB2E0001C410 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; - 46EB2E0001C420 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 46EB2E0001C430 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; - 46EB2E0001C440 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; - 46EB2E0001C450 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; - 46EB2E0001C460 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - 46EB2E0001C470 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; - 46EB2E0001C480 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - 46EB2E0001C490 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; - 46EB2E0001C4A0 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 46EB2E0001C4B0 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; - 46EB2E0001C4C0 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 46EB2E0001C4D0 /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; - 46EB2E0001C4E0 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - 46EB2E0001C4F0 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; - 46EB2E0001C500 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - 46EB2E0001C510 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; - 46EB2E0001C520 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - 46EB2E0001C530 /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; - 46EB2E0001C540 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 46EB2E0001C550 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; - 46EB2E0001C560 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - 46EB2E0001C570 /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; - 46EB2E0001C580 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 46EB2E0001C590 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; - 46EB2E0001C5A0 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - 46EB2E0001C5B0 /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; - 46EB2E0001C5C0 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 46EB2E0001C5D0 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; - 46EB2E0001C5E0 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 46EB2E0001C5F0 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; - 46EB2E0001C600 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 46EB2E0001C610 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; - 46EB2E0001C620 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 46EB2E0001C630 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; - 46EB2E0001C640 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 46EB2E0001C650 /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; - 46EB2E0001C660 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 46EB2E0001C670 /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; - 46EB2E0001C680 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 46EB2E0001C690 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; - 46EB2E0001C6A0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 46EB2E0001C6B0 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; - 46EB2E0001C6C0 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 46EB2E0001C6D0 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; - 46EB2E0001C6E0 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - 46EB2E0001C6F0 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; - 46EB2E0001C700 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 46EB2E0001C710 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; - 46EB2E0001C720 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 46EB2E0001C730 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; - 46EB2E0001C740 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - 46EB2E0001C750 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; - 46EB2E0001C760 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 46EB2E0001C770 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; - 46EB2E0001C780 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - 46EB2E0001C790 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; - 46EB2E0001C7A0 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 46EB2E0001C7B0 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; - 46EB2E0001C7C0 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 46EB2E0001C7D0 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; - 46EB2E0001C7E0 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 46EB2E0001C7F0 /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; - 46EB2E0001C800 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 46EB2E0001C810 /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C820 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C830 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C840 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C850 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C860 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C870 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C880 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C890 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C8A0 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C8B0 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C8C0 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C8D0 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C8E0 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C8F0 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C900 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C910 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C920 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C930 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C940 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C950 /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C960 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C970 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C980 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C990 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C9A0 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C9B0 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C9C0 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C9D0 /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001C9E0 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001C9F0 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CA00 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CA10 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CA20 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CA30 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CA40 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CA50 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CA60 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CA70 /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CA80 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CA90 /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CAA0 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CAB0 /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CAC0 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CAD0 /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CAE0 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CAF0 /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CB00 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CB10 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CB20 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CB30 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CB40 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CB50 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CB60 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CB70 /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CB80 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CB90 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CBA0 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CBB0 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CBC0 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CBD0 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CBE0 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CBF0 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CC00 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CC10 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CC20 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CC30 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CC40 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CC50 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CC60 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CC70 /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CC80 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CC90 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CCA0 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CCB0 /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CCC0 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CCD0 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CCE0 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CCF0 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CD00 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CD10 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CD20 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CD30 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CD40 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CD50 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CD60 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CD70 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CD80 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CD90 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CDA0 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CDB0 /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CDC0 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CDD0 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CDE0 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CDF0 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CE00 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CE10 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CE20 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CE30 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CE40 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CE50 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CE60 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CE70 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CE80 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CE90 /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CEA0 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CEB0 /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CEC0 /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CED0 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CEE0 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CEF0 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CF00 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CF10 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CF20 /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CF30 /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CF40 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CF50 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CF60 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CF70 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CF80 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CF90 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CFA0 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CFB0 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CFC0 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CFD0 /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001CFE0 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001CFF0 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D000 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D010 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D020 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D030 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D040 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D050 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D060 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D070 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D080 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D090 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D0A0 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D0B0 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D0C0 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D0D0 /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D0E0 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D0F0 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D100 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D110 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D120 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D130 /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D140 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D150 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D160 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D170 /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D180 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D190 /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D1A0 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D1B0 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D1C0 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D1D0 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D1E0 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D1F0 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D200 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D210 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D220 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D230 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D240 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D250 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D260 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D270 /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D280 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D290 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D2A0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D2B0 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D2C0 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D2D0 /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D2E0 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D2F0 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D300 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D310 /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D320 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D330 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D340 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D350 /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D360 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D370 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D380 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D390 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D3A0 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D3B0 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D3C0 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D3D0 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D3E0 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D3F0 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D400 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D410 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D420 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D430 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D440 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D450 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D460 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D470 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D480 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D490 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D4A0 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D4B0 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; - 46EB2E0001D4C0 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 46EB2E0001D4D0 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; - 46EB2E0001D4E0 /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; - 46EB2E0001D4F0 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; - 46EB2E0001D500 /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; - 46EB2E0001D510 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 46EB2E0001D520 /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; - 46EB2E0001D530 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - 46EB2E0001D540 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 46EB2E0001D550 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; - 46EB2E0001D560 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 46EB2E0001D570 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; - 46EB2E0001D580 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 46EB2E0001D590 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; - 46EB2E0001D5A0 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - 46EB2E0001D5B0 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 46EB2E0001D5C0 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; - 46EB2E0001D5D0 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; - 46EB2E0001D5E0 /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; - 46EB2E0001D5F0 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - 46EB2E0001D600 /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; - 46EB2E0001D610 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 46EB2E0001D620 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; - 46EB2E0001D630 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - 46EB2E0001D640 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; - 46EB2E0001D650 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - 46EB2E0001D660 /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; - 46EB2E0001D670 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - 46EB2E0001D680 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; - 46EB2E0001D690 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - 46EB2E0001D6A0 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; - 46EB2E0001D6B0 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 46EB2E0001D6C0 /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; - 46EB2E0001D6D0 /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - 46EB2E0001D6E0 /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; - 46EB2E0001D6F0 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - 46EB2E0001D700 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; - 46EB2E0001D710 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - 46EB2E0001D720 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; - 46EB2E0001D730 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - 46EB2E0001D740 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 46EB2E0001D750 /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; - 46EB2E0001D760 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 46EB2E0001D770 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; - 46EB2E0001D780 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - 46EB2E0001D790 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; - 46EB2E0001D7A0 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; - 46EB2E0001D7B0 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 46EB2E0001D7C0 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; - 46EB2E0001D7D0 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - 46EB2E0001D7E0 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - 46EB2E0001D7F0 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; - 46EB2E0001D800 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 46EB2E0001D810 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - 46EB2E0001D820 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; - 46EB2E0001D830 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 46EB2E0001D840 /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; - 46EB2E0001D850 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - 46EB2E0001D860 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; - 46EB2E0001D870 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 46EB2E0001D880 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; - 46EB2E0001D890 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - 46EB2E0001D8A0 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; - 46EB2E0001D8B0 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - 46EB2E0001D8C0 /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; - 46EB2E0001D8D0 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 46EB2E0001D8E0 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; - 46EB2E0001D8F0 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - 46EB2E0001D900 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; - 46EB2E0001D910 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - 46EB2E0001D920 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 46EB2E0001D930 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; - 46EB2E0001D940 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 46EB2E0001D950 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; - 46EB2E0001D960 /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; - 46EB2E0001D970 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; - 46EB2E0001D980 /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; - 46EB2E0001D990 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 46EB2E0001D9A0 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; - 46EB2E0001D9B0 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; - 46EB2E0001D9C0 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - 46EB2E0001D9D0 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; - 46EB2E0001D9E0 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - 46EB2E0001D9F0 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; - 46EB2E0001DA00 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 46EB2E0001DA10 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; - 46EB2E0001DA20 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - 46EB2E0001DA30 /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; - 46EB2E0001DA40 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 46EB2E0001DA50 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; - 46EB2E0001DA60 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 46EB2E0001DA70 /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; - 46EB2E0001DA80 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 46EB2E0001DA90 /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; - 46EB2E0001DAA0 /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; - 46EB2E0001DAB0 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; - 46EB2E0001DAC0 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; - 46EB2E0001DAD0 /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; - 46EB2E0001DAE0 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; - 46EB2E0001DAF0 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; - 46EB2E0001DB00 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 46EB2E0001DB10 /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; - 46EB2E0001DB20 /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; - 46EB2E0001DB30 /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; - 46EB2E0001DB40 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; - 46EB2E0001DB50 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; - 46EB2E0001DB60 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - 46EB2E0001DB70 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; - 46EB2E0001DB80 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; - 46EB2E0001DB90 /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; - 46EB2E0001DBA0 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; - 46EB2E0001DBB0 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; - 46EB2E0001DBC0 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; - 46EB2E0001DBD0 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; - 46EB2E0001DBE0 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; - 46EB2E0001DBF0 /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; - 46EB2E0001DC00 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - 46EB2E0001DC10 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 46EB2E0001DC20 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; - 46EB2E0001DC30 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 46EB2E0001DC40 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; - 46EB2E0001DC50 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; - 46EB2E0001DC60 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; - 46EB2E0001DC70 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - 46EB2E0001DC80 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; - 46EB2E0001DC90 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; - 46EB2E0001DCA0 /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; - 46EB2E0001DCB0 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; - 46EB2E0001DCC0 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; - 46EB2E0001DCD0 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; - 46EB2E0001DCE0 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; - 46EB2E0001DCF0 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - 46EB2E0001DD00 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; - 46EB2E0001DD10 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - 46EB2E0001DD20 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - 46EB2E0001DD30 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; - 46EB2E0001DD40 /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; - 46EB2E0001DD50 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; - 46EB2E0001DD60 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 46EB2E0001DD70 /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; - 46EB2E0001DD80 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - 46EB2E0001DD90 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - 46EB2E0001DDA0 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 46EB2E0001DDB0 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 46EB2E0001DDC0 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - 46EB2E0001DDD0 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 46EB2E0001DDE0 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - 46EB2E0001DDF0 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; - 46EB2E0001DE00 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 46EB2E0001DE10 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; - 46EB2E0001DE20 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 46EB2E0001DE30 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - 46EB2E0001DE40 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 46EB2E0001DE50 /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; - 46EB2E0001DE60 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 46EB2E0001DE70 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - 46EB2E0001DE80 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; - 46EB2E0001DE90 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 46EB2E0001DEA0 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 46EB2E0001DEB0 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 46EB2E0001DEC0 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; - 46EB2E0001DED0 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 46EB2E0001DEE0 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 46EB2E0001DEF0 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 46EB2E0001DF00 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - 46EB2E0001DF10 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 46EB2E0001DF20 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; - 46EB2E0001DF30 /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; - 46EB2E0001DF40 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; - 46EB2E0001DF50 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 46EB2E0001DF60 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - 46EB2E0001DF70 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 46EB2E0001DF80 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 46EB2E0001DF90 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; - 46EB2E0001DFA0 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; - 46EB2E0001DFB0 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; - 46EB2E0001DFC0 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - 46EB2E0001DFD0 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; - 46EB2E0001DFE0 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - 46EB2E0001DFF0 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; - 46EB2E0001E000 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 46EB2E0001E010 /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; - 46EB2E0001E020 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; - 46EB2E0001E030 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - 46EB2E0001E040 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 46EB2E0001E050 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; - 46EB2E0001E060 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - 46EB2E0001E070 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; - 46EB2E0001E080 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 46EB2E0001E090 /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; - 46EB2E0001E0A0 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 46EB2E0001E0B0 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 46EB2E0001E0C0 /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; - 46EB2E0001E0D0 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - 46EB2E0001E0E0 /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; - 46EB2E0001E0F0 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - 46EB2E0001E100 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; - 46EB2E0001E110 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 46EB2E0001E120 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; - 46EB2E0001E130 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 46EB2E0001E140 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 46EB2E0001E150 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; - 46EB2E0001E160 /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; - 46EB2E0001E170 /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; - 46EB2E0001E180 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; - 46EB2E0001E190 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 46EB2E0001E1A0 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; - 46EB2E0001E1B0 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - 46EB2E0001E1C0 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; - 46EB2E0001E1D0 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; - 46EB2E0001E1E0 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 46EB2E0001E1F0 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; - 46EB2E0001E200 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 46EB2E0001E210 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; - 46EB2E0001E220 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; - 46EB2E0001E230 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; - 46EB2E0001E240 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - 46EB2E0001E250 /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; - 46EB2E0001E260 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 46EB2E0001E270 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; - 46EB2E0001E280 /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; - 46EB2E0001E290 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - 46EB2E0001E2A0 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; - 46EB2E0001E2B0 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; - 46EB2E0001E2C0 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; - 46EB2E0001E2D0 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; - 46EB2E0001E2E0 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; - 46EB2E0001E2F0 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 46EB2E0001E300 /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; - 46EB2E0001E310 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; - 46EB2E0001E320 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; - 46EB2E0001E330 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; - 46EB2E0001E340 /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; - 46EB2E0001E350 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; - 46EB2E0001E360 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; - 46EB2E0001E370 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - 46EB2E0001E380 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; - 46EB2E0001E390 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - 46EB2E0001E3A0 /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; - 46EB2E0001E3B0 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; - 46EB2E0001E3C0 /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; - 46EB2E0001E3D0 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; - 46EB2E0001E3E0 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; - 46EB2E0001E3F0 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; - 46EB2E0001E400 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 46EB2E0001E410 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; - 46EB2E0001E420 /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; - 46EB2E0001E430 /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; - 46EB2E0001E440 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - 46EB2E0001E450 /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; - 46EB2E0001E460 /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; - 46EB2E0001E470 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; - 46EB2E0001E480 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - 46EB2E0001E490 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; - 46EB2E0001E4A0 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - 46EB2E0001E4B0 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; - 46EB2E0001E4C0 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 46EB2E0001E4D0 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; - 46EB2E0001E4E0 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; - 46EB2E0001E4F0 /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; - 46EB2E0001E500 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - 46EB2E0001E510 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; - 46EB2E0001E520 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; - 46EB2E0001E530 /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; - 46EB2E0001E540 /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; - 46EB2E0001E550 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; - 46EB2E0001E560 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; - 46EB2E0001E570 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - 46EB2E0001E580 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; - 46EB2E0001E590 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 46EB2E0001E5A0 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 46EB2E0001E5B0 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; - 46EB2E0001E5C0 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 46EB2E0001E5D0 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; - 46EB2E0001E5E0 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 46EB2E0001E5F0 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; - 46EB2E0001E600 /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; - 46EB2E0001E610 /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; - 46EB2E0001E620 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - 46EB2E0001E630 /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; - 46EB2E0001E640 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; - 46EB2E0001E650 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; - 46EB2E0001E660 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - 46EB2E0001E670 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; - 46EB2E0001E680 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - 46EB2E0001E690 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 46EB2E0001E6A0 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 46EB2E0001E6B0 /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; - 46EB2E0001E6C0 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 46EB2E0001E6D0 /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; - 46EB2E0001E6E0 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; - 46EB2E0001E6F0 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - 46EB2E0001E700 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; - 46EB2E0001E710 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; - 46EB2E0001E720 /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; - 46EB2E0001E730 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - 46EB2E0001E740 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 46EB2E0001E750 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 46EB2E0001E760 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 46EB2E0001E770 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - 46EB2E0001E780 /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; - 46EB2E0001E790 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - 46EB2E0001E7A0 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; - 46EB2E0001E7B0 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 46EB2E0001E7C0 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 46EB2E0001E7D0 /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; - 46EB2E0001E7E0 /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; - 46EB2E0001E7F0 /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; - 46EB2E0001E800 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 46EB2E0001E810 /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; - 46EB2E0001E820 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; - 46EB2E0001E830 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 46EB2E0001E840 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; - 46EB2E0001E850 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; - 46EB2E0001E860 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 46EB2E0001E870 /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; - 46EB2E0001E880 /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; - 46EB2E0001E890 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; - 46EB2E0001E8A0 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - 46EB2E0001E8B0 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; - 46EB2E0001E8C0 /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; - 46EB2E0001E8D0 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - 46EB2E0001E8E0 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; - 46EB2E0001E8F0 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 46EB2E0001E900 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; - 46EB2E0001E910 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 46EB2E0001E920 /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; - 46EB2E0001E930 /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; - 46EB2E0001E940 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - 46EB2E0001E950 /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; - 46EB2E0001E960 /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; - 46EB2E0001E970 /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; - 46EB2E0001E980 /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; - 46EB2E0001E990 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; - 46EB2E0001E9A0 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 46EB2E0001E9B0 /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; - 46EB2E0001E9C0 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; - 46EB2E0001E9D0 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; - 46EB2E0001E9E0 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 46EB2E0001E9F0 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; - 46EB2E0001EA00 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 46EB2E0001EA10 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; - 46EB2E0001EA20 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 46EB2E0001EA30 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; - 46EB2E0001EA40 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 46EB2E0001EA50 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; - 46EB2E0001EA60 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 46EB2E0001EA70 /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; - 46EB2E0001EA80 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - 46EB2E0001EA90 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; - 46EB2E0001EAA0 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; - 46EB2E0001EAB0 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; - 46EB2E0001EAC0 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; - 46EB2E0001EAD0 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - 46EB2E0001EAE0 /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; - 46EB2E0001EAF0 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - 46EB2E0001EB00 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; - 46EB2E0001EB10 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - 46EB2E0001EB20 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 46EB2E0001EB30 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; - 46EB2E0001EB40 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; - 46EB2E0001EB50 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - 46EB2E0001EB60 /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; - 46EB2E0001EB70 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; - 46EB2E0001EB80 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 46EB2E0001EB90 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; - 46EB2E0001EBA0 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; - 46EB2E0001EBB0 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; - 46EB2E0001EBC0 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; - 46EB2E0001EBD0 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 46EB2E0001EBE0 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 46EB2E0001EBF0 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - 46EB2E0001EC00 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - 46EB2E0001EC10 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - 46EB2E0001EC20 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 46EB2E0001EC30 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; - 46EB2E0001EC40 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - 46EB2E0001EC50 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 46EB2E0001EC60 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 46EB2E0001EC70 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - 46EB2E0001EC80 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 46EB2E0001EC90 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 46EB2E0001ECA0 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; - 46EB2E0001ECB0 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 46EB2E0001ECC0 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 46EB2E0001ECD0 /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; - 46EB2E0001ECE0 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - 46EB2E0001ECF0 /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; - 46EB2E0001ED00 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - 46EB2E0001ED10 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; - 46EB2E0001ED20 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 46EB2E0001ED30 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; - 46EB2E0001ED40 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - 46EB2E0001ED50 /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; - 46EB2E0001ED60 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - 46EB2E0001ED70 /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; - 46EB2E0001ED80 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - 46EB2E0001ED90 /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; - 46EB2E0001EDA0 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 46EB2E0001EDB0 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; - 46EB2E0001EDC0 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - 46EB2E0001EDD0 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - 46EB2E0001EDE0 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - 46EB2E0001EDF0 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; - 46EB2E0001EE00 /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; - 46EB2E0001EE10 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - 46EB2E0001EE20 /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; - 46EB2E0001EE30 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - 46EB2E0001EE40 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; - 46EB2E0001EE50 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 46EB2E0001EE60 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; - 46EB2E0001EE70 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - 46EB2E0001EE80 /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; - 46EB2E0001EE90 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; - 46EB2E0001EEA0 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; - 46EB2E0001EEB0 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - 46EB2E0001EEC0 /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; - 46EB2E0001EED0 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - 46EB2E0001EEE0 /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; - 46EB2E0001EEF0 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - 46EB2E0001EF00 /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; - 46EB2E0001EF10 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; - 46EB2E0001EF20 /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; - 46EB2E0001EF30 /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; - 46EB2E0001EF40 /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; - 46EB2E0001EF50 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - 46EB2E0001EF60 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; - 46EB2E0001EF70 /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; - 46EB2E0001EF80 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - 46EB2E0001EF90 /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; - 46EB2E0001EFA0 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 46EB2E0001EFB0 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; - 46EB2E0001EFC0 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; - 46EB2E0001EFD0 /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; - 46EB2E0001EFE0 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 46EB2E0001EFF0 /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; - 46EB2E0001F000 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - 46EB2E0001F010 /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; - 46EB2E0001F020 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; - 46EB2E0001F030 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; - 46EB2E0001F040 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - 46EB2E0001F050 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; - 46EB2E0001F060 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 46EB2E0001F070 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; - 46EB2E0001F080 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; - 46EB2E0001F090 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - 46EB2E0001F0A0 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; - 46EB2E0001F0B0 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - 46EB2E0001F0C0 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; - 46EB2E0001F0D0 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; - 46EB2E0001F0E0 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - 46EB2E0001F0F0 /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; - 46EB2E0001F100 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 46EB2E0001F110 /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; - 46EB2E0001F120 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - 46EB2E0001F130 /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; - 46EB2E0001F140 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - 46EB2E0001F150 /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; - 46EB2E0001F160 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - 46EB2E0001F170 /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; - 46EB2E0001F180 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 46EB2E0001F190 /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; - 46EB2E0001F1A0 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - 46EB2E0001F1B0 /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; - 46EB2E0001F1C0 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - 46EB2E0001F1D0 /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; - 46EB2E0001F1E0 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - 46EB2E0001F1F0 /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; - 46EB2E0001F200 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 46EB2E0001F210 /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; - 46EB2E0001F220 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - 46EB2E0001F230 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; - 46EB2E0001F240 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 46EB2E0001F250 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; - 46EB2E0001F260 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - 46EB2E0001F270 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; - 46EB2E0001F280 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; - 46EB2E0001F290 /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F2A0 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - 46EB2E0001F2B0 /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F2C0 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - 46EB2E0001F2D0 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F2E0 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - 46EB2E0001F2F0 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 46EB2E0001F300 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; - 46EB2E0001F310 /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; - 46EB2E0001F320 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 46EB2E0001F330 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F340 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - 46EB2E0001F350 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; - 46EB2E0001F360 /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - 46EB2E0001F370 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F380 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - 46EB2E0001F390 /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; - 46EB2E0001F3A0 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - 46EB2E0001F3B0 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; - 46EB2E0001F3C0 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - 46EB2E0001F3D0 /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; - 46EB2E0001F3E0 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - 46EB2E0001F3F0 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - 46EB2E0001F400 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; - 46EB2E0001F410 /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; - 46EB2E0001F420 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - 46EB2E0001F430 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; - 46EB2E0001F440 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - 46EB2E0001F450 /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; - 46EB2E0001F460 /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; - 46EB2E0001F470 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - 46EB2E0001F480 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; - 46EB2E0001F490 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 46EB2E0001F4A0 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; - 46EB2E0001F4B0 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 46EB2E0001F4C0 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - 46EB2E0001F4D0 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; - 46EB2E0001F4E0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - 46EB2E0001F4F0 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; - 46EB2E0001F500 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - 46EB2E0001F510 /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; - 46EB2E0001F520 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 46EB2E0001F530 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; - 46EB2E0001F540 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 46EB2E0001F550 /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; - 46EB2E0001F560 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; - 46EB2E0001F570 /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; - 46EB2E0001F580 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 46EB2E0001F590 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; - 46EB2E0001F5A0 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - 46EB2E0001F5B0 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - 46EB2E0001F5C0 /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; - 46EB2E0001F5D0 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; - 46EB2E0001F5E0 /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; - 46EB2E0001F5F0 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - 46EB2E0001F600 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; - 46EB2E0001F610 /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; - 46EB2E0001F620 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 46EB2E0001F630 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; - 46EB2E0001F640 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 46EB2E0001F650 /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; - 46EB2E0001F660 /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; - 46EB2E0001F670 /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; - 46EB2E0001F680 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 46EB2E0001F690 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; - 46EB2E0001F6A0 /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; - 46EB2E0001F6B0 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 46EB2E0001F6C0 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; - 46EB2E0001F6D0 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - 46EB2E0001F6E0 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; - 46EB2E0001F6F0 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 46EB2E0001F700 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; - 46EB2E0001F710 /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; - 46EB2E0001F720 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - 46EB2E0001F730 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; - 46EB2E0001F740 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 46EB2E0001F750 /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; - 46EB2E0001F760 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - 46EB2E0001F770 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; - 46EB2E0001F780 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - 46EB2E0001F790 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; - 46EB2E0001F7A0 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 46EB2E0001F7B0 /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; - 46EB2E0001F7C0 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; - 46EB2E0001F7D0 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 46EB2E0001F7E0 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; - 46EB2E0001F7F0 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; - 46EB2E0001F800 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 46EB2E0001F810 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; - 46EB2E0001F820 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 46EB2E0001F830 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; - 46EB2E0001F840 /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; - 46EB2E0001F850 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 46EB2E0001F860 /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; - 46EB2E0001F870 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; - 46EB2E0001F880 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; - 46EB2E0001F890 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 46EB2E0001F8A0 /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; - 46EB2E0001F8B0 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 46EB2E0001F8C0 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - 46EB2E0001F8D0 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - 46EB2E0001F8E0 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; - 46EB2E0001F8F0 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 46EB2E0001F900 /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; - 46EB2E0001F910 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - 46EB2E0001F920 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; - 46EB2E0001F930 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 46EB2E0001F940 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; - 46EB2E0001F950 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 46EB2E0001F960 /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; - 46EB2E0001F970 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - 46EB2E0001F980 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - 46EB2E0001F990 /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; - 46EB2E0001F9A0 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; - 46EB2E0001F9B0 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 46EB2E0001F9C0 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; - 46EB2E0001F9D0 /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; - 46EB2E0001F9E0 /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; - 46EB2E0001F9F0 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 46EB2E0001FA00 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; - 46EB2E0001FA10 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - 46EB2E0001FA20 /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; - 46EB2E0001FA30 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - 46EB2E0001FA40 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; - 46EB2E0001FA50 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - 46EB2E0001FA60 /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; - 46EB2E0001FA70 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - 46EB2E0001FA80 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 46EB2E0001FA90 /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 46EB2E0001FAA0 /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; - 46EB2E0001FAB0 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - 46EB2E0001FAC0 /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; - 46EB2E0001FAD0 /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 46EB2E0001FAE0 /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; - 46EB2E0001FAF0 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - 46EB2E0001FB00 /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; - 46EB2E0001FB10 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - 46EB2E0001FB20 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 46EB2E0001FB30 /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; - 46EB2E0001FB40 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - 46EB2E0001FB50 /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; - 46EB2E0001FB60 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - 46EB2E0001FB70 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_integrity_only_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc; sourceTree = ""; }; - 46EB2E0001FB80 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - 46EB2E0001FB90 /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_privacy_integrity_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc; sourceTree = ""; }; - 46EB2E0001FBA0 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 46EB2E0001FBB0 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - 46EB2E0001FBC0 /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; - 46EB2E0001FBD0 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - 46EB2E0001FBE0 /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; - 46EB2E0001FBF0 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - 46EB2E0001FC00 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; - 46EB2E0001FC10 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - 46EB2E0001FC20 /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; - 46EB2E0001FC30 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - 46EB2E0001FC40 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; - 46EB2E0001FC50 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - 46EB2E0001FC60 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - 46EB2E0001FC70 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; - 46EB2E0001FC80 /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; - 46EB2E0001FC90 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - 46EB2E0001FCA0 /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; - 46EB2E0001FCB0 /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; - 46EB2E0001FCC0 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - 46EB2E0001FCD0 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 46EB2E0001FCE0 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; - 46EB2E0001FCF0 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 46EB2E0001FD00 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; - 46EB2E0001FD10 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - 46EB2E0001FD20 /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - 46EB2E0001FD30 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; - 46EB2E0001FD40 /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; - 46EB2E0001FD50 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; - 46EB2E0001FD60 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; - 46EB2E0001FD70 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; - 46EB2E0001FD80 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; - 46EB2E0001FD90 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; - 46EB2E0001FDA0 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; - 46EB2E0001FDB0 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; - 46EB2E0001FDC0 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; - 46EB2E0001FDD0 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; - 46EB2E0001FDE0 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; - 46EB2E0001FDF0 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; - 46EB2E0001FE00 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; - 46EB2E0001FE10 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; - 46EB2E0001FE20 /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; - 46EB2E0001FE30 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; - 46EB2E0001FE40 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; - 46EB2E0001FE50 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; - 46EB2E0001FE60 /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; - 46EB2E0001FE70 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; - 46EB2E0001FE80 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; - 46EB2E0001FE90 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; - 46EB2E0001FEA0 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; - 46EB2E0001FEB0 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; - 46EB2E0001FEC0 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; - 46EB2E0001FED0 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; - 46EB2E0001FEE0 /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; - 46EB2E0001FEF0 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; - 46EB2E0001FF00 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; - 46EB2E0001FF10 /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; - 46EB2E0001FF20 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; - 46EB2E0001FF30 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; - 46EB2E0001FF40 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; - 46EB2E0001FF50 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; - 46EB2E0001FF60 /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; - 46EB2E0001FF70 /* flags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flags.h; path = third_party/re2/util/flags.h; sourceTree = ""; }; - 46EB2E0001FF80 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; - 46EB2E0001FF90 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; - 46EB2E0001FFA0 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; - 46EB2E0001FFB0 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; - 46EB2E0001FFC0 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; - 46EB2E0001FFD0 /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; - 46EB2E0001FFE0 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; - 46EB2E0001FFF0 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; - 46EB2E00020000 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; - 46EB2E00020010 /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; - 46EB2E00020020 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; - 46EB2E00020030 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; - 46EB2E00020040 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; - 46EB2E00020050 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - 46EB2E00020060 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; - 46EB2E00020070 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 46EB2E00020080 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; - 46EB2E00020090 /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; - 46EB2E000200A0 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - 46EB2E000200B0 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 46EB2E000200C0 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; - 46EB2E000200D0 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - 46EB2E000200E0 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; - 46EB2E000200F0 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - 46EB2E00020100 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 46EB2E00020110 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 46EB2E00020120 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 46EB2E00020130 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; - 46EB2E00020140 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - 46EB2E00020150 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - 46EB2E00020160 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; - 46EB2E00020170 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - 46EB2E00020180 /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; - 46EB2E00020190 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - 46EB2E000201A0 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; - 46EB2E000201B0 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - 46EB2E000201C0 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - 46EB2E000201D0 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; - 46EB2E000201E0 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - 46EB2E00020200 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; - 46EB2E00020210 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/byte_buffer_reader.h; sourceTree = ""; }; - 46EB2E00020220 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; - 46EB2E00020230 /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; - 46EB2E00020240 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; - 46EB2E00020250 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; - 46EB2E00020260 /* memory_allocator_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_impl.h; path = include/grpc/event_engine/internal/memory_allocator_impl.h; sourceTree = ""; }; - 46EB2E00020270 /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; - 46EB2E00020280 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; - 46EB2E00020290 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; - 46EB2E000202A0 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; - 46EB2E000202B0 /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; - 46EB2E000202C0 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; - 46EB2E000202D0 /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; - 46EB2E000202E0 /* grpc_security_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security_constants.h; path = include/grpc/grpc_security_constants.h; sourceTree = ""; }; - 46EB2E000202F0 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; - 46EB2E00020300 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/impl/codegen/atm_gcc_atomic.h; sourceTree = ""; }; - 46EB2E00020310 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/impl/codegen/atm_gcc_sync.h; sourceTree = ""; }; - 46EB2E00020320 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; - 46EB2E00020330 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 46EB2E00020340 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/impl/codegen/byte_buffer_reader.h; sourceTree = ""; }; - 46EB2E00020350 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; - 46EB2E00020360 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; - 46EB2E00020370 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; - 46EB2E00020380 /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; - 46EB2E00020390 /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; - 46EB2E000203A0 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; - 46EB2E000203B0 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; - 46EB2E000203C0 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; - 46EB2E000203D0 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; - 46EB2E000203E0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; - 46EB2E000203F0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; - 46EB2E00020400 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; - 46EB2E00020410 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; - 46EB2E00020420 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; - 46EB2E00020430 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; - 46EB2E00020440 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; - 46EB2E00020450 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; - 46EB2E00020460 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; - 46EB2E00020470 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; - 46EB2E00020480 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; - 46EB2E00020490 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; - 46EB2E000204A0 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; - 46EB2E000204B0 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; - 46EB2E000204C0 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/support/atm_gcc_atomic.h; sourceTree = ""; }; - 46EB2E000204D0 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/support/atm_gcc_sync.h; sourceTree = ""; }; - 46EB2E000204E0 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; - 46EB2E000204F0 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; - 46EB2E00020500 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; - 46EB2E00020510 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; - 46EB2E00020520 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; - 46EB2E00020530 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; - 46EB2E00020540 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; - 46EB2E00020550 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; - 46EB2E00020560 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; - 46EB2E00020570 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; - 46EB2E00020580 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; - 46EB2E00020590 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; - 46EB2E000205A0 /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; - 46EB2E000205B0 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; - 46EB2E000205C0 /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; - 46EB2E000205D0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 46EB2E000205E0 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 46EB2E000205F0 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 46EB2E00020600 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 46EB2E00020610 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - 46EB2E00020620 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 46EB2E00020630 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 46EB2E00020640 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 46EB2E00020650 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 46EB2E00020660 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 46EB2E00020670 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 46EB2E00020680 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 46EB2E00020690 /* CompileJS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompileJS.h; path = destroot/include/hermes/CompileJS.h; sourceTree = ""; }; - 46EB2E000206A0 /* DebuggerAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerAPI.h; path = destroot/include/hermes/DebuggerAPI.h; sourceTree = ""; }; - 46EB2E000206B0 /* hermes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes.h; path = destroot/include/hermes/hermes.h; sourceTree = ""; }; - 46EB2E000206C0 /* hermes_tracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes_tracing.h; path = destroot/include/hermes/hermes_tracing.h; sourceTree = ""; }; - 46EB2E000206D0 /* Buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Buffer.h; path = destroot/include/hermes/Public/Buffer.h; sourceTree = ""; }; - 46EB2E000206E0 /* CrashManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CrashManager.h; path = destroot/include/hermes/Public/CrashManager.h; sourceTree = ""; }; - 46EB2E000206F0 /* CtorConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CtorConfig.h; path = destroot/include/hermes/Public/CtorConfig.h; sourceTree = ""; }; - 46EB2E00020700 /* DebuggerTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerTypes.h; path = destroot/include/hermes/Public/DebuggerTypes.h; sourceTree = ""; }; - 46EB2E00020710 /* GCConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCConfig.h; path = destroot/include/hermes/Public/GCConfig.h; sourceTree = ""; }; - 46EB2E00020720 /* GCTripwireContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCTripwireContext.h; path = destroot/include/hermes/Public/GCTripwireContext.h; sourceTree = ""; }; - 46EB2E00020730 /* RuntimeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeConfig.h; path = destroot/include/hermes/Public/RuntimeConfig.h; sourceTree = ""; }; - 46EB2E00020740 /* SynthTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTrace.h; path = destroot/include/hermes/SynthTrace.h; sourceTree = ""; }; - 46EB2E00020750 /* SynthTraceParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTraceParser.h; path = destroot/include/hermes/SynthTraceParser.h; sourceTree = ""; }; - 46EB2E00020760 /* TimerStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerStats.h; path = destroot/include/hermes/TimerStats.h; sourceTree = ""; }; - 46EB2E00020770 /* TraceInterpreter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceInterpreter.h; path = destroot/include/hermes/TraceInterpreter.h; sourceTree = ""; }; - 46EB2E00020780 /* TracingRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TracingRuntime.h; path = destroot/include/hermes/TracingRuntime.h; sourceTree = ""; }; - 46EB2E00020790 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decorator.h; path = destroot/include/jsi/decorator.h; sourceTree = ""; }; - 46EB2E000207A0 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = destroot/include/jsi/instrumentation.h; sourceTree = ""; }; - 46EB2E000207B0 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "jsi-inl.h"; path = "destroot/include/jsi/jsi-inl.h"; sourceTree = ""; }; - 46EB2E000207C0 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsi.h; path = destroot/include/jsi/jsi.h; sourceTree = ""; }; - 46EB2E000207D0 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIDynamic.h; path = destroot/include/jsi/JSIDynamic.h; sourceTree = ""; }; - 46EB2E000207E0 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsilib.h; path = destroot/include/jsi/jsilib.h; sourceTree = ""; }; - 46EB2E000207F0 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadsafe.h; path = destroot/include/jsi/threadsafe.h; sourceTree = ""; }; - 46EB2E00020800 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; - 46EB2E00020810 /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; - 46EB2E00020820 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = c.cc; path = db/c.cc; sourceTree = ""; }; - 46EB2E00020830 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; - 46EB2E00020840 /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; - 46EB2E00020850 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; - 46EB2E00020860 /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; - 46EB2E00020870 /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; - 46EB2E00020880 /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; - 46EB2E00020890 /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; - 46EB2E000208A0 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; - 46EB2E000208B0 /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; - 46EB2E000208C0 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; - 46EB2E000208D0 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; - 46EB2E000208E0 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; - 46EB2E000208F0 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; - 46EB2E00020900 /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; - 46EB2E00020910 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; - 46EB2E00020920 /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; - 46EB2E00020930 /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; - 46EB2E00020940 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; - 46EB2E00020950 /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; - 46EB2E00020960 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; - 46EB2E00020970 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; - 46EB2E00020980 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; - 46EB2E00020990 /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; - 46EB2E000209A0 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; - 46EB2E000209B0 /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; - 46EB2E000209C0 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; - 46EB2E000209D0 /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; - 46EB2E000209E0 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; - 46EB2E000209F0 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; - 46EB2E00020A00 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; - 46EB2E00020A10 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; - 46EB2E00020A20 /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block.cc; path = table/block.cc; sourceTree = ""; }; - 46EB2E00020A30 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; - 46EB2E00020A40 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; - 46EB2E00020A50 /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; - 46EB2E00020A60 /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; - 46EB2E00020A70 /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; - 46EB2E00020A80 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = table/format.cc; sourceTree = ""; }; - 46EB2E00020A90 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; - 46EB2E00020AA0 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; - 46EB2E00020AB0 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; - 46EB2E00020AC0 /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; - 46EB2E00020AD0 /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; - 46EB2E00020AE0 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table.cc; path = table/table.cc; sourceTree = ""; }; - 46EB2E00020AF0 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; - 46EB2E00020B00 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; - 46EB2E00020B10 /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; - 46EB2E00020B20 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; - 46EB2E00020B30 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; - 46EB2E00020B40 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; - 46EB2E00020B50 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; - 46EB2E00020B60 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; - 46EB2E00020B70 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; - 46EB2E00020B80 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; - 46EB2E00020B90 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; - 46EB2E00020BA0 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; - 46EB2E00020BB0 /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = util/env.cc; sourceTree = ""; }; - 46EB2E00020BC0 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; - 46EB2E00020BD0 /* env_posix_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_posix_test_helper.h; path = util/env_posix_test_helper.h; sourceTree = ""; }; - 46EB2E00020BE0 /* env_windows_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_windows_test_helper.h; path = util/env_windows_test_helper.h; sourceTree = ""; }; - 46EB2E00020BF0 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; - 46EB2E00020C00 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; - 46EB2E00020C10 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; - 46EB2E00020C20 /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; - 46EB2E00020C30 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; - 46EB2E00020C40 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; - 46EB2E00020C50 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; - 46EB2E00020C60 /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; - 46EB2E00020C70 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; - 46EB2E00020C80 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = options.cc; path = util/options.cc; sourceTree = ""; }; - 46EB2E00020C90 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; - 46EB2E00020CA0 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; - 46EB2E00020CB0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = util/status.cc; sourceTree = ""; }; - 46EB2E00020CC0 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; - 46EB2E00020CD0 /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; - 46EB2E00020CE0 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; - 46EB2E00020CF0 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; - 46EB2E00020D00 /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; - 46EB2E00020D10 /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; - 46EB2E00020D20 /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; - 46EB2E00020D30 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; - 46EB2E00020D40 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; - 46EB2E00020D50 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; - 46EB2E00020D60 /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; - 46EB2E00020D70 /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; - 46EB2E00020D80 /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; - 46EB2E00020D90 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; - 46EB2E00020DA0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; - 46EB2E00020DB0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; - 46EB2E00020DC0 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; - 46EB2E00020DD0 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; - 46EB2E00020DE0 /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; - 46EB2E00020DF0 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = include/evdns.h; sourceTree = ""; }; - 46EB2E00020E00 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = include/event.h; sourceTree = ""; }; - 46EB2E00020E10 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = include/evhttp.h; sourceTree = ""; }; - 46EB2E00020E20 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = ""; }; - 46EB2E00020E30 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = include/evutil.h; sourceTree = ""; }; - 46EB2E00020E40 /* bufferevent-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "bufferevent-internal.h"; sourceTree = ""; }; - 46EB2E00020E50 /* changelist-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "changelist-internal.h"; sourceTree = ""; }; - 46EB2E00020E60 /* defer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "defer-internal.h"; sourceTree = ""; }; - 46EB2E00020E70 /* epolltable-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "epolltable-internal.h"; sourceTree = ""; }; - 46EB2E00020E80 /* evbuffer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evbuffer-internal.h"; sourceTree = ""; }; - 46EB2E00020E90 /* evconfig-private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evconfig-private.h"; sourceTree = ""; }; - 46EB2E00020EA0 /* event-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "event-internal.h"; sourceTree = ""; }; - 46EB2E00020EB0 /* evmap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evmap-internal.h"; sourceTree = ""; }; - 46EB2E00020EC0 /* evrpc-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evrpc-internal.h"; sourceTree = ""; }; - 46EB2E00020ED0 /* evsignal-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evsignal-internal.h"; sourceTree = ""; }; - 46EB2E00020EE0 /* evthread-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evthread-internal.h"; sourceTree = ""; }; - 46EB2E00020EF0 /* ht-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ht-internal.h"; sourceTree = ""; }; - 46EB2E00020F00 /* http-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "http-internal.h"; sourceTree = ""; }; - 46EB2E00020F10 /* iocp-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iocp-internal.h"; sourceTree = ""; }; - 46EB2E00020F20 /* ipv6-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ipv6-internal.h"; sourceTree = ""; }; - 46EB2E00020F30 /* kqueue-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "kqueue-internal.h"; sourceTree = ""; }; - 46EB2E00020F40 /* log-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "log-internal.h"; sourceTree = ""; }; - 46EB2E00020F50 /* minheap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "minheap-internal.h"; sourceTree = ""; }; - 46EB2E00020F60 /* mm-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mm-internal.h"; sourceTree = ""; }; - 46EB2E00020F70 /* ratelim-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ratelim-internal.h"; sourceTree = ""; }; - 46EB2E00020F80 /* strlcpy-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "strlcpy-internal.h"; sourceTree = ""; }; - 46EB2E00020F90 /* time-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "time-internal.h"; sourceTree = ""; }; - 46EB2E00020FA0 /* util-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "util-internal.h"; sourceTree = ""; }; - 46EB2E00020FB0 /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = buffer.c; sourceTree = ""; }; - 46EB2E00020FC0 /* bufferevent.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bufferevent.c; sourceTree = ""; }; - 46EB2E00020FD0 /* bufferevent_filter.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bufferevent_filter.c; sourceTree = ""; }; - 46EB2E00020FE0 /* bufferevent_pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bufferevent_pair.c; sourceTree = ""; }; - 46EB2E00020FF0 /* bufferevent_ratelim.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bufferevent_ratelim.c; sourceTree = ""; }; - 46EB2E00021000 /* bufferevent_sock.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bufferevent_sock.c; sourceTree = ""; }; - 46EB2E00021010 /* event.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = event.c; sourceTree = ""; }; - 46EB2E00021020 /* evmap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evmap.c; sourceTree = ""; }; - 46EB2E00021030 /* evthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evthread.c; sourceTree = ""; }; - 46EB2E00021040 /* evutil.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evutil.c; sourceTree = ""; }; - 46EB2E00021050 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evutil_rand.c; sourceTree = ""; }; - 46EB2E00021060 /* evutil_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evutil_time.c; sourceTree = ""; }; - 46EB2E00021070 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = kqueue.c; sourceTree = ""; }; - 46EB2E00021080 /* listener.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = listener.c; sourceTree = ""; }; - 46EB2E00021090 /* log.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = log.c; sourceTree = ""; }; - 46EB2E000210A0 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = poll.c; sourceTree = ""; }; - 46EB2E000210B0 /* select.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = select.c; sourceTree = ""; }; - 46EB2E000210C0 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = signal.c; sourceTree = ""; }; - 46EB2E000210D0 /* strlcpy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = strlcpy.c; sourceTree = ""; }; - 46EB2E000210E0 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evdns.c; sourceTree = ""; }; - 46EB2E000210F0 /* event_tagging.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = event_tagging.c; sourceTree = ""; }; - 46EB2E00021100 /* evrpc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = evrpc.c; sourceTree = ""; }; - 46EB2E00021110 /* http.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = http.c; sourceTree = ""; }; - 46EB2E00021130 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 46EB2E00021140 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 46EB2E00021150 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 46EB2E00021170 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 46EB2E00021180 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 46EB2E00021190 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - 46EB2E000211A0 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; - 46EB2E000211B0 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 46EB2E000211C0 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 46EB2E000211D0 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 46EB2E000211F0 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - 46EB2E00021200 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - 46EB2E00021210 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 46EB2E00021220 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 46EB2E00021230 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 46EB2E00021240 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; - 46EB2E00021250 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - 46EB2E00021260 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; - 46EB2E00021270 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 46EB2E00021280 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - 46EB2E00021290 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 46EB2E000212A0 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; - 46EB2E000212B0 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - 46EB2E000212C0 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - 46EB2E000212D0 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - 46EB2E000212E0 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 46EB2E000212F0 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; - 46EB2E00021300 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 46EB2E00021310 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 46EB2E00021320 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 46EB2E00021330 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; - 46EB2E00021340 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - 46EB2E00021350 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 46EB2E00021360 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 46EB2E00021370 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 46EB2E00021380 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 46EB2E00021390 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - 46EB2E000213A0 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 46EB2E000213B0 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 46EB2E000213C0 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 46EB2E000213D0 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 46EB2E000213E0 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - 46EB2E000213F0 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021400 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - 46EB2E00021410 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 46EB2E00021420 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 46EB2E00021430 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - 46EB2E00021440 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 46EB2E00021450 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 46EB2E00021460 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 46EB2E00021470 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021480 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - 46EB2E00021490 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 46EB2E000214A0 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 46EB2E000214B0 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 46EB2E000214C0 /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - 46EB2E000214D0 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 46EB2E000214E0 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E000214F0 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - 46EB2E00021500 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - 46EB2E00021510 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 46EB2E00021520 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 46EB2E00021530 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 46EB2E00021540 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 46EB2E00021550 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - 46EB2E00021560 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021570 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 46EB2E00021580 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 46EB2E00021590 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 46EB2E000215A0 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 46EB2E000215B0 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 46EB2E000215C0 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E000215D0 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 46EB2E000215E0 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - 46EB2E000215F0 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 46EB2E00021600 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 46EB2E00021610 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 46EB2E00021620 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 46EB2E00021630 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - 46EB2E00021640 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 46EB2E00021650 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021660 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 46EB2E00021670 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 46EB2E00021680 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - 46EB2E00021690 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 46EB2E000216A0 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E000216B0 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 46EB2E000216C0 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - 46EB2E000216D0 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 46EB2E000216E0 /* lossless_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lossless_sse41.c; path = src/dsp/lossless_sse41.c; sourceTree = ""; }; - 46EB2E000216F0 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - 46EB2E00021700 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 46EB2E00021710 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 46EB2E00021720 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 46EB2E00021730 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - 46EB2E00021740 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - 46EB2E00021750 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021760 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - 46EB2E00021770 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - 46EB2E00021780 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - 46EB2E00021790 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 46EB2E000217A0 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 46EB2E000217B0 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 46EB2E000217C0 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E000217D0 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - 46EB2E000217E0 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 46EB2E000217F0 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 46EB2E00021800 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - 46EB2E00021810 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 46EB2E00021820 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 46EB2E00021830 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - 46EB2E00021840 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 46EB2E00021850 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 46EB2E00021860 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 46EB2E00021870 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 46EB2E00021880 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 46EB2E00021890 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 46EB2E000218A0 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 46EB2E000218B0 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 46EB2E000218C0 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 46EB2E000218D0 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 46EB2E000218E0 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 46EB2E000218F0 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 46EB2E00021900 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 46EB2E00021910 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 46EB2E00021920 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 46EB2E00021930 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - 46EB2E00021940 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 46EB2E00021950 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 46EB2E00021960 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - 46EB2E00021970 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 46EB2E00021980 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 46EB2E00021990 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 46EB2E000219A0 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - 46EB2E000219B0 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - 46EB2E000219C0 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; - 46EB2E000219D0 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 46EB2E000219E0 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 46EB2E000219F0 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 46EB2E00021A00 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - 46EB2E00021A10 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 46EB2E00021A20 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - 46EB2E00021A30 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 46EB2E00021A40 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 46EB2E00021A50 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 46EB2E00021A60 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 46EB2E00021A70 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 46EB2E00021A80 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 46EB2E00021A90 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 46EB2E00021AA0 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 46EB2E00021AB0 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - 46EB2E00021AC0 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 46EB2E00021AD0 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - 46EB2E00021AE0 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - 46EB2E00021AF0 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 46EB2E00021B00 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 46EB2E00021B10 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 46EB2E00021B20 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 46EB2E00021B30 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 46EB2E00021B40 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 46EB2E00021B50 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = ""; }; - 46EB2E00021B60 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 46EB2E00021B70 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = ""; }; - 46EB2E00021B80 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 46EB2E00021B90 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = ""; }; - 46EB2E00021BA0 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 46EB2E00021BE0 /* ReactNativeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeConfig.h; path = ios/ReactNativeConfig/ReactNativeConfig.h; sourceTree = ""; }; - 46EB2E00021BF0 /* ReactNativeConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeConfig.m; path = ios/ReactNativeConfig/ReactNativeConfig.m; sourceTree = ""; }; - 46EB2E00021C00 /* ReactNativeConfigModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeConfigModule.h; path = ios/ReactNativeConfig/ReactNativeConfigModule.h; sourceTree = ""; }; - 46EB2E00021C10 /* ReactNativeConfigModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeConfigModule.m; path = ios/ReactNativeConfig/ReactNativeConfigModule.m; sourceTree = ""; }; - 46EB2E00021C20 /* FlipperModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperModule.h; path = ios/FlipperModule.h; sourceTree = ""; }; - 46EB2E00021C30 /* FlipperModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperModule.m; path = ios/FlipperModule.m; sourceTree = ""; }; - 46EB2E00021C40 /* FlipperReactNativeJavaScriptPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperReactNativeJavaScriptPlugin.h; path = ios/FlipperReactNativeJavaScriptPlugin.h; sourceTree = ""; }; - 46EB2E00021C50 /* FlipperReactNativeJavaScriptPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperReactNativeJavaScriptPlugin.m; path = ios/FlipperReactNativeJavaScriptPlugin.m; sourceTree = ""; }; - 46EB2E00021C60 /* FlipperReactNativeJavaScriptPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperReactNativeJavaScriptPluginManager.h; path = ios/FlipperReactNativeJavaScriptPluginManager.h; sourceTree = ""; }; - 46EB2E00021C70 /* FlipperReactNativeJavaScriptPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperReactNativeJavaScriptPluginManager.m; path = ios/FlipperReactNativeJavaScriptPluginManager.m; sourceTree = ""; }; - 46EB2E00021C80 /* PdfManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PdfManager.h; path = ios/RCTPdf/PdfManager.h; sourceTree = ""; }; - 46EB2E00021C90 /* PdfManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PdfManager.m; path = ios/RCTPdf/PdfManager.m; sourceTree = ""; }; - 46EB2E00021CA0 /* RCTPdfPageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfPageView.h; path = ios/RCTPdf/RCTPdfPageView.h; sourceTree = ""; }; - 46EB2E00021CB0 /* RCTPdfPageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfPageView.m; path = ios/RCTPdf/RCTPdfPageView.m; sourceTree = ""; }; - 46EB2E00021CC0 /* RCTPdfPageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfPageViewManager.h; path = ios/RCTPdf/RCTPdfPageViewManager.h; sourceTree = ""; }; - 46EB2E00021CD0 /* RCTPdfPageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfPageViewManager.m; path = ios/RCTPdf/RCTPdfPageViewManager.m; sourceTree = ""; }; - 46EB2E00021CE0 /* RCTPdfView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfView.h; path = ios/RCTPdf/RCTPdfView.h; sourceTree = ""; }; - 46EB2E00021CF0 /* RCTPdfView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfView.m; path = ios/RCTPdf/RCTPdfView.m; sourceTree = ""; }; - 46EB2E00021D00 /* RCTPdfViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfViewManager.h; path = ios/RCTPdf/RCTPdfViewManager.h; sourceTree = ""; }; - 46EB2E00021D10 /* RCTPdfViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfViewManager.m; path = ios/RCTPdf/RCTPdfViewManager.m; sourceTree = ""; }; - 46EB2E00021D20 /* RNCSafeAreaContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaContext.h; path = ios/RNCSafeAreaContext.h; sourceTree = ""; }; - 46EB2E00021D30 /* RNCSafeAreaContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = RNCSafeAreaContext.mm; path = ios/RNCSafeAreaContext.mm; sourceTree = ""; }; - 46EB2E00021D40 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/RNCSafeAreaProvider.h; sourceTree = ""; }; - 46EB2E00021D50 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/RNCSafeAreaProvider.m; sourceTree = ""; }; - 46EB2E00021D60 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/RNCSafeAreaProviderManager.h; sourceTree = ""; }; - 46EB2E00021D70 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/RNCSafeAreaProviderManager.m; sourceTree = ""; }; - 46EB2E00021D80 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/RNCSafeAreaShadowView.h; sourceTree = ""; }; - 46EB2E00021D90 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/RNCSafeAreaShadowView.m; sourceTree = ""; }; - 46EB2E00021DA0 /* RNCSafeAreaUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaUtils.h; path = ios/RNCSafeAreaUtils.h; sourceTree = ""; }; - 46EB2E00021DB0 /* RNCSafeAreaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaUtils.m; path = ios/RNCSafeAreaUtils.m; sourceTree = ""; }; - 46EB2E00021DC0 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/RNCSafeAreaView.h; sourceTree = ""; }; - 46EB2E00021DD0 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/RNCSafeAreaView.m; sourceTree = ""; }; - 46EB2E00021DE0 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/RNCSafeAreaViewEdges.h; sourceTree = ""; }; - 46EB2E00021DF0 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/RNCSafeAreaViewEdges.m; sourceTree = ""; }; - 46EB2E00021E00 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; - 46EB2E00021E10 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; - 46EB2E00021E20 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/RNCSafeAreaViewManager.h; sourceTree = ""; }; - 46EB2E00021E30 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/RNCSafeAreaViewManager.m; sourceTree = ""; }; - 46EB2E00021E40 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/RNCSafeAreaViewMode.h; sourceTree = ""; }; - 46EB2E00021E50 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/RNCSafeAreaViewMode.m; sourceTree = ""; }; - 46EB2E00021E80 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; - 46EB2E00021EA0 /* glog.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = glog.xcframework; path = Frameworks/glog.xcframework; sourceTree = ""; }; - 46EB2E00021ED0 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; - 46EB2E00021F00 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; - 46EB2E00021F20 /* OpenSSL.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = Frameworks/OpenSSL.xcframework; sourceTree = ""; }; - 46EB2E00021F40 /* hermes.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = hermes.xcframework; path = destroot/Library/Frameworks/universal/hermes.xcframework; sourceTree = ""; }; - 46EB2E00021F50 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - 46EB2E00021F60 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - 46EB2E00021F70 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - 46EB2E00021F80 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 46EB2E00021F90 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 46EB2E00021FA0 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - 46EB2E00021FB0 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 46EB2E00021FC0 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 46EB2E00021FD0 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 46EB2E00021FE0 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 46EB2E00021FF0 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 46EB2E00022000 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 46EB2E00022010 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 46EB2E00022020 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 46EB2E00022030 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - 46EB2E00022040 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 46EB2E00022050 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; - 46EB2E00022070 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; - 46EB2E00022090 /* BVLinearGradient.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = BVLinearGradient.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000220A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000220B0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000220D0 /* CodePush.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = CodePush.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000220E0 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = LICENSE.md; sourceTree = ""; }; - 46EB2E000220F0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022100 /* api-android.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "api-android.md"; path = "docs/api-android.md"; sourceTree = ""; }; - 46EB2E00022110 /* api-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "api-ios.md"; path = "docs/api-ios.md"; sourceTree = ""; }; - 46EB2E00022120 /* api-js.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "api-js.md"; path = "docs/api-js.md"; sourceTree = ""; }; - 46EB2E00022130 /* multi-deployment-testing-android.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "multi-deployment-testing-android.md"; path = "docs/multi-deployment-testing-android.md"; sourceTree = ""; }; - 46EB2E00022140 /* multi-deployment-testing-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "multi-deployment-testing-ios.md"; path = "docs/multi-deployment-testing-ios.md"; sourceTree = ""; }; - 46EB2E00022150 /* setup-android.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "setup-android.md"; path = "docs/setup-android.md"; sourceTree = ""; }; - 46EB2E00022160 /* setup-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "setup-ios.md"; path = "docs/setup-ios.md"; sourceTree = ""; }; - 46EB2E00022170 /* setup-windows.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = "setup-windows.md"; path = "docs/setup-windows.md"; sourceTree = ""; }; - 46EB2E00022190 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000221B0 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000221D0 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000221F0 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022210 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022220 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022230 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022250 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022260 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022280 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022290 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000222A0 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNCPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000222C0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000222D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000222E0 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022300 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022310 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022320 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022340 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022350 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022360 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022380 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022390 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000223A0 /* RNFBAuth.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBAuth.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000223C0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000223D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000223E0 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022400 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022410 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022420 /* RNFBDatabase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBDatabase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022440 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022450 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022460 /* RNFBFirestore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBFirestore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022480 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022490 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000224A0 /* RNFBMessaging.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBMessaging.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000224C0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000224D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000224E0 /* RNFBRemoteConfig.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFBRemoteConfig.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022500 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022510 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022520 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022540 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022550 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022560 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022580 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022590 /* RNRate.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNRate.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000225B0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000225C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000225D0 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000225F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022600 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022610 /* RNSVG.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNSVG.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022630 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022640 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022650 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022670 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022680 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022690 /* RNShare.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNShare.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000226B0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E000226C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E000226D0 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000226F0 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022710 /* React-Codegen.podspec.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; path = "React-Codegen.podspec.json"; sourceTree = ""; }; - 46EB2E00022730 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022750 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022770 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022790 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000227B0 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000227D0 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000227F0 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022810 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022830 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022850 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022870 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022890 /* React-bridging.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-bridging.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000228B0 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000228D0 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000228F0 /* React-hermes.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-hermes.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022910 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022930 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022950 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022970 /* React-logger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-logger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022990 /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000229B0 /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "React-runtimeexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000229D0 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E000229F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022A00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022A10 /* react-native-config.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "react-native-config.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022A30 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022A40 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022A50 /* react-native-flipper.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "react-native-flipper.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022A70 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022A80 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022A90 /* react-native-pdf.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "react-native-pdf.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022AB0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 46EB2E00022AC0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 46EB2E00022AD0 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46EB2E00022BD0 /* BVLinearGradient.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BVLinearGradient.debug.xcconfig; sourceTree = ""; }; - 46EB2E00022BE0 /* BVLinearGradient.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BVLinearGradient.release.xcconfig; sourceTree = ""; }; - 46EB2E00022BF0 /* BVLinearGradient-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BVLinearGradient-prefix.pch"; sourceTree = ""; }; - 46EB2E00022C00 /* BVLinearGradient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BVLinearGradient-dummy.m"; sourceTree = ""; }; - 46EB2E00022CD0 /* Base64.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Base64.debug.xcconfig; sourceTree = ""; }; - 46EB2E00022CE0 /* Base64.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Base64.release.xcconfig; sourceTree = ""; }; - 46EB2E00022CF0 /* Base64-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Base64-prefix.pch"; sourceTree = ""; }; - 46EB2E00022D00 /* Base64-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Base64-dummy.m"; sourceTree = ""; }; - 46EB2E00024B50 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00024B60 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; - 46EB2E00024B70 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; - 46EB2E00024B80 /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; - 46EB2E00024C70 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; - 46EB2E00024C80 /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; - 46EB2E00024C90 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; - 46EB2E00024CA0 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; - 46EB2E00024E00 /* CodePush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CodePush.debug.xcconfig; sourceTree = ""; }; - 46EB2E00024E10 /* CodePush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CodePush.release.xcconfig; sourceTree = ""; }; - 46EB2E00024E20 /* CodePush-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CodePush-prefix.pch"; sourceTree = ""; }; - 46EB2E00024E30 /* CodePush-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CodePush-dummy.m"; sourceTree = ""; }; - 46EB2E00025000 /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; - 46EB2E00025010 /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; - 46EB2E00025020 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 46EB2E00025030 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 46EB2E000250A0 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; - 46EB2E000250B0 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; - 46EB2E00025110 /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; - 46EB2E00025120 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; - 46EB2E00025180 /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; - 46EB2E00025190 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; - 46EB2E000253E0 /* FirebaseABTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.debug.xcconfig; sourceTree = ""; }; - 46EB2E000253F0 /* FirebaseABTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.release.xcconfig; sourceTree = ""; }; - 46EB2E00025400 /* FirebaseABTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseABTesting-dummy.m"; sourceTree = ""; }; - 46EB2E00025470 /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; - 46EB2E00025480 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; - 46EB2E00025490 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; - 46EB2E00026530 /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; - 46EB2E00026540 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; - 46EB2E00026550 /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; - 46EB2E000268A0 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - 46EB2E000268B0 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - 46EB2E000268C0 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - 46EB2E000268D0 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - 46EB2E000268F0 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 46EB2E00026A00 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; - 46EB2E00026A10 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 46EB2E00026A20 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - 46EB2E00026BA0 /* FirebaseCoreExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.debug.xcconfig; sourceTree = ""; }; - 46EB2E00026BB0 /* FirebaseCoreExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.release.xcconfig; sourceTree = ""; }; - 46EB2E00026BC0 /* FirebaseCoreExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-prefix.pch"; sourceTree = ""; }; - 46EB2E00026BD0 /* FirebaseCoreExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreExtension-dummy.m"; sourceTree = ""; }; - 46EB2E00026D30 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; - 46EB2E00026D40 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - 46EB2E00026D50 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - 46EB2E00026D60 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; - 46EB2E00026D90 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - 46EB2E00026DA0 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - 46EB2E00027A70 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; - 46EB2E00027A80 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; - 46EB2E00027A90 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; - 46EB2E00028B50 /* FirebaseDatabase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseDatabase.debug.xcconfig; sourceTree = ""; }; - 46EB2E00028B60 /* FirebaseDatabase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseDatabase.release.xcconfig; sourceTree = ""; }; - 46EB2E00028B70 /* FirebaseDatabase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseDatabase-dummy.m"; sourceTree = ""; }; - 46EB2E00029C10 /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; - 46EB2E00029C20 /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; - 46EB2E00029C30 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; - 46EB2E0002A010 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002A020 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - 46EB2E0002A030 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 46EB2E0002A640 /* FirebaseMessaging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseMessaging.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002A650 /* FirebaseMessaging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseMessaging.release.xcconfig; sourceTree = ""; }; - 46EB2E0002A660 /* FirebaseMessaging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseMessaging-dummy.m"; sourceTree = ""; }; - 46EB2E0002A9F0 /* FirebaseRemoteConfig.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002AA00 /* FirebaseRemoteConfig.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.release.xcconfig; sourceTree = ""; }; - 46EB2E0002AA10 /* FirebaseRemoteConfig-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseRemoteConfig-dummy.m"; sourceTree = ""; }; - 46EB2E0002AD20 /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002AD30 /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; - 46EB2E0002AD40 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - 46EB2E0002AD50 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; - 46EB2E0002AE30 /* Flipper-Boost-iOSX.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Boost-iOSX.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002AE40 /* Flipper-Boost-iOSX.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Boost-iOSX.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002AE50 /* Flipper-Boost-iOSX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Boost-iOSX-prefix.pch"; sourceTree = ""; }; - 46EB2E0002AE60 /* Flipper-Boost-iOSX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Boost-iOSX-dummy.m"; sourceTree = ""; }; - 46EB2E0002B030 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002B040 /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002B050 /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - 46EB2E0002B060 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; - 46EB2E0002B1E0 /* Flipper-Fmt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Fmt.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002B1F0 /* Flipper-Fmt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Fmt.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002B200 /* Flipper-Fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Fmt-prefix.pch"; sourceTree = ""; }; - 46EB2E0002B210 /* Flipper-Fmt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Fmt-dummy.m"; sourceTree = ""; }; - 46EB2E0002E8B0 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002E8C0 /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002E8D0 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; - 46EB2E0002E8E0 /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; - 46EB2E0002E950 /* Flipper-Glog-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Flipper-Glog-xcframeworks.sh"; sourceTree = ""; }; - 46EB2E0002E960 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002E970 /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002EA90 /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002EAA0 /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002EAB0 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; - 46EB2E0002EAC0 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; - 46EB2E0002F540 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0002F550 /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; - 46EB2E0002F560 /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; - 46EB2E0002F570 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - 46EB2E0002FCA0 /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002FCB0 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; - 46EB2E0002FCC0 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; - 46EB2E0002FCD0 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; - 46EB2E0002FCF0 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; - 46EB2E0002FD00 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; - 46EB2E0002FE30 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002FE40 /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; - 46EB2E0002FE50 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 46EB2E0002FEC0 /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; - 46EB2E0002FED0 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; - 46EB2E0002FEE0 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - 46EB2E00030320 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; - 46EB2E00030330 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; - 46EB2E00030340 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 46EB2E00030870 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - 46EB2E00030880 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 46EB2E00030890 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - 46EB2E000308A0 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - 46EB2E000308C0 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 46EB2E00030F20 /* JWT.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JWT.debug.xcconfig; sourceTree = ""; }; - 46EB2E00030F30 /* JWT.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JWT.release.xcconfig; sourceTree = ""; }; - 46EB2E00030F40 /* JWT-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JWT-prefix.pch"; sourceTree = ""; }; - 46EB2E00030F50 /* JWT-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JWT-dummy.m"; sourceTree = ""; }; - 46EB2E000312F0 /* Libuv-gRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00031300 /* Libuv-gRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.release.xcconfig"; sourceTree = ""; }; - 46EB2E00031310 /* Libuv-gRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-prefix.pch"; sourceTree = ""; }; - 46EB2E00031320 /* Libuv-gRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Libuv-gRPC-dummy.m"; sourceTree = ""; }; - 46EB2E00031390 /* OpenSSL-Universal-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenSSL-Universal-xcframeworks.sh"; sourceTree = ""; }; - 46EB2E000313A0 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000313B0 /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; - 46EB2E000316D0 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - 46EB2E000316E0 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - 46EB2E000316F0 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - 46EB2E00031700 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - 46EB2E00031720 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 46EB2E000343A0 /* RCT-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000343B0 /* RCT-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.release.xcconfig"; sourceTree = ""; }; - 46EB2E000343C0 /* RCT-Folly.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "RCT-Folly.modulemap"; sourceTree = ""; }; - 46EB2E000343D0 /* RCT-Folly-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-umbrella.h"; sourceTree = ""; }; - 46EB2E000343F0 /* RCT-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-prefix.pch"; sourceTree = ""; }; - 46EB2E00034400 /* RCT-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCT-Folly-dummy.m"; sourceTree = ""; }; - 46EB2E00034470 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034480 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; - 46EB2E00034560 /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034570 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; - 46EB2E00034580 /* RCTTypeSafety.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RCTTypeSafety.modulemap; sourceTree = ""; }; - 46EB2E00034590 /* RCTTypeSafety-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-umbrella.h"; sourceTree = ""; }; - 46EB2E000345B0 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 46EB2E000345C0 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 46EB2E000346A0 /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; - 46EB2E000346B0 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; - 46EB2E000346C0 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; - 46EB2E000346D0 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - 46EB2E000347C0 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; - 46EB2E000347D0 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; - 46EB2E000347E0 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; - 46EB2E000347F0 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; - 46EB2E00034900 /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034910 /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = ""; }; - 46EB2E00034920 /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = ""; }; - 46EB2E00034930 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = ""; }; - 46EB2E00034A40 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034A50 /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; - 46EB2E00034A60 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - 46EB2E00034A70 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 46EB2E00034B40 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034B50 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; - 46EB2E00034B60 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; - 46EB2E00034B70 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; - 46EB2E00034D60 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034D70 /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; - 46EB2E00034D80 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; - 46EB2E00034D90 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; - 46EB2E00034E60 /* RNFBAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAuth.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034E70 /* RNFBAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAuth.release.xcconfig; sourceTree = ""; }; - 46EB2E00034E80 /* RNFBAuth-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAuth-prefix.pch"; sourceTree = ""; }; - 46EB2E00034E90 /* RNFBAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAuth-dummy.m"; sourceTree = ""; }; - 46EB2E00034FA0 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; - 46EB2E00034FB0 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; - 46EB2E00034FC0 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; - 46EB2E00034FD0 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; - 46EB2E00035160 /* RNFBDatabase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBDatabase.debug.xcconfig; sourceTree = ""; }; - 46EB2E00035170 /* RNFBDatabase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBDatabase.release.xcconfig; sourceTree = ""; }; - 46EB2E00035180 /* RNFBDatabase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBDatabase-prefix.pch"; sourceTree = ""; }; - 46EB2E00035190 /* RNFBDatabase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBDatabase-dummy.m"; sourceTree = ""; }; - 46EB2E00035340 /* RNFBFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBFirestore.debug.xcconfig; sourceTree = ""; }; - 46EB2E00035350 /* RNFBFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBFirestore.release.xcconfig; sourceTree = ""; }; - 46EB2E00035360 /* RNFBFirestore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBFirestore-prefix.pch"; sourceTree = ""; }; - 46EB2E00035370 /* RNFBFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBFirestore-dummy.m"; sourceTree = ""; }; - 46EB2E000354E0 /* RNFBMessaging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBMessaging.debug.xcconfig; sourceTree = ""; }; - 46EB2E000354F0 /* RNFBMessaging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBMessaging.release.xcconfig; sourceTree = ""; }; - 46EB2E00035500 /* RNFBMessaging-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBMessaging-prefix.pch"; sourceTree = ""; }; - 46EB2E00035510 /* RNFBMessaging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBMessaging-dummy.m"; sourceTree = ""; }; - 46EB2E000355E0 /* RNFBRemoteConfig.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBRemoteConfig.debug.xcconfig; sourceTree = ""; }; - 46EB2E000355F0 /* RNFBRemoteConfig.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBRemoteConfig.release.xcconfig; sourceTree = ""; }; - 46EB2E00035600 /* RNFBRemoteConfig-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBRemoteConfig-prefix.pch"; sourceTree = ""; }; - 46EB2E00035610 /* RNFBRemoteConfig-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBRemoteConfig-dummy.m"; sourceTree = ""; }; - 46EB2E00035740 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; - 46EB2E00035750 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; - 46EB2E00035760 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 46EB2E00035770 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 46EB2E00035B00 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; - 46EB2E00035B10 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; - 46EB2E00035B20 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 46EB2E00035B30 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 46EB2E00035C00 /* RNRate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRate.debug.xcconfig; sourceTree = ""; }; - 46EB2E00035C10 /* RNRate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRate.release.xcconfig; sourceTree = ""; }; - 46EB2E00035C20 /* RNRate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRate-prefix.pch"; sourceTree = ""; }; - 46EB2E00035C30 /* RNRate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRate-dummy.m"; sourceTree = ""; }; - 46EB2E000364C0 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; - 46EB2E000364D0 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; - 46EB2E000364E0 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - 46EB2E000364F0 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 46EB2E00036DF0 /* RNSVG.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNSVG.debug.xcconfig; sourceTree = ""; }; - 46EB2E00036E00 /* RNSVG.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNSVG.release.xcconfig; sourceTree = ""; }; - 46EB2E00036E10 /* RNSVG-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNSVG-prefix.pch"; sourceTree = ""; }; - 46EB2E00036E20 /* RNSVG-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNSVG-dummy.m"; sourceTree = ""; }; - 46EB2E000370C0 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; - 46EB2E000370D0 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; - 46EB2E000370E0 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 46EB2E000370F0 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 46EB2E00037320 /* RNShare.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNShare.debug.xcconfig; sourceTree = ""; }; - 46EB2E00037330 /* RNShare.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNShare.release.xcconfig; sourceTree = ""; }; - 46EB2E00037340 /* RNShare-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNShare-prefix.pch"; sourceTree = ""; }; - 46EB2E00037350 /* RNShare-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNShare-dummy.m"; sourceTree = ""; }; - 46EB2E00037420 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; - 46EB2E00037430 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; - 46EB2E00037440 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 46EB2E00037450 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - 46EB2E000374C0 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; - 46EB2E000374D0 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; - 46EB2E00037590 /* React-Codegen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Codegen.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000375A0 /* React-Codegen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Codegen.release.xcconfig"; sourceTree = ""; }; - 46EB2E000375B0 /* React-Codegen.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Codegen.modulemap"; sourceTree = ""; }; - 46EB2E000375C0 /* React-Codegen-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Codegen-umbrella.h"; sourceTree = ""; }; - 46EB2E000375E0 /* React-Codegen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Codegen-prefix.pch"; sourceTree = ""; }; - 46EB2E000375F0 /* React-Codegen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Codegen-dummy.m"; sourceTree = ""; }; - 46EB2E00037730 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; - 46EB2E00039040 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039050 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039060 /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = ""; }; - 46EB2E00039070 /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = ""; }; - 46EB2E00039090 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 46EB2E000390A0 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 46EB2E00039320 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039330 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039340 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 46EB2E00039350 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 46EB2E000393C0 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000393D0 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039760 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039770 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039780 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 46EB2E00039790 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 46EB2E000398C0 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000398D0 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; - 46EB2E000398E0 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 46EB2E000398F0 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 46EB2E00039AB0 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039AC0 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039AD0 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 46EB2E00039AE0 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 46EB2E00039BB0 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039BC0 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039BD0 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 46EB2E00039BE0 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 46EB2E00039CF0 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039D00 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039D10 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 46EB2E00039D20 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 46EB2E00039DF0 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00039E00 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; - 46EB2E00039E10 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - 46EB2E00039E20 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 46EB2E0003A260 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003A270 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003A280 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 46EB2E0003A290 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 46EB2E0003A360 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003A370 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003A380 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - 46EB2E0003A390 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 46EB2E0003A540 /* React-bridging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-bridging.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003A550 /* React-bridging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-bridging.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003A560 /* React-bridging-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-bridging-prefix.pch"; sourceTree = ""; }; - 46EB2E0003A570 /* React-bridging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-bridging-dummy.m"; sourceTree = ""; }; - 46EB2E0003A5E0 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003A5F0 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003A8A0 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003A8B0 /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003A8C0 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 46EB2E0003A8D0 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 46EB2E0003ABA0 /* React-hermes.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-hermes.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003ABB0 /* React-hermes.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-hermes.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003ABC0 /* React-hermes-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-hermes-prefix.pch"; sourceTree = ""; }; - 46EB2E0003ABD0 /* React-hermes-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-hermes-dummy.m"; sourceTree = ""; }; - 46EB2E0003AD50 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003AD60 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003AD70 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 46EB2E0003AD80 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 46EB2E0003AE70 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003AE80 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003AE90 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 46EB2E0003AEA0 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 46EB2E0003AF70 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003AF80 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003AF90 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 46EB2E0003AFA0 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 46EB2E0003B070 /* React-logger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-logger.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003B080 /* React-logger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-logger.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003B090 /* React-logger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-logger-prefix.pch"; sourceTree = ""; }; - 46EB2E0003B0A0 /* React-logger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-logger-dummy.m"; sourceTree = ""; }; - 46EB2E0003B180 /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003B190 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003B1A0 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = ""; }; - 46EB2E0003B1B0 /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = ""; }; - 46EB2E0003B220 /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = ""; }; - 46EB2E0003B230 /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = ""; }; - 46EB2E0003B3E0 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003B3F0 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; - 46EB2E0003B400 /* ReactCommon.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ReactCommon.modulemap; sourceTree = ""; }; - 46EB2E0003B410 /* ReactCommon-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-umbrella.h"; sourceTree = ""; }; - 46EB2E0003B430 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 46EB2E0003B440 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 46EB2E0003BDD0 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003BDE0 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; - 46EB2E0003BDF0 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 46EB2E0003BE00 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 46EB2E0003BF20 /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003BF30 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; - 46EB2E0003BF40 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - 46EB2E0003BF50 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - 46EB2E0003C210 /* SSZipArchive.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003C220 /* SSZipArchive.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.release.xcconfig; sourceTree = ""; }; - 46EB2E0003C230 /* SSZipArchive.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SSZipArchive.modulemap; sourceTree = ""; }; - 46EB2E0003C240 /* SSZipArchive-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-umbrella.h"; sourceTree = ""; }; - 46EB2E0003C260 /* SSZipArchive-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-prefix.pch"; sourceTree = ""; }; - 46EB2E0003C270 /* SSZipArchive-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSZipArchive-dummy.m"; sourceTree = ""; }; - 46EB2E0003C5B0 /* SocketRocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003C5C0 /* SocketRocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.release.xcconfig; sourceTree = ""; }; - 46EB2E0003C5D0 /* SocketRocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-prefix.pch"; sourceTree = ""; }; - 46EB2E0003C5E0 /* SocketRocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SocketRocket-dummy.m"; sourceTree = ""; }; - 46EB2E0003C870 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003C880 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; - 46EB2E0003C890 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; - 46EB2E0003C8A0 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; - 46EB2E0003C8C0 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 46EB2E0003C8D0 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 46EB2E0003C9E0 /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003C9F0 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; - 46EB2E0003CA00 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; - 46EB2E0003CA10 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - 46EB2E0003CA40 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 46EB2E0003CA50 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 46EB2E0003DF20 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003DF30 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; - 46EB2E0003DF40 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; - 46EB2E0003DF50 /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; - 46EB2E0003DFC0 /* boost.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = boost.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003DFD0 /* boost.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = boost.release.xcconfig; sourceTree = ""; }; - 46EB2E0003E140 /* fmt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = fmt.debug.xcconfig; sourceTree = ""; }; - 46EB2E0003E150 /* fmt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = fmt.release.xcconfig; sourceTree = ""; }; - 46EB2E0003E160 /* fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "fmt-prefix.pch"; sourceTree = ""; }; - 46EB2E0003E170 /* fmt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "fmt-dummy.m"; sourceTree = ""; }; - 46EB2E0003E2B0 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 46EB2E000416D0 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; - 46EB2E000416E0 /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; - 46EB2E000416F0 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; - 46EB2E00041700 /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; - 46EB2E00046F00 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00046F10 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; - 46EB2E00046F20 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; - 46EB2E00046F30 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; - 46EB2E000470A0 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; - 46EB2E000470B0 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; - 46EB2E000470C0 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 46EB2E000470D0 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 46EB2E00047140 /* hermes-engine-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "hermes-engine-xcframeworks.sh"; sourceTree = ""; }; - 46EB2E00047150 /* hermes-engine.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00047160 /* hermes-engine.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.release.xcconfig"; sourceTree = ""; }; - 46EB2E000477F0 /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00047800 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; - 46EB2E00047810 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; - 46EB2E00047820 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; - 46EB2E00047C00 /* libevent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.debug.xcconfig; sourceTree = ""; }; - 46EB2E00047C10 /* libevent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.release.xcconfig; sourceTree = ""; }; - 46EB2E00047C20 /* libevent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libevent-prefix.pch"; sourceTree = ""; }; - 46EB2E00047C30 /* libevent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libevent-dummy.m"; sourceTree = ""; }; - 46EB2E000486D0 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; - 46EB2E000486E0 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; - 46EB2E000486F0 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 46EB2E00048700 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 46EB2E00048820 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; - 46EB2E00048830 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 46EB2E00048840 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 46EB2E00048850 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - 46EB2E00048940 /* react-native-config.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-config.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00048950 /* react-native-config.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-config.release.xcconfig"; sourceTree = ""; }; - 46EB2E00048960 /* react-native-config-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-config-prefix.pch"; sourceTree = ""; }; - 46EB2E00048970 /* react-native-config-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-config-dummy.m"; sourceTree = ""; }; - 46EB2E00048A80 /* react-native-flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-flipper.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00048A90 /* react-native-flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-flipper.release.xcconfig"; sourceTree = ""; }; - 46EB2E00048AA0 /* react-native-flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-flipper-prefix.pch"; sourceTree = ""; }; - 46EB2E00048AB0 /* react-native-flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-flipper-dummy.m"; sourceTree = ""; }; - 46EB2E00048C00 /* react-native-pdf.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-pdf.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00048C10 /* react-native-pdf.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-pdf.release.xcconfig"; sourceTree = ""; }; - 46EB2E00048C20 /* react-native-pdf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-pdf-prefix.pch"; sourceTree = ""; }; - 46EB2E00048C30 /* react-native-pdf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-pdf-dummy.m"; sourceTree = ""; }; - 46EB2E00048E20 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00048E30 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; - 46EB2E00048E40 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - 46EB2E00048E50 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - 46EB2E00048F00 /* Pods-Hurt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Hurt.release.xcconfig"; sourceTree = ""; }; - 46EB2E00048F10 /* Pods-Hurt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Hurt.debug.xcconfig"; sourceTree = ""; }; - 46EB2E00048F20 /* Pods-Hurt.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Hurt.modulemap"; sourceTree = ""; }; - 46EB2E00048F30 /* Pods-Hurt-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Hurt-umbrella.h"; sourceTree = ""; }; - 46EB2E00048F50 /* Pods-Hurt-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Hurt-frameworks.sh"; sourceTree = ""; }; - 46EB2E00048F60 /* Pods-Hurt-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Hurt-resources.sh"; sourceTree = ""; }; - 46EB2E00048F70 /* Pods-Hurt-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Hurt-acknowledgements.plist"; sourceTree = ""; }; - 46EB2E00048F80 /* Pods-Hurt-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Hurt-acknowledgements.markdown"; sourceTree = ""; }; - 46EB2E00048F90 /* Pods-Hurt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Hurt-dummy.m"; sourceTree = ""; }; + 46EB2E00000770 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00000780 /* BVLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradient.h; path = ios/BVLinearGradient.h; sourceTree = ""; }; + 46EB2E00000790 /* BVLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradient.m; path = ios/BVLinearGradient.m; sourceTree = ""; }; + 46EB2E000007A0 /* BVLinearGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientLayer.h; path = ios/BVLinearGradientLayer.h; sourceTree = ""; }; + 46EB2E000007B0 /* BVLinearGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientLayer.m; path = ios/BVLinearGradientLayer.m; sourceTree = ""; }; + 46EB2E000007C0 /* BVLinearGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientManager.h; path = ios/BVLinearGradientManager.h; sourceTree = ""; }; + 46EB2E000007D0 /* BVLinearGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientManager.m; path = ios/BVLinearGradientManager.m; sourceTree = ""; }; + 46EB2E000007E0 /* MF_Base64Additions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MF_Base64Additions.h; path = Base64/MF_Base64Additions.h; sourceTree = ""; }; + 46EB2E000007F0 /* MF_Base64Additions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MF_Base64Additions.m; path = Base64/MF_Base64Additions.m; sourceTree = ""; }; + 46EB2E00000810 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; + 46EB2E00000820 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; + 46EB2E00000830 /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; + 46EB2E00000840 /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; + 46EB2E00000850 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; + 46EB2E00000860 /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; + 46EB2E00000870 /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; + 46EB2E00000880 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; + 46EB2E00000890 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; + 46EB2E000008A0 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; + 46EB2E000008B0 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; + 46EB2E000008C0 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; + 46EB2E000008D0 /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; + 46EB2E000008E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; + 46EB2E000008F0 /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; + 46EB2E00000900 /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; + 46EB2E00000910 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; + 46EB2E00000920 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; + 46EB2E00000930 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; + 46EB2E00000940 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; + 46EB2E00000950 /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; + 46EB2E00000960 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; + 46EB2E00000970 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; + 46EB2E00000980 /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; + 46EB2E00000990 /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; + 46EB2E000009A0 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; + 46EB2E000009B0 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; + 46EB2E000009C0 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; + 46EB2E000009D0 /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; + 46EB2E000009E0 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; + 46EB2E000009F0 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; + 46EB2E00000A00 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; + 46EB2E00000A10 /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; + 46EB2E00000A20 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; + 46EB2E00000A30 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; + 46EB2E00000A40 /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; + 46EB2E00000A50 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; + 46EB2E00000A60 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; + 46EB2E00000A70 /* cpu-aarch64-fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-fuchsia.c"; path = "src/crypto/cpu-aarch64-fuchsia.c"; sourceTree = ""; }; + 46EB2E00000A80 /* cpu-aarch64-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-linux.c"; path = "src/crypto/cpu-aarch64-linux.c"; sourceTree = ""; }; + 46EB2E00000A90 /* cpu-aarch64-win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-win.c"; path = "src/crypto/cpu-aarch64-win.c"; sourceTree = ""; }; + 46EB2E00000AA0 /* cpu-arm-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm-linux.c"; path = "src/crypto/cpu-arm-linux.c"; sourceTree = ""; }; + 46EB2E00000AB0 /* cpu-arm-linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cpu-arm-linux.h"; path = "src/crypto/cpu-arm-linux.h"; sourceTree = ""; }; + 46EB2E00000AC0 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; + 46EB2E00000AD0 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; + 46EB2E00000AE0 /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; + 46EB2E00000AF0 /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; + 46EB2E00000B00 /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; + 46EB2E00000B10 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; + 46EB2E00000B20 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; + 46EB2E00000B30 /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; + 46EB2E00000B40 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; + 46EB2E00000B50 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; + 46EB2E00000B60 /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; + 46EB2E00000B70 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; + 46EB2E00000B80 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; + 46EB2E00000B90 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; + 46EB2E00000BA0 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; + 46EB2E00000BB0 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; + 46EB2E00000BC0 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; + 46EB2E00000BD0 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; + 46EB2E00000BE0 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; + 46EB2E00000BF0 /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; + 46EB2E00000C00 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; + 46EB2E00000C10 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; + 46EB2E00000C20 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; + 46EB2E00000C30 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; + 46EB2E00000C40 /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; + 46EB2E00000C50 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; + 46EB2E00000C60 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; + 46EB2E00000C70 /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; + 46EB2E00000C80 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; + 46EB2E00000C90 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; + 46EB2E00000CA0 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; + 46EB2E00000CB0 /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; + 46EB2E00000CC0 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; + 46EB2E00000CD0 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; + 46EB2E00000CE0 /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; + 46EB2E00000CF0 /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; + 46EB2E00000D00 /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; + 46EB2E00000D10 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; + 46EB2E00000D20 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; + 46EB2E00000D30 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; + 46EB2E00000D40 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; + 46EB2E00000D50 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; + 46EB2E00000D60 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; + 46EB2E00000D70 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; + 46EB2E00000D80 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; + 46EB2E00000D90 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; + 46EB2E00000DA0 /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; + 46EB2E00000DB0 /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; + 46EB2E00000DC0 /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; + 46EB2E00000DD0 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; + 46EB2E00000DE0 /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; + 46EB2E00000DF0 /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; + 46EB2E00000E00 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; + 46EB2E00000E10 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; + 46EB2E00000E20 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; + 46EB2E00000E30 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; + 46EB2E00000E40 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; + 46EB2E00000E50 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; + 46EB2E00000E60 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; + 46EB2E00000E70 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; + 46EB2E00000E80 /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; + 46EB2E00000E90 /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; + 46EB2E00000EA0 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; + 46EB2E00000EB0 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; + 46EB2E00000EC0 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; + 46EB2E00000ED0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; + 46EB2E00000EE0 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; + 46EB2E00000EF0 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; + 46EB2E00000F00 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; + 46EB2E00000F10 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; + 46EB2E00000F20 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; + 46EB2E00000F30 /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; + 46EB2E00000F40 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; + 46EB2E00000F50 /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; + 46EB2E00000F60 /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; + 46EB2E00000F70 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; + 46EB2E00000F80 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; + 46EB2E00000F90 /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; + 46EB2E00000FA0 /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; + 46EB2E00000FB0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; + 46EB2E00000FC0 /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; + 46EB2E00000FD0 /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; + 46EB2E00000FE0 /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; + 46EB2E00000FF0 /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; + 46EB2E00001000 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; + 46EB2E00001010 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; + 46EB2E00001020 /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; + 46EB2E00001030 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; + 46EB2E00001040 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; + 46EB2E00001050 /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; + 46EB2E00001060 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; + 46EB2E00001070 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; + 46EB2E00001080 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; + 46EB2E00001090 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; + 46EB2E000010A0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; + 46EB2E000010B0 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; + 46EB2E000010C0 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; + 46EB2E000010D0 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; + 46EB2E000010E0 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; + 46EB2E000010F0 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; + 46EB2E00001100 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; + 46EB2E00001110 /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; + 46EB2E00001120 /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; + 46EB2E00001130 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; + 46EB2E00001140 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; + 46EB2E00001150 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; + 46EB2E00001160 /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; + 46EB2E00001170 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; + 46EB2E00001180 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; + 46EB2E00001190 /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; + 46EB2E000011A0 /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; + 46EB2E000011B0 /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; + 46EB2E000011C0 /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; + 46EB2E000011D0 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; + 46EB2E000011E0 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; + 46EB2E000011F0 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; + 46EB2E00001200 /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; + 46EB2E00001210 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; + 46EB2E00001220 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; + 46EB2E00001230 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; + 46EB2E00001240 /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; + 46EB2E00001250 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; + 46EB2E00001260 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; + 46EB2E00001270 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; + 46EB2E00001280 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; + 46EB2E00001290 /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; + 46EB2E000012A0 /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; + 46EB2E000012B0 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; + 46EB2E000012C0 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; + 46EB2E000012D0 /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; + 46EB2E000012E0 /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; + 46EB2E000012F0 /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; + 46EB2E00001300 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; + 46EB2E00001310 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; + 46EB2E00001320 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; + 46EB2E00001330 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; + 46EB2E00001340 /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; + 46EB2E00001350 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; + 46EB2E00001360 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; + 46EB2E00001370 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; + 46EB2E00001380 /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; + 46EB2E00001390 /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; + 46EB2E000013A0 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; + 46EB2E000013B0 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; + 46EB2E000013C0 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; + 46EB2E000013D0 /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; + 46EB2E000013E0 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; + 46EB2E000013F0 /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; + 46EB2E00001400 /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; + 46EB2E00001410 /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; + 46EB2E00001420 /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; + 46EB2E00001430 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; + 46EB2E00001440 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; + 46EB2E00001450 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; + 46EB2E00001460 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; + 46EB2E00001470 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; + 46EB2E00001480 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; + 46EB2E00001490 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; + 46EB2E000014A0 /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; + 46EB2E000014B0 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; + 46EB2E000014C0 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; + 46EB2E000014D0 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; + 46EB2E000014E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; + 46EB2E000014F0 /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; + 46EB2E00001500 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; + 46EB2E00001510 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; + 46EB2E00001520 /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; + 46EB2E00001530 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; + 46EB2E00001540 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; + 46EB2E00001550 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; + 46EB2E00001560 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; + 46EB2E00001570 /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; + 46EB2E00001580 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; + 46EB2E00001590 /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; + 46EB2E000015A0 /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; + 46EB2E000015B0 /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; + 46EB2E000015C0 /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; + 46EB2E000015D0 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; + 46EB2E000015E0 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; + 46EB2E000015F0 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; + 46EB2E00001600 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; + 46EB2E00001610 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; + 46EB2E00001620 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; + 46EB2E00001630 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; + 46EB2E00001640 /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; + 46EB2E00001650 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; + 46EB2E00001660 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; + 46EB2E00001670 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; + 46EB2E00001680 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; + 46EB2E00001690 /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; + 46EB2E000016A0 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; + 46EB2E000016B0 /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; + 46EB2E000016C0 /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; + 46EB2E000016D0 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; + 46EB2E000016E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; + 46EB2E000016F0 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; + 46EB2E00001700 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; + 46EB2E00001710 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; + 46EB2E00001720 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; + 46EB2E00001730 /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; + 46EB2E00001740 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; + 46EB2E00001750 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; + 46EB2E00001760 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; + 46EB2E00001770 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; + 46EB2E00001780 /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; + 46EB2E00001790 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; + 46EB2E000017A0 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; + 46EB2E000017B0 /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; + 46EB2E000017C0 /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; + 46EB2E000017D0 /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; + 46EB2E000017E0 /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; + 46EB2E000017F0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; + 46EB2E00001800 /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; + 46EB2E00001810 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; + 46EB2E00001820 /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; + 46EB2E00001830 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; + 46EB2E00001840 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; + 46EB2E00001850 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; + 46EB2E00001860 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; + 46EB2E00001870 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; + 46EB2E00001880 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; + 46EB2E00001890 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; + 46EB2E000018A0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; + 46EB2E000018B0 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; + 46EB2E000018C0 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; + 46EB2E000018D0 /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; + 46EB2E000018E0 /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; + 46EB2E000018F0 /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; + 46EB2E00001900 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; + 46EB2E00001910 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; + 46EB2E00001920 /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; + 46EB2E00001930 /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; + 46EB2E00001940 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; + 46EB2E00001950 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; + 46EB2E00001960 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; + 46EB2E00001970 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; + 46EB2E00001980 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; + 46EB2E00001990 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; + 46EB2E000019A0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; + 46EB2E000019B0 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; + 46EB2E000019C0 /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; + 46EB2E000019D0 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; + 46EB2E000019E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; + 46EB2E000019F0 /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; + 46EB2E00001A00 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; + 46EB2E00001A10 /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; + 46EB2E00001A20 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; + 46EB2E00001A30 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; + 46EB2E00001A40 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; + 46EB2E00001A50 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; + 46EB2E00001A60 /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; + 46EB2E00001A70 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; + 46EB2E00001A80 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; + 46EB2E00001A90 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; + 46EB2E00001AA0 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; + 46EB2E00001AB0 /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; + 46EB2E00001AC0 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; + 46EB2E00001AD0 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; + 46EB2E00001AE0 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; + 46EB2E00001AF0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; + 46EB2E00001B00 /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; + 46EB2E00001B10 /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; + 46EB2E00001B20 /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; + 46EB2E00001B30 /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; + 46EB2E00001B40 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; + 46EB2E00001B50 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; + 46EB2E00001B60 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; + 46EB2E00001B70 /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; + 46EB2E00001B80 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; + 46EB2E00001B90 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; + 46EB2E00001BA0 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; + 46EB2E00001BB0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; + 46EB2E00001BC0 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; + 46EB2E00001BD0 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; + 46EB2E00001BE0 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; + 46EB2E00001BF0 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; + 46EB2E00001C00 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; + 46EB2E00001C10 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; + 46EB2E00001C20 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; + 46EB2E00001C30 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; + 46EB2E00001C40 /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; + 46EB2E00001C50 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; + 46EB2E00001C60 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; + 46EB2E00001C70 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; + 46EB2E00001C80 /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; + 46EB2E00001C90 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; + 46EB2E00001CA0 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; + 46EB2E00001CB0 /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; + 46EB2E00001CC0 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; + 46EB2E00001CD0 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; + 46EB2E00001CE0 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; + 46EB2E00001CF0 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; + 46EB2E00001D00 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; + 46EB2E00001D10 /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; + 46EB2E00001D20 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; + 46EB2E00001D30 /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; + 46EB2E00001D40 /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; + 46EB2E00001D50 /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; + 46EB2E00001D60 /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; + 46EB2E00001D70 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; + 46EB2E00001D80 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; + 46EB2E00001D90 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; + 46EB2E00001DA0 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; + 46EB2E00001DB0 /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; + 46EB2E00001DC0 /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; + 46EB2E00001DD0 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; + 46EB2E00001DE0 /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; + 46EB2E00001DF0 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; + 46EB2E00001E00 /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; + 46EB2E00001E10 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; + 46EB2E00001E20 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; + 46EB2E00001E30 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; + 46EB2E00001E40 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; + 46EB2E00001E50 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; + 46EB2E00001E60 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; + 46EB2E00001E70 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; + 46EB2E00001E80 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; + 46EB2E00001E90 /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; + 46EB2E00001EA0 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; + 46EB2E00001EB0 /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; + 46EB2E00001EC0 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; + 46EB2E00001ED0 /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; + 46EB2E00001EE0 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; + 46EB2E00001EF0 /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; + 46EB2E00001F00 /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; + 46EB2E00001F10 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; + 46EB2E00001F20 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; + 46EB2E00001F30 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; + 46EB2E00001F40 /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; + 46EB2E00001F50 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; + 46EB2E00001F60 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; + 46EB2E00001F70 /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; + 46EB2E00001F80 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; + 46EB2E00001F90 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; + 46EB2E00001FA0 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; + 46EB2E00001FB0 /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; + 46EB2E00001FC0 /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; + 46EB2E00001FD0 /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; + 46EB2E00001FE0 /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; + 46EB2E00001FF0 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; + 46EB2E00002000 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; + 46EB2E00002010 /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; + 46EB2E00002020 /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; + 46EB2E00002030 /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; + 46EB2E00002040 /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; + 46EB2E00002050 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; + 46EB2E00002060 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; + 46EB2E00002070 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; + 46EB2E00002080 /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; + 46EB2E00002090 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; path = err_data.c; sourceTree = ""; }; + 46EB2E000020B0 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; + 46EB2E000020C0 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; + 46EB2E000020D0 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; + 46EB2E000020E0 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; + 46EB2E000020F0 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; + 46EB2E00002100 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; + 46EB2E00002110 /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; + 46EB2E00002120 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; + 46EB2E00002130 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; + 46EB2E00002140 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; + 46EB2E00002150 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; + 46EB2E00002160 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; + 46EB2E00002170 /* boringssl_prefix_symbols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = boringssl_prefix_symbols.h; path = src/include/openssl/boringssl_prefix_symbols.h; sourceTree = ""; }; + 46EB2E00002180 /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; + 46EB2E00002190 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; + 46EB2E000021A0 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; + 46EB2E000021B0 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; + 46EB2E000021C0 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; + 46EB2E000021D0 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; + 46EB2E000021E0 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; + 46EB2E000021F0 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; + 46EB2E00002200 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; + 46EB2E00002210 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; + 46EB2E00002220 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; + 46EB2E00002230 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; + 46EB2E00002240 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; + 46EB2E00002250 /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; + 46EB2E00002260 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; + 46EB2E00002270 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; + 46EB2E00002280 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; + 46EB2E00002290 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; + 46EB2E000022A0 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; + 46EB2E000022B0 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; + 46EB2E000022C0 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; + 46EB2E000022D0 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; + 46EB2E000022E0 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; + 46EB2E000022F0 /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; + 46EB2E00002300 /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; + 46EB2E00002310 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; + 46EB2E00002320 /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; + 46EB2E00002330 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; + 46EB2E00002340 /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; + 46EB2E00002350 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; + 46EB2E00002360 /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; + 46EB2E00002370 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; + 46EB2E00002380 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; + 46EB2E00002390 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; + 46EB2E000023A0 /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; + 46EB2E000023B0 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; + 46EB2E000023C0 /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; + 46EB2E000023D0 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; + 46EB2E000023E0 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; + 46EB2E000023F0 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; + 46EB2E00002400 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; + 46EB2E00002410 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; + 46EB2E00002420 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; + 46EB2E00002430 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; + 46EB2E00002440 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; + 46EB2E00002450 /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; + 46EB2E00002460 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; + 46EB2E00002470 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; + 46EB2E00002480 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; + 46EB2E00002490 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; + 46EB2E000024A0 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; + 46EB2E000024B0 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; + 46EB2E000024C0 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; + 46EB2E000024D0 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; + 46EB2E000024E0 /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; + 46EB2E000024F0 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; + 46EB2E00002500 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; + 46EB2E00002510 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; + 46EB2E00002520 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; + 46EB2E00002530 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; + 46EB2E00002540 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; + 46EB2E00002550 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; + 46EB2E00002560 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; + 46EB2E00002570 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; + 46EB2E00002580 /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; + 46EB2E00002590 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; + 46EB2E000025A0 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; + 46EB2E000025B0 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; + 46EB2E000025C0 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; + 46EB2E000025D0 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; + 46EB2E000025E0 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; + 46EB2E000025F0 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; + 46EB2E00002600 /* CodePush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodePush.h; path = ios/CodePush/CodePush.h; sourceTree = ""; }; + 46EB2E00002610 /* CodePush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePush.m; path = ios/CodePush/CodePush.m; sourceTree = ""; }; + 46EB2E00002620 /* CodePushConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushConfig.m; path = ios/CodePush/CodePushConfig.m; sourceTree = ""; }; + 46EB2E00002630 /* CodePushDownloadHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushDownloadHandler.m; path = ios/CodePush/CodePushDownloadHandler.m; sourceTree = ""; }; + 46EB2E00002640 /* CodePushErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushErrorUtils.m; path = ios/CodePush/CodePushErrorUtils.m; sourceTree = ""; }; + 46EB2E00002650 /* CodePushPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushPackage.m; path = ios/CodePush/CodePushPackage.m; sourceTree = ""; }; + 46EB2E00002660 /* CodePushTelemetryManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushTelemetryManager.m; path = ios/CodePush/CodePushTelemetryManager.m; sourceTree = ""; }; + 46EB2E00002670 /* CodePushUpdateUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushUpdateUtils.m; path = ios/CodePush/CodePushUpdateUtils.m; sourceTree = ""; }; + 46EB2E00002680 /* CodePushUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CodePushUtils.m; path = ios/CodePush/CodePushUtils.m; sourceTree = ""; }; + 46EB2E00002690 /* RCTConvert+CodePushInstallMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushInstallMode.m"; path = "ios/CodePush/RCTConvert+CodePushInstallMode.m"; sourceTree = ""; }; + 46EB2E000026A0 /* RCTConvert+CodePushUpdateState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushUpdateState.m"; path = "ios/CodePush/RCTConvert+CodePushUpdateState.m"; sourceTree = ""; }; + 46EB2E000026B0 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + 46EB2E000026C0 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; + 46EB2E000026D0 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + 46EB2E000026E0 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + 46EB2E000026F0 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 46EB2E00002700 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + 46EB2E00002710 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; + 46EB2E00002720 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; + 46EB2E00002730 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; + 46EB2E00002740 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + 46EB2E00002750 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; + 46EB2E00002760 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; + 46EB2E00002770 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + 46EB2E00002780 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; + 46EB2E00002790 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + 46EB2E000027A0 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 46EB2E000027B0 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + 46EB2E000027C0 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; + 46EB2E000027D0 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 46EB2E000027E0 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 46EB2E00002800 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; + 46EB2E00002810 /* ABTConditionalUserPropertyController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTConditionalUserPropertyController.h; path = FirebaseABTesting/Sources/ABTConditionalUserPropertyController.h; sourceTree = ""; }; + 46EB2E00002820 /* ABTConditionalUserPropertyController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ABTConditionalUserPropertyController.m; path = FirebaseABTesting/Sources/ABTConditionalUserPropertyController.m; sourceTree = ""; }; + 46EB2E00002830 /* ABTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTConstants.h; path = FirebaseABTesting/Sources/ABTConstants.h; sourceTree = ""; }; + 46EB2E00002840 /* ABTExperimentPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ABTExperimentPayload.m; path = FirebaseABTesting/Sources/ABTExperimentPayload.m; sourceTree = ""; }; + 46EB2E00002850 /* FIRExperimentController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExperimentController.m; path = FirebaseABTesting/Sources/FIRExperimentController.m; sourceTree = ""; }; + 46EB2E00002860 /* FIRLifecycleEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLifecycleEvents.m; path = FirebaseABTesting/Sources/FIRLifecycleEvents.m; sourceTree = ""; }; + 46EB2E00002870 /* ABTExperimentPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTExperimentPayload.h; path = FirebaseABTesting/Sources/Private/ABTExperimentPayload.h; sourceTree = ""; }; + 46EB2E00002880 /* FirebaseABTestingInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTestingInternal.h; path = FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h; sourceTree = ""; }; + 46EB2E00002890 /* FirebaseABTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTesting.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FirebaseABTesting.h; sourceTree = ""; }; + 46EB2E000028A0 /* FIRExperimentController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExperimentController.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FIRExperimentController.h; sourceTree = ""; }; + 46EB2E000028B0 /* FIRLifecycleEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLifecycleEvents.h; path = FirebaseABTesting/Sources/Public/FirebaseABTesting/FIRLifecycleEvents.h; sourceTree = ""; }; + 46EB2E000028C0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 46EB2E000028D0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; + 46EB2E000028E0 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 46EB2E000028F0 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; + 46EB2E00002900 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00002910 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00002920 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00002930 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00002940 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00002950 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00002960 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00002970 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00002980 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00002990 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E000029A0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E000029B0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E000029C0 /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; + 46EB2E000029D0 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; + 46EB2E000029E0 /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; + 46EB2E000029F0 /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; + 46EB2E00002A00 /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; + 46EB2E00002A10 /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; + 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; + 46EB2E00002A30 /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; + 46EB2E00002A40 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; + 46EB2E00002A50 /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; + 46EB2E00002A60 /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; + 46EB2E00002A70 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; + 46EB2E00002A80 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; + 46EB2E00002A90 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; + 46EB2E00002AA0 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; + 46EB2E00002AB0 /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; + 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; + 46EB2E00002AD0 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; + 46EB2E00002AE0 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; + 46EB2E00002AF0 /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; + 46EB2E00002B00 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; + 46EB2E00002B10 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; + 46EB2E00002B20 /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; + 46EB2E00002B30 /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; + 46EB2E00002B40 /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; + 46EB2E00002B50 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; + 46EB2E00002B60 /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; + 46EB2E00002B70 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; + 46EB2E00002B80 /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; + 46EB2E00002B90 /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; + 46EB2E00002BA0 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; + 46EB2E00002BB0 /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; + 46EB2E00002BC0 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; + 46EB2E00002BD0 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; + 46EB2E00002BE0 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; + 46EB2E00002BF0 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; + 46EB2E00002C00 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; + 46EB2E00002C10 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; + 46EB2E00002C20 /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; + 46EB2E00002C30 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; + 46EB2E00002C40 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; + 46EB2E00002C50 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; + 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; + 46EB2E00002C70 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; + 46EB2E00002C80 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; + 46EB2E00002C90 /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; + 46EB2E00002CA0 /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; + 46EB2E00002CB0 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; + 46EB2E00002CC0 /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; + 46EB2E00002CD0 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; + 46EB2E00002CE0 /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; + 46EB2E00002CF0 /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; + 46EB2E00002D00 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; + 46EB2E00002D10 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; + 46EB2E00002D20 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; + 46EB2E00002D30 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; + 46EB2E00002D40 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; + 46EB2E00002D50 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; + 46EB2E00002D60 /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; + 46EB2E00002D70 /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; + 46EB2E00002D80 /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; + 46EB2E00002D90 /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; + 46EB2E00002DA0 /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; + 46EB2E00002DB0 /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; + 46EB2E00002DC0 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; + 46EB2E00002DD0 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; + 46EB2E00002DE0 /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; + 46EB2E00002DF0 /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; + 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; + 46EB2E00002E10 /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; + 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; + 46EB2E00002E30 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; + 46EB2E00002E40 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; + 46EB2E00002E50 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; + 46EB2E00002E60 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; + 46EB2E00002E70 /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; + 46EB2E00002E80 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; + 46EB2E00002E90 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; + 46EB2E00002EA0 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; + 46EB2E00002EB0 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; + 46EB2E00002EC0 /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; + 46EB2E00002ED0 /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; + 46EB2E00002EE0 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; + 46EB2E00002EF0 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; + 46EB2E00002F00 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; + 46EB2E00002F10 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; + 46EB2E00002F20 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; + 46EB2E00002F30 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; + 46EB2E00002F40 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; + 46EB2E00002F50 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; + 46EB2E00002F60 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; + 46EB2E00002F70 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; + 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; + 46EB2E00002F90 /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; + 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; + 46EB2E00002FB0 /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; + 46EB2E00002FC0 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; + 46EB2E00002FD0 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; + 46EB2E00002FE0 /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; + 46EB2E00002FF0 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; + 46EB2E00003000 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; + 46EB2E00003010 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; + 46EB2E00003020 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; + 46EB2E00003030 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; + 46EB2E00003040 /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; + 46EB2E00003050 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; + 46EB2E00003060 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; + 46EB2E00003070 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; + 46EB2E00003080 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; + 46EB2E00003090 /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; + 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; + 46EB2E000030B0 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; + 46EB2E000030C0 /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; + 46EB2E000030D0 /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; + 46EB2E000030E0 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; + 46EB2E000030F0 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; + 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; + 46EB2E00003110 /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; + 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; + 46EB2E00003130 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; + 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; + 46EB2E00003150 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; + 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; + 46EB2E00003170 /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; + 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; + 46EB2E00003190 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; + 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; + 46EB2E000031B0 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; + 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; + 46EB2E000031D0 /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; + 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; + 46EB2E000031F0 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; + 46EB2E00003200 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; + 46EB2E00003210 /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; + 46EB2E00003220 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; + 46EB2E00003230 /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; + 46EB2E00003240 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; + 46EB2E00003250 /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; + 46EB2E00003260 /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; + 46EB2E00003270 /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; + 46EB2E00003280 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; + 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; + 46EB2E000032A0 /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; + 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; + 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; + 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; + 46EB2E000032E0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; + 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; + 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; + 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; + 46EB2E00003320 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; + 46EB2E00003330 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; + 46EB2E00003340 /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; + 46EB2E00003350 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + 46EB2E00003360 /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; + 46EB2E00003370 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; + 46EB2E00003380 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; + 46EB2E00003390 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; + 46EB2E000033A0 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; + 46EB2E000033B0 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; + 46EB2E000033C0 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; + 46EB2E000033D0 /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; + 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + 46EB2E000033F0 /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; + 46EB2E00003400 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; + 46EB2E00003410 /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; + 46EB2E00003420 /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; + 46EB2E00003430 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; + 46EB2E00003440 /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; + 46EB2E00003450 /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; + 46EB2E00003460 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; + 46EB2E00003470 /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; + 46EB2E00003480 /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; + 46EB2E00003490 /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; + 46EB2E000034A0 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; + 46EB2E000034B0 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; + 46EB2E000034C0 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; + 46EB2E000034D0 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; + 46EB2E000034E0 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; + 46EB2E000034F0 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; + 46EB2E00003500 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; + 46EB2E00003510 /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; + 46EB2E00003520 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; + 46EB2E00003530 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; + 46EB2E00003540 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; + 46EB2E00003550 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; + 46EB2E00003560 /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; + 46EB2E00003570 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; + 46EB2E00003580 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; + 46EB2E00003590 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; + 46EB2E000035A0 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; + 46EB2E000035B0 /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; + 46EB2E000035C0 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; + 46EB2E000035D0 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; + 46EB2E000035E0 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; + 46EB2E000035F0 /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; + 46EB2E00003600 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; + 46EB2E00003610 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; + 46EB2E00003620 /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; + 46EB2E00003630 /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; + 46EB2E00003640 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; + 46EB2E00003650 /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; + 46EB2E00003660 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; + 46EB2E00003670 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; + 46EB2E00003680 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; + 46EB2E00003690 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; + 46EB2E000036A0 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; + 46EB2E000036B0 /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; + 46EB2E000036C0 /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; + 46EB2E000036D0 /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; + 46EB2E000036E0 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; + 46EB2E000036F0 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; + 46EB2E00003700 /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; + 46EB2E00003710 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; + 46EB2E00003720 /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; + 46EB2E00003730 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; + 46EB2E00003740 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; + 46EB2E00003750 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; + 46EB2E00003760 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; + 46EB2E00003770 /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; + 46EB2E00003780 /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; + 46EB2E00003790 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; + 46EB2E000037A0 /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; + 46EB2E000037B0 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; + 46EB2E000037C0 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; + 46EB2E000037D0 /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; + 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; + 46EB2E000037F0 /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; + 46EB2E00003800 /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; + 46EB2E00003810 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; + 46EB2E00003820 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; + 46EB2E00003830 /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; + 46EB2E00003840 /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; + 46EB2E00003850 /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; + 46EB2E00003860 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; + 46EB2E00003870 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; + 46EB2E00003880 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; + 46EB2E00003890 /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; + 46EB2E000038A0 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; + 46EB2E000038B0 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; + 46EB2E000038C0 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; + 46EB2E000038D0 /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; + 46EB2E000038E0 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; + 46EB2E000038F0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00003900 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00003910 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00003920 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00003930 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00003940 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00003950 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00003960 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00003970 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00003980 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00003990 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E000039A0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E000039B0 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 46EB2E000039C0 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + 46EB2E000039D0 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + 46EB2E000039E0 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + 46EB2E000039F0 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; + 46EB2E00003A00 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + 46EB2E00003A10 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 46EB2E00003A20 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + 46EB2E00003A30 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + 46EB2E00003A40 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + 46EB2E00003A50 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; + 46EB2E00003A60 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + 46EB2E00003A70 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; + 46EB2E00003A80 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; + 46EB2E00003A90 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; + 46EB2E00003AA0 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; + 46EB2E00003AB0 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; + 46EB2E00003AC0 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + 46EB2E00003AD0 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; + 46EB2E00003AE0 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + 46EB2E00003AF0 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; + 46EB2E00003B00 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; + 46EB2E00003B10 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; + 46EB2E00003B20 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; + 46EB2E00003B30 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; + 46EB2E00003B40 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + 46EB2E00003B50 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; + 46EB2E00003B60 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; + 46EB2E00003B70 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; + 46EB2E00003B80 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00003B90 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00003BA0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00003BB0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00003BC0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00003BD0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00003BE0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00003BF0 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00003C00 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00003C10 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00003C20 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00003C30 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00003C40 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + 46EB2E00003C50 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + 46EB2E00003C60 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; + 46EB2E00003C70 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + 46EB2E00003C80 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; + 46EB2E00003C90 /* FIRCoreDiagnostics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnostics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h; sourceTree = ""; }; + 46EB2E00003CA0 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + 46EB2E00003CB0 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + 46EB2E00003CC0 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseCore/Extension/dummy.m; sourceTree = ""; }; + 46EB2E00003CD0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00003CE0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00003CF0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00003D00 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00003D10 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00003D20 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00003D30 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00003D40 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00003D50 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00003D60 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00003D70 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00003D80 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00003D90 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; + 46EB2E00003DA0 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; + 46EB2E00003DB0 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; + 46EB2E00003DC0 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + 46EB2E00003DD0 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; + 46EB2E00003DE0 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; + 46EB2E00003DF0 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; + 46EB2E00003E00 /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; + 46EB2E00003E10 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; + 46EB2E00003E20 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; + 46EB2E00003E30 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; + 46EB2E00003E40 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; + 46EB2E00003E50 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; + 46EB2E00003E60 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; + 46EB2E00003E70 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; + 46EB2E00003E80 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; + 46EB2E00003E90 /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; + 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; + 46EB2E00003EB0 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; + 46EB2E00003EC0 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; + 46EB2E00003ED0 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; + 46EB2E00003EE0 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; + 46EB2E00003EF0 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; + 46EB2E00003F00 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; + 46EB2E00003F10 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; + 46EB2E00003F20 /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; + 46EB2E00003F30 /* FIRCLSAnalyticsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAnalyticsManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.h; sourceTree = ""; }; + 46EB2E00003F40 /* FIRCLSAnalyticsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAnalyticsManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.m; sourceTree = ""; }; + 46EB2E00003F50 /* FIRCLSExistingReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.h; sourceTree = ""; }; + 46EB2E00003F60 /* FIRCLSExistingReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExistingReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.m; sourceTree = ""; }; + 46EB2E00003F70 /* FIRCLSManagerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSManagerData.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.h; sourceTree = ""; }; + 46EB2E00003F80 /* FIRCLSManagerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSManagerData.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.m; sourceTree = ""; }; + 46EB2E00003F90 /* FIRCLSMetricKitManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMetricKitManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.h; sourceTree = ""; }; + 46EB2E00003FA0 /* FIRCLSMetricKitManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMetricKitManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.m; sourceTree = ""; }; + 46EB2E00003FB0 /* FIRCLSNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNotificationManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.h; sourceTree = ""; }; + 46EB2E00003FC0 /* FIRCLSNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNotificationManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.m; sourceTree = ""; }; + 46EB2E00003FD0 /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; + 46EB2E00003FE0 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; + 46EB2E00003FF0 /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; + 46EB2E00004000 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; + 46EB2E00004010 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; + 46EB2E00004020 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; + 46EB2E00004030 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; + 46EB2E00004040 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; + 46EB2E00004050 /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; + 46EB2E00004060 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; + 46EB2E00004070 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; + 46EB2E00004080 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; + 46EB2E00004090 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; + 46EB2E000040A0 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; + 46EB2E000040B0 /* FIRCrashlyticsReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlyticsReport.m; path = Crashlytics/Crashlytics/FIRCrashlyticsReport.m; sourceTree = ""; }; + 46EB2E000040C0 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; + 46EB2E000040D0 /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; + 46EB2E000040E0 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; + 46EB2E000040F0 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; + 46EB2E00004100 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; + 46EB2E00004110 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; + 46EB2E00004120 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; + 46EB2E00004130 /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; + 46EB2E00004140 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; + 46EB2E00004150 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; + 46EB2E00004160 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; + 46EB2E00004170 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; + 46EB2E00004180 /* FIRCLSCallStackTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCallStackTree.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.h; sourceTree = ""; }; + 46EB2E00004190 /* FIRCLSCallStackTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCallStackTree.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.m; sourceTree = ""; }; + 46EB2E000041A0 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; + 46EB2E000041B0 /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; + 46EB2E000041C0 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; + 46EB2E000041D0 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; + 46EB2E000041E0 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; + 46EB2E000041F0 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; + 46EB2E00004200 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; + 46EB2E00004210 /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; + 46EB2E00004220 /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; + 46EB2E00004230 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; + 46EB2E00004240 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; + 46EB2E00004250 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; + 46EB2E00004260 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; + 46EB2E00004270 /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; + 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; + 46EB2E00004290 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; + 46EB2E000042A0 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; + 46EB2E000042B0 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; + 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; + 46EB2E000042D0 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; + 46EB2E000042E0 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; + 46EB2E000042F0 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; + 46EB2E00004300 /* FIRCLSLaunchMarkerModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLaunchMarkerModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.h; sourceTree = ""; }; + 46EB2E00004310 /* FIRCLSLaunchMarkerModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLaunchMarkerModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.m; sourceTree = ""; }; + 46EB2E00004320 /* FIRCLSOnDemandModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.h; sourceTree = ""; }; + 46EB2E00004330 /* FIRCLSOnDemandModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnDemandModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.m; sourceTree = ""; }; + 46EB2E00004340 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; + 46EB2E00004350 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; + 46EB2E00004360 /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; + 46EB2E00004370 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; + 46EB2E00004380 /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; + 46EB2E00004390 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; + 46EB2E000043A0 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; + 46EB2E000043B0 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; + 46EB2E000043C0 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; + 46EB2E000043D0 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; + 46EB2E000043E0 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; + 46EB2E000043F0 /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; + 46EB2E00004400 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; + 46EB2E00004410 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; + 46EB2E00004420 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; + 46EB2E00004430 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; + 46EB2E00004440 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; + 46EB2E00004450 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; + 46EB2E00004460 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; + 46EB2E00004470 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; + 46EB2E00004480 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; + 46EB2E00004490 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; + 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; + 46EB2E000044B0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; + 46EB2E000044C0 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; + 46EB2E000044D0 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; + 46EB2E000044E0 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; + 46EB2E000044F0 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; + 46EB2E00004500 /* FIRCLSExistingReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSExistingReportManager_Private.h; sourceTree = ""; }; + 46EB2E00004510 /* FIRCLSOnDemandModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSOnDemandModel_Private.h; sourceTree = ""; }; + 46EB2E00004520 /* FIRCrashlyticsReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport_Private.h; path = Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h; sourceTree = ""; }; + 46EB2E00004530 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; + 46EB2E00004540 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; + 46EB2E00004550 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlytics.h; sourceTree = ""; }; + 46EB2E00004560 /* FIRCrashlyticsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h; sourceTree = ""; }; + 46EB2E00004570 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FirebaseCrashlytics.h; sourceTree = ""; }; + 46EB2E00004580 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRExceptionModel.h; sourceTree = ""; }; + 46EB2E00004590 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRStackFrame.h; sourceTree = ""; }; + 46EB2E000045A0 /* FIRCLSSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.h; sourceTree = ""; }; + 46EB2E000045B0 /* FIRCLSSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.m; sourceTree = ""; }; + 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; + 46EB2E000045D0 /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; + 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; + 46EB2E000045F0 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; + 46EB2E00004600 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; + 46EB2E00004610 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; + 46EB2E00004620 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; + 46EB2E00004630 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; + 46EB2E00004640 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; + 46EB2E00004650 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; + 46EB2E00004660 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; + 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; + 46EB2E00004680 /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; + 46EB2E00004690 /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; + 46EB2E000046A0 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; + 46EB2E000046B0 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; + 46EB2E000046C0 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; + 46EB2E000046D0 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; + 46EB2E000046E0 /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; + 46EB2E000046F0 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; + 46EB2E00004700 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; + 46EB2E00004710 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; + 46EB2E00004720 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; + 46EB2E00004730 /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; + 46EB2E00004740 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; + 46EB2E00004750 /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; + 46EB2E00004760 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; + 46EB2E00004770 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; + 46EB2E00004780 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; + 46EB2E00004790 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; + 46EB2E000047A0 /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; + 46EB2E000047B0 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; + 46EB2E000047C0 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; + 46EB2E000047D0 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; + 46EB2E000047E0 /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; + 46EB2E000047F0 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; + 46EB2E00004800 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; + 46EB2E00004810 /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; + 46EB2E00004820 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; + 46EB2E00004830 /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; + 46EB2E00004840 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; + 46EB2E00004850 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; + 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; + 46EB2E00004870 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; + 46EB2E00004880 /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; + 46EB2E00004890 /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; + 46EB2E000048A0 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; + 46EB2E000048B0 /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; + 46EB2E000048C0 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; + 46EB2E000048D0 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; + 46EB2E000048E0 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; + 46EB2E000048F0 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; + 46EB2E00004900 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; + 46EB2E00004910 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; + 46EB2E00004920 /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; + 46EB2E00004930 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; + 46EB2E00004940 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; + 46EB2E00004950 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00004960 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00004970 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00004980 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00004990 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E000049A0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E000049B0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E000049C0 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E000049D0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E000049E0 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E000049F0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00004A00 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00004A10 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 46EB2E00004A20 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 46EB2E00004A30 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; + 46EB2E00004A40 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 46EB2E00004A50 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; + 46EB2E00004A60 /* FIRDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabase.m; path = FirebaseDatabase/Sources/Api/FIRDatabase.m; sourceTree = ""; }; + 46EB2E00004A70 /* FIRDatabaseComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseComponent.h; path = FirebaseDatabase/Sources/Api/FIRDatabaseComponent.h; sourceTree = ""; }; + 46EB2E00004A80 /* FIRDatabaseComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseComponent.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseComponent.m; sourceTree = ""; }; + 46EB2E00004A90 /* FIRDatabaseConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConfig.h; path = FirebaseDatabase/Sources/Api/FIRDatabaseConfig.h; sourceTree = ""; }; + 46EB2E00004AA0 /* FIRDatabaseConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseConfig.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseConfig.m; sourceTree = ""; }; + 46EB2E00004AB0 /* FIRDatabaseQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseQuery.m; path = FirebaseDatabase/Sources/Api/FIRDatabaseQuery.m; sourceTree = ""; }; + 46EB2E00004AC0 /* FIRDataSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDataSnapshot.m; path = FirebaseDatabase/Sources/Api/FIRDataSnapshot.m; sourceTree = ""; }; + 46EB2E00004AD0 /* FIRMutableData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMutableData.m; path = FirebaseDatabase/Sources/Api/FIRMutableData.m; sourceTree = ""; }; + 46EB2E00004AE0 /* FIRServerValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRServerValue.m; path = FirebaseDatabase/Sources/Api/FIRServerValue.m; sourceTree = ""; }; + 46EB2E00004AF0 /* FIRTransactionResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTransactionResult.m; path = FirebaseDatabase/Sources/Api/FIRTransactionResult.m; sourceTree = ""; }; + 46EB2E00004B00 /* FIRDatabaseQuery_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQuery_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabaseQuery_Private.h; sourceTree = ""; }; + 46EB2E00004B10 /* FIRDatabaseReference_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseReference_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabaseReference_Private.h; sourceTree = ""; }; + 46EB2E00004B20 /* FIRDatabase_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabase_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDatabase_Private.h; sourceTree = ""; }; + 46EB2E00004B30 /* FIRDataSnapshot_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataSnapshot_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRDataSnapshot_Private.h; sourceTree = ""; }; + 46EB2E00004B40 /* FIRMutableData_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMutableData_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRMutableData_Private.h; sourceTree = ""; }; + 46EB2E00004B50 /* FIRTransactionResult_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionResult_Private.h; path = FirebaseDatabase/Sources/Api/Private/FIRTransactionResult_Private.h; sourceTree = ""; }; + 46EB2E00004B60 /* FTypedefs_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTypedefs_Private.h; path = FirebaseDatabase/Sources/Api/Private/FTypedefs_Private.h; sourceTree = ""; }; + 46EB2E00004B70 /* FConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FConstants.h; path = FirebaseDatabase/Sources/Constants/FConstants.h; sourceTree = ""; }; + 46EB2E00004B80 /* FConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FConstants.m; path = FirebaseDatabase/Sources/Constants/FConstants.m; sourceTree = ""; }; + 46EB2E00004B90 /* FCompoundHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompoundHash.h; path = FirebaseDatabase/Sources/Core/FCompoundHash.h; sourceTree = ""; }; + 46EB2E00004BA0 /* FCompoundHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCompoundHash.m; path = FirebaseDatabase/Sources/Core/FCompoundHash.m; sourceTree = ""; }; + 46EB2E00004BB0 /* FListenProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FListenProvider.h; path = FirebaseDatabase/Sources/Core/FListenProvider.h; sourceTree = ""; }; + 46EB2E00004BC0 /* FListenProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FListenProvider.m; path = FirebaseDatabase/Sources/Core/FListenProvider.m; sourceTree = ""; }; + 46EB2E00004BD0 /* FPersistentConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPersistentConnection.h; path = FirebaseDatabase/Sources/Core/FPersistentConnection.h; sourceTree = ""; }; + 46EB2E00004BE0 /* FPersistentConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPersistentConnection.m; path = FirebaseDatabase/Sources/Core/FPersistentConnection.m; sourceTree = ""; }; + 46EB2E00004BF0 /* FQueryParams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FQueryParams.h; path = FirebaseDatabase/Sources/Core/FQueryParams.h; sourceTree = ""; }; + 46EB2E00004C00 /* FQueryParams.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FQueryParams.m; path = FirebaseDatabase/Sources/Core/FQueryParams.m; sourceTree = ""; }; + 46EB2E00004C10 /* FQuerySpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FQuerySpec.h; path = FirebaseDatabase/Sources/Core/FQuerySpec.h; sourceTree = ""; }; + 46EB2E00004C20 /* FQuerySpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FQuerySpec.m; path = FirebaseDatabase/Sources/Core/FQuerySpec.m; sourceTree = ""; }; + 46EB2E00004C30 /* FRangeMerge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRangeMerge.h; path = FirebaseDatabase/Sources/Core/FRangeMerge.h; sourceTree = ""; }; + 46EB2E00004C40 /* FRangeMerge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRangeMerge.m; path = FirebaseDatabase/Sources/Core/FRangeMerge.m; sourceTree = ""; }; + 46EB2E00004C50 /* FRepo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepo.h; path = FirebaseDatabase/Sources/Core/FRepo.h; sourceTree = ""; }; + 46EB2E00004C60 /* FRepo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepo.m; path = FirebaseDatabase/Sources/Core/FRepo.m; sourceTree = ""; }; + 46EB2E00004C70 /* FRepoInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepoInfo.h; path = FirebaseDatabase/Sources/Core/FRepoInfo.h; sourceTree = ""; }; + 46EB2E00004C80 /* FRepoInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepoInfo.m; path = FirebaseDatabase/Sources/Core/FRepoInfo.m; sourceTree = ""; }; + 46EB2E00004C90 /* FRepoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepoManager.h; path = FirebaseDatabase/Sources/Core/FRepoManager.h; sourceTree = ""; }; + 46EB2E00004CA0 /* FRepoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRepoManager.m; path = FirebaseDatabase/Sources/Core/FRepoManager.m; sourceTree = ""; }; + 46EB2E00004CB0 /* FRepo_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRepo_Private.h; path = FirebaseDatabase/Sources/Core/FRepo_Private.h; sourceTree = ""; }; + 46EB2E00004CC0 /* FServerValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FServerValues.h; path = FirebaseDatabase/Sources/Core/FServerValues.h; sourceTree = ""; }; + 46EB2E00004CD0 /* FServerValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FServerValues.m; path = FirebaseDatabase/Sources/Core/FServerValues.m; sourceTree = ""; }; + 46EB2E00004CE0 /* FSnapshotHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSnapshotHolder.h; path = FirebaseDatabase/Sources/Core/FSnapshotHolder.h; sourceTree = ""; }; + 46EB2E00004CF0 /* FSnapshotHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSnapshotHolder.m; path = FirebaseDatabase/Sources/Core/FSnapshotHolder.m; sourceTree = ""; }; + 46EB2E00004D00 /* FSparseSnapshotTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSparseSnapshotTree.h; path = FirebaseDatabase/Sources/Core/FSparseSnapshotTree.h; sourceTree = ""; }; + 46EB2E00004D10 /* FSparseSnapshotTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSparseSnapshotTree.m; path = FirebaseDatabase/Sources/Core/FSparseSnapshotTree.m; sourceTree = ""; }; + 46EB2E00004D20 /* FSyncPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSyncPoint.h; path = FirebaseDatabase/Sources/Core/FSyncPoint.h; sourceTree = ""; }; + 46EB2E00004D30 /* FSyncPoint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSyncPoint.m; path = FirebaseDatabase/Sources/Core/FSyncPoint.m; sourceTree = ""; }; + 46EB2E00004D40 /* FSyncTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSyncTree.h; path = FirebaseDatabase/Sources/Core/FSyncTree.h; sourceTree = ""; }; + 46EB2E00004D50 /* FSyncTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSyncTree.m; path = FirebaseDatabase/Sources/Core/FSyncTree.m; sourceTree = ""; }; + 46EB2E00004D60 /* FWriteRecord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteRecord.h; path = FirebaseDatabase/Sources/Core/FWriteRecord.h; sourceTree = ""; }; + 46EB2E00004D70 /* FWriteRecord.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteRecord.m; path = FirebaseDatabase/Sources/Core/FWriteRecord.m; sourceTree = ""; }; + 46EB2E00004D80 /* FWriteTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteTree.h; path = FirebaseDatabase/Sources/Core/FWriteTree.h; sourceTree = ""; }; + 46EB2E00004D90 /* FWriteTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteTree.m; path = FirebaseDatabase/Sources/Core/FWriteTree.m; sourceTree = ""; }; + 46EB2E00004DA0 /* FWriteTreeRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWriteTreeRef.h; path = FirebaseDatabase/Sources/Core/FWriteTreeRef.h; sourceTree = ""; }; + 46EB2E00004DB0 /* FWriteTreeRef.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWriteTreeRef.m; path = FirebaseDatabase/Sources/Core/FWriteTreeRef.m; sourceTree = ""; }; + 46EB2E00004DC0 /* FAckUserWrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FAckUserWrite.h; path = FirebaseDatabase/Sources/Core/Operation/FAckUserWrite.h; sourceTree = ""; }; + 46EB2E00004DD0 /* FAckUserWrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FAckUserWrite.m; path = FirebaseDatabase/Sources/Core/Operation/FAckUserWrite.m; sourceTree = ""; }; + 46EB2E00004DE0 /* FMerge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMerge.h; path = FirebaseDatabase/Sources/Core/Operation/FMerge.h; sourceTree = ""; }; + 46EB2E00004DF0 /* FMerge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMerge.m; path = FirebaseDatabase/Sources/Core/Operation/FMerge.m; sourceTree = ""; }; + 46EB2E00004E00 /* FOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOperation.h; path = FirebaseDatabase/Sources/Core/Operation/FOperation.h; sourceTree = ""; }; + 46EB2E00004E10 /* FOperationSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOperationSource.h; path = FirebaseDatabase/Sources/Core/Operation/FOperationSource.h; sourceTree = ""; }; + 46EB2E00004E20 /* FOperationSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FOperationSource.m; path = FirebaseDatabase/Sources/Core/Operation/FOperationSource.m; sourceTree = ""; }; + 46EB2E00004E30 /* FOverwrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FOverwrite.h; path = FirebaseDatabase/Sources/Core/Operation/FOverwrite.h; sourceTree = ""; }; + 46EB2E00004E40 /* FOverwrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FOverwrite.m; path = FirebaseDatabase/Sources/Core/Operation/FOverwrite.m; sourceTree = ""; }; + 46EB2E00004E50 /* FImmutableTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableTree.h; path = FirebaseDatabase/Sources/Core/Utilities/FImmutableTree.h; sourceTree = ""; }; + 46EB2E00004E60 /* FImmutableTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableTree.m; path = FirebaseDatabase/Sources/Core/Utilities/FImmutableTree.m; sourceTree = ""; }; + 46EB2E00004E70 /* FIRRetryHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRetryHelper.h; path = FirebaseDatabase/Sources/Core/Utilities/FIRRetryHelper.h; sourceTree = ""; }; + 46EB2E00004E80 /* FIRRetryHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRetryHelper.m; path = FirebaseDatabase/Sources/Core/Utilities/FIRRetryHelper.m; sourceTree = ""; }; + 46EB2E00004E90 /* FPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPath.h; path = FirebaseDatabase/Sources/Core/Utilities/FPath.h; sourceTree = ""; }; + 46EB2E00004EA0 /* FPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPath.m; path = FirebaseDatabase/Sources/Core/Utilities/FPath.m; sourceTree = ""; }; + 46EB2E00004EB0 /* FTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTree.h; path = FirebaseDatabase/Sources/Core/Utilities/FTree.h; sourceTree = ""; }; + 46EB2E00004EC0 /* FTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTree.m; path = FirebaseDatabase/Sources/Core/Utilities/FTree.m; sourceTree = ""; }; + 46EB2E00004ED0 /* FTreeNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeNode.h; path = FirebaseDatabase/Sources/Core/Utilities/FTreeNode.h; sourceTree = ""; }; + 46EB2E00004EE0 /* FTreeNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeNode.m; path = FirebaseDatabase/Sources/Core/Utilities/FTreeNode.m; sourceTree = ""; }; + 46EB2E00004EF0 /* FCacheNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCacheNode.h; path = FirebaseDatabase/Sources/Core/View/FCacheNode.h; sourceTree = ""; }; + 46EB2E00004F00 /* FCacheNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCacheNode.m; path = FirebaseDatabase/Sources/Core/View/FCacheNode.m; sourceTree = ""; }; + 46EB2E00004F10 /* FCancelEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCancelEvent.h; path = FirebaseDatabase/Sources/Core/View/FCancelEvent.h; sourceTree = ""; }; + 46EB2E00004F20 /* FCancelEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCancelEvent.m; path = FirebaseDatabase/Sources/Core/View/FCancelEvent.m; sourceTree = ""; }; + 46EB2E00004F30 /* FChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChange.h; path = FirebaseDatabase/Sources/Core/View/FChange.h; sourceTree = ""; }; + 46EB2E00004F40 /* FChange.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChange.m; path = FirebaseDatabase/Sources/Core/View/FChange.m; sourceTree = ""; }; + 46EB2E00004F50 /* FChildEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FChildEventRegistration.h; sourceTree = ""; }; + 46EB2E00004F60 /* FChildEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FChildEventRegistration.m; sourceTree = ""; }; + 46EB2E00004F70 /* FDataEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FDataEvent.h; path = FirebaseDatabase/Sources/Core/View/FDataEvent.h; sourceTree = ""; }; + 46EB2E00004F80 /* FDataEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FDataEvent.m; path = FirebaseDatabase/Sources/Core/View/FDataEvent.m; sourceTree = ""; }; + 46EB2E00004F90 /* FEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEvent.h; path = FirebaseDatabase/Sources/Core/View/FEvent.h; sourceTree = ""; }; + 46EB2E00004FA0 /* FEventRaiser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventRaiser.h; path = FirebaseDatabase/Sources/Core/View/FEventRaiser.h; sourceTree = ""; }; + 46EB2E00004FB0 /* FEventRaiser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventRaiser.m; path = FirebaseDatabase/Sources/Core/View/FEventRaiser.m; sourceTree = ""; }; + 46EB2E00004FC0 /* FEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FEventRegistration.h; sourceTree = ""; }; + 46EB2E00004FD0 /* FChildChangeAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildChangeAccumulator.h; path = FirebaseDatabase/Sources/Core/View/Filter/FChildChangeAccumulator.h; sourceTree = ""; }; + 46EB2E00004FE0 /* FChildChangeAccumulator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildChangeAccumulator.m; path = FirebaseDatabase/Sources/Core/View/Filter/FChildChangeAccumulator.m; sourceTree = ""; }; + 46EB2E00004FF0 /* FCompleteChildSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompleteChildSource.h; path = FirebaseDatabase/Sources/Core/View/Filter/FCompleteChildSource.h; sourceTree = ""; }; + 46EB2E00005000 /* FIndexedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndexedFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FIndexedFilter.h; sourceTree = ""; }; + 46EB2E00005010 /* FIndexedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndexedFilter.m; path = FirebaseDatabase/Sources/Core/View/Filter/FIndexedFilter.m; sourceTree = ""; }; + 46EB2E00005020 /* FLimitedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLimitedFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FLimitedFilter.h; sourceTree = ""; }; + 46EB2E00005030 /* FLimitedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLimitedFilter.m; path = FirebaseDatabase/Sources/Core/View/Filter/FLimitedFilter.m; sourceTree = ""; }; + 46EB2E00005040 /* FNodeFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNodeFilter.h; path = FirebaseDatabase/Sources/Core/View/Filter/FNodeFilter.h; sourceTree = ""; }; + 46EB2E00005050 /* FKeepSyncedEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKeepSyncedEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FKeepSyncedEventRegistration.h; sourceTree = ""; }; + 46EB2E00005060 /* FKeepSyncedEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKeepSyncedEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FKeepSyncedEventRegistration.m; sourceTree = ""; }; + 46EB2E00005070 /* FValueEventRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValueEventRegistration.h; path = FirebaseDatabase/Sources/Core/View/FValueEventRegistration.h; sourceTree = ""; }; + 46EB2E00005080 /* FValueEventRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValueEventRegistration.m; path = FirebaseDatabase/Sources/Core/View/FValueEventRegistration.m; sourceTree = ""; }; + 46EB2E00005090 /* FView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FView.h; path = FirebaseDatabase/Sources/Core/View/FView.h; sourceTree = ""; }; + 46EB2E000050A0 /* FView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FView.m; path = FirebaseDatabase/Sources/Core/View/FView.m; sourceTree = ""; }; + 46EB2E000050B0 /* FViewCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewCache.h; path = FirebaseDatabase/Sources/Core/View/FViewCache.h; sourceTree = ""; }; + 46EB2E000050C0 /* FViewCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewCache.m; path = FirebaseDatabase/Sources/Core/View/FViewCache.m; sourceTree = ""; }; + 46EB2E000050D0 /* FClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FClock.h; path = FirebaseDatabase/Sources/FClock.h; sourceTree = ""; }; + 46EB2E000050E0 /* FClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FClock.m; path = FirebaseDatabase/Sources/FClock.m; sourceTree = ""; }; + 46EB2E000050F0 /* FEventGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventGenerator.h; path = FirebaseDatabase/Sources/FEventGenerator.h; sourceTree = ""; }; + 46EB2E00005100 /* FEventGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventGenerator.m; path = FirebaseDatabase/Sources/FEventGenerator.m; sourceTree = ""; }; + 46EB2E00005110 /* FIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndex.h; path = FirebaseDatabase/Sources/FIndex.h; sourceTree = ""; }; + 46EB2E00005120 /* FIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndex.m; path = FirebaseDatabase/Sources/FIndex.m; sourceTree = ""; }; + 46EB2E00005130 /* FIRDatabaseConfig_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConfig_Private.h; path = FirebaseDatabase/Sources/FIRDatabaseConfig_Private.h; sourceTree = ""; }; + 46EB2E00005140 /* FIRDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseReference.m; path = FirebaseDatabase/Sources/FIRDatabaseReference.m; sourceTree = ""; }; + 46EB2E00005150 /* FKeyIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKeyIndex.h; path = FirebaseDatabase/Sources/FKeyIndex.h; sourceTree = ""; }; + 46EB2E00005160 /* FKeyIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKeyIndex.m; path = FirebaseDatabase/Sources/FKeyIndex.m; sourceTree = ""; }; + 46EB2E00005170 /* FListenComplete.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FListenComplete.h; path = FirebaseDatabase/Sources/FListenComplete.h; sourceTree = ""; }; + 46EB2E00005180 /* FListenComplete.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FListenComplete.m; path = FirebaseDatabase/Sources/FListenComplete.m; sourceTree = ""; }; + 46EB2E00005190 /* FMaxNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMaxNode.h; path = FirebaseDatabase/Sources/FMaxNode.h; sourceTree = ""; }; + 46EB2E000051A0 /* FMaxNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMaxNode.m; path = FirebaseDatabase/Sources/FMaxNode.m; sourceTree = ""; }; + 46EB2E000051B0 /* FNamedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNamedNode.h; path = FirebaseDatabase/Sources/FNamedNode.h; sourceTree = ""; }; + 46EB2E000051C0 /* FNamedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FNamedNode.m; path = FirebaseDatabase/Sources/FNamedNode.m; sourceTree = ""; }; + 46EB2E000051D0 /* FPathIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPathIndex.h; path = FirebaseDatabase/Sources/FPathIndex.h; sourceTree = ""; }; + 46EB2E000051E0 /* FPathIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPathIndex.m; path = FirebaseDatabase/Sources/FPathIndex.m; sourceTree = ""; }; + 46EB2E000051F0 /* FPriorityIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPriorityIndex.h; path = FirebaseDatabase/Sources/FPriorityIndex.h; sourceTree = ""; }; + 46EB2E00005200 /* FPriorityIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPriorityIndex.m; path = FirebaseDatabase/Sources/FPriorityIndex.m; sourceTree = ""; }; + 46EB2E00005210 /* FRangedFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FRangedFilter.h; path = FirebaseDatabase/Sources/FRangedFilter.h; sourceTree = ""; }; + 46EB2E00005220 /* FRangedFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FRangedFilter.m; path = FirebaseDatabase/Sources/FRangedFilter.m; sourceTree = ""; }; + 46EB2E00005230 /* FTransformedEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTransformedEnumerator.h; path = FirebaseDatabase/Sources/FTransformedEnumerator.h; sourceTree = ""; }; + 46EB2E00005240 /* FTransformedEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTransformedEnumerator.m; path = FirebaseDatabase/Sources/FTransformedEnumerator.m; sourceTree = ""; }; + 46EB2E00005250 /* FValueIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValueIndex.h; path = FirebaseDatabase/Sources/FValueIndex.h; sourceTree = ""; }; + 46EB2E00005260 /* FValueIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValueIndex.m; path = FirebaseDatabase/Sources/FValueIndex.m; sourceTree = ""; }; + 46EB2E00005270 /* FViewProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewProcessor.h; path = FirebaseDatabase/Sources/FViewProcessor.h; sourceTree = ""; }; + 46EB2E00005280 /* FViewProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewProcessor.m; path = FirebaseDatabase/Sources/FViewProcessor.m; sourceTree = ""; }; + 46EB2E00005290 /* FViewProcessorResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FViewProcessorResult.h; path = FirebaseDatabase/Sources/FViewProcessorResult.h; sourceTree = ""; }; + 46EB2E000052A0 /* FViewProcessorResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FViewProcessorResult.m; path = FirebaseDatabase/Sources/FViewProcessorResult.m; sourceTree = ""; }; + 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseConnectionContextProvider.h; path = FirebaseDatabase/Sources/Login/FIRDatabaseConnectionContextProvider.h; sourceTree = ""; }; + 46EB2E000052C0 /* FIRDatabaseConnectionContextProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseConnectionContextProvider.m; path = FirebaseDatabase/Sources/Login/FIRDatabaseConnectionContextProvider.m; sourceTree = ""; }; + 46EB2E000052D0 /* FCachePolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCachePolicy.h; path = FirebaseDatabase/Sources/Persistence/FCachePolicy.h; sourceTree = ""; }; + 46EB2E000052E0 /* FCachePolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCachePolicy.m; path = FirebaseDatabase/Sources/Persistence/FCachePolicy.m; sourceTree = ""; }; + 46EB2E000052F0 /* FLevelDBStorageEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLevelDBStorageEngine.h; path = FirebaseDatabase/Sources/Persistence/FLevelDBStorageEngine.h; sourceTree = ""; }; + 46EB2E00005300 /* FLevelDBStorageEngine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLevelDBStorageEngine.m; path = FirebaseDatabase/Sources/Persistence/FLevelDBStorageEngine.m; sourceTree = ""; }; + 46EB2E00005310 /* FPendingPut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPendingPut.h; path = FirebaseDatabase/Sources/Persistence/FPendingPut.h; sourceTree = ""; }; + 46EB2E00005320 /* FPendingPut.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPendingPut.m; path = FirebaseDatabase/Sources/Persistence/FPendingPut.m; sourceTree = ""; }; + 46EB2E00005330 /* FPersistenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPersistenceManager.h; path = FirebaseDatabase/Sources/Persistence/FPersistenceManager.h; sourceTree = ""; }; + 46EB2E00005340 /* FPersistenceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPersistenceManager.m; path = FirebaseDatabase/Sources/Persistence/FPersistenceManager.m; sourceTree = ""; }; + 46EB2E00005350 /* FPruneForest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPruneForest.h; path = FirebaseDatabase/Sources/Persistence/FPruneForest.h; sourceTree = ""; }; + 46EB2E00005360 /* FPruneForest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPruneForest.m; path = FirebaseDatabase/Sources/Persistence/FPruneForest.m; sourceTree = ""; }; + 46EB2E00005370 /* FStorageEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FStorageEngine.h; path = FirebaseDatabase/Sources/Persistence/FStorageEngine.h; sourceTree = ""; }; + 46EB2E00005380 /* FTrackedQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTrackedQuery.h; path = FirebaseDatabase/Sources/Persistence/FTrackedQuery.h; sourceTree = ""; }; + 46EB2E00005390 /* FTrackedQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTrackedQuery.m; path = FirebaseDatabase/Sources/Persistence/FTrackedQuery.m; sourceTree = ""; }; + 46EB2E000053A0 /* FTrackedQueryManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTrackedQueryManager.h; path = FirebaseDatabase/Sources/Persistence/FTrackedQueryManager.h; sourceTree = ""; }; + 46EB2E000053B0 /* FTrackedQueryManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTrackedQueryManager.m; path = FirebaseDatabase/Sources/Persistence/FTrackedQueryManager.m; sourceTree = ""; }; + 46EB2E000053C0 /* FIRDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabase.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabase.h; sourceTree = ""; }; + 46EB2E000053D0 /* FIRDatabaseQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQuery.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabaseQuery.h; sourceTree = ""; }; + 46EB2E000053E0 /* FIRDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseReference.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDatabaseReference.h; sourceTree = ""; }; + 46EB2E000053F0 /* FIRDataEventType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataEventType.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDataEventType.h; sourceTree = ""; }; + 46EB2E00005400 /* FIRDataSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDataSnapshot.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRDataSnapshot.h; sourceTree = ""; }; + 46EB2E00005410 /* FirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseDatabase.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FirebaseDatabase.h; sourceTree = ""; }; + 46EB2E00005420 /* FIRMutableData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMutableData.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRMutableData.h; sourceTree = ""; }; + 46EB2E00005430 /* FIRServerValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRServerValue.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRServerValue.h; sourceTree = ""; }; + 46EB2E00005440 /* FIRTransactionResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionResult.h; path = FirebaseDatabase/Sources/Public/FirebaseDatabase/FIRTransactionResult.h; sourceTree = ""; }; + 46EB2E00005450 /* FConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FConnection.h; path = FirebaseDatabase/Sources/Realtime/FConnection.h; sourceTree = ""; }; + 46EB2E00005460 /* FConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FConnection.m; path = FirebaseDatabase/Sources/Realtime/FConnection.m; sourceTree = ""; }; + 46EB2E00005470 /* FWebSocketConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FWebSocketConnection.h; path = FirebaseDatabase/Sources/Realtime/FWebSocketConnection.h; sourceTree = ""; }; + 46EB2E00005480 /* FWebSocketConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FWebSocketConnection.m; path = FirebaseDatabase/Sources/Realtime/FWebSocketConnection.m; sourceTree = ""; }; + 46EB2E00005490 /* FChildrenNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FChildrenNode.h; path = FirebaseDatabase/Sources/Snapshot/FChildrenNode.h; sourceTree = ""; }; + 46EB2E000054A0 /* FChildrenNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FChildrenNode.m; path = FirebaseDatabase/Sources/Snapshot/FChildrenNode.m; sourceTree = ""; }; + 46EB2E000054B0 /* FCompoundWrite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FCompoundWrite.h; path = FirebaseDatabase/Sources/Snapshot/FCompoundWrite.h; sourceTree = ""; }; + 46EB2E000054C0 /* FCompoundWrite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FCompoundWrite.m; path = FirebaseDatabase/Sources/Snapshot/FCompoundWrite.m; sourceTree = ""; }; + 46EB2E000054D0 /* FEmptyNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEmptyNode.h; path = FirebaseDatabase/Sources/Snapshot/FEmptyNode.h; sourceTree = ""; }; + 46EB2E000054E0 /* FEmptyNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEmptyNode.m; path = FirebaseDatabase/Sources/Snapshot/FEmptyNode.m; sourceTree = ""; }; + 46EB2E000054F0 /* FIndexedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIndexedNode.h; path = FirebaseDatabase/Sources/Snapshot/FIndexedNode.h; sourceTree = ""; }; + 46EB2E00005500 /* FIndexedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIndexedNode.m; path = FirebaseDatabase/Sources/Snapshot/FIndexedNode.m; sourceTree = ""; }; + 46EB2E00005510 /* FLeafNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLeafNode.h; path = FirebaseDatabase/Sources/Snapshot/FLeafNode.h; sourceTree = ""; }; + 46EB2E00005520 /* FLeafNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLeafNode.m; path = FirebaseDatabase/Sources/Snapshot/FLeafNode.m; sourceTree = ""; }; + 46EB2E00005530 /* FNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNode.h; path = FirebaseDatabase/Sources/Snapshot/FNode.h; sourceTree = ""; }; + 46EB2E00005540 /* FSnapshotUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSnapshotUtilities.h; path = FirebaseDatabase/Sources/Snapshot/FSnapshotUtilities.h; sourceTree = ""; }; + 46EB2E00005550 /* FSnapshotUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSnapshotUtilities.m; path = FirebaseDatabase/Sources/Snapshot/FSnapshotUtilities.m; sourceTree = ""; }; + 46EB2E00005560 /* FArraySortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FArraySortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FArraySortedDictionary.h; sourceTree = ""; }; + 46EB2E00005570 /* FArraySortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FArraySortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FArraySortedDictionary.m; sourceTree = ""; }; + 46EB2E00005580 /* FImmutableSortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableSortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedDictionary.h; sourceTree = ""; }; + 46EB2E00005590 /* FImmutableSortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableSortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedDictionary.m; sourceTree = ""; }; + 46EB2E000055A0 /* FImmutableSortedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FImmutableSortedSet.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedSet.h; sourceTree = ""; }; + 46EB2E000055B0 /* FImmutableSortedSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FImmutableSortedSet.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FImmutableSortedSet.m; sourceTree = ""; }; + 46EB2E000055C0 /* FLLRBEmptyNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBEmptyNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBEmptyNode.h; sourceTree = ""; }; + 46EB2E000055D0 /* FLLRBEmptyNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLLRBEmptyNode.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBEmptyNode.m; sourceTree = ""; }; + 46EB2E000055E0 /* FLLRBNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBNode.h; sourceTree = ""; }; + 46EB2E000055F0 /* FLLRBValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLLRBValueNode.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBValueNode.h; sourceTree = ""; }; + 46EB2E00005600 /* FLLRBValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLLRBValueNode.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FLLRBValueNode.m; sourceTree = ""; }; + 46EB2E00005610 /* FTreeSortedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeSortedDictionary.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionary.h; sourceTree = ""; }; + 46EB2E00005620 /* FTreeSortedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeSortedDictionary.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionary.m; sourceTree = ""; }; + 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTreeSortedDictionaryEnumerator.h; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionaryEnumerator.h; sourceTree = ""; }; + 46EB2E00005640 /* FTreeSortedDictionaryEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTreeSortedDictionaryEnumerator.m; path = FirebaseDatabase/Sources/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionaryEnumerator.m; sourceTree = ""; }; + 46EB2E00005650 /* fbase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fbase64.h; path = FirebaseDatabase/Sources/third_party/SocketRocket/fbase64.h; sourceTree = ""; }; + 46EB2E00005660 /* FSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSRWebSocket.h; path = FirebaseDatabase/Sources/third_party/SocketRocket/FSRWebSocket.h; sourceTree = ""; }; + 46EB2E00005670 /* FSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSRWebSocket.m; path = FirebaseDatabase/Sources/third_party/SocketRocket/FSRWebSocket.m; sourceTree = ""; }; + 46EB2E00005680 /* NSData+SRB64Additions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+SRB64Additions.h"; path = "FirebaseDatabase/Sources/third_party/SocketRocket/NSData+SRB64Additions.h"; sourceTree = ""; }; + 46EB2E00005690 /* NSData+SRB64Additions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+SRB64Additions.m"; path = "FirebaseDatabase/Sources/third_party/SocketRocket/NSData+SRB64Additions.m"; sourceTree = ""; }; + 46EB2E000056A0 /* APLevelDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APLevelDB.h; path = "FirebaseDatabase/Sources/third_party/Wrap-leveldb/APLevelDB.h"; sourceTree = ""; }; + 46EB2E000056B0 /* FAtomicNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FAtomicNumber.h; path = FirebaseDatabase/Sources/Utilities/FAtomicNumber.h; sourceTree = ""; }; + 46EB2E000056C0 /* FAtomicNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FAtomicNumber.m; path = FirebaseDatabase/Sources/Utilities/FAtomicNumber.m; sourceTree = ""; }; + 46EB2E000056D0 /* FEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FEventEmitter.h; path = FirebaseDatabase/Sources/Utilities/FEventEmitter.h; sourceTree = ""; }; + 46EB2E000056E0 /* FEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FEventEmitter.m; path = FirebaseDatabase/Sources/Utilities/FEventEmitter.m; sourceTree = ""; }; + 46EB2E000056F0 /* FNextPushId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FNextPushId.h; path = FirebaseDatabase/Sources/Utilities/FNextPushId.h; sourceTree = ""; }; + 46EB2E00005700 /* FNextPushId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FNextPushId.m; path = FirebaseDatabase/Sources/Utilities/FNextPushId.m; sourceTree = ""; }; + 46EB2E00005710 /* FParsedUrl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FParsedUrl.h; path = FirebaseDatabase/Sources/Utilities/FParsedUrl.h; sourceTree = ""; }; + 46EB2E00005720 /* FParsedUrl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FParsedUrl.m; path = FirebaseDatabase/Sources/Utilities/FParsedUrl.m; sourceTree = ""; }; + 46EB2E00005730 /* FStringUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FStringUtilities.h; path = FirebaseDatabase/Sources/Utilities/FStringUtilities.h; sourceTree = ""; }; + 46EB2E00005740 /* FStringUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FStringUtilities.m; path = FirebaseDatabase/Sources/Utilities/FStringUtilities.m; sourceTree = ""; }; + 46EB2E00005750 /* FTypedefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTypedefs.h; path = FirebaseDatabase/Sources/Utilities/FTypedefs.h; sourceTree = ""; }; + 46EB2E00005760 /* FUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FUtilities.h; path = FirebaseDatabase/Sources/Utilities/FUtilities.h; sourceTree = ""; }; + 46EB2E00005770 /* FUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FUtilities.m; path = FirebaseDatabase/Sources/Utilities/FUtilities.m; sourceTree = ""; }; + 46EB2E00005780 /* FValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FValidation.h; path = FirebaseDatabase/Sources/Utilities/FValidation.h; sourceTree = ""; }; + 46EB2E00005790 /* FValidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FValidation.m; path = FirebaseDatabase/Sources/Utilities/FValidation.m; sourceTree = ""; }; + 46EB2E000057A0 /* FTupleBoolBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleBoolBlock.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleBoolBlock.h; sourceTree = ""; }; + 46EB2E000057B0 /* FTupleBoolBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleBoolBlock.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleBoolBlock.m; sourceTree = ""; }; + 46EB2E000057C0 /* FTupleCallbackStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleCallbackStatus.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleCallbackStatus.h; sourceTree = ""; }; + 46EB2E000057D0 /* FTupleCallbackStatus.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleCallbackStatus.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleCallbackStatus.m; sourceTree = ""; }; + 46EB2E000057E0 /* FTupleFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleFirebase.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleFirebase.h; sourceTree = ""; }; + 46EB2E000057F0 /* FTupleFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleFirebase.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleFirebase.m; sourceTree = ""; }; + 46EB2E00005800 /* FTupleNodePath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleNodePath.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleNodePath.h; sourceTree = ""; }; + 46EB2E00005810 /* FTupleNodePath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleNodePath.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleNodePath.m; sourceTree = ""; }; + 46EB2E00005820 /* FTupleObjectNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleObjectNode.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjectNode.h; sourceTree = ""; }; + 46EB2E00005830 /* FTupleObjectNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleObjectNode.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjectNode.m; sourceTree = ""; }; + 46EB2E00005840 /* FTupleObjects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleObjects.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjects.h; sourceTree = ""; }; + 46EB2E00005850 /* FTupleObjects.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleObjects.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleObjects.m; sourceTree = ""; }; + 46EB2E00005860 /* FTupleOnDisconnect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleOnDisconnect.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleOnDisconnect.h; sourceTree = ""; }; + 46EB2E00005870 /* FTupleOnDisconnect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleOnDisconnect.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleOnDisconnect.m; sourceTree = ""; }; + 46EB2E00005880 /* FTuplePathValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTuplePathValue.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTuplePathValue.h; sourceTree = ""; }; + 46EB2E00005890 /* FTuplePathValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTuplePathValue.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTuplePathValue.m; sourceTree = ""; }; + 46EB2E000058A0 /* FTupleRemovedQueriesEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleRemovedQueriesEvents.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleRemovedQueriesEvents.h; sourceTree = ""; }; + 46EB2E000058B0 /* FTupleRemovedQueriesEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleRemovedQueriesEvents.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleRemovedQueriesEvents.m; sourceTree = ""; }; + 46EB2E000058C0 /* FTupleSetIdPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleSetIdPath.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleSetIdPath.h; sourceTree = ""; }; + 46EB2E000058D0 /* FTupleSetIdPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleSetIdPath.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleSetIdPath.m; sourceTree = ""; }; + 46EB2E000058E0 /* FTupleStringNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleStringNode.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleStringNode.h; sourceTree = ""; }; + 46EB2E000058F0 /* FTupleStringNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleStringNode.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleStringNode.m; sourceTree = ""; }; + 46EB2E00005900 /* FTupleTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleTransaction.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTransaction.h; sourceTree = ""; }; + 46EB2E00005910 /* FTupleTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleTransaction.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTransaction.m; sourceTree = ""; }; + 46EB2E00005920 /* FTupleTSN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleTSN.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTSN.h; sourceTree = ""; }; + 46EB2E00005930 /* FTupleTSN.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleTSN.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleTSN.m; sourceTree = ""; }; + 46EB2E00005940 /* FTupleUserCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FTupleUserCallback.h; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleUserCallback.h; sourceTree = ""; }; + 46EB2E00005950 /* FTupleUserCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FTupleUserCallback.m; path = FirebaseDatabase/Sources/Utilities/Tuples/FTupleUserCallback.m; sourceTree = ""; }; + 46EB2E00005960 /* APLevelDB.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = APLevelDB.mm; path = "FirebaseDatabase/Sources/third_party/Wrap-leveldb/APLevelDB.mm"; sourceTree = ""; }; + 46EB2E00005970 /* fbase64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fbase64.c; path = FirebaseDatabase/Sources/third_party/SocketRocket/fbase64.c; sourceTree = ""; }; + 46EB2E00005980 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 46EB2E00005990 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; + 46EB2E000059A0 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; + 46EB2E000059B0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E000059C0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E000059D0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E000059E0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E000059F0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00005A00 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00005A10 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00005A20 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00005A30 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00005A40 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00005A50 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00005A60 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00005A70 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; + 46EB2E00005A80 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; + 46EB2E00005A90 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00005AA0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00005AB0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00005AC0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00005AD0 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00005AE0 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00005AF0 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00005B00 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00005B10 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00005B20 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00005B30 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00005B40 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00005B50 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; + 46EB2E00005B60 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; + 46EB2E00005B70 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; + 46EB2E00005B80 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; + 46EB2E00005B90 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; + 46EB2E00005BA0 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; + 46EB2E00005BB0 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; + 46EB2E00005BC0 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; + 46EB2E00005BD0 /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; + 46EB2E00005BE0 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; + 46EB2E00005BF0 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; + 46EB2E00005C00 /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; + 46EB2E00005C10 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; + 46EB2E00005C20 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; + 46EB2E00005C30 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; + 46EB2E00005C40 /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; + 46EB2E00005C50 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; + 46EB2E00005C60 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; + 46EB2E00005C70 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; + 46EB2E00005C80 /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; + 46EB2E00005C90 /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; + 46EB2E00005CA0 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; + 46EB2E00005CB0 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; + 46EB2E00005CC0 /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; + 46EB2E00005CD0 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; + 46EB2E00005CE0 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; + 46EB2E00005CF0 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; + 46EB2E00005D00 /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; + 46EB2E00005D10 /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; + 46EB2E00005D20 /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; + 46EB2E00005D30 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; + 46EB2E00005D40 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; + 46EB2E00005D50 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; + 46EB2E00005D60 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; + 46EB2E00005D70 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; + 46EB2E00005D80 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; + 46EB2E00005D90 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; + 46EB2E00005DA0 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; + 46EB2E00005DB0 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; + 46EB2E00005DC0 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; + 46EB2E00005DD0 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; + 46EB2E00005DE0 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; + 46EB2E00005DF0 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; + 46EB2E00005E00 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; + 46EB2E00005E10 /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; + 46EB2E00005E20 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; + 46EB2E00005E30 /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E40 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E50 /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E60 /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E70 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E80 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; + 46EB2E00005E90 /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; + 46EB2E00005EA0 /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; + 46EB2E00005EB0 /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; + 46EB2E00005EC0 /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; + 46EB2E00005ED0 /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; + 46EB2E00005EE0 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; + 46EB2E00005EF0 /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F00 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F10 /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F20 /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F30 /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F40 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F50 /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F60 /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; + 46EB2E00005F70 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; + 46EB2E00005F80 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; + 46EB2E00005F90 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; + 46EB2E00005FA0 /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; + 46EB2E00005FB0 /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; + 46EB2E00005FC0 /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; + 46EB2E00005FD0 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; + 46EB2E00005FE0 /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; + 46EB2E00005FF0 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; + 46EB2E00006000 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; + 46EB2E00006010 /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; + 46EB2E00006020 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; + 46EB2E00006030 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; + 46EB2E00006040 /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; + 46EB2E00006050 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; + 46EB2E00006060 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; + 46EB2E00006070 /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; + 46EB2E00006080 /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; + 46EB2E00006090 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; + 46EB2E000060A0 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; + 46EB2E000060B0 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; + 46EB2E000060C0 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; + 46EB2E000060D0 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; + 46EB2E000060E0 /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; + 46EB2E000060F0 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; + 46EB2E00006100 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; + 46EB2E00006110 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; + 46EB2E00006120 /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; + 46EB2E00006130 /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; + 46EB2E00006140 /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; + 46EB2E00006150 /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; + 46EB2E00006160 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; + 46EB2E00006170 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; + 46EB2E00006180 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; + 46EB2E00006190 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; + 46EB2E000061A0 /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; + 46EB2E000061B0 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; + 46EB2E000061C0 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; + 46EB2E000061D0 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; + 46EB2E000061E0 /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; + 46EB2E000061F0 /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; + 46EB2E00006200 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; + 46EB2E00006210 /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; + 46EB2E00006220 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; + 46EB2E00006230 /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; + 46EB2E00006240 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; + 46EB2E00006250 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; + 46EB2E00006260 /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; + 46EB2E00006270 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; + 46EB2E00006280 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; + 46EB2E00006290 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; + 46EB2E000062A0 /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; + 46EB2E000062B0 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; + 46EB2E000062C0 /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; + 46EB2E000062D0 /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; + 46EB2E000062E0 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; + 46EB2E000062F0 /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; + 46EB2E00006300 /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; + 46EB2E00006310 /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; + 46EB2E00006320 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; + 46EB2E00006330 /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; + 46EB2E00006340 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; + 46EB2E00006350 /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; + 46EB2E00006360 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; + 46EB2E00006370 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; + 46EB2E00006380 /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; + 46EB2E00006390 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; + 46EB2E000063A0 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; + 46EB2E000063B0 /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; + 46EB2E000063C0 /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; + 46EB2E000063D0 /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; + 46EB2E000063E0 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; + 46EB2E000063F0 /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; + 46EB2E00006400 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; + 46EB2E00006410 /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; + 46EB2E00006420 /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; + 46EB2E00006430 /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; + 46EB2E00006440 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; + 46EB2E00006450 /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; + 46EB2E00006460 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; + 46EB2E00006470 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; + 46EB2E00006480 /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; + 46EB2E00006490 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; + 46EB2E000064A0 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; + 46EB2E000064B0 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; + 46EB2E000064C0 /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; + 46EB2E000064D0 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; + 46EB2E000064E0 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; + 46EB2E000064F0 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; + 46EB2E00006500 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; + 46EB2E00006510 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; + 46EB2E00006520 /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; + 46EB2E00006530 /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; + 46EB2E00006540 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; + 46EB2E00006550 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; + 46EB2E00006560 /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; + 46EB2E00006570 /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; + 46EB2E00006580 /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; + 46EB2E00006590 /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; + 46EB2E000065A0 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; + 46EB2E000065B0 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; + 46EB2E000065C0 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; + 46EB2E000065D0 /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; + 46EB2E000065E0 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; + 46EB2E000065F0 /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; + 46EB2E00006600 /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; + 46EB2E00006610 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; + 46EB2E00006620 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; + 46EB2E00006630 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; + 46EB2E00006640 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; + 46EB2E00006650 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; + 46EB2E00006660 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; + 46EB2E00006670 /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; + 46EB2E00006680 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; + 46EB2E00006690 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; + 46EB2E000066A0 /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; + 46EB2E000066B0 /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; + 46EB2E000066C0 /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; + 46EB2E000066D0 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; + 46EB2E000066E0 /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; + 46EB2E000066F0 /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; + 46EB2E00006700 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; + 46EB2E00006710 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; + 46EB2E00006720 /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; + 46EB2E00006730 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; + 46EB2E00006740 /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; + 46EB2E00006750 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; + 46EB2E00006760 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; + 46EB2E00006770 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; + 46EB2E00006780 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; + 46EB2E00006790 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; + 46EB2E000067A0 /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; + 46EB2E000067B0 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; + 46EB2E000067C0 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; + 46EB2E000067D0 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; + 46EB2E000067E0 /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; + 46EB2E000067F0 /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; + 46EB2E00006800 /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; + 46EB2E00006810 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; + 46EB2E00006820 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; + 46EB2E00006830 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; + 46EB2E00006840 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; + 46EB2E00006850 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; + 46EB2E00006860 /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; + 46EB2E00006870 /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; + 46EB2E00006880 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; + 46EB2E00006890 /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; + 46EB2E000068A0 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; + 46EB2E000068B0 /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; + 46EB2E000068C0 /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; + 46EB2E000068D0 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; + 46EB2E000068E0 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; + 46EB2E000068F0 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; + 46EB2E00006900 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; + 46EB2E00006910 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; + 46EB2E00006920 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; + 46EB2E00006930 /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; + 46EB2E00006940 /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; + 46EB2E00006950 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; + 46EB2E00006960 /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; + 46EB2E00006970 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; + 46EB2E00006980 /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; + 46EB2E00006990 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; + 46EB2E000069A0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; + 46EB2E000069B0 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; + 46EB2E000069C0 /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; + 46EB2E000069D0 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; + 46EB2E000069E0 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; + 46EB2E000069F0 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; + 46EB2E00006A00 /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; + 46EB2E00006A10 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; + 46EB2E00006A20 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; + 46EB2E00006A30 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; + 46EB2E00006A40 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; + 46EB2E00006A50 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 46EB2E00006A60 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; + 46EB2E00006A70 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; + 46EB2E00006A80 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + 46EB2E00006A90 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + 46EB2E00006AA0 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + 46EB2E00006AB0 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + 46EB2E00006AC0 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; + 46EB2E00006AD0 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; + 46EB2E00006AE0 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; + 46EB2E00006AF0 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + 46EB2E00006B00 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 46EB2E00006B10 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; + 46EB2E00006B20 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + 46EB2E00006B40 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + 46EB2E00006B50 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; + 46EB2E00006B60 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; + 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; + 46EB2E00006B80 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; + 46EB2E00006B90 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; + 46EB2E00006BA0 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; + 46EB2E00006BB0 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; + 46EB2E00006BC0 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; + 46EB2E00006BD0 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + 46EB2E00006BE0 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; + 46EB2E00006C00 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; + 46EB2E00006C10 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; + 46EB2E00006C20 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; + 46EB2E00006C30 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; + 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + 46EB2E00006C50 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; + 46EB2E00006C60 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; + 46EB2E00006C70 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; + 46EB2E00006C80 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 46EB2E00006C90 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; + 46EB2E00006CA0 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; + 46EB2E00006CB0 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + 46EB2E00006CC0 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; + 46EB2E00006CD0 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00006CE0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00006CF0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00006D00 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00006D10 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00006D20 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00006D30 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00006D40 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00006D50 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00006D60 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E00006D70 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E00006D80 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E00006D90 /* FirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseMessaging.h; path = FirebaseMessaging/Sources/FirebaseMessaging.h; sourceTree = ""; }; + 46EB2E00006DA0 /* FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessaging.m; path = FirebaseMessaging/Sources/FIRMessaging.m; sourceTree = ""; }; + 46EB2E00006DB0 /* FIRMessagingAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAnalytics.h; path = FirebaseMessaging/Sources/FIRMessagingAnalytics.h; sourceTree = ""; }; + 46EB2E00006DC0 /* FIRMessagingAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAnalytics.m; path = FirebaseMessaging/Sources/FIRMessagingAnalytics.m; sourceTree = ""; }; + 46EB2E00006DD0 /* FIRMessagingCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCode.h; path = FirebaseMessaging/Sources/FIRMessagingCode.h; sourceTree = ""; }; + 46EB2E00006DE0 /* FIRMessagingConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingConstants.h; path = FirebaseMessaging/Sources/FIRMessagingConstants.h; sourceTree = ""; }; + 46EB2E00006DF0 /* FIRMessagingConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingConstants.m; path = FirebaseMessaging/Sources/FIRMessagingConstants.m; sourceTree = ""; }; + 46EB2E00006E00 /* FIRMessagingContextManagerService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingContextManagerService.h; path = FirebaseMessaging/Sources/FIRMessagingContextManagerService.h; sourceTree = ""; }; + 46EB2E00006E10 /* FIRMessagingContextManagerService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingContextManagerService.m; path = FirebaseMessaging/Sources/FIRMessagingContextManagerService.m; sourceTree = ""; }; + 46EB2E00006E20 /* FIRMessagingDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingDefines.h; path = FirebaseMessaging/Sources/FIRMessagingDefines.h; sourceTree = ""; }; + 46EB2E00006E30 /* FIRMessagingExtensionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingExtensionHelper.m; path = FirebaseMessaging/Sources/FIRMessagingExtensionHelper.m; sourceTree = ""; }; + 46EB2E00006E40 /* FIRMessagingLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingLogger.h; path = FirebaseMessaging/Sources/FIRMessagingLogger.h; sourceTree = ""; }; + 46EB2E00006E50 /* FIRMessagingLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingLogger.m; path = FirebaseMessaging/Sources/FIRMessagingLogger.m; sourceTree = ""; }; + 46EB2E00006E60 /* FIRMessagingPendingTopicsList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPendingTopicsList.h; path = FirebaseMessaging/Sources/FIRMessagingPendingTopicsList.h; sourceTree = ""; }; + 46EB2E00006E70 /* FIRMessagingPendingTopicsList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPendingTopicsList.m; path = FirebaseMessaging/Sources/FIRMessagingPendingTopicsList.m; sourceTree = ""; }; + 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPersistentSyncMessage.h; path = FirebaseMessaging/Sources/FIRMessagingPersistentSyncMessage.h; sourceTree = ""; }; + 46EB2E00006E90 /* FIRMessagingPersistentSyncMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPersistentSyncMessage.m; path = FirebaseMessaging/Sources/FIRMessagingPersistentSyncMessage.m; sourceTree = ""; }; + 46EB2E00006EA0 /* FIRMessagingPubSub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingPubSub.h; path = FirebaseMessaging/Sources/FIRMessagingPubSub.h; sourceTree = ""; }; + 46EB2E00006EB0 /* FIRMessagingPubSub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingPubSub.m; path = FirebaseMessaging/Sources/FIRMessagingPubSub.m; sourceTree = ""; }; + 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingRemoteNotificationsProxy.h; path = FirebaseMessaging/Sources/FIRMessagingRemoteNotificationsProxy.h; sourceTree = ""; }; + 46EB2E00006ED0 /* FIRMessagingRemoteNotificationsProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingRemoteNotificationsProxy.m; path = FirebaseMessaging/Sources/FIRMessagingRemoteNotificationsProxy.m; sourceTree = ""; }; + 46EB2E00006EE0 /* FIRMessagingRmqManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingRmqManager.h; path = FirebaseMessaging/Sources/FIRMessagingRmqManager.h; sourceTree = ""; }; + 46EB2E00006EF0 /* FIRMessagingRmqManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingRmqManager.m; path = FirebaseMessaging/Sources/FIRMessagingRmqManager.m; sourceTree = ""; }; + 46EB2E00006F00 /* FIRMessagingSyncMessageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingSyncMessageManager.h; path = FirebaseMessaging/Sources/FIRMessagingSyncMessageManager.h; sourceTree = ""; }; + 46EB2E00006F10 /* FIRMessagingSyncMessageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingSyncMessageManager.m; path = FirebaseMessaging/Sources/FIRMessagingSyncMessageManager.m; sourceTree = ""; }; + 46EB2E00006F20 /* FIRMessagingTopicOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTopicOperation.h; path = FirebaseMessaging/Sources/FIRMessagingTopicOperation.h; sourceTree = ""; }; + 46EB2E00006F30 /* FIRMessagingTopicOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTopicOperation.m; path = FirebaseMessaging/Sources/FIRMessagingTopicOperation.m; sourceTree = ""; }; + 46EB2E00006F40 /* FIRMessagingTopicsCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTopicsCommon.h; path = FirebaseMessaging/Sources/FIRMessagingTopicsCommon.h; sourceTree = ""; }; + 46EB2E00006F50 /* FIRMessagingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingUtilities.h; path = FirebaseMessaging/Sources/FIRMessagingUtilities.h; sourceTree = ""; }; + 46EB2E00006F60 /* FIRMessagingUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingUtilities.m; path = FirebaseMessaging/Sources/FIRMessagingUtilities.m; sourceTree = ""; }; + 46EB2E00006F70 /* FIRMessaging_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessaging_Private.h; path = FirebaseMessaging/Sources/FIRMessaging_Private.h; sourceTree = ""; }; + 46EB2E00006F80 /* NSDictionary+FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+FIRMessaging.h"; path = "FirebaseMessaging/Sources/NSDictionary+FIRMessaging.h"; sourceTree = ""; }; + 46EB2E00006F90 /* NSDictionary+FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+FIRMessaging.m"; path = "FirebaseMessaging/Sources/NSDictionary+FIRMessaging.m"; sourceTree = ""; }; + 46EB2E00006FA0 /* NSError+FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRMessaging.h"; path = "FirebaseMessaging/Sources/NSError+FIRMessaging.h"; sourceTree = ""; }; + 46EB2E00006FB0 /* NSError+FIRMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRMessaging.m"; path = "FirebaseMessaging/Sources/NSError+FIRMessaging.m"; sourceTree = ""; }; + 46EB2E00006FC0 /* me.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = me.nanopb.c; path = FirebaseMessaging/Sources/Protogen/nanopb/me.nanopb.c; sourceTree = ""; }; + 46EB2E00006FD0 /* me.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = me.nanopb.h; path = FirebaseMessaging/Sources/Protogen/nanopb/me.nanopb.h; sourceTree = ""; }; + 46EB2E00006FE0 /* FirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseMessaging.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FirebaseMessaging.h; sourceTree = ""; }; + 46EB2E00006FF0 /* FIRMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessaging.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FIRMessaging.h; sourceTree = ""; }; + 46EB2E00007000 /* FIRMessagingExtensionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingExtensionHelper.h; path = FirebaseMessaging/Sources/Public/FirebaseMessaging/FIRMessagingExtensionHelper.h; sourceTree = ""; }; + 46EB2E00007010 /* FIRMessagingAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAPNSInfo.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAPNSInfo.h; sourceTree = ""; }; + 46EB2E00007020 /* FIRMessagingAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAPNSInfo.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAPNSInfo.m; sourceTree = ""; }; + 46EB2E00007030 /* FIRMessagingAuthKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAuthKeychain.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthKeychain.h; sourceTree = ""; }; + 46EB2E00007040 /* FIRMessagingAuthKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAuthKeychain.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthKeychain.m; sourceTree = ""; }; + 46EB2E00007050 /* FIRMessagingAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingAuthService.h; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthService.h; sourceTree = ""; }; + 46EB2E00007060 /* FIRMessagingAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingAuthService.m; path = FirebaseMessaging/Sources/Token/FIRMessagingAuthService.m; sourceTree = ""; }; + 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingBackupExcludedPlist.h; path = FirebaseMessaging/Sources/Token/FIRMessagingBackupExcludedPlist.h; sourceTree = ""; }; + 46EB2E00007080 /* FIRMessagingBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingBackupExcludedPlist.m; path = FirebaseMessaging/Sources/Token/FIRMessagingBackupExcludedPlist.m; sourceTree = ""; }; + 46EB2E00007090 /* FIRMessagingCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinPreferences.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinPreferences.h; sourceTree = ""; }; + 46EB2E000070A0 /* FIRMessagingCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinPreferences.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinPreferences.m; sourceTree = ""; }; + 46EB2E000070B0 /* FIRMessagingCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinService.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinService.h; sourceTree = ""; }; + 46EB2E000070C0 /* FIRMessagingCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinService.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinService.m; sourceTree = ""; }; + 46EB2E000070D0 /* FIRMessagingCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingCheckinStore.h; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinStore.h; sourceTree = ""; }; + 46EB2E000070E0 /* FIRMessagingCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingCheckinStore.m; path = FirebaseMessaging/Sources/Token/FIRMessagingCheckinStore.m; sourceTree = ""; }; + 46EB2E000070F0 /* FIRMessagingKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingKeychain.h; path = FirebaseMessaging/Sources/Token/FIRMessagingKeychain.h; sourceTree = ""; }; + 46EB2E00007100 /* FIRMessagingKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingKeychain.m; path = FirebaseMessaging/Sources/Token/FIRMessagingKeychain.m; sourceTree = ""; }; + 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenDeleteOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenDeleteOperation.h; sourceTree = ""; }; + 46EB2E00007120 /* FIRMessagingTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenDeleteOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenDeleteOperation.m; sourceTree = ""; }; + 46EB2E00007130 /* FIRMessagingTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenFetchOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenFetchOperation.h; sourceTree = ""; }; + 46EB2E00007140 /* FIRMessagingTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenFetchOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenFetchOperation.m; sourceTree = ""; }; + 46EB2E00007150 /* FIRMessagingTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenInfo.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenInfo.h; sourceTree = ""; }; + 46EB2E00007160 /* FIRMessagingTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenInfo.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenInfo.m; sourceTree = ""; }; + 46EB2E00007170 /* FIRMessagingTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenManager.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenManager.h; sourceTree = ""; }; + 46EB2E00007180 /* FIRMessagingTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenManager.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenManager.m; sourceTree = ""; }; + 46EB2E00007190 /* FIRMessagingTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenOperation.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenOperation.h; sourceTree = ""; }; + 46EB2E000071A0 /* FIRMessagingTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenOperation.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenOperation.m; sourceTree = ""; }; + 46EB2E000071B0 /* FIRMessagingTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingTokenStore.h; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenStore.h; sourceTree = ""; }; + 46EB2E000071C0 /* FIRMessagingTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMessagingTokenStore.m; path = FirebaseMessaging/Sources/Token/FIRMessagingTokenStore.m; sourceTree = ""; }; + 46EB2E000071D0 /* FIRMessagingInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMessagingInterop.h; path = FirebaseMessaging/Interop/FIRMessagingInterop.h; sourceTree = ""; }; + 46EB2E000071E0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 46EB2E000071F0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; + 46EB2E00007200 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 46EB2E00007210 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; + 46EB2E00007220 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00007230 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00007240 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00007250 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00007260 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00007270 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00007280 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00007290 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E000072A0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E000072B0 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E000072C0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E000072D0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E000072E0 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 46EB2E000072F0 /* FIRConfigValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfigValue.m; path = FirebaseRemoteConfig/Sources/FIRConfigValue.m; sourceTree = ""; }; + 46EB2E00007300 /* FIRRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRemoteConfig.m; path = FirebaseRemoteConfig/Sources/FIRRemoteConfig.m; sourceTree = ""; }; + 46EB2E00007310 /* FIRRemoteConfigComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfigComponent.h; path = FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.h; sourceTree = ""; }; + 46EB2E00007320 /* FIRRemoteConfigComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRemoteConfigComponent.m; path = FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.m; sourceTree = ""; }; + 46EB2E00007330 /* FIRRemoteConfig_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfig_Private.h; path = FirebaseRemoteConfig/Sources/Private/FIRRemoteConfig_Private.h; sourceTree = ""; }; + 46EB2E00007340 /* RCNConfigFetch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigFetch.h; path = FirebaseRemoteConfig/Sources/Private/RCNConfigFetch.h; sourceTree = ""; }; + 46EB2E00007350 /* RCNConfigSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigSettings.h; path = FirebaseRemoteConfig/Sources/Private/RCNConfigSettings.h; sourceTree = ""; }; + 46EB2E00007360 /* FirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseRemoteConfig.h; path = FirebaseRemoteConfig/Sources/Public/FirebaseRemoteConfig/FirebaseRemoteConfig.h; sourceTree = ""; }; + 46EB2E00007370 /* FIRRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRemoteConfig.h; path = FirebaseRemoteConfig/Sources/Public/FirebaseRemoteConfig/FIRRemoteConfig.h; sourceTree = ""; }; + 46EB2E00007380 /* RCNConfigConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigConstants.h; path = FirebaseRemoteConfig/Sources/RCNConfigConstants.h; sourceTree = ""; }; + 46EB2E00007390 /* RCNConfigContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigContent.h; path = FirebaseRemoteConfig/Sources/RCNConfigContent.h; sourceTree = ""; }; + 46EB2E000073A0 /* RCNConfigContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigContent.m; path = FirebaseRemoteConfig/Sources/RCNConfigContent.m; sourceTree = ""; }; + 46EB2E000073B0 /* RCNConfigDBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigDBManager.h; path = FirebaseRemoteConfig/Sources/RCNConfigDBManager.h; sourceTree = ""; }; + 46EB2E000073C0 /* RCNConfigDBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigDBManager.m; path = FirebaseRemoteConfig/Sources/RCNConfigDBManager.m; sourceTree = ""; }; + 46EB2E000073D0 /* RCNConfigDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigDefines.h; path = FirebaseRemoteConfig/Sources/RCNConfigDefines.h; sourceTree = ""; }; + 46EB2E000073E0 /* RCNConfigExperiment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigExperiment.h; path = FirebaseRemoteConfig/Sources/RCNConfigExperiment.h; sourceTree = ""; }; + 46EB2E000073F0 /* RCNConfigExperiment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigExperiment.m; path = FirebaseRemoteConfig/Sources/RCNConfigExperiment.m; sourceTree = ""; }; + 46EB2E00007400 /* RCNConfigFetch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigFetch.m; path = FirebaseRemoteConfig/Sources/RCNConfigFetch.m; sourceTree = ""; }; + 46EB2E00007410 /* RCNConfigSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConfigSettings.m; path = FirebaseRemoteConfig/Sources/RCNConfigSettings.m; sourceTree = ""; }; + 46EB2E00007420 /* RCNConfigValue_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNConfigValue_Internal.h; path = FirebaseRemoteConfig/Sources/RCNConfigValue_Internal.h; sourceTree = ""; }; + 46EB2E00007430 /* RCNConstants3P.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNConstants3P.m; path = FirebaseRemoteConfig/Sources/RCNConstants3P.m; sourceTree = ""; }; + 46EB2E00007440 /* RCNDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNDevice.h; path = FirebaseRemoteConfig/Sources/RCNDevice.h; sourceTree = ""; }; + 46EB2E00007450 /* RCNDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNDevice.m; path = FirebaseRemoteConfig/Sources/RCNDevice.m; sourceTree = ""; }; + 46EB2E00007460 /* RCNPersonalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNPersonalization.h; path = FirebaseRemoteConfig/Sources/RCNPersonalization.h; sourceTree = ""; }; + 46EB2E00007470 /* RCNPersonalization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNPersonalization.m; path = FirebaseRemoteConfig/Sources/RCNPersonalization.m; sourceTree = ""; }; + 46EB2E00007480 /* RCNUserDefaultsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCNUserDefaultsManager.h; path = FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.h; sourceTree = ""; }; + 46EB2E00007490 /* RCNUserDefaultsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCNUserDefaultsManager.m; path = FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.m; sourceTree = ""; }; + 46EB2E000074A0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 46EB2E000074B0 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; + 46EB2E000074C0 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 46EB2E000074D0 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; + 46EB2E000074E0 /* ABTExperimentPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ABTExperimentPayload.h; path = FirebaseABTesting/Sources/Private/ABTExperimentPayload.h; sourceTree = ""; }; + 46EB2E000074F0 /* FirebaseABTestingInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseABTestingInternal.h; path = FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h; sourceTree = ""; }; + 46EB2E00007500 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 46EB2E00007510 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 46EB2E00007520 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 46EB2E00007530 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 46EB2E00007540 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 46EB2E00007550 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 46EB2E00007560 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 46EB2E00007570 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 46EB2E00007580 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46EB2E00007590 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 46EB2E000075A0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 46EB2E000075B0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 46EB2E000075C0 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 46EB2E000075D0 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; + 46EB2E000075E0 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; + 46EB2E000075F0 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; + 46EB2E00007600 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; + 46EB2E00007610 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; + 46EB2E00007620 /* FlipperBase64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperBase64.cpp; path = xplat/Flipper/FlipperBase64.cpp; sourceTree = ""; }; + 46EB2E00007630 /* FlipperBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperBase64.h; path = xplat/Flipper/FlipperBase64.h; sourceTree = ""; }; + 46EB2E00007640 /* FlipperCertificateExchangeMedium.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateExchangeMedium.h; path = xplat/Flipper/FlipperCertificateExchangeMedium.h; sourceTree = ""; }; + 46EB2E00007650 /* FlipperCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateProvider.h; path = xplat/Flipper/FlipperCertificateProvider.h; sourceTree = ""; }; + 46EB2E00007660 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; + 46EB2E00007670 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; + 46EB2E00007680 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; + 46EB2E00007690 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; + 46EB2E000076A0 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; + 46EB2E000076B0 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; + 46EB2E000076C0 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; + 46EB2E000076D0 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; + 46EB2E000076E0 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; + 46EB2E000076F0 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; + 46EB2E00007700 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; + 46EB2E00007710 /* FlipperRSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocket.cpp; path = xplat/Flipper/FlipperRSocket.cpp; sourceTree = ""; }; + 46EB2E00007720 /* FlipperRSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocket.h; path = xplat/Flipper/FlipperRSocket.h; sourceTree = ""; }; + 46EB2E00007730 /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; + 46EB2E00007740 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; + 46EB2E00007750 /* FlipperSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperSocket.h; path = xplat/Flipper/FlipperSocket.h; sourceTree = ""; }; + 46EB2E00007760 /* FlipperSocketProvider.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperSocketProvider.cpp; path = xplat/Flipper/FlipperSocketProvider.cpp; sourceTree = ""; }; + 46EB2E00007770 /* FlipperSocketProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperSocketProvider.h; path = xplat/Flipper/FlipperSocketProvider.h; sourceTree = ""; }; + 46EB2E00007780 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; + 46EB2E00007790 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; + 46EB2E000077A0 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; + 46EB2E000077B0 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; + 46EB2E000077C0 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; + 46EB2E000077D0 /* FlipperTransportTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperTransportTypes.h; path = xplat/Flipper/FlipperTransportTypes.h; sourceTree = ""; }; + 46EB2E000077E0 /* FlipperURLSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperURLSerializer.cpp; path = xplat/Flipper/FlipperURLSerializer.cpp; sourceTree = ""; }; + 46EB2E000077F0 /* FlipperURLSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperURLSerializer.h; path = xplat/Flipper/FlipperURLSerializer.h; sourceTree = ""; }; + 46EB2E00007800 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; + 46EB2E00007810 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; + 46EB2E00007820 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; + 46EB2E00007830 /* ontop_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; name = ontop_combined_all_macho_gas.S; path = asm/ontop_combined_all_macho_gas.S; sourceTree = ""; }; + 46EB2E00007840 /* make_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; name = make_combined_all_macho_gas.S; path = asm/make_combined_all_macho_gas.S; sourceTree = ""; }; + 46EB2E00007850 /* jump_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; name = jump_combined_all_macho_gas.S; path = asm/jump_combined_all_macho_gas.S; sourceTree = ""; }; + 46EB2E00007860 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + 46EB2E00007870 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; + 46EB2E00007880 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + 46EB2E00007890 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + 46EB2E000078A0 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 46EB2E000078B0 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + 46EB2E000078C0 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; + 46EB2E000078D0 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; + 46EB2E000078E0 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; + 46EB2E000078F0 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + 46EB2E00007900 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; + 46EB2E00007910 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; + 46EB2E00007920 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + 46EB2E00007930 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; + 46EB2E00007940 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + 46EB2E00007950 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 46EB2E00007960 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + 46EB2E00007970 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; + 46EB2E00007980 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = src/format.cc; sourceTree = ""; }; + 46EB2E00007990 /* args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = args.h; path = include/fmt/args.h; sourceTree = ""; }; + 46EB2E000079A0 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; + 46EB2E000079B0 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; + 46EB2E000079C0 /* compile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compile.h; path = include/fmt/compile.h; sourceTree = ""; }; + 46EB2E000079D0 /* core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core.h; path = include/fmt/core.h; sourceTree = ""; }; + 46EB2E000079E0 /* format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "format-inl.h"; path = "include/fmt/format-inl.h"; sourceTree = ""; }; + 46EB2E000079F0 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = include/fmt/format.h; sourceTree = ""; }; + 46EB2E00007A00 /* locale.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = locale.h; path = include/fmt/locale.h; sourceTree = ""; }; + 46EB2E00007A10 /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; + 46EB2E00007A20 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; + 46EB2E00007A30 /* printf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = printf.h; path = include/fmt/printf.h; sourceTree = ""; }; + 46EB2E00007A40 /* ranges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ranges.h; path = include/fmt/ranges.h; sourceTree = ""; }; + 46EB2E00007A50 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; + 46EB2E00007A60 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; + 46EB2E00007A70 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; + 46EB2E00007A80 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; + 46EB2E00007A90 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; + 46EB2E00007AA0 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; + 46EB2E00007AB0 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; + 46EB2E00007AC0 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; + 46EB2E00007AD0 /* BenchmarkUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BenchmarkUtil.h; path = folly/BenchmarkUtil.h; sourceTree = ""; }; + 46EB2E00007AE0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; + 46EB2E00007AF0 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; + 46EB2E00007B00 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; + 46EB2E00007B10 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; + 46EB2E00007B20 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; + 46EB2E00007B30 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; + 46EB2E00007B40 /* ConcurrentLazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentLazy.h; path = folly/ConcurrentLazy.h; sourceTree = ""; }; + 46EB2E00007B50 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; + 46EB2E00007B60 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; + 46EB2E00007B70 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; + 46EB2E00007B80 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; + 46EB2E00007B90 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; + 46EB2E00007BA0 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; + 46EB2E00007BB0 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; + 46EB2E00007BC0 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; + 46EB2E00007BD0 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; + 46EB2E00007BE0 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; + 46EB2E00007BF0 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; + 46EB2E00007C00 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; + 46EB2E00007C10 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; + 46EB2E00007C20 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; + 46EB2E00007C30 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; + 46EB2E00007C40 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; + 46EB2E00007C50 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; + 46EB2E00007C60 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; + 46EB2E00007C70 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; + 46EB2E00007C80 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; + 46EB2E00007C90 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; + 46EB2E00007CA0 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; + 46EB2E00007CB0 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; + 46EB2E00007CC0 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; + 46EB2E00007CD0 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; + 46EB2E00007CE0 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + 46EB2E00007CF0 /* FollyMemcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FollyMemcpy.h; path = folly/FollyMemcpy.h; sourceTree = ""; }; + 46EB2E00007D00 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; + 46EB2E00007D10 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; + 46EB2E00007D20 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; + 46EB2E00007D30 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; + 46EB2E00007D40 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; + 46EB2E00007D50 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; + 46EB2E00007D60 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; + 46EB2E00007D70 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; + 46EB2E00007D80 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; + 46EB2E00007D90 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; + 46EB2E00007DA0 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; + 46EB2E00007DB0 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; + 46EB2E00007DC0 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; + 46EB2E00007DD0 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; + 46EB2E00007DE0 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; + 46EB2E00007DF0 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; + 46EB2E00007E00 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; + 46EB2E00007E10 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; + 46EB2E00007E20 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; + 46EB2E00007E30 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; + 46EB2E00007E40 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; + 46EB2E00007E50 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; + 46EB2E00007E60 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; + 46EB2E00007E70 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; + 46EB2E00007E80 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; + 46EB2E00007E90 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; + 46EB2E00007EA0 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; + 46EB2E00007EB0 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; + 46EB2E00007EC0 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; + 46EB2E00007ED0 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; + 46EB2E00007EE0 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; + 46EB2E00007EF0 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; + 46EB2E00007F00 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; + 46EB2E00007F10 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; + 46EB2E00007F20 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; + 46EB2E00007F30 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; + 46EB2E00007F40 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; + 46EB2E00007F50 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; + 46EB2E00007F60 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; + 46EB2E00007F70 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; + 46EB2E00007F80 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; + 46EB2E00007F90 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; + 46EB2E00007FA0 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 46EB2E00007FB0 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; + 46EB2E00007FC0 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; + 46EB2E00007FD0 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; + 46EB2E00007FE0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; + 46EB2E00007FF0 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; + 46EB2E00008000 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; + 46EB2E00008010 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; + 46EB2E00008020 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; + 46EB2E00008030 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; + 46EB2E00008040 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; + 46EB2E00008050 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; + 46EB2E00008060 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; + 46EB2E00008070 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; + 46EB2E00008080 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; + 46EB2E00008090 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; + 46EB2E000080A0 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; + 46EB2E000080B0 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; + 46EB2E000080C0 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; + 46EB2E000080D0 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; + 46EB2E000080E0 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; + 46EB2E000080F0 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; + 46EB2E00008100 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; + 46EB2E00008110 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; + 46EB2E00008120 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; + 46EB2E00008130 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; + 46EB2E00008140 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; + 46EB2E00008150 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; + 46EB2E00008160 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; + 46EB2E00008170 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; + 46EB2E00008180 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; + 46EB2E00008190 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + 46EB2E000081A0 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; + 46EB2E000081B0 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; + 46EB2E000081C0 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; + 46EB2E000081D0 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; + 46EB2E000081E0 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; + 46EB2E000081F0 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; + 46EB2E00008200 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; + 46EB2E00008210 /* QueueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueueObserver.h; path = folly/concurrency/QueueObserver.h; sourceTree = ""; }; + 46EB2E00008220 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; + 46EB2E00008230 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; + 46EB2E00008240 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; + 46EB2E00008250 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; + 46EB2E00008260 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; + 46EB2E00008270 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; + 46EB2E00008280 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; + 46EB2E00008290 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; + 46EB2E000082A0 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; + 46EB2E000082B0 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; + 46EB2E000082C0 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; + 46EB2E000082D0 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; + 46EB2E000082E0 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; + 46EB2E000082F0 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; + 46EB2E00008300 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; + 46EB2E00008310 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; + 46EB2E00008320 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; + 46EB2E00008330 /* View.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = View.h; path = folly/container/View.h; sourceTree = ""; }; + 46EB2E00008340 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; + 46EB2E00008350 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; + 46EB2E00008360 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; + 46EB2E00008370 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; + 46EB2E00008380 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; + 46EB2E00008390 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; + 46EB2E000083A0 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; + 46EB2E000083B0 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; + 46EB2E000083C0 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; + 46EB2E000083D0 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; + 46EB2E000083E0 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; + 46EB2E000083F0 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; + 46EB2E00008400 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; + 46EB2E00008410 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; + 46EB2E00008420 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; + 46EB2E00008430 /* FileUtilVectorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilVectorDetail.h; path = folly/detail/FileUtilVectorDetail.h; sourceTree = ""; }; + 46EB2E00008440 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; + 46EB2E00008450 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; + 46EB2E00008460 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; + 46EB2E00008470 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; + 46EB2E00008480 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; + 46EB2E00008490 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; + 46EB2E000084A0 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; + 46EB2E000084B0 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; + 46EB2E000084C0 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; + 46EB2E000084D0 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; + 46EB2E000084E0 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; + 46EB2E000084F0 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; + 46EB2E00008500 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; + 46EB2E00008510 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; + 46EB2E00008520 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; + 46EB2E00008530 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; + 46EB2E00008540 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; + 46EB2E00008550 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; + 46EB2E00008560 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; + 46EB2E00008570 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; + 46EB2E00008580 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; + 46EB2E00008590 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; + 46EB2E000085A0 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; + 46EB2E000085B0 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; + 46EB2E000085C0 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E000085D0 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; + 46EB2E000085E0 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E000085F0 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; + 46EB2E00008600 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; + 46EB2E00008610 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; + 46EB2E00008620 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; + 46EB2E00008630 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; + 46EB2E00008640 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; + 46EB2E00008650 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; + 46EB2E00008660 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; + 46EB2E00008670 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + 46EB2E00008680 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E00008690 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; + 46EB2E000086A0 /* MeteredExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MeteredExecutor.h; path = folly/executors/MeteredExecutor.h; sourceTree = ""; }; + 46EB2E000086B0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; + 46EB2E000086C0 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; + 46EB2E000086D0 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; + 46EB2E000086E0 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; + 46EB2E000086F0 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; + 46EB2E00008700 /* StrandExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StrandExecutor.h; path = folly/executors/StrandExecutor.h; sourceTree = ""; }; + 46EB2E00008710 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; + 46EB2E00008720 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; + 46EB2E00008730 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; + 46EB2E00008740 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; + 46EB2E00008750 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; + 46EB2E00008760 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; + 46EB2E00008770 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E00008780 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; + 46EB2E00008790 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; + 46EB2E000087A0 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; + 46EB2E000087B0 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; + 46EB2E000087C0 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; + 46EB2E000087D0 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; + 46EB2E000087E0 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; + 46EB2E000087F0 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; + 46EB2E00008800 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; + 46EB2E00008810 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; + 46EB2E00008820 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; + 46EB2E00008830 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; + 46EB2E00008840 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; + 46EB2E00008850 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; + 46EB2E00008860 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; + 46EB2E00008870 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; + 46EB2E00008880 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; + 46EB2E00008890 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; + 46EB2E000088A0 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; + 46EB2E000088B0 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; + 46EB2E000088C0 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; + 46EB2E000088D0 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; + 46EB2E000088E0 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; + 46EB2E000088F0 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; + 46EB2E00008900 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; + 46EB2E00008910 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; + 46EB2E00008920 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; + 46EB2E00008930 /* PrimaryPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrimaryPtr.h; path = folly/experimental/PrimaryPtr.h; sourceTree = ""; }; + 46EB2E00008940 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; + 46EB2E00008950 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; + 46EB2E00008960 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + 46EB2E00008970 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; + 46EB2E00008980 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; + 46EB2E00008990 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; + 46EB2E000089A0 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; + 46EB2E000089B0 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; + 46EB2E000089C0 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; + 46EB2E000089D0 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; + 46EB2E000089E0 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; + 46EB2E000089F0 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; + 46EB2E00008A00 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; + 46EB2E00008A10 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; + 46EB2E00008A20 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; + 46EB2E00008A30 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; + 46EB2E00008A40 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; + 46EB2E00008A50 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; + 46EB2E00008A60 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; + 46EB2E00008A70 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; + 46EB2E00008A80 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; + 46EB2E00008A90 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; + 46EB2E00008AA0 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; + 46EB2E00008AB0 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; + 46EB2E00008AC0 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; + 46EB2E00008AD0 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; + 46EB2E00008AE0 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; + 46EB2E00008AF0 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; + 46EB2E00008B00 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; + 46EB2E00008B10 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; + 46EB2E00008B20 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; + 46EB2E00008B30 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; + 46EB2E00008B40 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; + 46EB2E00008B50 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; + 46EB2E00008B60 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; + 46EB2E00008B70 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; + 46EB2E00008B80 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; + 46EB2E00008B90 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; + 46EB2E00008BA0 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; + 46EB2E00008BB0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; + 46EB2E00008BC0 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; + 46EB2E00008BD0 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; + 46EB2E00008BE0 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; + 46EB2E00008BF0 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; + 46EB2E00008C00 /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; + 46EB2E00008C10 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; + 46EB2E00008C20 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; + 46EB2E00008C30 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; + 46EB2E00008C40 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; + 46EB2E00008C50 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; + 46EB2E00008C60 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; + 46EB2E00008C70 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; + 46EB2E00008C80 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; + 46EB2E00008C90 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; + 46EB2E00008CA0 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; + 46EB2E00008CB0 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; + 46EB2E00008CC0 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; + 46EB2E00008CD0 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; + 46EB2E00008CE0 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; + 46EB2E00008CF0 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; + 46EB2E00008D00 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; + 46EB2E00008D10 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; + 46EB2E00008D20 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; + 46EB2E00008D30 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; + 46EB2E00008D40 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; + 46EB2E00008D50 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; + 46EB2E00008D60 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; + 46EB2E00008D70 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; + 46EB2E00008D80 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; + 46EB2E00008D90 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; + 46EB2E00008DA0 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; + 46EB2E00008DB0 /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; + 46EB2E00008DC0 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; + 46EB2E00008DD0 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; + 46EB2E00008DE0 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; + 46EB2E00008DF0 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; + 46EB2E00008E00 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; + 46EB2E00008E10 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; + 46EB2E00008E20 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; + 46EB2E00008E30 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; + 46EB2E00008E40 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; + 46EB2E00008E50 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; + 46EB2E00008E60 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; + 46EB2E00008E70 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; + 46EB2E00008E80 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; + 46EB2E00008E90 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; + 46EB2E00008EA0 /* AtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotificationQueue-inl.h"; path = "folly/io/async/AtomicNotificationQueue-inl.h"; sourceTree = ""; }; + 46EB2E00008EB0 /* AtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotificationQueue.h; path = folly/io/async/AtomicNotificationQueue.h; sourceTree = ""; }; + 46EB2E00008EC0 /* CertificateIdentityVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateIdentityVerifier.h; path = folly/io/async/CertificateIdentityVerifier.h; sourceTree = ""; }; + 46EB2E00008ED0 /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; + 46EB2E00008EE0 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; + 46EB2E00008EF0 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; + 46EB2E00008F00 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; + 46EB2E00008F10 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; + 46EB2E00008F20 /* EventBaseAtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseAtomicNotificationQueue-inl.h"; path = "folly/io/async/EventBaseAtomicNotificationQueue-inl.h"; sourceTree = ""; }; + 46EB2E00008F30 /* EventBaseAtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseAtomicNotificationQueue.h; path = folly/io/async/EventBaseAtomicNotificationQueue.h; sourceTree = ""; }; + 46EB2E00008F40 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; + 46EB2E00008F50 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; + 46EB2E00008F60 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; + 46EB2E00008F70 /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; + 46EB2E00008F80 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; + 46EB2E00008F90 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; + 46EB2E00008FA0 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; + 46EB2E00008FB0 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; + 46EB2E00008FC0 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; + 46EB2E00008FD0 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 46EB2E00008FE0 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; + 46EB2E00008FF0 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; + 46EB2E00009000 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; + 46EB2E00009010 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; + 46EB2E00009020 /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; + 46EB2E00009030 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; + 46EB2E00009040 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; + 46EB2E00009050 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; + 46EB2E00009060 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; + 46EB2E00009070 /* OpenSSLTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLTransportCertificate.h; path = folly/io/async/ssl/OpenSSLTransportCertificate.h; sourceTree = ""; }; + 46EB2E00009080 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; + 46EB2E00009090 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; + 46EB2E000090A0 /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; + 46EB2E000090B0 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; + 46EB2E000090C0 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; + 46EB2E000090D0 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; + 46EB2E000090E0 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; + 46EB2E000090F0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; + 46EB2E00009100 /* Byte.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Byte.h; path = folly/lang/Byte.h; sourceTree = ""; }; + 46EB2E00009110 /* CArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CArray.h; path = folly/lang/CArray.h; sourceTree = ""; }; + 46EB2E00009120 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; + 46EB2E00009130 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; + 46EB2E00009140 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; + 46EB2E00009150 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; + 46EB2E00009160 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; + 46EB2E00009170 /* Extern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Extern.h; path = folly/lang/Extern.h; sourceTree = ""; }; + 46EB2E00009180 /* Keep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Keep.h; path = folly/lang/Keep.h; sourceTree = ""; }; + 46EB2E00009190 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; + 46EB2E000091A0 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; + 46EB2E000091B0 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; + 46EB2E000091C0 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; + 46EB2E000091D0 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; + 46EB2E000091E0 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; + 46EB2E000091F0 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; + 46EB2E00009200 /* Thunk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Thunk.h; path = folly/lang/Thunk.h; sourceTree = ""; }; + 46EB2E00009210 /* ToAscii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ToAscii.h; path = folly/lang/ToAscii.h; sourceTree = ""; }; + 46EB2E00009220 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; + 46EB2E00009230 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; + 46EB2E00009240 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; + 46EB2E00009250 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; + 46EB2E00009260 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; + 46EB2E00009270 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; + 46EB2E00009280 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; + 46EB2E00009290 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; + 46EB2E000092A0 /* not_null-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "not_null-inl.h"; path = "folly/memory/not_null-inl.h"; sourceTree = ""; }; + 46EB2E000092B0 /* not_null.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = not_null.h; path = folly/memory/not_null.h; sourceTree = ""; }; + 46EB2E000092C0 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; + 46EB2E000092D0 /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; + 46EB2E000092E0 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; + 46EB2E000092F0 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; + 46EB2E00009300 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; + 46EB2E00009310 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; + 46EB2E00009320 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + 46EB2E00009330 /* NetOpsDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOpsDispatcher.h; path = folly/net/NetOpsDispatcher.h; sourceTree = ""; }; + 46EB2E00009340 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; + 46EB2E00009350 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; + 46EB2E00009360 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; + 46EB2E00009370 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; + 46EB2E00009380 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; + 46EB2E00009390 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; + 46EB2E000093A0 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; + 46EB2E000093B0 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; + 46EB2E000093C0 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; + 46EB2E000093D0 /* SSLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionManager.h; path = folly/ssl/SSLSessionManager.h; sourceTree = ""; }; + 46EB2E000093E0 /* OpenSSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLSession.h; path = folly/ssl/detail/OpenSSLSession.h; sourceTree = ""; }; + 46EB2E000093F0 /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; + 46EB2E00009400 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; + 46EB2E00009410 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; + 46EB2E00009420 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; + 46EB2E00009430 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; + 46EB2E00009440 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; + 46EB2E00009450 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; + 46EB2E00009460 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; + 46EB2E00009470 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; + 46EB2E00009480 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; + 46EB2E00009490 /* DelayedInit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedInit.h; path = folly/synchronization/DelayedInit.h; sourceTree = ""; }; + 46EB2E000094A0 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; + 46EB2E000094B0 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; + 46EB2E000094C0 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; + 46EB2E000094D0 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; + 46EB2E000094E0 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; + 46EB2E000094F0 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + 46EB2E00009500 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; + 46EB2E00009510 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; + 46EB2E00009520 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; + 46EB2E00009530 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; + 46EB2E00009540 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E00009550 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; + 46EB2E00009560 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; + 46EB2E00009570 /* Lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lock.h; path = folly/synchronization/Lock.h; sourceTree = ""; }; + 46EB2E00009580 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; + 46EB2E00009590 /* NativeSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeSemaphore.h; path = folly/synchronization/NativeSemaphore.h; sourceTree = ""; }; + 46EB2E000095A0 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; + 46EB2E000095B0 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; + 46EB2E000095C0 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; + 46EB2E000095D0 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = ""; }; + 46EB2E000095E0 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; + 46EB2E000095F0 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; + 46EB2E00009600 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; + 46EB2E00009610 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; + 46EB2E00009620 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; + 46EB2E00009630 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; + 46EB2E00009640 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; + 46EB2E00009650 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; + 46EB2E00009660 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; + 46EB2E00009670 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; + 46EB2E00009680 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; + 46EB2E00009690 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; + 46EB2E000096A0 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; + 46EB2E000096B0 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; + 46EB2E000096C0 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; + 46EB2E000096D0 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; + 46EB2E000096E0 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; + 46EB2E000096F0 /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = ""; }; + 46EB2E00009700 /* Sleeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sleeper.cpp; path = folly/synchronization/detail/Sleeper.cpp; sourceTree = ""; }; + 46EB2E00009710 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; + 46EB2E00009720 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; + 46EB2E00009730 /* Pid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pid.h; path = folly/system/Pid.h; sourceTree = ""; }; + 46EB2E00009740 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; + 46EB2E00009750 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; + 46EB2E00009760 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; + 46EB2E00009770 /* AsyncStack-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AsyncStack-inl.h"; path = "folly/tracing/AsyncStack-inl.h"; sourceTree = ""; }; + 46EB2E00009780 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/tracing/AsyncStack.h; sourceTree = ""; }; + 46EB2E00009790 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; + 46EB2E000097A0 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; + 46EB2E000097B0 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; + 46EB2E000097C0 /* AsyncStack.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncStack.cpp; path = folly/tracing/AsyncStack.cpp; sourceTree = ""; }; + 46EB2E000097D0 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; + 46EB2E000097E0 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; + 46EB2E000097F0 /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; + 46EB2E00009800 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; + 46EB2E00009810 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; + 46EB2E00009820 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 46EB2E00009830 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + 46EB2E00009840 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 46EB2E00009850 /* ExceptionString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionString.cpp; path = folly/ExceptionString.cpp; sourceTree = ""; }; + 46EB2E00009860 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; + 46EB2E00009870 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; + 46EB2E00009880 /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; + 46EB2E00009890 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; + 46EB2E000098A0 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; + 46EB2E000098B0 /* FollyMemcpy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FollyMemcpy.cpp; path = folly/FollyMemcpy.cpp; sourceTree = ""; }; + 46EB2E000098C0 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; + 46EB2E000098D0 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; + 46EB2E000098E0 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; + 46EB2E000098F0 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; + 46EB2E00009900 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; + 46EB2E00009910 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; + 46EB2E00009920 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; + 46EB2E00009930 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + 46EB2E00009940 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; + 46EB2E00009950 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; + 46EB2E00009960 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; + 46EB2E00009970 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; + 46EB2E00009980 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; + 46EB2E00009990 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; + 46EB2E000099A0 /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; + 46EB2E000099B0 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; + 46EB2E000099C0 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; + 46EB2E000099D0 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; + 46EB2E000099E0 /* Try.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Try.cpp; path = folly/Try.cpp; sourceTree = ""; }; + 46EB2E000099F0 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + 46EB2E00009A00 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; + 46EB2E00009A10 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; + 46EB2E00009A20 /* QueueObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueueObserver.cpp; path = folly/concurrency/QueueObserver.cpp; sourceTree = ""; }; + 46EB2E00009A30 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; + 46EB2E00009A40 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; + 46EB2E00009A50 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; + 46EB2E00009A60 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; + 46EB2E00009A70 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; + 46EB2E00009A80 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; + 46EB2E00009A90 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; + 46EB2E00009AA0 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; + 46EB2E00009AB0 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; + 46EB2E00009AC0 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; + 46EB2E00009AD0 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; + 46EB2E00009AE0 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; + 46EB2E00009AF0 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; + 46EB2E00009B00 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; + 46EB2E00009B10 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; + 46EB2E00009B20 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E00009B30 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E00009B40 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; + 46EB2E00009B50 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; + 46EB2E00009B60 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; + 46EB2E00009B70 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; + 46EB2E00009B80 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E00009B90 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BA0 /* MeteredExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MeteredExecutor.cpp; path = folly/executors/MeteredExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BB0 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BC0 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BD0 /* StrandExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StrandExecutor.cpp; path = folly/executors/StrandExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BE0 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; + 46EB2E00009BF0 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E00009C00 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; + 46EB2E00009C10 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; + 46EB2E00009C20 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; + 46EB2E00009C30 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; + 46EB2E00009C40 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; + 46EB2E00009C50 /* Promise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Promise.cpp; path = folly/futures/Promise.cpp; sourceTree = ""; }; + 46EB2E00009C60 /* SharedPromise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedPromise.cpp; path = folly/futures/SharedPromise.cpp; sourceTree = ""; }; + 46EB2E00009C70 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; + 46EB2E00009C80 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/futures/detail/Core.cpp; sourceTree = ""; }; + 46EB2E00009C90 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; + 46EB2E00009CA0 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; + 46EB2E00009CB0 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 46EB2E00009CC0 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; + 46EB2E00009CD0 /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; + 46EB2E00009CE0 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; + 46EB2E00009CF0 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; + 46EB2E00009D00 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; + 46EB2E00009D10 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; + 46EB2E00009D20 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; + 46EB2E00009D30 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; + 46EB2E00009D40 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; + 46EB2E00009D50 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; + 46EB2E00009D60 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; + 46EB2E00009D70 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; + 46EB2E00009D80 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; + 46EB2E00009D90 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; + 46EB2E00009DA0 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; + 46EB2E00009DB0 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; + 46EB2E00009DC0 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; + 46EB2E00009DD0 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; + 46EB2E00009DE0 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; + 46EB2E00009DF0 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; + 46EB2E00009E00 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; + 46EB2E00009E10 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; + 46EB2E00009E20 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; + 46EB2E00009E30 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; + 46EB2E00009E40 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; + 46EB2E00009E50 /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; + 46EB2E00009E60 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; + 46EB2E00009E70 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; + 46EB2E00009E80 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; + 46EB2E00009E90 /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; + 46EB2E00009EA0 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; + 46EB2E00009EB0 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 46EB2E00009EC0 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; + 46EB2E00009ED0 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = folly/lang/Exception.cpp; sourceTree = ""; }; + 46EB2E00009EE0 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 46EB2E00009EF0 /* ToAscii.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ToAscii.cpp; path = folly/lang/ToAscii.cpp; sourceTree = ""; }; + 46EB2E00009F00 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; + 46EB2E00009F10 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; + 46EB2E00009F20 /* SanitizeAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeAddress.cpp; path = folly/memory/SanitizeAddress.cpp; sourceTree = ""; }; + 46EB2E00009F30 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; + 46EB2E00009F40 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; + 46EB2E00009F50 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; + 46EB2E00009F60 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; + 46EB2E00009F70 /* NetOpsDispatcher.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOpsDispatcher.cpp; path = folly/net/NetOpsDispatcher.cpp; sourceTree = ""; }; + 46EB2E00009F80 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; + 46EB2E00009F90 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; + 46EB2E00009FA0 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; + 46EB2E00009FB0 /* SSLSessionManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLSessionManager.cpp; path = folly/ssl/SSLSessionManager.cpp; sourceTree = ""; }; + 46EB2E00009FC0 /* OpenSSLSession.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLSession.cpp; path = folly/ssl/detail/OpenSSLSession.cpp; sourceTree = ""; }; + 46EB2E00009FD0 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; + 46EB2E00009FE0 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; + 46EB2E00009FF0 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; + 46EB2E0000A000 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; + 46EB2E0000A010 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; + 46EB2E0000A020 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000A030 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; + 46EB2E0000A040 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; + 46EB2E0000A050 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; + 46EB2E0000A060 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; + 46EB2E0000A070 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; + 46EB2E0000A080 /* Pid.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Pid.cpp; path = folly/system/Pid.cpp; sourceTree = ""; }; + 46EB2E0000A090 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; + 46EB2E0000A0A0 /* ThreadId.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadId.cpp; path = folly/system/ThreadId.cpp; sourceTree = ""; }; + 46EB2E0000A0B0 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; + 46EB2E0000A0C0 /* Accumulate-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Accumulate-inl.h"; path = "folly/experimental/coro/Accumulate-inl.h"; sourceTree = ""; }; + 46EB2E0000A0D0 /* Accumulate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Accumulate.h; path = folly/experimental/coro/Accumulate.h; sourceTree = ""; }; + 46EB2E0000A0E0 /* AsyncGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGenerator.h; path = folly/experimental/coro/AsyncGenerator.h; sourceTree = ""; }; + 46EB2E0000A0F0 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/experimental/coro/AsyncPipe.h; sourceTree = ""; }; + 46EB2E0000A100 /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; + 46EB2E0000A110 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/experimental/coro/AsyncStack.h; sourceTree = ""; }; + 46EB2E0000A120 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/experimental/coro/Baton.h; sourceTree = ""; }; + 46EB2E0000A130 /* BlockingWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingWait.h; path = folly/experimental/coro/BlockingWait.h; sourceTree = ""; }; + 46EB2E0000A140 /* Collect-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Collect-inl.h"; path = "folly/experimental/coro/Collect-inl.h"; sourceTree = ""; }; + 46EB2E0000A150 /* Collect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Collect.h; path = folly/experimental/coro/Collect.h; sourceTree = ""; }; + 46EB2E0000A160 /* Concat-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Concat-inl.h"; path = "folly/experimental/coro/Concat-inl.h"; sourceTree = ""; }; + 46EB2E0000A170 /* Concat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Concat.h; path = folly/experimental/coro/Concat.h; sourceTree = ""; }; + 46EB2E0000A180 /* Coroutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Coroutine.h; path = folly/experimental/coro/Coroutine.h; sourceTree = ""; }; + 46EB2E0000A190 /* CurrentExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentExecutor.h; path = folly/experimental/coro/CurrentExecutor.h; sourceTree = ""; }; + 46EB2E0000A1A0 /* Dematerialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Dematerialize-inl.h"; path = "folly/experimental/coro/Dematerialize-inl.h"; sourceTree = ""; }; + 46EB2E0000A1B0 /* Dematerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dematerialize.h; path = folly/experimental/coro/Dematerialize.h; sourceTree = ""; }; + 46EB2E0000A1C0 /* DetachOnCancel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DetachOnCancel.h; path = folly/experimental/coro/DetachOnCancel.h; sourceTree = ""; }; + 46EB2E0000A1D0 /* Filter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Filter-inl.h"; path = "folly/experimental/coro/Filter-inl.h"; sourceTree = ""; }; + 46EB2E0000A1E0 /* Filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filter.h; path = folly/experimental/coro/Filter.h; sourceTree = ""; }; + 46EB2E0000A1F0 /* FutureUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureUtil.h; path = folly/experimental/coro/FutureUtil.h; sourceTree = ""; }; + 46EB2E0000A200 /* Generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Generator.h; path = folly/experimental/coro/Generator.h; sourceTree = ""; }; + 46EB2E0000A210 /* GmockHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GmockHelpers.h; path = folly/experimental/coro/GmockHelpers.h; sourceTree = ""; }; + 46EB2E0000A220 /* GtestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GtestHelpers.h; path = folly/experimental/coro/GtestHelpers.h; sourceTree = ""; }; + 46EB2E0000A230 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/experimental/coro/Invoke.h; sourceTree = ""; }; + 46EB2E0000A240 /* Materialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Materialize-inl.h"; path = "folly/experimental/coro/Materialize-inl.h"; sourceTree = ""; }; + 46EB2E0000A250 /* Materialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Materialize.h; path = folly/experimental/coro/Materialize.h; sourceTree = ""; }; + 46EB2E0000A260 /* Merge-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Merge-inl.h"; path = "folly/experimental/coro/Merge-inl.h"; sourceTree = ""; }; + 46EB2E0000A270 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; + 46EB2E0000A280 /* Multiplex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Multiplex-inl.h"; path = "folly/experimental/coro/Multiplex-inl.h"; sourceTree = ""; }; + 46EB2E0000A290 /* Multiplex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Multiplex.h; path = folly/experimental/coro/Multiplex.h; sourceTree = ""; }; + 46EB2E0000A2A0 /* Mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mutex.h; path = folly/experimental/coro/Mutex.h; sourceTree = ""; }; + 46EB2E0000A2B0 /* Result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Result.h; path = folly/experimental/coro/Result.h; sourceTree = ""; }; + 46EB2E0000A2C0 /* Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retry.h; path = folly/experimental/coro/Retry.h; sourceTree = ""; }; + 46EB2E0000A2D0 /* RustAdaptors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RustAdaptors.h; path = folly/experimental/coro/RustAdaptors.h; sourceTree = ""; }; + 46EB2E0000A2E0 /* SharedLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedLock.h; path = folly/experimental/coro/SharedLock.h; sourceTree = ""; }; + 46EB2E0000A2F0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/experimental/coro/SharedMutex.h; sourceTree = ""; }; + 46EB2E0000A300 /* Sleep-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Sleep-inl.h"; path = "folly/experimental/coro/Sleep-inl.h"; sourceTree = ""; }; + 46EB2E0000A310 /* Sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleep.h; path = folly/experimental/coro/Sleep.h; sourceTree = ""; }; + 46EB2E0000A320 /* Task.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Task.h; path = folly/experimental/coro/Task.h; sourceTree = ""; }; + 46EB2E0000A330 /* TimedWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedWait.h; path = folly/experimental/coro/TimedWait.h; sourceTree = ""; }; + 46EB2E0000A340 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; + 46EB2E0000A350 /* Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timeout.h; path = folly/experimental/coro/Timeout.h; sourceTree = ""; }; + 46EB2E0000A360 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/Traits.h; sourceTree = ""; }; + 46EB2E0000A370 /* Transform-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Transform-inl.h"; path = "folly/experimental/coro/Transform-inl.h"; sourceTree = ""; }; + 46EB2E0000A380 /* Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Transform.h; path = folly/experimental/coro/Transform.h; sourceTree = ""; }; + 46EB2E0000A390 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/experimental/coro/UnboundedQueue.h; sourceTree = ""; }; + 46EB2E0000A3A0 /* ViaIfAsync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViaIfAsync.h; path = folly/experimental/coro/ViaIfAsync.h; sourceTree = ""; }; + 46EB2E0000A3B0 /* Wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wait.h; path = folly/experimental/coro/Wait.h; sourceTree = ""; }; + 46EB2E0000A3C0 /* WithAsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithAsyncStack.h; path = folly/experimental/coro/WithAsyncStack.h; sourceTree = ""; }; + 46EB2E0000A3D0 /* WithCancellation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithCancellation.h; path = folly/experimental/coro/WithCancellation.h; sourceTree = ""; }; + 46EB2E0000A3E0 /* Dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dwarf.h; path = folly/experimental/symbolizer/Dwarf.h; sourceTree = ""; }; + 46EB2E0000A3F0 /* Elf-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Elf-inl.h"; path = "folly/experimental/symbolizer/Elf-inl.h"; sourceTree = ""; }; + 46EB2E0000A400 /* Elf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Elf.h; path = folly/experimental/symbolizer/Elf.h; sourceTree = ""; }; + 46EB2E0000A410 /* ElfCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ElfCache.h; path = folly/experimental/symbolizer/ElfCache.h; sourceTree = ""; }; + 46EB2E0000A420 /* LineReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LineReader.h; path = folly/experimental/symbolizer/LineReader.h; sourceTree = ""; }; + 46EB2E0000A430 /* SignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandler.h; path = folly/experimental/symbolizer/SignalHandler.h; sourceTree = ""; }; + 46EB2E0000A440 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/symbolizer/StackTrace.h; sourceTree = ""; }; + 46EB2E0000A450 /* SymbolizedFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizedFrame.h; path = folly/experimental/symbolizer/SymbolizedFrame.h; sourceTree = ""; }; + 46EB2E0000A460 /* SymbolizePrinter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizePrinter.h; path = folly/experimental/symbolizer/SymbolizePrinter.h; sourceTree = ""; }; + 46EB2E0000A470 /* Symbolizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Symbolizer.h; path = folly/experimental/symbolizer/Symbolizer.h; sourceTree = ""; }; + 46EB2E0000A480 /* Addr2Line.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Addr2Line.cpp; path = folly/experimental/symbolizer/Addr2Line.cpp; sourceTree = ""; }; + 46EB2E0000A490 /* Dwarf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Dwarf.cpp; path = folly/experimental/symbolizer/Dwarf.cpp; sourceTree = ""; }; + 46EB2E0000A4A0 /* Elf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Elf.cpp; path = folly/experimental/symbolizer/Elf.cpp; sourceTree = ""; }; + 46EB2E0000A4B0 /* ElfCache.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ElfCache.cpp; path = folly/experimental/symbolizer/ElfCache.cpp; sourceTree = ""; }; + 46EB2E0000A4C0 /* LineReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LineReader.cpp; path = folly/experimental/symbolizer/LineReader.cpp; sourceTree = ""; }; + 46EB2E0000A4D0 /* SignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SignalHandler.cpp; path = folly/experimental/symbolizer/SignalHandler.cpp; sourceTree = ""; }; + 46EB2E0000A4E0 /* StackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StackTrace.cpp; path = folly/experimental/symbolizer/StackTrace.cpp; sourceTree = ""; }; + 46EB2E0000A4F0 /* SymbolizedFrame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SymbolizedFrame.cpp; path = folly/experimental/symbolizer/SymbolizedFrame.cpp; sourceTree = ""; }; + 46EB2E0000A500 /* SymbolizePrinter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SymbolizePrinter.cpp; path = folly/experimental/symbolizer/SymbolizePrinter.cpp; sourceTree = ""; }; + 46EB2E0000A510 /* Symbolizer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Symbolizer.cpp; path = folly/experimental/symbolizer/Symbolizer.cpp; sourceTree = ""; }; + 46EB2E0000A520 /* AddTasks-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AddTasks-inl.h"; path = "folly/fibers/AddTasks-inl.h"; sourceTree = ""; }; + 46EB2E0000A530 /* AddTasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AddTasks.h; path = folly/fibers/AddTasks.h; sourceTree = ""; }; + 46EB2E0000A540 /* AtomicBatchDispatcher-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicBatchDispatcher-inl.h"; path = "folly/fibers/AtomicBatchDispatcher-inl.h"; sourceTree = ""; }; + 46EB2E0000A550 /* AtomicBatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicBatchDispatcher.h; path = folly/fibers/AtomicBatchDispatcher.h; sourceTree = ""; }; + 46EB2E0000A560 /* BatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchDispatcher.h; path = folly/fibers/BatchDispatcher.h; sourceTree = ""; }; + 46EB2E0000A570 /* BatchSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchSemaphore.h; path = folly/fibers/BatchSemaphore.h; sourceTree = ""; }; + 46EB2E0000A580 /* Baton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Baton-inl.h"; path = "folly/fibers/Baton-inl.h"; sourceTree = ""; }; + 46EB2E0000A590 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/fibers/Baton.h; sourceTree = ""; }; + 46EB2E0000A5A0 /* BoostContextCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BoostContextCompatibility.h; path = folly/fibers/BoostContextCompatibility.h; sourceTree = ""; }; + 46EB2E0000A5B0 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/fibers/CallOnce.h; sourceTree = ""; }; + 46EB2E0000A5C0 /* EventBaseLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseLoopController-inl.h"; path = "folly/fibers/EventBaseLoopController-inl.h"; sourceTree = ""; }; + 46EB2E0000A5D0 /* EventBaseLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLoopController.h; path = folly/fibers/EventBaseLoopController.h; sourceTree = ""; }; + 46EB2E0000A5E0 /* ExecutorBasedLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorBasedLoopController.h; path = folly/fibers/ExecutorBasedLoopController.h; sourceTree = ""; }; + 46EB2E0000A5F0 /* ExecutorLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorLoopController-inl.h"; path = "folly/fibers/ExecutorLoopController-inl.h"; sourceTree = ""; }; + 46EB2E0000A600 /* ExecutorLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorLoopController.h; path = folly/fibers/ExecutorLoopController.h; sourceTree = ""; }; + 46EB2E0000A610 /* Fiber-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Fiber-inl.h"; path = "folly/fibers/Fiber-inl.h"; sourceTree = ""; }; + 46EB2E0000A620 /* Fiber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fiber.h; path = folly/fibers/Fiber.h; sourceTree = ""; }; + 46EB2E0000A630 /* FiberManager-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManager-inl.h"; path = "folly/fibers/FiberManager-inl.h"; sourceTree = ""; }; + 46EB2E0000A640 /* FiberManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManager.h; path = folly/fibers/FiberManager.h; sourceTree = ""; }; + 46EB2E0000A650 /* FiberManagerInternal-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerInternal-inl.h"; path = "folly/fibers/FiberManagerInternal-inl.h"; sourceTree = ""; }; + 46EB2E0000A660 /* FiberManagerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerInternal.h; path = folly/fibers/FiberManagerInternal.h; sourceTree = ""; }; + 46EB2E0000A670 /* FiberManagerMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerMap-inl.h"; path = "folly/fibers/FiberManagerMap-inl.h"; sourceTree = ""; }; + 46EB2E0000A680 /* FiberManagerMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerMap.h; path = folly/fibers/FiberManagerMap.h; sourceTree = ""; }; + 46EB2E0000A690 /* ForEach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ForEach-inl.h"; path = "folly/fibers/ForEach-inl.h"; sourceTree = ""; }; + 46EB2E0000A6A0 /* ForEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ForEach.h; path = folly/fibers/ForEach.h; sourceTree = ""; }; + 46EB2E0000A6B0 /* GenericBaton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericBaton.h; path = folly/fibers/GenericBaton.h; sourceTree = ""; }; + 46EB2E0000A6C0 /* GuardPageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GuardPageAllocator.h; path = folly/fibers/GuardPageAllocator.h; sourceTree = ""; }; + 46EB2E0000A6D0 /* LoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoopController.h; path = folly/fibers/LoopController.h; sourceTree = ""; }; + 46EB2E0000A6E0 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/fibers/Promise-inl.h"; sourceTree = ""; }; + 46EB2E0000A6F0 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/fibers/Promise.h; sourceTree = ""; }; + 46EB2E0000A700 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/fibers/Semaphore.h; sourceTree = ""; }; + 46EB2E0000A710 /* SemaphoreBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SemaphoreBase.h; path = folly/fibers/SemaphoreBase.h; sourceTree = ""; }; + 46EB2E0000A720 /* SimpleLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleLoopController.h; path = folly/fibers/SimpleLoopController.h; sourceTree = ""; }; + 46EB2E0000A730 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; + 46EB2E0000A740 /* TimedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedMutex.h; path = folly/fibers/TimedMutex.h; sourceTree = ""; }; + 46EB2E0000A750 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = folly/fibers/traits.h; sourceTree = ""; }; + 46EB2E0000A760 /* WhenN-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WhenN-inl.h"; path = "folly/fibers/WhenN-inl.h"; sourceTree = ""; }; + 46EB2E0000A770 /* WhenN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhenN.h; path = folly/fibers/WhenN.h; sourceTree = ""; }; + 46EB2E0000A780 /* BatchSemaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchSemaphore.cpp; path = folly/fibers/BatchSemaphore.cpp; sourceTree = ""; }; + 46EB2E0000A790 /* Baton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Baton.cpp; path = folly/fibers/Baton.cpp; sourceTree = ""; }; + 46EB2E0000A7A0 /* Fiber.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fiber.cpp; path = folly/fibers/Fiber.cpp; sourceTree = ""; }; + 46EB2E0000A7B0 /* FiberManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FiberManager.cpp; path = folly/fibers/FiberManager.cpp; sourceTree = ""; }; + 46EB2E0000A7C0 /* GuardPageAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GuardPageAllocator.cpp; path = folly/fibers/GuardPageAllocator.cpp; sourceTree = ""; }; + 46EB2E0000A7D0 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/fibers/Semaphore.cpp; sourceTree = ""; }; + 46EB2E0000A7E0 /* SemaphoreBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SemaphoreBase.cpp; path = folly/fibers/SemaphoreBase.cpp; sourceTree = ""; }; + 46EB2E0000A7F0 /* SimpleLoopController.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SimpleLoopController.cpp; path = folly/fibers/SimpleLoopController.cpp; sourceTree = ""; }; + 46EB2E0000A800 /* Debug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = folly/experimental/symbolizer/detail/Debug.h; sourceTree = ""; }; + 46EB2E0000A810 /* AsyncFileWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncFileWriter.h; path = folly/logging/AsyncFileWriter.h; sourceTree = ""; }; + 46EB2E0000A820 /* AsyncLogWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncLogWriter.h; path = folly/logging/AsyncLogWriter.h; sourceTree = ""; }; + 46EB2E0000A830 /* BridgeFromGoogleLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeFromGoogleLogging.h; path = folly/logging/BridgeFromGoogleLogging.h; sourceTree = ""; }; + 46EB2E0000A840 /* CustomLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomLogFormatter.h; path = folly/logging/CustomLogFormatter.h; sourceTree = ""; }; + 46EB2E0000A850 /* FileHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileHandlerFactory.h; path = folly/logging/FileHandlerFactory.h; sourceTree = ""; }; + 46EB2E0000A860 /* FileWriterFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileWriterFactory.h; path = folly/logging/FileWriterFactory.h; sourceTree = ""; }; + 46EB2E0000A870 /* GlogStyleFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlogStyleFormatter.h; path = folly/logging/GlogStyleFormatter.h; sourceTree = ""; }; + 46EB2E0000A880 /* ImmediateFileWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImmediateFileWriter.h; path = folly/logging/ImmediateFileWriter.h; sourceTree = ""; }; + 46EB2E0000A890 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/logging/Init.h; sourceTree = ""; }; + 46EB2E0000A8A0 /* LogCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogCategory.h; path = folly/logging/LogCategory.h; sourceTree = ""; }; + 46EB2E0000A8B0 /* LogCategoryConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogCategoryConfig.h; path = folly/logging/LogCategoryConfig.h; sourceTree = ""; }; + 46EB2E0000A8C0 /* LogConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogConfig.h; path = folly/logging/LogConfig.h; sourceTree = ""; }; + 46EB2E0000A8D0 /* LogConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogConfigParser.h; path = folly/logging/LogConfigParser.h; sourceTree = ""; }; + 46EB2E0000A8E0 /* LogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogFormatter.h; path = folly/logging/LogFormatter.h; sourceTree = ""; }; + 46EB2E0000A8F0 /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = folly/logging/Logger.h; sourceTree = ""; }; + 46EB2E0000A900 /* LoggerDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerDB.h; path = folly/logging/LoggerDB.h; sourceTree = ""; }; + 46EB2E0000A910 /* LogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandler.h; path = folly/logging/LogHandler.h; sourceTree = ""; }; + 46EB2E0000A920 /* LogHandlerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandlerConfig.h; path = folly/logging/LogHandlerConfig.h; sourceTree = ""; }; + 46EB2E0000A930 /* LogHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogHandlerFactory.h; path = folly/logging/LogHandlerFactory.h; sourceTree = ""; }; + 46EB2E0000A940 /* LogLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogLevel.h; path = folly/logging/LogLevel.h; sourceTree = ""; }; + 46EB2E0000A950 /* LogMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogMessage.h; path = folly/logging/LogMessage.h; sourceTree = ""; }; + 46EB2E0000A960 /* LogName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogName.h; path = folly/logging/LogName.h; sourceTree = ""; }; + 46EB2E0000A970 /* LogStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogStream.h; path = folly/logging/LogStream.h; sourceTree = ""; }; + 46EB2E0000A980 /* LogStreamProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogStreamProcessor.h; path = folly/logging/LogStreamProcessor.h; sourceTree = ""; }; + 46EB2E0000A990 /* LogWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LogWriter.h; path = folly/logging/LogWriter.h; sourceTree = ""; }; + 46EB2E0000A9A0 /* ObjectToString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectToString.h; path = folly/logging/ObjectToString.h; sourceTree = ""; }; + 46EB2E0000A9B0 /* RateLimiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RateLimiter.h; path = folly/logging/RateLimiter.h; sourceTree = ""; }; + 46EB2E0000A9C0 /* StandardLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StandardLogHandler.h; path = folly/logging/StandardLogHandler.h; sourceTree = ""; }; + 46EB2E0000A9D0 /* StandardLogHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StandardLogHandlerFactory.h; path = folly/logging/StandardLogHandlerFactory.h; sourceTree = ""; }; + 46EB2E0000A9E0 /* StreamHandlerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamHandlerFactory.h; path = folly/logging/StreamHandlerFactory.h; sourceTree = ""; }; + 46EB2E0000A9F0 /* xlog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xlog.h; path = folly/logging/xlog.h; sourceTree = ""; }; + 46EB2E0000AA00 /* AsyncFileWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncFileWriter.cpp; path = folly/logging/AsyncFileWriter.cpp; sourceTree = ""; }; + 46EB2E0000AA10 /* AsyncLogWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncLogWriter.cpp; path = folly/logging/AsyncLogWriter.cpp; sourceTree = ""; }; + 46EB2E0000AA20 /* BridgeFromGoogleLogging.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeFromGoogleLogging.cpp; path = folly/logging/BridgeFromGoogleLogging.cpp; sourceTree = ""; }; + 46EB2E0000AA30 /* CustomLogFormatter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CustomLogFormatter.cpp; path = folly/logging/CustomLogFormatter.cpp; sourceTree = ""; }; + 46EB2E0000AA40 /* FileHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileHandlerFactory.cpp; path = folly/logging/FileHandlerFactory.cpp; sourceTree = ""; }; + 46EB2E0000AA50 /* FileWriterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileWriterFactory.cpp; path = folly/logging/FileWriterFactory.cpp; sourceTree = ""; }; + 46EB2E0000AA60 /* GlogStyleFormatter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlogStyleFormatter.cpp; path = folly/logging/GlogStyleFormatter.cpp; sourceTree = ""; }; + 46EB2E0000AA70 /* ImmediateFileWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImmediateFileWriter.cpp; path = folly/logging/ImmediateFileWriter.cpp; sourceTree = ""; }; + 46EB2E0000AA80 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/logging/Init.cpp; sourceTree = ""; }; + 46EB2E0000AA90 /* InitWeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InitWeak.cpp; path = folly/logging/InitWeak.cpp; sourceTree = ""; }; + 46EB2E0000AAA0 /* LogCategory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategory.cpp; path = folly/logging/LogCategory.cpp; sourceTree = ""; }; + 46EB2E0000AAB0 /* LogCategoryConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategoryConfig.cpp; path = folly/logging/LogCategoryConfig.cpp; sourceTree = ""; }; + 46EB2E0000AAC0 /* LogConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfig.cpp; path = folly/logging/LogConfig.cpp; sourceTree = ""; }; + 46EB2E0000AAD0 /* LogConfigParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfigParser.cpp; path = folly/logging/LogConfigParser.cpp; sourceTree = ""; }; + 46EB2E0000AAE0 /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = folly/logging/Logger.cpp; sourceTree = ""; }; + 46EB2E0000AAF0 /* LoggerDB.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerDB.cpp; path = folly/logging/LoggerDB.cpp; sourceTree = ""; }; + 46EB2E0000AB00 /* LogHandlerConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogHandlerConfig.cpp; path = folly/logging/LogHandlerConfig.cpp; sourceTree = ""; }; + 46EB2E0000AB10 /* LogLevel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogLevel.cpp; path = folly/logging/LogLevel.cpp; sourceTree = ""; }; + 46EB2E0000AB20 /* LogMessage.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogMessage.cpp; path = folly/logging/LogMessage.cpp; sourceTree = ""; }; + 46EB2E0000AB30 /* LogName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogName.cpp; path = folly/logging/LogName.cpp; sourceTree = ""; }; + 46EB2E0000AB40 /* LogStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogStream.cpp; path = folly/logging/LogStream.cpp; sourceTree = ""; }; + 46EB2E0000AB50 /* LogStreamProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogStreamProcessor.cpp; path = folly/logging/LogStreamProcessor.cpp; sourceTree = ""; }; + 46EB2E0000AB60 /* ObjectToString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectToString.cpp; path = folly/logging/ObjectToString.cpp; sourceTree = ""; }; + 46EB2E0000AB70 /* RateLimiter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RateLimiter.cpp; path = folly/logging/RateLimiter.cpp; sourceTree = ""; }; + 46EB2E0000AB80 /* StandardLogHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandler.cpp; path = folly/logging/StandardLogHandler.cpp; sourceTree = ""; }; + 46EB2E0000AB90 /* StandardLogHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandlerFactory.cpp; path = folly/logging/StandardLogHandlerFactory.cpp; sourceTree = ""; }; + 46EB2E0000ABA0 /* StreamHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamHandlerFactory.cpp; path = folly/logging/StreamHandlerFactory.cpp; sourceTree = ""; }; + 46EB2E0000ABB0 /* xlog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xlog.cpp; path = folly/logging/xlog.cpp; sourceTree = ""; }; + 46EB2E0000ABC0 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/experimental/coro/detail/Barrier.h; sourceTree = ""; }; + 46EB2E0000ABD0 /* BarrierTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarrierTask.h; path = folly/experimental/coro/detail/BarrierTask.h; sourceTree = ""; }; + 46EB2E0000ABE0 /* CurrentAsyncFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentAsyncFrame.h; path = folly/experimental/coro/detail/CurrentAsyncFrame.h; sourceTree = ""; }; + 46EB2E0000ABF0 /* Helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Helpers.h; path = folly/experimental/coro/detail/Helpers.h; sourceTree = ""; }; + 46EB2E0000AC00 /* InlineTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineTask.h; path = folly/experimental/coro/detail/InlineTask.h; sourceTree = ""; }; + 46EB2E0000AC10 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/experimental/coro/detail/Malloc.h; sourceTree = ""; }; + 46EB2E0000AC20 /* ManualLifetime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualLifetime.h; path = folly/experimental/coro/detail/ManualLifetime.h; sourceTree = ""; }; + 46EB2E0000AC30 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/detail/Traits.h; sourceTree = ""; }; + 46EB2E0000AC40 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/experimental/coro/detail/Malloc.cpp; sourceTree = ""; }; + 46EB2E0000AC50 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; + 46EB2E0000AC60 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; + 46EB2E0000AC70 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; + 46EB2E0000AC80 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; + 46EB2E0000AC90 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; + 46EB2E0000ACA0 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; + 46EB2E0000ACB0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; + 46EB2E0000ACC0 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; + 46EB2E0000ACD0 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; + 46EB2E0000ACE0 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; + 46EB2E0000ACF0 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; + 46EB2E0000AD00 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; + 46EB2E0000AD10 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; + 46EB2E0000AD20 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; + 46EB2E0000AD30 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; + 46EB2E0000AD40 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; + 46EB2E0000AD50 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; + 46EB2E0000AD60 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; + 46EB2E0000AD70 /* Observable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observable-inl.h"; path = "folly/experimental/observer/Observable-inl.h"; sourceTree = ""; }; + 46EB2E0000AD80 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = folly/experimental/observer/Observable.h; sourceTree = ""; }; + 46EB2E0000AD90 /* Observer-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-inl.h"; path = "folly/experimental/observer/Observer-inl.h"; sourceTree = ""; }; + 46EB2E0000ADA0 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; + 46EB2E0000ADB0 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; + 46EB2E0000ADC0 /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; + 46EB2E0000ADD0 /* SimpleObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleObservable.h; path = folly/experimental/observer/SimpleObservable.h; sourceTree = ""; }; + 46EB2E0000ADE0 /* WithJitter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WithJitter-inl.h"; path = "folly/experimental/observer/WithJitter-inl.h"; sourceTree = ""; }; + 46EB2E0000ADF0 /* WithJitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithJitter.h; path = folly/experimental/observer/WithJitter.h; sourceTree = ""; }; + 46EB2E0000AE00 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; + 46EB2E0000AE10 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; + 46EB2E0000AE20 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; + 46EB2E0000AE30 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; + 46EB2E0000AE40 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; + 46EB2E0000AE50 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; + 46EB2E0000AE60 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; + 46EB2E0000AE70 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; + 46EB2E0000AE80 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; + 46EB2E0000AE90 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; + 46EB2E0000AEA0 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; + 46EB2E0000AEB0 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; + 46EB2E0000AEC0 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; + 46EB2E0000AED0 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; + 46EB2E0000AEE0 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; + 46EB2E0000AEF0 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; + 46EB2E0000AF00 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; + 46EB2E0000AF10 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; + 46EB2E0000AF20 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; + 46EB2E0000AF30 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; + 46EB2E0000AF40 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + 46EB2E0000AF50 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; + 46EB2E0000AF60 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; + 46EB2E0000AF70 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; + 46EB2E0000AF80 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; + 46EB2E0000AF90 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; + 46EB2E0000AFA0 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; + 46EB2E0000AFB0 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; + 46EB2E0000AFC0 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; + 46EB2E0000AFD0 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; + 46EB2E0000AFE0 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; + 46EB2E0000AFF0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/experimental/observer/detail/Core.h; sourceTree = ""; }; + 46EB2E0000B000 /* GraphCycleDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GraphCycleDetector.h; path = folly/experimental/observer/detail/GraphCycleDetector.h; sourceTree = ""; }; + 46EB2E0000B010 /* ObserverManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObserverManager.h; path = folly/experimental/observer/detail/ObserverManager.h; sourceTree = ""; }; + 46EB2E0000B020 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/experimental/observer/detail/Core.cpp; sourceTree = ""; }; + 46EB2E0000B030 /* ObserverManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverManager.cpp; path = folly/experimental/observer/detail/ObserverManager.cpp; sourceTree = ""; }; + 46EB2E0000B040 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; + 46EB2E0000B050 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; + 46EB2E0000B060 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; + 46EB2E0000B070 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; + 46EB2E0000B080 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; + 46EB2E0000B090 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; + 46EB2E0000B0A0 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; + 46EB2E0000B0B0 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; + 46EB2E0000B0C0 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; + 46EB2E0000B0D0 /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; + 46EB2E0000B0E0 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; + 46EB2E0000B0F0 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; + 46EB2E0000B100 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; + 46EB2E0000B110 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; + 46EB2E0000B120 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; + 46EB2E0000B130 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; + 46EB2E0000B140 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; + 46EB2E0000B150 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; + 46EB2E0000B160 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; + 46EB2E0000B170 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; + 46EB2E0000B180 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; + 46EB2E0000B190 /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; + 46EB2E0000B1A0 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; + 46EB2E0000B1B0 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; + 46EB2E0000B1C0 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; + 46EB2E0000B1D0 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; + 46EB2E0000B1E0 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; + 46EB2E0000B1F0 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; + 46EB2E0000B200 /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; + 46EB2E0000B210 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; + 46EB2E0000B220 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; + 46EB2E0000B230 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; + 46EB2E0000B240 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; + 46EB2E0000B250 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; + 46EB2E0000B260 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; + 46EB2E0000B270 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; + 46EB2E0000B280 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; + 46EB2E0000B290 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; + 46EB2E0000B2A0 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; + 46EB2E0000B2B0 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; + 46EB2E0000B2C0 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; + 46EB2E0000B2D0 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; + 46EB2E0000B2E0 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; + 46EB2E0000B2F0 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; + 46EB2E0000B300 /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; + 46EB2E0000B310 /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; + 46EB2E0000B320 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; + 46EB2E0000B330 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; + 46EB2E0000B340 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; + 46EB2E0000B350 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; + 46EB2E0000B360 /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; + 46EB2E0000B370 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; + 46EB2E0000B380 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; + 46EB2E0000B390 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; + 46EB2E0000B3A0 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; + 46EB2E0000B3B0 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; + 46EB2E0000B3C0 /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; + 46EB2E0000B3D0 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; + 46EB2E0000B3E0 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; + 46EB2E0000B3F0 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; + 46EB2E0000B400 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; + 46EB2E0000B410 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; + 46EB2E0000B420 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; + 46EB2E0000B430 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; + 46EB2E0000B440 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; + 46EB2E0000B450 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; + 46EB2E0000B460 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; + 46EB2E0000B470 /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; + 46EB2E0000B480 /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; + 46EB2E0000B490 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; + 46EB2E0000B4A0 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; + 46EB2E0000B4B0 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; + 46EB2E0000B4C0 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; + 46EB2E0000B4D0 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; + 46EB2E0000B4E0 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; + 46EB2E0000B4F0 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; + 46EB2E0000B500 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; + 46EB2E0000B510 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; + 46EB2E0000B520 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; + 46EB2E0000B530 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; + 46EB2E0000B540 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; + 46EB2E0000B550 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; + 46EB2E0000B560 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; + 46EB2E0000B570 /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; + 46EB2E0000B580 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; + 46EB2E0000B590 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; + 46EB2E0000B5A0 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; + 46EB2E0000B5B0 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; + 46EB2E0000B5C0 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; + 46EB2E0000B5D0 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; + 46EB2E0000B5E0 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; + 46EB2E0000B5F0 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; + 46EB2E0000B600 /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; + 46EB2E0000B610 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; + 46EB2E0000B620 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; + 46EB2E0000B630 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; + 46EB2E0000B640 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; + 46EB2E0000B650 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; + 46EB2E0000B660 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; + 46EB2E0000B670 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; + 46EB2E0000B680 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; + 46EB2E0000B690 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; + 46EB2E0000B6A0 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; + 46EB2E0000B6B0 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; + 46EB2E0000B6C0 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; + 46EB2E0000B6D0 /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; + 46EB2E0000B6E0 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; + 46EB2E0000B6F0 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; + 46EB2E0000B700 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; + 46EB2E0000B710 /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; + 46EB2E0000B720 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; + 46EB2E0000B730 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; + 46EB2E0000B740 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; + 46EB2E0000B750 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; + 46EB2E0000B760 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; + 46EB2E0000B770 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; + 46EB2E0000B780 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; + 46EB2E0000B790 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; + 46EB2E0000B7A0 /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; + 46EB2E0000B7B0 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; + 46EB2E0000B7C0 /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; + 46EB2E0000B7D0 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; + 46EB2E0000B7E0 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; + 46EB2E0000B7F0 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; + 46EB2E0000B800 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; + 46EB2E0000B810 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; + 46EB2E0000B820 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; + 46EB2E0000B830 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; + 46EB2E0000B840 /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; + 46EB2E0000B850 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; + 46EB2E0000B860 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; + 46EB2E0000B870 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; + 46EB2E0000B880 /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; + 46EB2E0000B890 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; + 46EB2E0000B8A0 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; + 46EB2E0000B8B0 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; + 46EB2E0000B8C0 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; + 46EB2E0000B8D0 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; + 46EB2E0000B8E0 /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; + 46EB2E0000B8F0 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; + 46EB2E0000B900 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; + 46EB2E0000B910 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; + 46EB2E0000B920 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; + 46EB2E0000B930 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; + 46EB2E0000B940 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; + 46EB2E0000B950 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; + 46EB2E0000B960 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; + 46EB2E0000B970 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; + 46EB2E0000B980 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; + 46EB2E0000B990 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; + 46EB2E0000B9A0 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; + 46EB2E0000B9B0 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; + 46EB2E0000B9C0 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; + 46EB2E0000B9D0 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; + 46EB2E0000B9E0 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; + 46EB2E0000B9F0 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; + 46EB2E0000BA00 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; + 46EB2E0000BA10 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; + 46EB2E0000BA20 /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; + 46EB2E0000BA30 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; + 46EB2E0000BA40 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; + 46EB2E0000BA50 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; + 46EB2E0000BA60 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; + 46EB2E0000BA70 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; + 46EB2E0000BA80 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; + 46EB2E0000BAA0 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; + 46EB2E0000BAB0 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; + 46EB2E0000BAC0 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; + 46EB2E0000BAD0 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; + 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; + 46EB2E0000BAF0 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; + 46EB2E0000BB00 /* FlipperKitCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitCertificateProvider.h; path = iOS/FlipperKit/FlipperKitCertificateProvider.h; sourceTree = ""; }; + 46EB2E0000BB10 /* FlipperPlatformWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlatformWebSocket.h; path = iOS/FlipperKit/FlipperPlatformWebSocket.h; sourceTree = ""; }; + 46EB2E0000BB20 /* FlipperPlatformWebSocket.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperPlatformWebSocket.mm; path = iOS/FlipperKit/FlipperPlatformWebSocket.mm; sourceTree = ""; }; + 46EB2E0000BB30 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; + 46EB2E0000BB40 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; + 46EB2E0000BB50 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; + 46EB2E0000BB60 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; + 46EB2E0000BB70 /* FlipperWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperWebSocket.h; path = iOS/FlipperKit/FlipperWebSocket.h; sourceTree = ""; }; + 46EB2E0000BB80 /* FlipperWebSocket.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperWebSocket.mm; path = iOS/FlipperKit/FlipperWebSocket.mm; sourceTree = ""; }; + 46EB2E0000BB90 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; + 46EB2E0000BBA0 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; + 46EB2E0000BBB0 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; + 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; + 46EB2E0000BBD0 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; + 46EB2E0000BBE0 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; + 46EB2E0000BBF0 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; + 46EB2E0000BC00 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; + 46EB2E0000BC10 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; + 46EB2E0000BC20 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; + 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; + 46EB2E0000BC60 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; + 46EB2E0000BC80 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; + 46EB2E0000BCA0 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; + 46EB2E0000BCB0 /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; + 46EB2E0000BCC0 /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; + 46EB2E0000BCE0 /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; + 46EB2E0000BCF0 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; + 46EB2E0000BD10 /* FlipperKitLayoutDescriptorMapperProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutDescriptorMapperProtocol.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/FlipperKitLayoutDescriptorMapperProtocol.h; sourceTree = ""; }; + 46EB2E0000BD20 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKHiddenWindow.h; sourceTree = ""; }; + 46EB2E0000BD30 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKHiddenWindow.m; sourceTree = ""; }; + 46EB2E0000BD40 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKInvalidation.h; sourceTree = ""; }; + 46EB2E0000BD50 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKInvalidation.m; sourceTree = ""; }; + 46EB2E0000BD60 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNamed.h; sourceTree = ""; }; + 46EB2E0000BD70 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNamed.mm; sourceTree = ""; }; + 46EB2E0000BD80 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNodeDescriptor.h; sourceTree = ""; }; + 46EB2E0000BD90 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKNodeDescriptor.mm; sourceTree = ""; }; + 46EB2E0000BDA0 /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObject.h; sourceTree = ""; }; + 46EB2E0000BDB0 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObject.mm; sourceTree = ""; }; + 46EB2E0000BDC0 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKObjectHash.h; sourceTree = ""; }; + 46EB2E0000BDD0 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSearchResultNode.h; sourceTree = ""; }; + 46EB2E0000BDE0 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSearchResultNode.m; sourceTree = ""; }; + 46EB2E0000BDF0 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSwizzle.h; sourceTree = ""; }; + 46EB2E0000BE00 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKSwizzle.mm; sourceTree = ""; }; + 46EB2E0000BE10 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListener.h; sourceTree = ""; }; + 46EB2E0000BE20 /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListenerImpl.h; sourceTree = ""; }; + 46EB2E0000BE30 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTapListenerImpl.m; sourceTree = ""; }; + 46EB2E0000BE40 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTouch.h; sourceTree = ""; }; + 46EB2E0000BE50 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKTouch.m; sourceTree = ""; }; + 46EB2E0000BE60 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/SKYogaKitHelper.h; sourceTree = ""; }; + 46EB2E0000BE70 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; + 46EB2E0000BE80 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; + 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; + 46EB2E0000BEA0 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; + 46EB2E0000BEB0 /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIView+SKInvalidation.h"; sourceTree = ""; }; + 46EB2E0000BEC0 /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/UIView+SKInvalidation.mm"; sourceTree = ""; }; + 46EB2E0000BEE0 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKApplicationDescriptor.h; sourceTree = ""; }; + 46EB2E0000BEF0 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKApplicationDescriptor.m; sourceTree = ""; }; + 46EB2E0000BF00 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKButtonDescriptor.h; sourceTree = ""; }; + 46EB2E0000BF10 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKButtonDescriptor.mm; sourceTree = ""; }; + 46EB2E0000BF20 /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; + 46EB2E0000BF30 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; + 46EB2E0000BF40 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; + 46EB2E0000BF50 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; + 46EB2E0000BF60 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.h; sourceTree = ""; }; + 46EB2E0000BF70 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.mm; sourceTree = ""; }; + 46EB2E0000BF90 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; + 46EB2E0000BFA0 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; + 46EB2E0000BFB0 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; + 46EB2E0000BFC0 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; + 46EB2E0000BFE0 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; + 46EB2E0000C000 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; + 46EB2E0000C010 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; + 46EB2E0000C020 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; + 46EB2E0000C030 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; + 46EB2E0000C040 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; + 46EB2E0000C050 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; + 46EB2E0000C060 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; + 46EB2E0000C070 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; + 46EB2E0000C080 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; + 46EB2E0000C090 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; + 46EB2E0000C0A0 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; + 46EB2E0000C0B0 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; + 46EB2E0000C0D0 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; + 46EB2E0000C0E0 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; + 46EB2E0000C100 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; + 46EB2E0000C110 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; + 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; + 46EB2E0000C130 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; + 46EB2E0000C150 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; + 46EB2E0000C160 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; + 46EB2E0000C170 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; + 46EB2E0000C180 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; + 46EB2E0000C190 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; + 46EB2E0000C1A0 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; + 46EB2E0000C1B0 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; + 46EB2E0000C1C0 /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; + 46EB2E0000C1D0 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; + 46EB2E0000C1E0 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; + 46EB2E0000C200 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; + 46EB2E0000C210 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; + 46EB2E0000C220 /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; + 46EB2E0000C230 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; + 46EB2E0000C240 /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; + 46EB2E0000C250 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; + 46EB2E0000C260 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; + 46EB2E0000C270 /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; + 46EB2E0000C280 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; + 46EB2E0000C290 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; + 46EB2E0000C2A0 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; + 46EB2E0000C2B0 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; + 46EB2E0000C2C0 /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; + 46EB2E0000C2D0 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; + 46EB2E0000C2E0 /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; + 46EB2E0000C2F0 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; + 46EB2E0000C300 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; + 46EB2E0000C310 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; + 46EB2E0000C320 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; + 46EB2E0000C330 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + 46EB2E0000C340 /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; + 46EB2E0000C350 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; + 46EB2E0000C360 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; + 46EB2E0000C370 /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; + 46EB2E0000C380 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; + 46EB2E0000C390 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; + 46EB2E0000C3A0 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; + 46EB2E0000C3B0 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; + 46EB2E0000C3C0 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; + 46EB2E0000C3D0 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; + 46EB2E0000C3E0 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; + 46EB2E0000C3F0 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; + 46EB2E0000C400 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; + 46EB2E0000C410 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; + 46EB2E0000C420 /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; + 46EB2E0000C430 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + 46EB2E0000C440 /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; + 46EB2E0000C450 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; + 46EB2E0000C460 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + 46EB2E0000C470 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; + 46EB2E0000C480 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 46EB2E0000C490 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 46EB2E0000C4A0 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; + 46EB2E0000C4B0 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; + 46EB2E0000C4C0 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; + 46EB2E0000C4D0 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; + 46EB2E0000C4E0 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; + 46EB2E0000C4F0 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; + 46EB2E0000C500 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; + 46EB2E0000C510 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; + 46EB2E0000C520 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; + 46EB2E0000C530 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; + 46EB2E0000C540 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; + 46EB2E0000C550 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; + 46EB2E0000C560 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + 46EB2E0000C570 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; + 46EB2E0000C580 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + 46EB2E0000C590 /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; + 46EB2E0000C5A0 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; + 46EB2E0000C5B0 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 46EB2E0000C5C0 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + 46EB2E0000C5D0 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + 46EB2E0000C5E0 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; + 46EB2E0000C5F0 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + 46EB2E0000C600 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; + 46EB2E0000C610 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; + 46EB2E0000C630 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; + 46EB2E0000C640 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + 46EB2E0000C650 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 46EB2E0000C660 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; + 46EB2E0000C670 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; + 46EB2E0000C680 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + 46EB2E0000C690 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 46EB2E0000C6A0 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 46EB2E0000C6C0 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; + 46EB2E0000C6D0 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; + 46EB2E0000C6E0 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; + 46EB2E0000C6F0 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 46EB2E0000C700 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; + 46EB2E0000C710 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; + 46EB2E0000C720 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; + 46EB2E0000C730 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 46EB2E0000C740 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; + 46EB2E0000C750 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; + 46EB2E0000C760 /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; + 46EB2E0000C770 /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; + 46EB2E0000C780 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 46EB2E0000C790 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 46EB2E0000C7A0 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 46EB2E0000C7B0 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; + 46EB2E0000C7C0 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; + 46EB2E0000C7E0 /* GULObjectSwizzler+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULObjectSwizzler+Internal.h"; path = "GoogleUtilities/ISASwizzler/GULObjectSwizzler+Internal.h"; sourceTree = ""; }; + 46EB2E0000C7F0 /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; + 46EB2E0000C800 /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; + 46EB2E0000C810 /* GULObjectSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULObjectSwizzler.h; path = GoogleUtilities/ISASwizzler/Public/GoogleUtilities/GULObjectSwizzler.h; sourceTree = ""; }; + 46EB2E0000C820 /* GULSwizzledObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzledObject.h; path = GoogleUtilities/ISASwizzler/Public/GoogleUtilities/GULSwizzledObject.h; sourceTree = ""; }; + 46EB2E0000C840 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; + 46EB2E0000C850 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + 46EB2E0000C860 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; + 46EB2E0000C880 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 46EB2E0000C890 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + 46EB2E0000C8A0 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; + 46EB2E0000C8C0 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + 46EB2E0000C8D0 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; + 46EB2E0000C8F0 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + 46EB2E0000C900 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 46EB2E0000C910 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 46EB2E0000C920 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + 46EB2E0000C930 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + 46EB2E0000C940 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; + 46EB2E0000C950 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; + 46EB2E0000C960 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; + 46EB2E0000C970 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 46EB2E0000C980 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + 46EB2E0000C990 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; + 46EB2E0000C9B0 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + 46EB2E0000C9C0 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + 46EB2E0000C9D0 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; + 46EB2E0000C9E0 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; + 46EB2E0000CA00 /* GULProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULProxy.h; path = GoogleUtilities/SwizzlerTestHelpers/GULProxy.h; sourceTree = ""; }; + 46EB2E0000CA10 /* GULProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULProxy.m; path = GoogleUtilities/SwizzlerTestHelpers/GULProxy.m; sourceTree = ""; }; + 46EB2E0000CA20 /* GULRuntimeClassDiff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeClassDiff.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassDiff.h; sourceTree = ""; }; + 46EB2E0000CA30 /* GULRuntimeClassDiff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeClassDiff.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassDiff.m; sourceTree = ""; }; + 46EB2E0000CA40 /* GULRuntimeClassSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeClassSnapshot.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassSnapshot.h; sourceTree = ""; }; + 46EB2E0000CA50 /* GULRuntimeClassSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeClassSnapshot.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeClassSnapshot.m; sourceTree = ""; }; + 46EB2E0000CA60 /* GULRuntimeDiff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeDiff.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeDiff.h; sourceTree = ""; }; + 46EB2E0000CA70 /* GULRuntimeDiff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeDiff.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeDiff.m; sourceTree = ""; }; + 46EB2E0000CA80 /* GULRuntimeSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeSnapshot.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeSnapshot.h; sourceTree = ""; }; + 46EB2E0000CA90 /* GULRuntimeSnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeSnapshot.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeSnapshot.m; sourceTree = ""; }; + 46EB2E0000CAA0 /* GULRuntimeStateHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULRuntimeStateHelper.h; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeStateHelper.h; sourceTree = ""; }; + 46EB2E0000CAB0 /* GULRuntimeStateHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULRuntimeStateHelper.m; path = GoogleUtilities/SwizzlerTestHelpers/GULRuntimeStateHelper.m; sourceTree = ""; }; + 46EB2E0000CAC0 /* GULSwizzler+Unswizzle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULSwizzler+Unswizzle.m"; path = "GoogleUtilities/SwizzlerTestHelpers/GULSwizzler+Unswizzle.m"; sourceTree = ""; }; + 46EB2E0000CAD0 /* GULSwizzlingCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzlingCache.h; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache.h; sourceTree = ""; }; + 46EB2E0000CAE0 /* GULSwizzlingCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzlingCache.m; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache.m; sourceTree = ""; }; + 46EB2E0000CAF0 /* GULSwizzlingCache_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzlingCache_Private.h; path = GoogleUtilities/SwizzlerTestHelpers/GULSwizzlingCache_Private.h; sourceTree = ""; }; + 46EB2E0000CB00 /* GULSwizzler+Unswizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULSwizzler+Unswizzle.h"; path = "GoogleUtilities/SwizzlerTestHelpers/Public/GoogleUtilities/GULSwizzler+Unswizzle.h"; sourceTree = ""; }; + 46EB2E0000CB20 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + 46EB2E0000CB30 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; + 46EB2E0000CB40 /* JWTAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithm.h; path = Core/Algorithms/Base/JWTAlgorithm.h; sourceTree = ""; }; + 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTAlgorithmErrorDescription+Subclass.h"; path = "Core/Algorithms/Base/JWTAlgorithmErrorDescription+Subclass.h"; sourceTree = ""; }; + 46EB2E0000CB60 /* JWTAlgorithmErrorDescription+Subclass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTAlgorithmErrorDescription+Subclass.m"; path = "Core/Algorithms/Base/JWTAlgorithmErrorDescription+Subclass.m"; sourceTree = ""; }; + 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmErrorDescription.h; path = Core/Algorithms/Base/JWTAlgorithmErrorDescription.h; sourceTree = ""; }; + 46EB2E0000CB80 /* JWTAlgorithmErrorDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmErrorDescription.m; path = Core/Algorithms/Base/JWTAlgorithmErrorDescription.m; sourceTree = ""; }; + 46EB2E0000CB90 /* JWTAlgorithmFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmFactory.h; path = Core/Algorithms/Base/JWTAlgorithmFactory.h; sourceTree = ""; }; + 46EB2E0000CBA0 /* JWTAlgorithmFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmFactory.m; path = Core/Algorithms/Base/JWTAlgorithmFactory.m; sourceTree = ""; }; + 46EB2E0000CBB0 /* JWTAlgorithmNone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmNone.h; path = Core/Algorithms/Base/JWTAlgorithmNone.h; sourceTree = ""; }; + 46EB2E0000CBC0 /* JWTAlgorithmNone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmNone.m; path = Core/Algorithms/Base/JWTAlgorithmNone.m; sourceTree = ""; }; + 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmAsymmetricBase.h; path = Core/Algorithms/ESFamily/JWTAlgorithmAsymmetricBase.h; sourceTree = ""; }; + 46EB2E0000CBE0 /* JWTAlgorithmAsymmetricBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmAsymmetricBase.m; path = Core/Algorithms/ESFamily/JWTAlgorithmAsymmetricBase.m; sourceTree = ""; }; + 46EB2E0000CBF0 /* JWTAlgorithmESBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmESBase.h; path = Core/Algorithms/ESFamily/JWTAlgorithmESBase.h; sourceTree = ""; }; + 46EB2E0000CC00 /* JWTAlgorithmESBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmESBase.m; path = Core/Algorithms/ESFamily/JWTAlgorithmESBase.m; sourceTree = ""; }; + 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTAlgorithmDataHolder+FluentStyle.h"; path = "Core/Algorithms/Holders/JWTAlgorithmDataHolder+FluentStyle.h"; sourceTree = ""; }; + 46EB2E0000CC20 /* JWTAlgorithmDataHolder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTAlgorithmDataHolder+FluentStyle.m"; path = "Core/Algorithms/Holders/JWTAlgorithmDataHolder+FluentStyle.m"; sourceTree = ""; }; + 46EB2E0000CC30 /* JWTAlgorithmDataHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmDataHolder.h; path = Core/Algorithms/Holders/JWTAlgorithmDataHolder.h; sourceTree = ""; }; + 46EB2E0000CC40 /* JWTAlgorithmDataHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmDataHolder.m; path = Core/Algorithms/Holders/JWTAlgorithmDataHolder.m; sourceTree = ""; }; + 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmDataHolderChain.h; path = Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.h; sourceTree = ""; }; + 46EB2E0000CC60 /* JWTAlgorithmDataHolderChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmDataHolderChain.m; path = Core/Algorithms/Holders/JWTAlgorithmDataHolderChain.m; sourceTree = ""; }; + 46EB2E0000CC70 /* JWTAlgorithmHSBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmHSBase.h; path = Core/Algorithms/HSFamily/JWTAlgorithmHSBase.h; sourceTree = ""; }; + 46EB2E0000CC80 /* JWTAlgorithmHSBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmHSBase.m; path = Core/Algorithms/HSFamily/JWTAlgorithmHSBase.m; sourceTree = ""; }; + 46EB2E0000CC90 /* JWTAlgorithmRSBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTAlgorithmRSBase.h; path = Core/Algorithms/RSFamily/JWTAlgorithmRSBase.h; sourceTree = ""; }; + 46EB2E0000CCA0 /* JWTAlgorithmRSBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTAlgorithmRSBase.m; path = Core/Algorithms/RSFamily/JWTAlgorithmRSBase.m; sourceTree = ""; }; + 46EB2E0000CCB0 /* JWTRSAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTRSAlgorithm.h; path = Core/Algorithms/RSFamily/JWTRSAlgorithm.h; sourceTree = ""; }; + 46EB2E0000CCC0 /* JWTCryptoKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoKey.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.h; sourceTree = ""; }; + 46EB2E0000CCD0 /* JWTCryptoKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoKey.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKey.m; sourceTree = ""; }; + 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoKeyExtractor+FluentStyle.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor+FluentStyle.h"; sourceTree = ""; }; + 46EB2E0000CCF0 /* JWTCryptoKeyExtractor+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoKeyExtractor+FluentStyle.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor+FluentStyle.m"; sourceTree = ""; }; + 46EB2E0000CD00 /* JWTCryptoKeyExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoKeyExtractor.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.h; sourceTree = ""; }; + 46EB2E0000CD10 /* JWTCryptoKeyExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoKeyExtractor.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoKeyExtractor.m; sourceTree = ""; }; + 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+ErrorHandling.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ErrorHandling.h"; sourceTree = ""; }; + 46EB2E0000CD30 /* JWTCryptoSecurity+ErrorHandling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+ErrorHandling.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ErrorHandling.m"; sourceTree = ""; }; + 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+ExternalRepresentation.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ExternalRepresentation.h"; sourceTree = ""; }; + 46EB2E0000CD50 /* JWTCryptoSecurity+ExternalRepresentation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+ExternalRepresentation.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+ExternalRepresentation.m"; sourceTree = ""; }; + 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCryptoSecurity+Extraction.h"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+Extraction.h"; sourceTree = ""; }; + 46EB2E0000CD70 /* JWTCryptoSecurity+Extraction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCryptoSecurity+Extraction.m"; path = "Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity+Extraction.m"; sourceTree = ""; }; + 46EB2E0000CD80 /* JWTCryptoSecurity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCryptoSecurity.h; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.h; sourceTree = ""; }; + 46EB2E0000CD90 /* JWTCryptoSecurity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCryptoSecurity.m; path = Core/Algorithms/RSFamily/RSKeys/JWTCryptoSecurity.m; sourceTree = ""; }; + 46EB2E0000CDA0 /* JWTClaim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaim.h; path = Core/ClaimSet/JWTClaim.h; sourceTree = ""; }; + 46EB2E0000CDB0 /* JWTClaim.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaim.m; path = Core/ClaimSet/JWTClaim.m; sourceTree = ""; }; + 46EB2E0000CDC0 /* JWTClaimsSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSet.h; path = Core/ClaimSet/JWTClaimsSet.h; sourceTree = ""; }; + 46EB2E0000CDD0 /* JWTClaimsSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSet.m; path = Core/ClaimSet/JWTClaimsSet.m; sourceTree = ""; }; + 46EB2E0000CDE0 /* JWTClaimsSetSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetSerializer.h; path = Core/ClaimSet/JWTClaimsSetSerializer.h; sourceTree = ""; }; + 46EB2E0000CDF0 /* JWTClaimsSetSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetSerializer.m; path = Core/ClaimSet/JWTClaimsSetSerializer.m; sourceTree = ""; }; + 46EB2E0000CE00 /* JWTClaimsSetVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTClaimsSetVerifier.h; path = Core/ClaimSet/JWTClaimsSetVerifier.h; sourceTree = ""; }; + 46EB2E0000CE10 /* JWTClaimsSetVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTClaimsSetVerifier.m; path = Core/ClaimSet/JWTClaimsSetVerifier.m; sourceTree = ""; }; + 46EB2E0000CE20 /* JWTBuilder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTBuilder+FluentStyle.h"; path = "Core/Coding/JWTBuilder+FluentStyle.h"; sourceTree = ""; }; + 46EB2E0000CE30 /* JWTBuilder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTBuilder+FluentStyle.m"; path = "Core/Coding/JWTBuilder+FluentStyle.m"; sourceTree = ""; }; + 46EB2E0000CE40 /* JWTCoding+ResultTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+ResultTypes.h"; path = "Core/Coding/JWTCoding+ResultTypes.h"; sourceTree = ""; }; + 46EB2E0000CE50 /* JWTCoding+ResultTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+ResultTypes.m"; path = "Core/Coding/JWTCoding+ResultTypes.m"; sourceTree = ""; }; + 46EB2E0000CE60 /* JWTCoding+VersionOne.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionOne.h"; path = "Core/Coding/JWTCoding+VersionOne.h"; sourceTree = ""; }; + 46EB2E0000CE70 /* JWTCoding+VersionOne.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionOne.m"; path = "Core/Coding/JWTCoding+VersionOne.m"; sourceTree = ""; }; + 46EB2E0000CE80 /* JWTCoding+VersionThree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionThree.h"; path = "Core/Coding/JWTCoding+VersionThree.h"; sourceTree = ""; }; + 46EB2E0000CE90 /* JWTCoding+VersionThree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionThree.m"; path = "Core/Coding/JWTCoding+VersionThree.m"; sourceTree = ""; }; + 46EB2E0000CEA0 /* JWTCoding+VersionTwo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCoding+VersionTwo.h"; path = "Core/Coding/JWTCoding+VersionTwo.h"; sourceTree = ""; }; + 46EB2E0000CEB0 /* JWTCoding+VersionTwo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCoding+VersionTwo.m"; path = "Core/Coding/JWTCoding+VersionTwo.m"; sourceTree = ""; }; + 46EB2E0000CEC0 /* JWTCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTCoding.h; path = Core/Coding/JWTCoding.h; sourceTree = ""; }; + 46EB2E0000CED0 /* JWTCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTCoding.m; path = Core/Coding/JWTCoding.m; sourceTree = ""; }; + 46EB2E0000CEE0 /* JWTCodingBuilder+FluentStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "JWTCodingBuilder+FluentStyle.h"; path = "Core/Coding/JWTCodingBuilder+FluentStyle.h"; sourceTree = ""; }; + 46EB2E0000CEF0 /* JWTCodingBuilder+FluentStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "JWTCodingBuilder+FluentStyle.m"; path = "Core/Coding/JWTCodingBuilder+FluentStyle.m"; sourceTree = ""; }; + 46EB2E0000CF00 /* JWT.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWT.h; path = Core/FrameworkSupplement/JWT.h; sourceTree = ""; }; + 46EB2E0000CF10 /* JWTBase64Coder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTBase64Coder.h; path = Core/Supplement/JWTBase64Coder.h; sourceTree = ""; }; + 46EB2E0000CF20 /* JWTBase64Coder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTBase64Coder.m; path = Core/Supplement/JWTBase64Coder.m; sourceTree = ""; }; + 46EB2E0000CF30 /* JWTDeprecations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTDeprecations.h; path = Core/Supplement/JWTDeprecations.h; sourceTree = ""; }; + 46EB2E0000CF40 /* JWTErrorDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JWTErrorDescription.h; path = Core/Supplement/JWTErrorDescription.h; sourceTree = ""; }; + 46EB2E0000CF50 /* JWTErrorDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JWTErrorDescription.m; path = Core/Supplement/JWTErrorDescription.m; sourceTree = ""; }; + 46EB2E0000CF70 /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; + 46EB2E0000CF80 /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idna.c; path = src/idna.c; sourceTree = ""; }; + 46EB2E0000CF90 /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = inet.c; path = src/inet.c; sourceTree = ""; }; + 46EB2E0000CFA0 /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; + 46EB2E0000CFB0 /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; + 46EB2E0000CFC0 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.c; path = src/timer.c; sourceTree = ""; }; + 46EB2E0000CFD0 /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; + 46EB2E0000CFE0 /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; + 46EB2E0000CFF0 /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; name = version.c; path = src/version.c; sourceTree = ""; }; + 46EB2E0000D000 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; name = async.c; path = src/unix/async.c; sourceTree = ""; }; + 46EB2E0000D010 /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; name = core.c; path = src/unix/core.c; sourceTree = ""; }; + 46EB2E0000D020 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; + 46EB2E0000D030 /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; + 46EB2E0000D040 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; + 46EB2E0000D050 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; + 46EB2E0000D060 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; + 46EB2E0000D070 /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; + 46EB2E0000D080 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; + 46EB2E0000D090 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; + 46EB2E0000D0A0 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; name = process.c; path = src/unix/process.c; sourceTree = ""; }; + 46EB2E0000D0B0 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; + 46EB2E0000D0C0 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; + 46EB2E0000D0D0 /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; + 46EB2E0000D0E0 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; + 46EB2E0000D0F0 /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; + 46EB2E0000D100 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; + 46EB2E0000D110 /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; + 46EB2E0000D120 /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; + 46EB2E0000D130 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; + 46EB2E0000D140 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; + 46EB2E0000D150 /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; + 46EB2E0000D160 /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; + 46EB2E0000D170 /* heap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "heap-inl.h"; path = "src/heap-inl.h"; sourceTree = ""; }; + 46EB2E0000D180 /* idna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idna.h; path = src/idna.h; sourceTree = ""; }; + 46EB2E0000D190 /* queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = queue.h; path = src/queue.h; sourceTree = ""; }; + 46EB2E0000D1A0 /* strscpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strscpy.h; path = src/strscpy.h; sourceTree = ""; }; + 46EB2E0000D1B0 /* uv-common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "uv-common.h"; path = "src/uv-common.h"; sourceTree = ""; }; + 46EB2E0000D1C0 /* atomic-ops.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "atomic-ops.h"; path = "src/unix/atomic-ops.h"; sourceTree = ""; }; + 46EB2E0000D1D0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/unix/internal.h; sourceTree = ""; }; + 46EB2E0000D1E0 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/unix/spinlock.h; sourceTree = ""; }; + 46EB2E0000D200 /* uv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uv.h; path = include/uv.h; sourceTree = ""; }; + 46EB2E0000D210 /* errno.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno.h; path = include/uv/errno.h; sourceTree = ""; }; + 46EB2E0000D220 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = include/uv/threadpool.h; sourceTree = ""; }; + 46EB2E0000D230 /* version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version.h; path = include/uv/version.h; sourceTree = ""; }; + 46EB2E0000D240 /* tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tree.h; path = include/uv/tree.h; sourceTree = ""; }; + 46EB2E0000D250 /* unix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix.h; path = include/uv/unix.h; sourceTree = ""; }; + 46EB2E0000D260 /* darwin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = darwin.h; path = include/uv/darwin.h; sourceTree = ""; }; + 46EB2E0000D270 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 46EB2E0000D280 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + 46EB2E0000D290 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + 46EB2E0000D2A0 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + 46EB2E0000D2B0 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 46EB2E0000D2C0 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 46EB2E0000D2D0 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + 46EB2E0000D2E0 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + 46EB2E0000D2F0 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; + 46EB2E0000D300 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + 46EB2E0000D310 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + 46EB2E0000D320 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; + 46EB2E0000D330 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + 46EB2E0000D340 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 46EB2E0000D350 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 46EB2E0000D360 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + 46EB2E0000D370 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; + 46EB2E0000D380 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + 46EB2E0000D390 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 46EB2E0000D3A0 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + 46EB2E0000D3B0 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; + 46EB2E0000D3C0 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 46EB2E0000D3D0 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 46EB2E0000D3E0 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + 46EB2E0000D3F0 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; + 46EB2E0000D400 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + 46EB2E0000D410 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; + 46EB2E0000D420 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + 46EB2E0000D430 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + 46EB2E0000D440 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + 46EB2E0000D450 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; + 46EB2E0000D460 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + 46EB2E0000D470 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + 46EB2E0000D480 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + 46EB2E0000D490 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + 46EB2E0000D4A0 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + 46EB2E0000D4B0 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 46EB2E0000D4C0 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + 46EB2E0000D4D0 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 46EB2E0000D4E0 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + 46EB2E0000D4F0 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; + 46EB2E0000D500 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 46EB2E0000D510 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + 46EB2E0000D520 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; + 46EB2E0000D530 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; + 46EB2E0000D540 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 46EB2E0000D550 /* ToAscii.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ToAscii.cpp; path = folly/lang/ToAscii.cpp; sourceTree = ""; }; + 46EB2E0000D560 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; + 46EB2E0000D570 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + 46EB2E0000D580 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 46EB2E0000D590 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; + 46EB2E0000D5A0 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + 46EB2E0000D5B0 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; + 46EB2E0000D5C0 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; + 46EB2E0000D5D0 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 46EB2E0000D5E0 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 46EB2E0000D5F0 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; + 46EB2E0000D600 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = folly/lang/Exception.cpp; sourceTree = ""; }; + 46EB2E0000D610 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; + 46EB2E0000D620 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; + 46EB2E0000D630 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; + 46EB2E0000D640 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; + 46EB2E0000D650 /* ThreadId.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadId.cpp; path = folly/system/ThreadId.cpp; sourceTree = ""; }; + 46EB2E0000D660 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; + 46EB2E0000D670 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; + 46EB2E0000D680 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; + 46EB2E0000D690 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; + 46EB2E0000D6A0 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; + 46EB2E0000D6B0 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; + 46EB2E0000D6C0 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; + 46EB2E0000D6D0 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; + 46EB2E0000D6E0 /* BenchmarkUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BenchmarkUtil.h; path = folly/BenchmarkUtil.h; sourceTree = ""; }; + 46EB2E0000D6F0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; + 46EB2E0000D700 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; + 46EB2E0000D710 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; + 46EB2E0000D720 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; + 46EB2E0000D730 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; + 46EB2E0000D740 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; + 46EB2E0000D750 /* ConcurrentLazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentLazy.h; path = folly/ConcurrentLazy.h; sourceTree = ""; }; + 46EB2E0000D760 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; + 46EB2E0000D770 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; + 46EB2E0000D780 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; + 46EB2E0000D790 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; + 46EB2E0000D7A0 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; + 46EB2E0000D7B0 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; + 46EB2E0000D7C0 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; + 46EB2E0000D7D0 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; + 46EB2E0000D7E0 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; + 46EB2E0000D7F0 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; + 46EB2E0000D800 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; + 46EB2E0000D810 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; + 46EB2E0000D820 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; + 46EB2E0000D830 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; + 46EB2E0000D840 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; + 46EB2E0000D850 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; + 46EB2E0000D860 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; + 46EB2E0000D870 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; + 46EB2E0000D880 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; + 46EB2E0000D890 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; + 46EB2E0000D8A0 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; + 46EB2E0000D8B0 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; + 46EB2E0000D8C0 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; + 46EB2E0000D8D0 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; + 46EB2E0000D8E0 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; + 46EB2E0000D8F0 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + 46EB2E0000D900 /* FollyMemcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FollyMemcpy.h; path = folly/FollyMemcpy.h; sourceTree = ""; }; + 46EB2E0000D910 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; + 46EB2E0000D920 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; + 46EB2E0000D930 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; + 46EB2E0000D940 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; + 46EB2E0000D950 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; + 46EB2E0000D960 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; + 46EB2E0000D970 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; + 46EB2E0000D980 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; + 46EB2E0000D990 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; + 46EB2E0000D9A0 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; + 46EB2E0000D9B0 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; + 46EB2E0000D9C0 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; + 46EB2E0000D9D0 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; + 46EB2E0000D9E0 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; + 46EB2E0000D9F0 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; + 46EB2E0000DA00 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; + 46EB2E0000DA10 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; + 46EB2E0000DA20 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; + 46EB2E0000DA30 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; + 46EB2E0000DA40 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; + 46EB2E0000DA50 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; + 46EB2E0000DA60 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; + 46EB2E0000DA70 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; + 46EB2E0000DA80 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; + 46EB2E0000DA90 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; + 46EB2E0000DAA0 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; + 46EB2E0000DAB0 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; + 46EB2E0000DAC0 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; + 46EB2E0000DAD0 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; + 46EB2E0000DAE0 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; + 46EB2E0000DAF0 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; + 46EB2E0000DB00 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; + 46EB2E0000DB10 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; + 46EB2E0000DB20 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; + 46EB2E0000DB30 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; + 46EB2E0000DB40 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; + 46EB2E0000DB50 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; + 46EB2E0000DB60 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; + 46EB2E0000DB70 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; + 46EB2E0000DB80 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; + 46EB2E0000DB90 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; + 46EB2E0000DBA0 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 46EB2E0000DBB0 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; + 46EB2E0000DBC0 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; + 46EB2E0000DBD0 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; + 46EB2E0000DBE0 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; + 46EB2E0000DBF0 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; + 46EB2E0000DC00 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; + 46EB2E0000DC10 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; + 46EB2E0000DC20 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; + 46EB2E0000DC30 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; + 46EB2E0000DC40 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; + 46EB2E0000DC50 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; + 46EB2E0000DC60 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; + 46EB2E0000DC70 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; + 46EB2E0000DC80 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; + 46EB2E0000DC90 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; + 46EB2E0000DCA0 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; + 46EB2E0000DCB0 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; + 46EB2E0000DCC0 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; + 46EB2E0000DCD0 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; + 46EB2E0000DCE0 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; + 46EB2E0000DCF0 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; + 46EB2E0000DD00 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; + 46EB2E0000DD10 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; + 46EB2E0000DD20 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; + 46EB2E0000DD30 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; + 46EB2E0000DD40 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; + 46EB2E0000DD50 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; + 46EB2E0000DD60 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; + 46EB2E0000DD70 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; + 46EB2E0000DD80 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; + 46EB2E0000DD90 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + 46EB2E0000DDA0 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; + 46EB2E0000DDB0 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; + 46EB2E0000DDC0 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; + 46EB2E0000DDD0 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; + 46EB2E0000DDE0 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; + 46EB2E0000DDF0 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; + 46EB2E0000DE00 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; + 46EB2E0000DE10 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; + 46EB2E0000DE20 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; + 46EB2E0000DE30 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; + 46EB2E0000DE40 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; + 46EB2E0000DE50 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; + 46EB2E0000DE60 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; + 46EB2E0000DE70 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; + 46EB2E0000DE80 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; + 46EB2E0000DE90 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; + 46EB2E0000DEA0 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; + 46EB2E0000DEB0 /* View.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = View.h; path = folly/container/View.h; sourceTree = ""; }; + 46EB2E0000DEC0 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; + 46EB2E0000DED0 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; + 46EB2E0000DEE0 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; + 46EB2E0000DEF0 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; + 46EB2E0000DF00 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; + 46EB2E0000DF10 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; + 46EB2E0000DF20 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; + 46EB2E0000DF30 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; + 46EB2E0000DF40 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; + 46EB2E0000DF50 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; + 46EB2E0000DF60 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; + 46EB2E0000DF70 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; + 46EB2E0000DF80 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; + 46EB2E0000DF90 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; + 46EB2E0000DFA0 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; + 46EB2E0000DFB0 /* FileUtilVectorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilVectorDetail.h; path = folly/detail/FileUtilVectorDetail.h; sourceTree = ""; }; + 46EB2E0000DFC0 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; + 46EB2E0000DFD0 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; + 46EB2E0000DFE0 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; + 46EB2E0000DFF0 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; + 46EB2E0000E000 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; + 46EB2E0000E010 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; + 46EB2E0000E020 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; + 46EB2E0000E030 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; + 46EB2E0000E040 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; + 46EB2E0000E050 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; + 46EB2E0000E060 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; + 46EB2E0000E070 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; + 46EB2E0000E080 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; + 46EB2E0000E090 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; + 46EB2E0000E0A0 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; + 46EB2E0000E0B0 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; + 46EB2E0000E0C0 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; + 46EB2E0000E0D0 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; + 46EB2E0000E0E0 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; + 46EB2E0000E0F0 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; + 46EB2E0000E100 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; + 46EB2E0000E110 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; + 46EB2E0000E120 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; + 46EB2E0000E130 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; + 46EB2E0000E140 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; + 46EB2E0000E150 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; + 46EB2E0000E160 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; + 46EB2E0000E170 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; + 46EB2E0000E180 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; + 46EB2E0000E190 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; + 46EB2E0000E1A0 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; + 46EB2E0000E1B0 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; + 46EB2E0000E1C0 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; + 46EB2E0000E1D0 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; + 46EB2E0000E1E0 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; + 46EB2E0000E1F0 /* Byte.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Byte.h; path = folly/lang/Byte.h; sourceTree = ""; }; + 46EB2E0000E200 /* CArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CArray.h; path = folly/lang/CArray.h; sourceTree = ""; }; + 46EB2E0000E210 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; + 46EB2E0000E220 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; + 46EB2E0000E230 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; + 46EB2E0000E240 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; + 46EB2E0000E250 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; + 46EB2E0000E260 /* Extern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Extern.h; path = folly/lang/Extern.h; sourceTree = ""; }; + 46EB2E0000E270 /* Keep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Keep.h; path = folly/lang/Keep.h; sourceTree = ""; }; + 46EB2E0000E280 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; + 46EB2E0000E290 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; + 46EB2E0000E2A0 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; + 46EB2E0000E2B0 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; + 46EB2E0000E2C0 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; + 46EB2E0000E2D0 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; + 46EB2E0000E2E0 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; + 46EB2E0000E2F0 /* Thunk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Thunk.h; path = folly/lang/Thunk.h; sourceTree = ""; }; + 46EB2E0000E300 /* ToAscii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ToAscii.h; path = folly/lang/ToAscii.h; sourceTree = ""; }; + 46EB2E0000E310 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; + 46EB2E0000E320 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; + 46EB2E0000E330 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; + 46EB2E0000E340 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; + 46EB2E0000E350 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; + 46EB2E0000E360 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; + 46EB2E0000E370 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; + 46EB2E0000E380 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; + 46EB2E0000E390 /* not_null-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "not_null-inl.h"; path = "folly/memory/not_null-inl.h"; sourceTree = ""; }; + 46EB2E0000E3A0 /* not_null.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = not_null.h; path = folly/memory/not_null.h; sourceTree = ""; }; + 46EB2E0000E3B0 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; + 46EB2E0000E3C0 /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; + 46EB2E0000E3D0 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; + 46EB2E0000E3E0 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; + 46EB2E0000E3F0 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; + 46EB2E0000E400 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; + 46EB2E0000E410 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + 46EB2E0000E420 /* NetOpsDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOpsDispatcher.h; path = folly/net/NetOpsDispatcher.h; sourceTree = ""; }; + 46EB2E0000E430 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; + 46EB2E0000E440 /* TcpInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpInfo.h; path = folly/net/TcpInfo.h; sourceTree = ""; }; + 46EB2E0000E450 /* TcpInfoTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpInfoTypes.h; path = folly/net/TcpInfoTypes.h; sourceTree = ""; }; + 46EB2E0000E460 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; + 46EB2E0000E470 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; + 46EB2E0000E480 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; + 46EB2E0000E490 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; + 46EB2E0000E4A0 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; + 46EB2E0000E4B0 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; + 46EB2E0000E4C0 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; + 46EB2E0000E4D0 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; + 46EB2E0000E4E0 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; + 46EB2E0000E4F0 /* Filesystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filesystem.h; path = folly/portability/Filesystem.h; sourceTree = ""; }; + 46EB2E0000E500 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; + 46EB2E0000E510 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; + 46EB2E0000E520 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; + 46EB2E0000E530 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; + 46EB2E0000E540 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; + 46EB2E0000E550 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; + 46EB2E0000E560 /* Libunwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libunwind.h; path = folly/portability/Libunwind.h; sourceTree = ""; }; + 46EB2E0000E570 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; + 46EB2E0000E580 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; + 46EB2E0000E590 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; + 46EB2E0000E5A0 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; + 46EB2E0000E5B0 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; + 46EB2E0000E5C0 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; + 46EB2E0000E5D0 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; + 46EB2E0000E5E0 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; + 46EB2E0000E5F0 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; + 46EB2E0000E600 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + 46EB2E0000E610 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; + 46EB2E0000E620 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; + 46EB2E0000E630 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; + 46EB2E0000E640 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; + 46EB2E0000E650 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; + 46EB2E0000E660 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; + 46EB2E0000E670 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; + 46EB2E0000E680 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; + 46EB2E0000E690 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; + 46EB2E0000E6A0 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; + 46EB2E0000E6B0 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; + 46EB2E0000E6C0 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; + 46EB2E0000E6D0 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; + 46EB2E0000E6F0 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; + 46EB2E0000E700 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; + 46EB2E0000E710 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; + 46EB2E0000E720 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; + 46EB2E0000E730 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; + 46EB2E0000E740 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; + 46EB2E0000E750 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; + 46EB2E0000E760 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; + 46EB2E0000E770 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; + 46EB2E0000E780 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; + 46EB2E0000E790 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; + 46EB2E0000E7A0 /* Promise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Promise.cpp; path = folly/futures/Promise.cpp; sourceTree = ""; }; + 46EB2E0000E7B0 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; + 46EB2E0000E7C0 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; + 46EB2E0000E7D0 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; + 46EB2E0000E7E0 /* SharedPromise.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedPromise.cpp; path = folly/futures/SharedPromise.cpp; sourceTree = ""; }; + 46EB2E0000E7F0 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; + 46EB2E0000E800 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; + 46EB2E0000E810 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; + 46EB2E0000E820 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; + 46EB2E0000E830 /* Core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Core.cpp; path = folly/futures/detail/Core.cpp; sourceTree = ""; }; + 46EB2E0000E840 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; + 46EB2E0000E850 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; + 46EB2E0000E860 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; + 46EB2E0000E870 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; + 46EB2E0000E880 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; + 46EB2E0000E890 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000E8A0 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E0000E8B0 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; + 46EB2E0000E8C0 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000E8D0 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E0000E8E0 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; + 46EB2E0000E8F0 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; + 46EB2E0000E900 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; + 46EB2E0000E910 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; + 46EB2E0000E920 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; + 46EB2E0000E930 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; + 46EB2E0000E940 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; + 46EB2E0000E950 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; + 46EB2E0000E960 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; + 46EB2E0000E970 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; + 46EB2E0000E980 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; + 46EB2E0000E990 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; + 46EB2E0000E9A0 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + 46EB2E0000E9B0 /* IOThreadPoolDeadlockDetectorObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolDeadlockDetectorObserver.cpp; path = folly/executors/IOThreadPoolDeadlockDetectorObserver.cpp; sourceTree = ""; }; + 46EB2E0000E9C0 /* IOThreadPoolDeadlockDetectorObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolDeadlockDetectorObserver.h; path = folly/executors/IOThreadPoolDeadlockDetectorObserver.h; sourceTree = ""; }; + 46EB2E0000E9D0 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000E9E0 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E0000E9F0 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EA00 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; + 46EB2E0000EA10 /* MeteredExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MeteredExecutor.cpp; path = folly/executors/MeteredExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EA20 /* MeteredExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MeteredExecutor.h; path = folly/executors/MeteredExecutor.h; sourceTree = ""; }; + 46EB2E0000EA30 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EA40 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; + 46EB2E0000EA50 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; + 46EB2E0000EA60 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; + 46EB2E0000EA70 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EA80 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; + 46EB2E0000EA90 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; + 46EB2E0000EAA0 /* StrandExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StrandExecutor.cpp; path = folly/executors/StrandExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EAB0 /* StrandExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StrandExecutor.h; path = folly/executors/StrandExecutor.h; sourceTree = ""; }; + 46EB2E0000EAC0 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EAD0 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; + 46EB2E0000EAE0 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EAF0 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E0000EB00 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EB10 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; + 46EB2E0000EB20 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EB30 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; + 46EB2E0000EB40 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; + 46EB2E0000EB50 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; + 46EB2E0000EB60 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; + 46EB2E0000EB70 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; + 46EB2E0000EB80 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; + 46EB2E0000EB90 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; + 46EB2E0000EBA0 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; + 46EB2E0000EBB0 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; + 46EB2E0000EBC0 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; + 46EB2E0000EBD0 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; + 46EB2E0000EBE0 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; + 46EB2E0000EBF0 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; + 46EB2E0000EC00 /* DeadlockDetector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DeadlockDetector.cpp; path = folly/concurrency/DeadlockDetector.cpp; sourceTree = ""; }; + 46EB2E0000EC10 /* DeadlockDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeadlockDetector.h; path = folly/concurrency/DeadlockDetector.h; sourceTree = ""; }; + 46EB2E0000EC20 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; + 46EB2E0000EC30 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; + 46EB2E0000EC40 /* QueueObserver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueueObserver.cpp; path = folly/concurrency/QueueObserver.cpp; sourceTree = ""; }; + 46EB2E0000EC50 /* QueueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueueObserver.h; path = folly/concurrency/QueueObserver.h; sourceTree = ""; }; + 46EB2E0000EC60 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; + 46EB2E0000EC70 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; + 46EB2E0000EC80 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; + 46EB2E0000EC90 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; + 46EB2E0000ECA0 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; + 46EB2E0000ECB0 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; + 46EB2E0000ECC0 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; + 46EB2E0000ECD0 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; + 46EB2E0000ECE0 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; + 46EB2E0000ECF0 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; + 46EB2E0000ED00 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; + 46EB2E0000ED10 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; + 46EB2E0000ED20 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; + 46EB2E0000ED30 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; + 46EB2E0000ED40 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; + 46EB2E0000ED50 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; + 46EB2E0000ED60 /* DelayedInit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedInit.h; path = folly/synchronization/DelayedInit.h; sourceTree = ""; }; + 46EB2E0000ED70 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; + 46EB2E0000ED80 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; + 46EB2E0000ED90 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; + 46EB2E0000EDA0 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; + 46EB2E0000EDB0 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; + 46EB2E0000EDC0 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; + 46EB2E0000EDD0 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; + 46EB2E0000EDE0 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + 46EB2E0000EDF0 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; + 46EB2E0000EE00 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; + 46EB2E0000EE10 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; + 46EB2E0000EE20 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; + 46EB2E0000EE30 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; + 46EB2E0000EE40 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; + 46EB2E0000EE50 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; + 46EB2E0000EE60 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = folly/synchronization/Latch.h; sourceTree = ""; }; + 46EB2E0000EE70 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; + 46EB2E0000EE80 /* Lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lock.h; path = folly/synchronization/Lock.h; sourceTree = ""; }; + 46EB2E0000EE90 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; + 46EB2E0000EEA0 /* NativeSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeSemaphore.h; path = folly/synchronization/NativeSemaphore.h; sourceTree = ""; }; + 46EB2E0000EEB0 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; + 46EB2E0000EEC0 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; + 46EB2E0000EED0 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; + 46EB2E0000EEE0 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; + 46EB2E0000EEF0 /* Rcu.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Rcu.cpp; path = folly/synchronization/Rcu.cpp; sourceTree = ""; }; + 46EB2E0000EF00 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = ""; }; + 46EB2E0000EF10 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; + 46EB2E0000EF20 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; + 46EB2E0000EF30 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; + 46EB2E0000EF40 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; + 46EB2E0000EF50 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; + 46EB2E0000EF60 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; + 46EB2E0000EF70 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; + 46EB2E0000EF80 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; + 46EB2E0000EF90 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; + 46EB2E0000EFA0 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; + 46EB2E0000EFB0 /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = ""; }; + 46EB2E0000EFC0 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; + 46EB2E0000EFD0 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; + 46EB2E0000EFE0 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; + 46EB2E0000EFF0 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; + 46EB2E0000F000 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; + 46EB2E0000F010 /* Sleeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sleeper.cpp; path = folly/synchronization/detail/Sleeper.cpp; sourceTree = ""; }; + 46EB2E0000F020 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; + 46EB2E0000F030 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; + 46EB2E0000F040 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; + 46EB2E0000F050 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; + 46EB2E0000F060 /* Try.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Try.cpp; path = folly/Try.cpp; sourceTree = ""; }; + 46EB2E0000F070 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; + 46EB2E0000F080 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; + 46EB2E0000F090 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; + 46EB2E0000F0A0 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; + 46EB2E0000F0B0 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; + 46EB2E0000F0C0 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; + 46EB2E0000F0D0 /* AtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotificationQueue-inl.h"; path = "folly/io/async/AtomicNotificationQueue-inl.h"; sourceTree = ""; }; + 46EB2E0000F0E0 /* AtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotificationQueue.h; path = folly/io/async/AtomicNotificationQueue.h; sourceTree = ""; }; + 46EB2E0000F0F0 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; + 46EB2E0000F100 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; + 46EB2E0000F110 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; + 46EB2E0000F120 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; + 46EB2E0000F130 /* EventBaseAtomicNotificationQueue-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseAtomicNotificationQueue-inl.h"; path = "folly/io/async/EventBaseAtomicNotificationQueue-inl.h"; sourceTree = ""; }; + 46EB2E0000F140 /* EventBaseAtomicNotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseAtomicNotificationQueue.h; path = folly/io/async/EventBaseAtomicNotificationQueue.h; sourceTree = ""; }; + 46EB2E0000F150 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; + 46EB2E0000F160 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; + 46EB2E0000F170 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; + 46EB2E0000F180 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; + 46EB2E0000F190 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; + 46EB2E0000F1A0 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; + 46EB2E0000F1B0 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; + 46EB2E0000F1C0 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; + 46EB2E0000F1D0 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; + 46EB2E0000F1E0 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; + 46EB2E0000F1F0 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; + 46EB2E0000F200 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; + 46EB2E0000F210 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 46EB2E0000F220 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; + 46EB2E0000F230 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; + 46EB2E0000F240 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; + 46EB2E0000F250 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; + 46EB2E0000F260 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; + 46EB2E0000F270 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; + 46EB2E0000F280 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; + 46EB2E0000F290 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; + 46EB2E0000F2A0 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; + 46EB2E0000F2B0 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; + 46EB2E0000F2C0 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; + 46EB2E0000F2D0 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; + 46EB2E0000F2E0 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; + 46EB2E0000F2F0 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; + 46EB2E0000F300 /* AsyncStack.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncStack.cpp; path = folly/tracing/AsyncStack.cpp; sourceTree = ""; }; + 46EB2E0000F310 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/tracing/AsyncStack.h; sourceTree = ""; }; + 46EB2E0000F320 /* AsyncStack-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AsyncStack-inl.h"; path = "folly/tracing/AsyncStack-inl.h"; sourceTree = ""; }; + 46EB2E0000F330 /* ExceptionString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionString.cpp; path = folly/ExceptionString.cpp; sourceTree = ""; }; + 46EB2E0000F340 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; + 46EB2E0000F350 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; + 46EB2E0000F360 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; + 46EB2E0000F370 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; + 46EB2E0000F380 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; + 46EB2E0000F390 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; + 46EB2E0000F3A0 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; + 46EB2E0000F3B0 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; + 46EB2E0000F3C0 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; + 46EB2E0000F3D0 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; + 46EB2E0000F3E0 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; + 46EB2E0000F3F0 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; + 46EB2E0000F400 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; + 46EB2E0000F410 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; + 46EB2E0000F420 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/Traits.h; sourceTree = ""; }; + 46EB2E0000F430 /* AddTasks-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AddTasks-inl.h"; path = "folly/fibers/AddTasks-inl.h"; sourceTree = ""; }; + 46EB2E0000F440 /* AddTasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AddTasks.h; path = folly/fibers/AddTasks.h; sourceTree = ""; }; + 46EB2E0000F450 /* AtomicBatchDispatcher-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicBatchDispatcher-inl.h"; path = "folly/fibers/AtomicBatchDispatcher-inl.h"; sourceTree = ""; }; + 46EB2E0000F460 /* AtomicBatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicBatchDispatcher.h; path = folly/fibers/AtomicBatchDispatcher.h; sourceTree = ""; }; + 46EB2E0000F470 /* BatchDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchDispatcher.h; path = folly/fibers/BatchDispatcher.h; sourceTree = ""; }; + 46EB2E0000F480 /* BatchSemaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchSemaphore.cpp; path = folly/fibers/BatchSemaphore.cpp; sourceTree = ""; }; + 46EB2E0000F490 /* BatchSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BatchSemaphore.h; path = folly/fibers/BatchSemaphore.h; sourceTree = ""; }; + 46EB2E0000F4A0 /* Baton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Baton-inl.h"; path = "folly/fibers/Baton-inl.h"; sourceTree = ""; }; + 46EB2E0000F4B0 /* Baton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Baton.cpp; path = folly/fibers/Baton.cpp; sourceTree = ""; }; + 46EB2E0000F4C0 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/fibers/Baton.h; sourceTree = ""; }; + 46EB2E0000F4D0 /* BoostContextCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BoostContextCompatibility.h; path = folly/fibers/BoostContextCompatibility.h; sourceTree = ""; }; + 46EB2E0000F4E0 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/fibers/CallOnce.h; sourceTree = ""; }; + 46EB2E0000F4F0 /* EventBaseLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EventBaseLoopController-inl.h"; path = "folly/fibers/EventBaseLoopController-inl.h"; sourceTree = ""; }; + 46EB2E0000F500 /* EventBaseLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLoopController.h; path = folly/fibers/EventBaseLoopController.h; sourceTree = ""; }; + 46EB2E0000F510 /* ExecutorBasedLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorBasedLoopController.h; path = folly/fibers/ExecutorBasedLoopController.h; sourceTree = ""; }; + 46EB2E0000F520 /* ExecutorLoopController-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorLoopController-inl.h"; path = "folly/fibers/ExecutorLoopController-inl.h"; sourceTree = ""; }; + 46EB2E0000F530 /* ExecutorLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorLoopController.h; path = folly/fibers/ExecutorLoopController.h; sourceTree = ""; }; + 46EB2E0000F540 /* Fiber-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Fiber-inl.h"; path = "folly/fibers/Fiber-inl.h"; sourceTree = ""; }; + 46EB2E0000F550 /* Fiber.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fiber.cpp; path = folly/fibers/Fiber.cpp; sourceTree = ""; }; + 46EB2E0000F560 /* Fiber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fiber.h; path = folly/fibers/Fiber.h; sourceTree = ""; }; + 46EB2E0000F570 /* FiberManager-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManager-inl.h"; path = "folly/fibers/FiberManager-inl.h"; sourceTree = ""; }; + 46EB2E0000F580 /* FiberManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FiberManager.cpp; path = folly/fibers/FiberManager.cpp; sourceTree = ""; }; + 46EB2E0000F590 /* FiberManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManager.h; path = folly/fibers/FiberManager.h; sourceTree = ""; }; + 46EB2E0000F5A0 /* FiberManagerInternal-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerInternal-inl.h"; path = "folly/fibers/FiberManagerInternal-inl.h"; sourceTree = ""; }; + 46EB2E0000F5B0 /* FiberManagerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerInternal.h; path = folly/fibers/FiberManagerInternal.h; sourceTree = ""; }; + 46EB2E0000F5C0 /* FiberManagerMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FiberManagerMap-inl.h"; path = "folly/fibers/FiberManagerMap-inl.h"; sourceTree = ""; }; + 46EB2E0000F5D0 /* FiberManagerMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberManagerMap.h; path = folly/fibers/FiberManagerMap.h; sourceTree = ""; }; + 46EB2E0000F5E0 /* ForEach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ForEach-inl.h"; path = "folly/fibers/ForEach-inl.h"; sourceTree = ""; }; + 46EB2E0000F5F0 /* ForEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ForEach.h; path = folly/fibers/ForEach.h; sourceTree = ""; }; + 46EB2E0000F600 /* GenericBaton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericBaton.h; path = folly/fibers/GenericBaton.h; sourceTree = ""; }; + 46EB2E0000F610 /* GuardPageAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GuardPageAllocator.cpp; path = folly/fibers/GuardPageAllocator.cpp; sourceTree = ""; }; + 46EB2E0000F620 /* GuardPageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GuardPageAllocator.h; path = folly/fibers/GuardPageAllocator.h; sourceTree = ""; }; + 46EB2E0000F630 /* LoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoopController.h; path = folly/fibers/LoopController.h; sourceTree = ""; }; + 46EB2E0000F640 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/fibers/Promise-inl.h"; sourceTree = ""; }; + 46EB2E0000F650 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/fibers/Promise.h; sourceTree = ""; }; + 46EB2E0000F660 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/fibers/Semaphore.cpp; sourceTree = ""; }; + 46EB2E0000F670 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/fibers/Semaphore.h; sourceTree = ""; }; + 46EB2E0000F680 /* SemaphoreBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SemaphoreBase.cpp; path = folly/fibers/SemaphoreBase.cpp; sourceTree = ""; }; + 46EB2E0000F690 /* SemaphoreBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SemaphoreBase.h; path = folly/fibers/SemaphoreBase.h; sourceTree = ""; }; + 46EB2E0000F6A0 /* SimpleLoopController.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SimpleLoopController.cpp; path = folly/fibers/SimpleLoopController.cpp; sourceTree = ""; }; + 46EB2E0000F6B0 /* SimpleLoopController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleLoopController.h; path = folly/fibers/SimpleLoopController.h; sourceTree = ""; }; + 46EB2E0000F6C0 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; + 46EB2E0000F6D0 /* TimedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedMutex.h; path = folly/fibers/TimedMutex.h; sourceTree = ""; }; + 46EB2E0000F6E0 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = folly/fibers/traits.h; sourceTree = ""; }; + 46EB2E0000F6F0 /* WhenN-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WhenN-inl.h"; path = "folly/fibers/WhenN-inl.h"; sourceTree = ""; }; + 46EB2E0000F700 /* WhenN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhenN.h; path = folly/fibers/WhenN.h; sourceTree = ""; }; + 46EB2E0000F710 /* Coroutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Coroutine.h; path = folly/experimental/coro/Coroutine.h; sourceTree = ""; }; + 46EB2E0000F720 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; + 46EB2E0000F730 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; + 46EB2E0000F740 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; + 46EB2E0000F750 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; + 46EB2E0000F760 /* Bser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bser.h; path = folly/experimental/bser/Bser.h; sourceTree = ""; }; + 46EB2E0000F770 /* AtomicQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicQueue.h; path = folly/experimental/channels/detail/AtomicQueue.h; sourceTree = ""; }; + 46EB2E0000F780 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; + 46EB2E0000F790 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; + 46EB2E0000F7A0 /* Accumulate-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Accumulate-inl.h"; path = "folly/experimental/coro/Accumulate-inl.h"; sourceTree = ""; }; + 46EB2E0000F7B0 /* Accumulate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Accumulate.h; path = folly/experimental/coro/Accumulate.h; sourceTree = ""; }; + 46EB2E0000F7C0 /* AsyncGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGenerator.h; path = folly/experimental/coro/AsyncGenerator.h; sourceTree = ""; }; + 46EB2E0000F7D0 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/experimental/coro/AsyncPipe.h; sourceTree = ""; }; + 46EB2E0000F7E0 /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; + 46EB2E0000F7F0 /* AsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncStack.h; path = folly/experimental/coro/AsyncStack.h; sourceTree = ""; }; + 46EB2E0000F800 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/experimental/coro/Baton.h; sourceTree = ""; }; + 46EB2E0000F810 /* BlockingWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingWait.h; path = folly/experimental/coro/BlockingWait.h; sourceTree = ""; }; + 46EB2E0000F820 /* Collect-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Collect-inl.h"; path = "folly/experimental/coro/Collect-inl.h"; sourceTree = ""; }; + 46EB2E0000F830 /* Collect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Collect.h; path = folly/experimental/coro/Collect.h; sourceTree = ""; }; + 46EB2E0000F840 /* Concat-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Concat-inl.h"; path = "folly/experimental/coro/Concat-inl.h"; sourceTree = ""; }; + 46EB2E0000F850 /* Concat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Concat.h; path = folly/experimental/coro/Concat.h; sourceTree = ""; }; + 46EB2E0000F860 /* CurrentExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentExecutor.h; path = folly/experimental/coro/CurrentExecutor.h; sourceTree = ""; }; + 46EB2E0000F870 /* Dematerialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Dematerialize-inl.h"; path = "folly/experimental/coro/Dematerialize-inl.h"; sourceTree = ""; }; + 46EB2E0000F880 /* Dematerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dematerialize.h; path = folly/experimental/coro/Dematerialize.h; sourceTree = ""; }; + 46EB2E0000F890 /* DetachOnCancel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DetachOnCancel.h; path = folly/experimental/coro/DetachOnCancel.h; sourceTree = ""; }; + 46EB2E0000F8A0 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/experimental/coro/detail/Barrier.h; sourceTree = ""; }; + 46EB2E0000F8B0 /* BarrierTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BarrierTask.h; path = folly/experimental/coro/detail/BarrierTask.h; sourceTree = ""; }; + 46EB2E0000F8C0 /* CurrentAsyncFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentAsyncFrame.h; path = folly/experimental/coro/detail/CurrentAsyncFrame.h; sourceTree = ""; }; + 46EB2E0000F8D0 /* Helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Helpers.h; path = folly/experimental/coro/detail/Helpers.h; sourceTree = ""; }; + 46EB2E0000F8E0 /* InlineTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineTask.h; path = folly/experimental/coro/detail/InlineTask.h; sourceTree = ""; }; + 46EB2E0000F8F0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/experimental/coro/detail/Malloc.h; sourceTree = ""; }; + 46EB2E0000F900 /* ManualLifetime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualLifetime.h; path = folly/experimental/coro/detail/ManualLifetime.h; sourceTree = ""; }; + 46EB2E0000F910 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/experimental/coro/detail/Traits.h; sourceTree = ""; }; + 46EB2E0000F920 /* Filter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Filter-inl.h"; path = "folly/experimental/coro/Filter-inl.h"; sourceTree = ""; }; + 46EB2E0000F930 /* Filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Filter.h; path = folly/experimental/coro/Filter.h; sourceTree = ""; }; + 46EB2E0000F940 /* FutureUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureUtil.h; path = folly/experimental/coro/FutureUtil.h; sourceTree = ""; }; + 46EB2E0000F950 /* Generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Generator.h; path = folly/experimental/coro/Generator.h; sourceTree = ""; }; + 46EB2E0000F960 /* GmockHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GmockHelpers.h; path = folly/experimental/coro/GmockHelpers.h; sourceTree = ""; }; + 46EB2E0000F970 /* GtestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GtestHelpers.h; path = folly/experimental/coro/GtestHelpers.h; sourceTree = ""; }; + 46EB2E0000F980 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/experimental/coro/Invoke.h; sourceTree = ""; }; + 46EB2E0000F990 /* Materialize-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Materialize-inl.h"; path = "folly/experimental/coro/Materialize-inl.h"; sourceTree = ""; }; + 46EB2E0000F9A0 /* Materialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Materialize.h; path = folly/experimental/coro/Materialize.h; sourceTree = ""; }; + 46EB2E0000F9B0 /* Merge-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Merge-inl.h"; path = "folly/experimental/coro/Merge-inl.h"; sourceTree = ""; }; + 46EB2E0000F9C0 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; + 46EB2E0000F9D0 /* Multiplex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Multiplex-inl.h"; path = "folly/experimental/coro/Multiplex-inl.h"; sourceTree = ""; }; + 46EB2E0000F9E0 /* Multiplex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Multiplex.h; path = folly/experimental/coro/Multiplex.h; sourceTree = ""; }; + 46EB2E0000F9F0 /* Mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mutex.h; path = folly/experimental/coro/Mutex.h; sourceTree = ""; }; + 46EB2E0000FA00 /* Result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Result.h; path = folly/experimental/coro/Result.h; sourceTree = ""; }; + 46EB2E0000FA10 /* Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retry.h; path = folly/experimental/coro/Retry.h; sourceTree = ""; }; + 46EB2E0000FA20 /* RustAdaptors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RustAdaptors.h; path = folly/experimental/coro/RustAdaptors.h; sourceTree = ""; }; + 46EB2E0000FA30 /* SharedLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedLock.h; path = folly/experimental/coro/SharedLock.h; sourceTree = ""; }; + 46EB2E0000FA40 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/experimental/coro/SharedMutex.h; sourceTree = ""; }; + 46EB2E0000FA50 /* Sleep-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Sleep-inl.h"; path = "folly/experimental/coro/Sleep-inl.h"; sourceTree = ""; }; + 46EB2E0000FA60 /* Sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleep.h; path = folly/experimental/coro/Sleep.h; sourceTree = ""; }; + 46EB2E0000FA70 /* SmallUnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallUnboundedQueue.h; path = folly/experimental/coro/SmallUnboundedQueue.h; sourceTree = ""; }; + 46EB2E0000FA80 /* Task.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Task.h; path = folly/experimental/coro/Task.h; sourceTree = ""; }; + 46EB2E0000FA90 /* TimedWait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedWait.h; path = folly/experimental/coro/TimedWait.h; sourceTree = ""; }; + 46EB2E0000FAA0 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; + 46EB2E0000FAB0 /* Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timeout.h; path = folly/experimental/coro/Timeout.h; sourceTree = ""; }; + 46EB2E0000FAC0 /* Transform-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Transform-inl.h"; path = "folly/experimental/coro/Transform-inl.h"; sourceTree = ""; }; + 46EB2E0000FAD0 /* Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Transform.h; path = folly/experimental/coro/Transform.h; sourceTree = ""; }; + 46EB2E0000FAE0 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/experimental/coro/UnboundedQueue.h; sourceTree = ""; }; + 46EB2E0000FAF0 /* ViaIfAsync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViaIfAsync.h; path = folly/experimental/coro/ViaIfAsync.h; sourceTree = ""; }; + 46EB2E0000FB00 /* Wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wait.h; path = folly/experimental/coro/Wait.h; sourceTree = ""; }; + 46EB2E0000FB10 /* WithAsyncStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithAsyncStack.h; path = folly/experimental/coro/WithAsyncStack.h; sourceTree = ""; }; + 46EB2E0000FB20 /* WithCancellation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithCancellation.h; path = folly/experimental/coro/WithCancellation.h; sourceTree = ""; }; + 46EB2E0000FB30 /* Blake2xb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Blake2xb.h; path = folly/experimental/crypto/Blake2xb.h; sourceTree = ""; }; + 46EB2E0000FB40 /* LtHashInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LtHashInternal.h; path = folly/experimental/crypto/detail/LtHashInternal.h; sourceTree = ""; }; + 46EB2E0000FB50 /* LtHash-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "LtHash-inl.h"; path = "folly/experimental/crypto/LtHash-inl.h"; sourceTree = ""; }; + 46EB2E0000FB60 /* LtHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LtHash.h; path = folly/experimental/crypto/LtHash.h; sourceTree = ""; }; + 46EB2E0000FB70 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; + 46EB2E0000FB80 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; + 46EB2E0000FB90 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; + 46EB2E0000FBA0 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; + 46EB2E0000FBB0 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; + 46EB2E0000FBC0 /* ExceptionAbi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionAbi.h; path = folly/experimental/exception_tracer/ExceptionAbi.h; sourceTree = ""; }; + 46EB2E0000FBD0 /* ExceptionCounterLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionCounterLib.h; path = folly/experimental/exception_tracer/ExceptionCounterLib.h; sourceTree = ""; }; + 46EB2E0000FBE0 /* ExceptionTracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionTracer.h; path = folly/experimental/exception_tracer/ExceptionTracer.h; sourceTree = ""; }; + 46EB2E0000FBF0 /* ExceptionTracerLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionTracerLib.h; path = folly/experimental/exception_tracer/ExceptionTracerLib.h; sourceTree = ""; }; + 46EB2E0000FC00 /* SmartExceptionTracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmartExceptionTracer.h; path = folly/experimental/exception_tracer/SmartExceptionTracer.h; sourceTree = ""; }; + 46EB2E0000FC10 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/exception_tracer/StackTrace.h; sourceTree = ""; }; + 46EB2E0000FC20 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; + 46EB2E0000FC30 /* FlatCombining.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombining.h; path = folly/experimental/flat_combining/FlatCombining.h; sourceTree = ""; }; + 46EB2E0000FC40 /* FlatCombiningExamples.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningExamples.h; path = folly/experimental/flat_combining/test/FlatCombiningExamples.h; sourceTree = ""; }; + 46EB2E0000FC50 /* FlatCombiningTestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningTestHelpers.h; path = folly/experimental/flat_combining/test/FlatCombiningTestHelpers.h; sourceTree = ""; }; + 46EB2E0000FC60 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; + 46EB2E0000FC70 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; + 46EB2E0000FC80 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; + 46EB2E0000FC90 /* AsyncBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncBase.h; path = folly/experimental/io/AsyncBase.h; sourceTree = ""; }; + 46EB2E0000FCA0 /* AsyncIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncIO.h; path = folly/experimental/io/AsyncIO.h; sourceTree = ""; }; + 46EB2E0000FCB0 /* FsUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FsUtil.h; path = folly/experimental/io/FsUtil.h; sourceTree = ""; }; + 46EB2E0000FCC0 /* HugePages.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HugePages.h; path = folly/experimental/io/HugePages.h; sourceTree = ""; }; + 46EB2E0000FCD0 /* IoUring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoUring.h; path = folly/experimental/io/IoUring.h; sourceTree = ""; }; + 46EB2E0000FCE0 /* IoUringBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoUringBackend.h; path = folly/experimental/io/IoUringBackend.h; sourceTree = ""; }; + 46EB2E0000FCF0 /* SimpleAsyncIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleAsyncIO.h; path = folly/experimental/io/SimpleAsyncIO.h; sourceTree = ""; }; + 46EB2E0000FD00 /* AsyncBaseTestLib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncBaseTestLib.h; path = folly/experimental/io/test/AsyncBaseTestLib.h; sourceTree = ""; }; + 46EB2E0000FD10 /* IoTestTempFileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IoTestTempFileUtil.h; path = folly/experimental/io/test/IoTestTempFileUtil.h; sourceTree = ""; }; + 46EB2E0000FD20 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; + 46EB2E0000FD30 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; + 46EB2E0000FD40 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; + 46EB2E0000FD50 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; + 46EB2E0000FD60 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; + 46EB2E0000FD70 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/experimental/observer/detail/Core.h; sourceTree = ""; }; + 46EB2E0000FD80 /* GraphCycleDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GraphCycleDetector.h; path = folly/experimental/observer/detail/GraphCycleDetector.h; sourceTree = ""; }; + 46EB2E0000FD90 /* ObserverManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObserverManager.h; path = folly/experimental/observer/detail/ObserverManager.h; sourceTree = ""; }; + 46EB2E0000FDA0 /* Observable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observable-inl.h"; path = "folly/experimental/observer/Observable-inl.h"; sourceTree = ""; }; + 46EB2E0000FDB0 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = folly/experimental/observer/Observable.h; sourceTree = ""; }; + 46EB2E0000FDC0 /* Observer-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-inl.h"; path = "folly/experimental/observer/Observer-inl.h"; sourceTree = ""; }; + 46EB2E0000FDD0 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; + 46EB2E0000FDE0 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; + 46EB2E0000FDF0 /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; + 46EB2E0000FE00 /* SimpleObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SimpleObservable.h; path = folly/experimental/observer/SimpleObservable.h; sourceTree = ""; }; + 46EB2E0000FE10 /* WithJitter-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WithJitter-inl.h"; path = "folly/experimental/observer/WithJitter-inl.h"; sourceTree = ""; }; + 46EB2E0000FE20 /* WithJitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WithJitter.h; path = folly/experimental/observer/WithJitter.h; sourceTree = ""; }; + 46EB2E0000FE30 /* PrimaryPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrimaryPtr.h; path = folly/experimental/PrimaryPtr.h; sourceTree = ""; }; + 46EB2E0000FE40 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; + 46EB2E0000FE50 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; + 46EB2E0000FE60 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + 46EB2E0000FE70 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; + 46EB2E0000FE80 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; + 46EB2E0000FE90 /* SettingsImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SettingsImpl.h; path = folly/experimental/settings/detail/SettingsImpl.h; sourceTree = ""; }; + 46EB2E0000FEA0 /* Settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Settings.h; path = folly/experimental/settings/Settings.h; sourceTree = ""; }; + 46EB2E0000FEB0 /* SettingsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SettingsMetadata.h; path = folly/experimental/settings/SettingsMetadata.h; sourceTree = ""; }; + 46EB2E0000FEC0 /* a.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = a.h; path = folly/experimental/settings/test/a.h; sourceTree = ""; }; + 46EB2E0000FED0 /* b.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b.h; path = folly/experimental/settings/test/b.h; sourceTree = ""; }; + 46EB2E0000FEE0 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; + 46EB2E0000FEF0 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; + 46EB2E0000FF00 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; + 46EB2E0000FF10 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; + 46EB2E0000FF20 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; + 46EB2E0000FF30 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; + 46EB2E0000FF40 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; + 46EB2E0000FF50 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; + 46EB2E0000FF60 /* Debug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = folly/experimental/symbolizer/detail/Debug.h; sourceTree = ""; }; + 46EB2E0000FF70 /* Dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dwarf.h; path = folly/experimental/symbolizer/Dwarf.h; sourceTree = ""; }; + 46EB2E0000FF80 /* Elf-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Elf-inl.h"; path = "folly/experimental/symbolizer/Elf-inl.h"; sourceTree = ""; }; + 46EB2E0000FF90 /* Elf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Elf.h; path = folly/experimental/symbolizer/Elf.h; sourceTree = ""; }; + 46EB2E0000FFA0 /* ElfCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ElfCache.h; path = folly/experimental/symbolizer/ElfCache.h; sourceTree = ""; }; + 46EB2E0000FFB0 /* LineReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LineReader.h; path = folly/experimental/symbolizer/LineReader.h; sourceTree = ""; }; + 46EB2E0000FFC0 /* SignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandler.h; path = folly/experimental/symbolizer/SignalHandler.h; sourceTree = ""; }; + 46EB2E0000FFD0 /* StackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTrace.h; path = folly/experimental/symbolizer/StackTrace.h; sourceTree = ""; }; + 46EB2E0000FFE0 /* SymbolizedFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizedFrame.h; path = folly/experimental/symbolizer/SymbolizedFrame.h; sourceTree = ""; }; + 46EB2E0000FFF0 /* SymbolizePrinter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizePrinter.h; path = folly/experimental/symbolizer/SymbolizePrinter.h; sourceTree = ""; }; + 46EB2E00010000 /* Symbolizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Symbolizer.h; path = folly/experimental/symbolizer/Symbolizer.h; sourceTree = ""; }; + 46EB2E00010010 /* SignalHandlerTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SignalHandlerTest.h; path = folly/experimental/symbolizer/test/SignalHandlerTest.h; sourceTree = ""; }; + 46EB2E00010020 /* SymbolizerTestUtils-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SymbolizerTestUtils-inl.h"; path = "folly/experimental/symbolizer/test/SymbolizerTestUtils-inl.h"; sourceTree = ""; }; + 46EB2E00010030 /* SymbolizerTestUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SymbolizerTestUtils.h; path = folly/experimental/symbolizer/test/SymbolizerTestUtils.h; sourceTree = ""; }; + 46EB2E00010040 /* CodingTestUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingTestUtils.h; path = folly/experimental/test/CodingTestUtils.h; sourceTree = ""; }; + 46EB2E00010050 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; + 46EB2E00010060 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; + 46EB2E00010070 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; + 46EB2E00010080 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; + 46EB2E00010090 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; + 46EB2E000100A0 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; + 46EB2E000100B0 /* Pid.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Pid.cpp; path = folly/system/Pid.cpp; sourceTree = ""; }; + 46EB2E000100C0 /* Pid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pid.h; path = folly/system/Pid.h; sourceTree = ""; }; + 46EB2E000100D0 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 46EB2E000100E0 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 46EB2E000100F0 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 46EB2E00010100 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 46EB2E00010110 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 46EB2E00010120 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + 46EB2E00010130 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + 46EB2E00010140 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 46EB2E00010150 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + 46EB2E00010160 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 46EB2E00010170 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; + 46EB2E00010180 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; + 46EB2E00010190 /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = ""; }; + 46EB2E000101A0 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = ""; }; + 46EB2E000101B0 /* RNCPickerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerLabel.h; path = ios/RNCPickerLabel.h; sourceTree = ""; }; + 46EB2E000101C0 /* RNCPickerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerLabel.m; path = ios/RNCPickerLabel.m; sourceTree = ""; }; + 46EB2E000101D0 /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = ""; }; + 46EB2E000101E0 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = ""; }; + 46EB2E000101F0 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 46EB2E00010200 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 46EB2E00010210 /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = ""; }; + 46EB2E00010220 /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = ""; }; + 46EB2E00010230 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 46EB2E00010240 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 46EB2E00010250 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; + 46EB2E00010260 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; + 46EB2E00010270 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; + 46EB2E00010280 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; + 46EB2E00010290 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; + 46EB2E000102A0 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; + 46EB2E000102B0 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; + 46EB2E000102C0 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; + 46EB2E000102D0 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; + 46EB2E000102E0 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; + 46EB2E000102F0 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; + 46EB2E00010300 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; + 46EB2E00010310 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; + 46EB2E00010320 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; + 46EB2E00010330 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; + 46EB2E00010340 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; + 46EB2E00010350 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + 46EB2E00010360 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; + 46EB2E00010370 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; + 46EB2E00010380 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; + 46EB2E00010390 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; + 46EB2E000103A0 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; + 46EB2E000103B0 /* RNFBAuthModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAuthModule.h; path = ios/RNFBAuth/RNFBAuthModule.h; sourceTree = ""; }; + 46EB2E000103C0 /* RNFBAuthModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAuthModule.m; path = ios/RNFBAuth/RNFBAuthModule.m; sourceTree = ""; }; + 46EB2E000103D0 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; + 46EB2E000103E0 /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; + 46EB2E000103F0 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; + 46EB2E00010400 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + 46EB2E00010410 /* RNFBCrashlyticsNativeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsNativeHelper.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.h; sourceTree = ""; }; + 46EB2E00010420 /* RNFBCrashlyticsNativeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsNativeHelper.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.m; sourceTree = ""; }; + 46EB2E00010430 /* RNFBDatabaseCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseCommon.h; path = ios/RNFBDatabase/RNFBDatabaseCommon.h; sourceTree = ""; }; + 46EB2E00010440 /* RNFBDatabaseCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseCommon.m; path = ios/RNFBDatabase/RNFBDatabaseCommon.m; sourceTree = ""; }; + 46EB2E00010450 /* RNFBDatabaseModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseModule.h; path = ios/RNFBDatabase/RNFBDatabaseModule.h; sourceTree = ""; }; + 46EB2E00010460 /* RNFBDatabaseModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseModule.m; path = ios/RNFBDatabase/RNFBDatabaseModule.m; sourceTree = ""; }; + 46EB2E00010470 /* RNFBDatabaseOnDisconnectModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseOnDisconnectModule.h; path = ios/RNFBDatabase/RNFBDatabaseOnDisconnectModule.h; sourceTree = ""; }; + 46EB2E00010480 /* RNFBDatabaseOnDisconnectModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseOnDisconnectModule.m; path = ios/RNFBDatabase/RNFBDatabaseOnDisconnectModule.m; sourceTree = ""; }; + 46EB2E00010490 /* RNFBDatabaseQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseQuery.h; path = ios/RNFBDatabase/RNFBDatabaseQuery.h; sourceTree = ""; }; + 46EB2E000104A0 /* RNFBDatabaseQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseQuery.m; path = ios/RNFBDatabase/RNFBDatabaseQuery.m; sourceTree = ""; }; + 46EB2E000104B0 /* RNFBDatabaseQueryModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseQueryModule.h; path = ios/RNFBDatabase/RNFBDatabaseQueryModule.h; sourceTree = ""; }; + 46EB2E000104C0 /* RNFBDatabaseQueryModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseQueryModule.m; path = ios/RNFBDatabase/RNFBDatabaseQueryModule.m; sourceTree = ""; }; + 46EB2E000104D0 /* RNFBDatabaseReferenceModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseReferenceModule.h; path = ios/RNFBDatabase/RNFBDatabaseReferenceModule.h; sourceTree = ""; }; + 46EB2E000104E0 /* RNFBDatabaseReferenceModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseReferenceModule.m; path = ios/RNFBDatabase/RNFBDatabaseReferenceModule.m; sourceTree = ""; }; + 46EB2E000104F0 /* RNFBDatabaseTransactionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBDatabaseTransactionModule.h; path = ios/RNFBDatabase/RNFBDatabaseTransactionModule.h; sourceTree = ""; }; + 46EB2E00010500 /* RNFBDatabaseTransactionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBDatabaseTransactionModule.m; path = ios/RNFBDatabase/RNFBDatabaseTransactionModule.m; sourceTree = ""; }; + 46EB2E00010510 /* RCTConvert+FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRLoggerLevel.h"; path = "ios/RNFBFirestore/RCTConvert+FIRLoggerLevel.h"; sourceTree = ""; }; + 46EB2E00010520 /* RCTConvert+FIRLoggerLevel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRLoggerLevel.m"; path = "ios/RNFBFirestore/RCTConvert+FIRLoggerLevel.m"; sourceTree = ""; }; + 46EB2E00010530 /* RNFBFirestoreCollectionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreCollectionModule.h; path = ios/RNFBFirestore/RNFBFirestoreCollectionModule.h; sourceTree = ""; }; + 46EB2E00010540 /* RNFBFirestoreCollectionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreCollectionModule.m; path = ios/RNFBFirestore/RNFBFirestoreCollectionModule.m; sourceTree = ""; }; + 46EB2E00010550 /* RNFBFirestoreCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreCommon.h; path = ios/RNFBFirestore/RNFBFirestoreCommon.h; sourceTree = ""; }; + 46EB2E00010560 /* RNFBFirestoreCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreCommon.m; path = ios/RNFBFirestore/RNFBFirestoreCommon.m; sourceTree = ""; }; + 46EB2E00010570 /* RNFBFirestoreDocumentModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreDocumentModule.h; path = ios/RNFBFirestore/RNFBFirestoreDocumentModule.h; sourceTree = ""; }; + 46EB2E00010580 /* RNFBFirestoreDocumentModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreDocumentModule.m; path = ios/RNFBFirestore/RNFBFirestoreDocumentModule.m; sourceTree = ""; }; + 46EB2E00010590 /* RNFBFirestoreModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreModule.h; path = ios/RNFBFirestore/RNFBFirestoreModule.h; sourceTree = ""; }; + 46EB2E000105A0 /* RNFBFirestoreModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreModule.m; path = ios/RNFBFirestore/RNFBFirestoreModule.m; sourceTree = ""; }; + 46EB2E000105B0 /* RNFBFirestoreQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreQuery.h; path = ios/RNFBFirestore/RNFBFirestoreQuery.h; sourceTree = ""; }; + 46EB2E000105C0 /* RNFBFirestoreQuery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreQuery.m; path = ios/RNFBFirestore/RNFBFirestoreQuery.m; sourceTree = ""; }; + 46EB2E000105D0 /* RNFBFirestoreSerialize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreSerialize.h; path = ios/RNFBFirestore/RNFBFirestoreSerialize.h; sourceTree = ""; }; + 46EB2E000105E0 /* RNFBFirestoreSerialize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreSerialize.m; path = ios/RNFBFirestore/RNFBFirestoreSerialize.m; sourceTree = ""; }; + 46EB2E000105F0 /* RNFBFirestoreTransactionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBFirestoreTransactionModule.h; path = ios/RNFBFirestore/RNFBFirestoreTransactionModule.h; sourceTree = ""; }; + 46EB2E00010600 /* RNFBFirestoreTransactionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBFirestoreTransactionModule.m; path = ios/RNFBFirestore/RNFBFirestoreTransactionModule.m; sourceTree = ""; }; + 46EB2E00010610 /* RNFBMessaging+AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+AppDelegate.h"; path = "ios/RNFBMessaging/RNFBMessaging+AppDelegate.h"; sourceTree = ""; }; + 46EB2E00010620 /* RNFBMessaging+AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+AppDelegate.m"; path = "ios/RNFBMessaging/RNFBMessaging+AppDelegate.m"; sourceTree = ""; }; + 46EB2E00010630 /* RNFBMessaging+FIRMessagingDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+FIRMessagingDelegate.h"; path = "ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.h"; sourceTree = ""; }; + 46EB2E00010640 /* RNFBMessaging+FIRMessagingDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+FIRMessagingDelegate.m"; path = "ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.m"; sourceTree = ""; }; + 46EB2E00010650 /* RNFBMessaging+NSNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+NSNotificationCenter.h"; path = "ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.h"; sourceTree = ""; }; + 46EB2E00010660 /* RNFBMessaging+NSNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+NSNotificationCenter.m"; path = "ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.m"; sourceTree = ""; }; + 46EB2E00010670 /* RNFBMessaging+UNUserNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RNFBMessaging+UNUserNotificationCenter.h"; path = "ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.h"; sourceTree = ""; }; + 46EB2E00010680 /* RNFBMessaging+UNUserNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RNFBMessaging+UNUserNotificationCenter.m"; path = "ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.m"; sourceTree = ""; }; + 46EB2E00010690 /* RNFBMessagingModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMessagingModule.h; path = ios/RNFBMessaging/RNFBMessagingModule.h; sourceTree = ""; }; + 46EB2E000106A0 /* RNFBMessagingModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMessagingModule.m; path = ios/RNFBMessaging/RNFBMessagingModule.m; sourceTree = ""; }; + 46EB2E000106B0 /* RNFBMessagingSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMessagingSerializer.h; path = ios/RNFBMessaging/RNFBMessagingSerializer.h; sourceTree = ""; }; + 46EB2E000106C0 /* RNFBMessagingSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMessagingSerializer.m; path = ios/RNFBMessaging/RNFBMessagingSerializer.m; sourceTree = ""; }; + 46EB2E000106D0 /* RNFBConfigModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBConfigModule.h; path = ios/RNFBConfig/RNFBConfigModule.h; sourceTree = ""; }; + 46EB2E000106E0 /* RNFBConfigModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBConfigModule.m; path = ios/RNFBConfig/RNFBConfigModule.m; sourceTree = ""; }; + 46EB2E000106F0 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 46EB2E00010700 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 46EB2E00010710 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 46EB2E00010720 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 46EB2E00010730 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 46EB2E00010740 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 46EB2E00010750 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 46EB2E00010760 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 46EB2E00010780 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + 46EB2E00010790 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 46EB2E000107A0 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 46EB2E000107B0 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 46EB2E000107C0 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 46EB2E000107D0 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 46EB2E000107E0 /* RNManualHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNManualHandler.h; sourceTree = ""; }; + 46EB2E000107F0 /* RNManualHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNManualHandler.m; sourceTree = ""; }; + 46EB2E00010800 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 46EB2E00010810 /* RNNativeViewHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RNNativeViewHandler.mm; sourceTree = ""; }; + 46EB2E00010820 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 46EB2E00010830 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 46EB2E00010840 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 46EB2E00010850 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 46EB2E00010860 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 46EB2E00010870 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 46EB2E00010880 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 46EB2E00010890 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 46EB2E000108A0 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + 46EB2E000108B0 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 46EB2E000108C0 /* RNGestureHandlerActionType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerActionType.h; path = ios/RNGestureHandlerActionType.h; sourceTree = ""; }; + 46EB2E000108D0 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 46EB2E000108E0 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 46EB2E000108F0 /* RNGestureHandlerButtonComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButtonComponentView.h; path = ios/RNGestureHandlerButtonComponentView.h; sourceTree = ""; }; + 46EB2E00010900 /* RNGestureHandlerButtonComponentView.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNGestureHandlerButtonComponentView.mm; path = ios/RNGestureHandlerButtonComponentView.mm; sourceTree = ""; }; + 46EB2E00010910 /* RNGestureHandlerButtonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButtonManager.h; path = ios/RNGestureHandlerButtonManager.h; sourceTree = ""; }; + 46EB2E00010920 /* RNGestureHandlerButtonManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButtonManager.m; path = ios/RNGestureHandlerButtonManager.m; sourceTree = ""; }; + 46EB2E00010930 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 46EB2E00010940 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 46EB2E00010950 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 46EB2E00010960 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 46EB2E00010970 /* RNGestureHandlerManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNGestureHandlerManager.mm; path = ios/RNGestureHandlerManager.mm; sourceTree = ""; }; + 46EB2E00010980 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + 46EB2E00010990 /* RNGestureHandlerModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNGestureHandlerModule.mm; path = ios/RNGestureHandlerModule.mm; sourceTree = ""; }; + 46EB2E000109A0 /* RNGestureHandlerPointerTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerPointerTracker.h; path = ios/RNGestureHandlerPointerTracker.h; sourceTree = ""; }; + 46EB2E000109B0 /* RNGestureHandlerPointerTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerPointerTracker.m; path = ios/RNGestureHandlerPointerTracker.m; sourceTree = ""; }; + 46EB2E000109C0 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 46EB2E000109D0 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 46EB2E000109E0 /* RNGestureHandlerRootViewComponentView.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNGestureHandlerRootViewComponentView.mm; path = ios/RNGestureHandlerRootViewComponentView.mm; sourceTree = ""; }; + 46EB2E000109F0 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 46EB2E00010A00 /* RNGestureHandlerStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerStateManager.h; path = ios/RNGestureHandlerStateManager.h; sourceTree = ""; }; + 46EB2E00010A10 /* RNGHTouchEventType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGHTouchEventType.h; path = ios/RNGHTouchEventType.h; sourceTree = ""; }; + 46EB2E00010A20 /* RNManualActivationRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNManualActivationRecognizer.h; path = ios/RNManualActivationRecognizer.h; sourceTree = ""; }; + 46EB2E00010A30 /* RNManualActivationRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNManualActivationRecognizer.m; path = ios/RNManualActivationRecognizer.m; sourceTree = ""; }; + 46EB2E00010A40 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 46EB2E00010A50 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 46EB2E00010A60 /* RNRate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRate.h; path = ios/RNRate.h; sourceTree = ""; }; + 46EB2E00010A70 /* RNRate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRate.m; path = ios/RNRate.m; sourceTree = ""; }; + 46EB2E00010AA0 /* REAAnimationsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAnimationsManager.h; sourceTree = ""; }; + 46EB2E00010AB0 /* REAAnimationsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAnimationsManager.m; sourceTree = ""; }; + 46EB2E00010AC0 /* REASnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASnapshot.h; sourceTree = ""; }; + 46EB2E00010AD0 /* REASnapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASnapshot.m; sourceTree = ""; }; + 46EB2E00010AE0 /* REAUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAUIManager.h; sourceTree = ""; }; + 46EB2E00010AF0 /* REAUIManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = REAUIManager.mm; sourceTree = ""; }; + 46EB2E00010B10 /* NativeMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeMethods.h; sourceTree = ""; }; + 46EB2E00010B20 /* NativeMethods.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeMethods.mm; sourceTree = ""; }; + 46EB2E00010B30 /* NativeProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeProxy.h; sourceTree = ""; }; + 46EB2E00010B40 /* NativeProxy.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeProxy.mm; sourceTree = ""; }; + 46EB2E00010B50 /* REAInitializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAInitializer.h; sourceTree = ""; }; + 46EB2E00010B60 /* REAInitializer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = REAInitializer.mm; sourceTree = ""; }; + 46EB2E00010B70 /* REAIOSErrorHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSErrorHandler.h; sourceTree = ""; }; + 46EB2E00010B80 /* REAIOSErrorHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = REAIOSErrorHandler.mm; sourceTree = ""; }; + 46EB2E00010B90 /* REAIOSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSLogger.h; sourceTree = ""; }; + 46EB2E00010BA0 /* REAIOSLogger.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = REAIOSLogger.mm; sourceTree = ""; }; + 46EB2E00010BB0 /* REAIOSScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAIOSScheduler.h; sourceTree = ""; }; + 46EB2E00010BC0 /* REAIOSScheduler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = REAIOSScheduler.mm; sourceTree = ""; }; + 46EB2E00010BD0 /* UIResponder+Reanimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+Reanimated.h"; sourceTree = ""; }; + 46EB2E00010BE0 /* UIResponder+Reanimated.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = "UIResponder+Reanimated.mm"; sourceTree = ""; }; + 46EB2E00010C00 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 46EB2E00010C10 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 46EB2E00010C20 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 46EB2E00010C30 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 46EB2E00010C40 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 46EB2E00010C50 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 46EB2E00010C60 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 46EB2E00010C70 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 46EB2E00010C80 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + 46EB2E00010C90 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 46EB2E00010CA0 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + 46EB2E00010CB0 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 46EB2E00010CC0 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 46EB2E00010CD0 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 46EB2E00010CE0 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 46EB2E00010CF0 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 46EB2E00010D00 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 46EB2E00010D10 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 46EB2E00010D20 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 46EB2E00010D30 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 46EB2E00010D40 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 46EB2E00010D50 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 46EB2E00010D60 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + 46EB2E00010D70 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 46EB2E00010D80 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + 46EB2E00010D90 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 46EB2E00010DA0 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 46EB2E00010DB0 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 46EB2E00010DC0 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 46EB2E00010DD0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 46EB2E00010DE0 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 46EB2E00010DF0 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 46EB2E00010E00 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 46EB2E00010E10 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 46EB2E00010E20 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 46EB2E00010E30 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 46EB2E00010E40 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 46EB2E00010E50 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 46EB2E00010E60 /* REAEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventDispatcher.h; sourceTree = ""; }; + 46EB2E00010E70 /* REAEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventDispatcher.m; sourceTree = ""; }; + 46EB2E00010E80 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAModule.h; sourceTree = ""; }; + 46EB2E00010E90 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAModule.m; sourceTree = ""; }; + 46EB2E00010EA0 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANodesManager.h; sourceTree = ""; }; + 46EB2E00010EB0 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANodesManager.m; sourceTree = ""; }; + 46EB2E00010EC0 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAUtils.h; sourceTree = ""; }; + 46EB2E00010ED0 /* RNGestureHandlerStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNGestureHandlerStateManager.h; sourceTree = ""; }; + 46EB2E00010EF0 /* ReanimatedSensor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensor.h; sourceTree = ""; }; + 46EB2E00010F00 /* ReanimatedSensor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ReanimatedSensor.m; sourceTree = ""; }; + 46EB2E00010F10 /* ReanimatedSensorContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensorContainer.h; sourceTree = ""; }; + 46EB2E00010F20 /* ReanimatedSensorContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ReanimatedSensorContainer.m; sourceTree = ""; }; + 46EB2E00010F30 /* ReanimatedSensorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedSensorType.h; sourceTree = ""; }; + 46EB2E00010F50 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 46EB2E00010F60 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 46EB2E00010F70 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 46EB2E00010F80 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 46EB2E00010F90 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 46EB2E00010FA0 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 46EB2E00010FB0 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 46EB2E00010FC0 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 46EB2E00010FD0 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 46EB2E00010FE0 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 46EB2E00010FF0 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 46EB2E00011000 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 46EB2E00011040 /* AnimatedSensorModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AnimatedSensorModule.cpp; sourceTree = ""; }; + 46EB2E00011060 /* LayoutAnimationsProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LayoutAnimationsProxy.cpp; sourceTree = ""; }; + 46EB2E00011080 /* NativeReanimatedModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeReanimatedModule.cpp; sourceTree = ""; }; + 46EB2E00011090 /* NativeReanimatedModuleSpec.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeReanimatedModuleSpec.cpp; sourceTree = ""; }; + 46EB2E000110B0 /* EventHandlerRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = EventHandlerRegistry.cpp; sourceTree = ""; }; + 46EB2E000110C0 /* MapperRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MapperRegistry.cpp; sourceTree = ""; }; + 46EB2E000110D0 /* WorkletsCache.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = WorkletsCache.cpp; sourceTree = ""; }; + 46EB2E000110F0 /* FrozenObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = FrozenObject.cpp; sourceTree = ""; }; + 46EB2E00011100 /* MutableValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MutableValue.cpp; sourceTree = ""; }; + 46EB2E00011110 /* MutableValueSetterProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MutableValueSetterProxy.cpp; sourceTree = ""; }; + 46EB2E00011120 /* RemoteObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObject.cpp; sourceTree = ""; }; + 46EB2E00011130 /* ShareableValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ShareableValue.cpp; sourceTree = ""; }; + 46EB2E00011150 /* FeaturesConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = FeaturesConfig.cpp; sourceTree = ""; }; + 46EB2E00011160 /* JSIStoreValueUser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIStoreValueUser.cpp; sourceTree = ""; }; + 46EB2E00011170 /* Mapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Mapper.cpp; sourceTree = ""; }; + 46EB2E00011180 /* RuntimeDecorator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeDecorator.cpp; sourceTree = ""; }; + 46EB2E00011190 /* Scheduler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Scheduler.cpp; sourceTree = ""; }; + 46EB2E000111A0 /* WorkletEventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = WorkletEventHandler.cpp; sourceTree = ""; }; + 46EB2E000111D0 /* AnimatedSensorModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AnimatedSensorModule.h; sourceTree = ""; }; + 46EB2E000111F0 /* LayoutAnimationsProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LayoutAnimationsProxy.h; sourceTree = ""; }; + 46EB2E00011210 /* NativeReanimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeReanimatedModule.h; sourceTree = ""; }; + 46EB2E00011220 /* NativeReanimatedModuleSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeReanimatedModuleSpec.h; sourceTree = ""; }; + 46EB2E00011240 /* EventHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EventHandlerRegistry.h; sourceTree = ""; }; + 46EB2E00011250 /* MapperRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MapperRegistry.h; sourceTree = ""; }; + 46EB2E00011260 /* WorkletsCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WorkletsCache.h; sourceTree = ""; }; + 46EB2E00011280 /* FrozenObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FrozenObject.h; sourceTree = ""; }; + 46EB2E00011290 /* HostFunctionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HostFunctionHandler.h; sourceTree = ""; }; + 46EB2E000112A0 /* MutableValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MutableValue.h; sourceTree = ""; }; + 46EB2E000112B0 /* MutableValueSetterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MutableValueSetterProxy.h; sourceTree = ""; }; + 46EB2E000112C0 /* RemoteObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObject.h; sourceTree = ""; }; + 46EB2E000112D0 /* RuntimeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeManager.h; sourceTree = ""; }; + 46EB2E000112E0 /* ShareableValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ShareableValue.h; sourceTree = ""; }; + 46EB2E000112F0 /* SharedParent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedParent.h; sourceTree = ""; }; + 46EB2E00011300 /* ValueWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ValueWrapper.h; sourceTree = ""; }; + 46EB2E00011320 /* ErrorHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorHandler.h; sourceTree = ""; }; + 46EB2E00011340 /* FeaturesConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FeaturesConfig.h; sourceTree = ""; }; + 46EB2E00011350 /* JSIStoreValueUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIStoreValueUser.h; sourceTree = ""; }; + 46EB2E00011360 /* Mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Mapper.h; sourceTree = ""; }; + 46EB2E00011370 /* PlatformDepMethodsHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PlatformDepMethodsHolder.h; sourceTree = ""; }; + 46EB2E00011380 /* ReanimatedHiddenHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReanimatedHiddenHeaders.h; sourceTree = ""; }; + 46EB2E00011390 /* RuntimeDecorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeDecorator.h; sourceTree = ""; }; + 46EB2E000113A0 /* Scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Scheduler.h; sourceTree = ""; }; + 46EB2E000113B0 /* WorkletEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WorkletEventHandler.h; sourceTree = ""; }; + 46EB2E000113D0 /* RNSVGBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBrush.h; sourceTree = ""; }; + 46EB2E000113E0 /* RNSVGBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGBrush.m; sourceTree = ""; }; + 46EB2E000113F0 /* RNSVGBrushType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBrushType.h; sourceTree = ""; }; + 46EB2E00011400 /* RNSVGContextBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGContextBrush.h; sourceTree = ""; }; + 46EB2E00011410 /* RNSVGContextBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGContextBrush.m; sourceTree = ""; }; + 46EB2E00011420 /* RNSVGPainter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPainter.h; sourceTree = ""; }; + 46EB2E00011430 /* RNSVGPainter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPainter.m; sourceTree = ""; }; + 46EB2E00011440 /* RNSVGPainterBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPainterBrush.h; sourceTree = ""; }; + 46EB2E00011450 /* RNSVGPainterBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPainterBrush.m; sourceTree = ""; }; + 46EB2E00011460 /* RNSVGSolidColorBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSolidColorBrush.h; sourceTree = ""; }; + 46EB2E00011470 /* RNSVGSolidColorBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSolidColorBrush.m; sourceTree = ""; }; + 46EB2E00011490 /* RNSVGClipPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGClipPath.h; sourceTree = ""; }; + 46EB2E000114A0 /* RNSVGClipPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGClipPath.m; sourceTree = ""; }; + 46EB2E000114B0 /* RNSVGDefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGDefs.h; sourceTree = ""; }; + 46EB2E000114C0 /* RNSVGDefs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGDefs.m; sourceTree = ""; }; + 46EB2E000114D0 /* RNSVGForeignObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGForeignObject.h; sourceTree = ""; }; + 46EB2E000114E0 /* RNSVGForeignObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGForeignObject.m; sourceTree = ""; }; + 46EB2E000114F0 /* RNSVGGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGroup.h; sourceTree = ""; }; + 46EB2E00011500 /* RNSVGGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGroup.m; sourceTree = ""; }; + 46EB2E00011510 /* RNSVGImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGImage.h; sourceTree = ""; }; + 46EB2E00011520 /* RNSVGImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGImage.m; sourceTree = ""; }; + 46EB2E00011530 /* RNSVGLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLinearGradient.h; sourceTree = ""; }; + 46EB2E00011540 /* RNSVGLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLinearGradient.m; sourceTree = ""; }; + 46EB2E00011550 /* RNSVGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarker.h; sourceTree = ""; }; + 46EB2E00011560 /* RNSVGMarker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarker.m; sourceTree = ""; }; + 46EB2E00011570 /* RNSVGMask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMask.h; sourceTree = ""; }; + 46EB2E00011580 /* RNSVGMask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMask.m; sourceTree = ""; }; + 46EB2E00011590 /* RNSVGPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPath.h; sourceTree = ""; }; + 46EB2E000115A0 /* RNSVGPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPath.m; sourceTree = ""; }; + 46EB2E000115B0 /* RNSVGPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPattern.h; sourceTree = ""; }; + 46EB2E000115C0 /* RNSVGPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPattern.m; sourceTree = ""; }; + 46EB2E000115D0 /* RNSVGRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRadialGradient.h; sourceTree = ""; }; + 46EB2E000115E0 /* RNSVGRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRadialGradient.m; sourceTree = ""; }; + 46EB2E000115F0 /* RNSVGSvgView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSvgView.h; sourceTree = ""; }; + 46EB2E00011600 /* RNSVGSvgView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSvgView.m; sourceTree = ""; }; + 46EB2E00011610 /* RNSVGSymbol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSymbol.h; sourceTree = ""; }; + 46EB2E00011620 /* RNSVGSymbol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSymbol.m; sourceTree = ""; }; + 46EB2E00011630 /* RNSVGUse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUse.h; sourceTree = ""; }; + 46EB2E00011640 /* RNSVGUse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGUse.m; sourceTree = ""; }; + 46EB2E00011650 /* RNSVGContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGContainer.h; path = apple/RNSVGContainer.h; sourceTree = ""; }; + 46EB2E00011660 /* RNSVGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGNode.h; path = apple/RNSVGNode.h; sourceTree = ""; }; + 46EB2E00011670 /* RNSVGNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSVGNode.m; path = apple/RNSVGNode.m; sourceTree = ""; }; + 46EB2E00011680 /* RNSVGRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGRenderable.h; path = apple/RNSVGRenderable.h; sourceTree = ""; }; + 46EB2E00011690 /* RNSVGRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSVGRenderable.m; path = apple/RNSVGRenderable.m; sourceTree = ""; }; + 46EB2E000116A0 /* RNSVGUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSVGUIKit.h; path = apple/RNSVGUIKit.h; sourceTree = ""; }; + 46EB2E000116C0 /* RNSVGCircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCircle.h; sourceTree = ""; }; + 46EB2E000116D0 /* RNSVGCircle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGCircle.m; sourceTree = ""; }; + 46EB2E000116E0 /* RNSVGEllipse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGEllipse.h; sourceTree = ""; }; + 46EB2E000116F0 /* RNSVGEllipse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGEllipse.m; sourceTree = ""; }; + 46EB2E00011700 /* RNSVGLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLine.h; sourceTree = ""; }; + 46EB2E00011710 /* RNSVGLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLine.m; sourceTree = ""; }; + 46EB2E00011720 /* RNSVGRect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRect.h; sourceTree = ""; }; + 46EB2E00011730 /* RNSVGRect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRect.m; sourceTree = ""; }; + 46EB2E00011750 /* RNSVGFontData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGFontData.h; sourceTree = ""; }; + 46EB2E00011760 /* RNSVGFontData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGFontData.m; sourceTree = ""; }; + 46EB2E00011770 /* RNSVGGlyphContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGlyphContext.h; sourceTree = ""; }; + 46EB2E00011780 /* RNSVGGlyphContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGlyphContext.m; sourceTree = ""; }; + 46EB2E00011790 /* RNSVGPropHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPropHelper.h; sourceTree = ""; }; + 46EB2E000117A0 /* RNSVGPropHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPropHelper.m; sourceTree = ""; }; + 46EB2E000117B0 /* RNSVGText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGText.h; sourceTree = ""; }; + 46EB2E000117C0 /* RNSVGText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGText.m; sourceTree = ""; }; + 46EB2E000117D0 /* RNSVGTextPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextPath.h; sourceTree = ""; }; + 46EB2E000117E0 /* RNSVGTextPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextPath.m; sourceTree = ""; }; + 46EB2E000117F0 /* RNSVGTextProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextProperties.h; sourceTree = ""; }; + 46EB2E00011800 /* RNSVGTextProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextProperties.m; sourceTree = ""; }; + 46EB2E00011810 /* RNSVGTopAlignedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTopAlignedLabel.h; sourceTree = ""; }; + 46EB2E00011820 /* RNSVGTopAlignedLabel.ios.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTopAlignedLabel.ios.m; sourceTree = ""; }; + 46EB2E00011830 /* RNSVGTSpan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTSpan.h; sourceTree = ""; }; + 46EB2E00011840 /* RNSVGTSpan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTSpan.m; sourceTree = ""; }; + 46EB2E00011860 /* RCTConvert+RNSVG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+RNSVG.h"; sourceTree = ""; }; + 46EB2E00011870 /* RCTConvert+RNSVG.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+RNSVG.m"; sourceTree = ""; }; + 46EB2E00011880 /* RNSVGBezierElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGBezierElement.h; sourceTree = ""; }; + 46EB2E00011890 /* RNSVGBezierElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGBezierElement.m; sourceTree = ""; }; + 46EB2E000118A0 /* RNSVGCGFCRule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCGFCRule.h; sourceTree = ""; }; + 46EB2E000118B0 /* RNSVGLength.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLength.h; sourceTree = ""; }; + 46EB2E000118C0 /* RNSVGLength.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLength.m; sourceTree = ""; }; + 46EB2E000118D0 /* RNSVGMarkerPosition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarkerPosition.h; sourceTree = ""; }; + 46EB2E000118E0 /* RNSVGMarkerPosition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarkerPosition.m; sourceTree = ""; }; + 46EB2E000118F0 /* RNSVGPathMeasure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathMeasure.h; sourceTree = ""; }; + 46EB2E00011900 /* RNSVGPathMeasure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathMeasure.m; sourceTree = ""; }; + 46EB2E00011910 /* RNSVGPathParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathParser.h; sourceTree = ""; }; + 46EB2E00011920 /* RNSVGPathParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathParser.m; sourceTree = ""; }; + 46EB2E00011930 /* RNSVGUnits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUnits.h; sourceTree = ""; }; + 46EB2E00011940 /* RNSVGVBMOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGVBMOS.h; sourceTree = ""; }; + 46EB2E00011950 /* RNSVGVectorEffect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGVectorEffect.h; sourceTree = ""; }; + 46EB2E00011960 /* RNSVGViewBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGViewBox.h; sourceTree = ""; }; + 46EB2E00011970 /* RNSVGViewBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGViewBox.m; sourceTree = ""; }; + 46EB2E00011990 /* RNSVGCircleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGCircleManager.h; sourceTree = ""; }; + 46EB2E000119A0 /* RNSVGCircleManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGCircleManager.m; sourceTree = ""; }; + 46EB2E000119B0 /* RNSVGClipPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGClipPathManager.h; sourceTree = ""; }; + 46EB2E000119C0 /* RNSVGClipPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGClipPathManager.m; sourceTree = ""; }; + 46EB2E000119D0 /* RNSVGDefsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGDefsManager.h; sourceTree = ""; }; + 46EB2E000119E0 /* RNSVGDefsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGDefsManager.m; sourceTree = ""; }; + 46EB2E000119F0 /* RNSVGEllipseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGEllipseManager.h; sourceTree = ""; }; + 46EB2E00011A00 /* RNSVGEllipseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGEllipseManager.m; sourceTree = ""; }; + 46EB2E00011A10 /* RNSVGForeignObjectManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGForeignObjectManager.h; sourceTree = ""; }; + 46EB2E00011A20 /* RNSVGForeignObjectManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGForeignObjectManager.m; sourceTree = ""; }; + 46EB2E00011A30 /* RNSVGGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGGroupManager.h; sourceTree = ""; }; + 46EB2E00011A40 /* RNSVGGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGGroupManager.m; sourceTree = ""; }; + 46EB2E00011A50 /* RNSVGImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGImageManager.h; sourceTree = ""; }; + 46EB2E00011A60 /* RNSVGImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGImageManager.m; sourceTree = ""; }; + 46EB2E00011A70 /* RNSVGLinearGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLinearGradientManager.h; sourceTree = ""; }; + 46EB2E00011A80 /* RNSVGLinearGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLinearGradientManager.m; sourceTree = ""; }; + 46EB2E00011A90 /* RNSVGLineManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGLineManager.h; sourceTree = ""; }; + 46EB2E00011AA0 /* RNSVGLineManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGLineManager.m; sourceTree = ""; }; + 46EB2E00011AB0 /* RNSVGMarkerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMarkerManager.h; sourceTree = ""; }; + 46EB2E00011AC0 /* RNSVGMarkerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMarkerManager.m; sourceTree = ""; }; + 46EB2E00011AD0 /* RNSVGMaskManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGMaskManager.h; sourceTree = ""; }; + 46EB2E00011AE0 /* RNSVGMaskManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGMaskManager.m; sourceTree = ""; }; + 46EB2E00011AF0 /* RNSVGNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGNodeManager.h; sourceTree = ""; }; + 46EB2E00011B00 /* RNSVGNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGNodeManager.m; sourceTree = ""; }; + 46EB2E00011B10 /* RNSVGPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPathManager.h; sourceTree = ""; }; + 46EB2E00011B20 /* RNSVGPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPathManager.m; sourceTree = ""; }; + 46EB2E00011B30 /* RNSVGPatternManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGPatternManager.h; sourceTree = ""; }; + 46EB2E00011B40 /* RNSVGPatternManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGPatternManager.m; sourceTree = ""; }; + 46EB2E00011B50 /* RNSVGRadialGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRadialGradientManager.h; sourceTree = ""; }; + 46EB2E00011B60 /* RNSVGRadialGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRadialGradientManager.m; sourceTree = ""; }; + 46EB2E00011B70 /* RNSVGRectManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRectManager.h; sourceTree = ""; }; + 46EB2E00011B80 /* RNSVGRectManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRectManager.m; sourceTree = ""; }; + 46EB2E00011B90 /* RNSVGRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGRenderableManager.h; sourceTree = ""; }; + 46EB2E00011BA0 /* RNSVGRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGRenderableManager.m; sourceTree = ""; }; + 46EB2E00011BB0 /* RNSVGSvgViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSvgViewManager.h; sourceTree = ""; }; + 46EB2E00011BC0 /* RNSVGSvgViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSvgViewManager.m; sourceTree = ""; }; + 46EB2E00011BD0 /* RNSVGSymbolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGSymbolManager.h; sourceTree = ""; }; + 46EB2E00011BE0 /* RNSVGSymbolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGSymbolManager.m; sourceTree = ""; }; + 46EB2E00011BF0 /* RNSVGTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextManager.h; sourceTree = ""; }; + 46EB2E00011C00 /* RNSVGTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextManager.m; sourceTree = ""; }; + 46EB2E00011C10 /* RNSVGTextPathManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTextPathManager.h; sourceTree = ""; }; + 46EB2E00011C20 /* RNSVGTextPathManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTextPathManager.m; sourceTree = ""; }; + 46EB2E00011C30 /* RNSVGTSpanManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGTSpanManager.h; sourceTree = ""; }; + 46EB2E00011C40 /* RNSVGTSpanManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGTSpanManager.m; sourceTree = ""; }; + 46EB2E00011C50 /* RNSVGUseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSVGUseManager.h; sourceTree = ""; }; + 46EB2E00011C60 /* RNSVGUseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNSVGUseManager.m; sourceTree = ""; }; + 46EB2E00011C70 /* RNSConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSConvert.h; path = ios/RNSConvert.h; sourceTree = ""; }; + 46EB2E00011C80 /* RNSConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSConvert.mm; path = ios/RNSConvert.mm; sourceTree = ""; }; + 46EB2E00011C90 /* RNSEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSEnums.h; path = ios/RNSEnums.h; sourceTree = ""; }; + 46EB2E00011CA0 /* RNSFullWindowOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSFullWindowOverlay.h; path = ios/RNSFullWindowOverlay.h; sourceTree = ""; }; + 46EB2E00011CB0 /* RNSFullWindowOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSFullWindowOverlay.mm; path = ios/RNSFullWindowOverlay.mm; sourceTree = ""; }; + 46EB2E00011CC0 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 46EB2E00011CD0 /* RNSScreen.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreen.mm; path = ios/RNSScreen.mm; sourceTree = ""; }; + 46EB2E00011CE0 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 46EB2E00011CF0 /* RNSScreenContainer.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenContainer.mm; path = ios/RNSScreenContainer.mm; sourceTree = ""; }; + 46EB2E00011D00 /* RNSScreenNavigationContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenNavigationContainer.h; path = ios/RNSScreenNavigationContainer.h; sourceTree = ""; }; + 46EB2E00011D10 /* RNSScreenNavigationContainer.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenNavigationContainer.mm; path = ios/RNSScreenNavigationContainer.mm; sourceTree = ""; }; + 46EB2E00011D20 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 46EB2E00011D30 /* RNSScreenStack.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenStack.mm; path = ios/RNSScreenStack.mm; sourceTree = ""; }; + 46EB2E00011D40 /* RNSScreenStackAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackAnimator.h; path = ios/RNSScreenStackAnimator.h; sourceTree = ""; }; + 46EB2E00011D50 /* RNSScreenStackAnimator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenStackAnimator.mm; path = ios/RNSScreenStackAnimator.mm; sourceTree = ""; }; + 46EB2E00011D60 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 46EB2E00011D70 /* RNSScreenStackHeaderConfig.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenStackHeaderConfig.mm; path = ios/RNSScreenStackHeaderConfig.mm; sourceTree = ""; }; + 46EB2E00011D80 /* RNSScreenStackHeaderSubview.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderSubview.h; path = ios/RNSScreenStackHeaderSubview.h; sourceTree = ""; }; + 46EB2E00011D90 /* RNSScreenStackHeaderSubview.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenStackHeaderSubview.mm; path = ios/RNSScreenStackHeaderSubview.mm; sourceTree = ""; }; + 46EB2E00011DA0 /* RNSScreenViewEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenViewEvent.h; path = ios/RNSScreenViewEvent.h; sourceTree = ""; }; + 46EB2E00011DB0 /* RNSScreenViewEvent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenViewEvent.mm; path = ios/RNSScreenViewEvent.mm; sourceTree = ""; }; + 46EB2E00011DC0 /* RNSScreenWindowTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenWindowTraits.h; path = ios/RNSScreenWindowTraits.h; sourceTree = ""; }; + 46EB2E00011DD0 /* RNSScreenWindowTraits.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSScreenWindowTraits.mm; path = ios/RNSScreenWindowTraits.mm; sourceTree = ""; }; + 46EB2E00011DE0 /* RNSSearchBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSSearchBar.h; path = ios/RNSSearchBar.h; sourceTree = ""; }; + 46EB2E00011DF0 /* RNSSearchBar.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNSSearchBar.mm; path = ios/RNSSearchBar.mm; sourceTree = ""; }; + 46EB2E00011E00 /* UIViewController+RNScreens.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+RNScreens.h"; path = "ios/UIViewController+RNScreens.h"; sourceTree = ""; }; + 46EB2E00011E10 /* UIViewController+RNScreens.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIViewController+RNScreens.mm"; path = "ios/UIViewController+RNScreens.mm"; sourceTree = ""; }; + 46EB2E00011E20 /* UIWindow+RNScreens.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+RNScreens.h"; path = "ios/UIWindow+RNScreens.h"; sourceTree = ""; }; + 46EB2E00011E30 /* UIWindow+RNScreens.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIWindow+RNScreens.mm"; path = "ios/UIWindow+RNScreens.mm"; sourceTree = ""; }; + 46EB2E00011E50 /* RNSUIBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNSUIBarButtonItem.h; sourceTree = ""; }; + 46EB2E00011E60 /* RNSUIBarButtonItem.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RNSUIBarButtonItem.mm; sourceTree = ""; }; + 46EB2E00011E70 /* EmailShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmailShare.h; path = ios/EmailShare.h; sourceTree = ""; }; + 46EB2E00011E80 /* EmailShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EmailShare.m; path = ios/EmailShare.m; sourceTree = ""; }; + 46EB2E00011E90 /* FacebookStories.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FacebookStories.h; path = ios/FacebookStories.h; sourceTree = ""; }; + 46EB2E00011EA0 /* FacebookStories.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FacebookStories.m; path = ios/FacebookStories.m; sourceTree = ""; }; + 46EB2E00011EB0 /* GenericShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GenericShare.h; path = ios/GenericShare.h; sourceTree = ""; }; + 46EB2E00011EC0 /* GenericShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GenericShare.m; path = ios/GenericShare.m; sourceTree = ""; }; + 46EB2E00011ED0 /* GooglePlusShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GooglePlusShare.h; path = ios/GooglePlusShare.h; sourceTree = ""; }; + 46EB2E00011EE0 /* GooglePlusShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GooglePlusShare.m; path = ios/GooglePlusShare.m; sourceTree = ""; }; + 46EB2E00011EF0 /* InstagramShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InstagramShare.h; path = ios/InstagramShare.h; sourceTree = ""; }; + 46EB2E00011F00 /* InstagramShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InstagramShare.m; path = ios/InstagramShare.m; sourceTree = ""; }; + 46EB2E00011F10 /* InstagramStories.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InstagramStories.h; path = ios/InstagramStories.h; sourceTree = ""; }; + 46EB2E00011F20 /* InstagramStories.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InstagramStories.m; path = ios/InstagramStories.m; sourceTree = ""; }; + 46EB2E00011F30 /* RNShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShare.h; path = ios/RNShare.h; sourceTree = ""; }; + 46EB2E00011F40 /* RNShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShare.m; path = ios/RNShare.m; sourceTree = ""; }; + 46EB2E00011F50 /* RNShareActivityItemSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShareActivityItemSource.h; path = ios/RNShareActivityItemSource.h; sourceTree = ""; }; + 46EB2E00011F60 /* RNShareActivityItemSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShareActivityItemSource.m; path = ios/RNShareActivityItemSource.m; sourceTree = ""; }; + 46EB2E00011F70 /* RNShareUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNShareUtils.h; path = ios/RNShareUtils.h; sourceTree = ""; }; + 46EB2E00011F80 /* RNShareUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNShareUtils.m; path = ios/RNShareUtils.m; sourceTree = ""; }; + 46EB2E00011F90 /* TelegramShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TelegramShare.h; path = ios/TelegramShare.h; sourceTree = ""; }; + 46EB2E00011FA0 /* TelegramShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TelegramShare.m; path = ios/TelegramShare.m; sourceTree = ""; }; + 46EB2E00011FB0 /* ViberShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ViberShare.h; path = ios/ViberShare.h; sourceTree = ""; }; + 46EB2E00011FC0 /* ViberShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ViberShare.m; path = ios/ViberShare.m; sourceTree = ""; }; + 46EB2E00011FD0 /* WhatsAppShare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WhatsAppShare.h; path = ios/WhatsAppShare.h; sourceTree = ""; }; + 46EB2E00011FE0 /* WhatsAppShare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WhatsAppShare.m; path = ios/WhatsAppShare.m; sourceTree = ""; }; + 46EB2E00011FF0 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 46EB2E00012000 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 46EB2E00012010 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 46EB2E00012020 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 46EB2E00012040 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 46EB2E00012050 /* RCTAccessibilityManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTAccessibilityManager+Internal.h"; path = "React/CoreModules/RCTAccessibilityManager+Internal.h"; sourceTree = ""; }; + 46EB2E00012060 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; + 46EB2E00012070 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; + 46EB2E00012080 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = ""; }; + 46EB2E00012090 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + 46EB2E000120A0 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + 46EB2E000120B0 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + 46EB2E000120C0 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + 46EB2E000120D0 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; + 46EB2E000120E0 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 46EB2E000120F0 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; + 46EB2E00012100 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; + 46EB2E00012110 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 46EB2E00012120 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = ""; }; + 46EB2E00012130 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = ""; }; + 46EB2E00012140 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 46EB2E00012150 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + 46EB2E00012160 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 46EB2E00012170 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; + 46EB2E00012180 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + 46EB2E00012190 /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = ""; }; + 46EB2E000121A0 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 46EB2E000121B0 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; + 46EB2E000121C0 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + 46EB2E000121D0 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + 46EB2E000121E0 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + 46EB2E000121F0 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + 46EB2E00012200 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; + 46EB2E00012230 /* RCTAppSetupUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppSetupUtils.h; sourceTree = ""; }; + 46EB2E00012240 /* RCTAppSetupUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppSetupUtils.mm; sourceTree = ""; }; + 46EB2E00012260 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 46EB2E00012270 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 46EB2E00012280 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 46EB2E00012290 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 46EB2E000122A0 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 46EB2E000122B0 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 46EB2E000122C0 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 46EB2E000122D0 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 46EB2E000122E0 /* RCTBridgeModuleDecorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModuleDecorator.h; sourceTree = ""; }; + 46EB2E000122F0 /* RCTBridgeModuleDecorator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridgeModuleDecorator.m; sourceTree = ""; }; + 46EB2E00012300 /* RCTBundleManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleManager.m; sourceTree = ""; }; + 46EB2E00012310 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 46EB2E00012320 /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBundleURLProvider.mm; sourceTree = ""; }; + 46EB2E00012330 /* RCTCallableJSModules.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCallableJSModules.m; sourceTree = ""; }; + 46EB2E00012340 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 46EB2E00012350 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 46EB2E00012360 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + 46EB2E00012370 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + 46EB2E00012380 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 46EB2E00012390 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 46EB2E000123A0 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 46EB2E000123B0 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 46EB2E000123C0 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 46EB2E000123D0 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 46EB2E000123E0 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 46EB2E000123F0 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 46EB2E00012400 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 46EB2E00012410 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 46EB2E00012420 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 46EB2E00012430 /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = ""; }; + 46EB2E00012440 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 46EB2E00012450 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 46EB2E00012460 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 46EB2E00012470 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 46EB2E00012480 /* RCTInitializing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInitializing.h; sourceTree = ""; }; + 46EB2E00012490 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 46EB2E000124A0 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 46EB2E000124B0 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 46EB2E000124C0 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 46EB2E000124D0 /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = ""; }; + 46EB2E000124E0 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 46EB2E000124F0 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 46EB2E00012500 /* RCTJSThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSThread.h; sourceTree = ""; }; + 46EB2E00012510 /* RCTJSThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSThread.m; sourceTree = ""; }; + 46EB2E00012520 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 46EB2E00012530 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 46EB2E00012540 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 46EB2E00012550 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 46EB2E00012560 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 46EB2E00012570 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 46EB2E00012580 /* RCTMockDef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMockDef.h; sourceTree = ""; }; + 46EB2E00012590 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 46EB2E000125A0 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 46EB2E000125B0 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 46EB2E000125C0 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 46EB2E000125D0 /* RCTModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuleRegistry.m; sourceTree = ""; }; + 46EB2E000125E0 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 46EB2E000125F0 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 46EB2E00012600 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 46EB2E00012610 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 46EB2E00012620 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 46EB2E00012630 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 46EB2E00012640 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 46EB2E00012650 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 46EB2E00012660 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 46EB2E00012670 /* RCTPerformanceLoggerLabels.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLoggerLabels.h; sourceTree = ""; }; + 46EB2E00012680 /* RCTPerformanceLoggerLabels.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLoggerLabels.m; sourceTree = ""; }; + 46EB2E00012690 /* RCTPLTag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPLTag.h; sourceTree = ""; }; + 46EB2E000126A0 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + 46EB2E000126B0 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + 46EB2E000126C0 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 46EB2E000126D0 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 46EB2E000126E0 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 46EB2E000126F0 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 46EB2E00012700 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 46EB2E00012710 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 46EB2E00012720 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 46EB2E00012730 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 46EB2E00012740 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 46EB2E00012750 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 46EB2E00012760 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 46EB2E00012770 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 46EB2E00012780 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 46EB2E00012790 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 46EB2E000127A0 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 46EB2E000127B0 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 46EB2E000127C0 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; + 46EB2E000127D0 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + 46EB2E000127E0 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 46EB2E000127F0 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 46EB2E00012800 /* RCTViewRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewRegistry.m; sourceTree = ""; }; + 46EB2E00012810 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 46EB2E00012820 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 46EB2E00012840 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 46EB2E00012850 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 46EB2E00012860 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 46EB2E00012870 /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = ""; }; + 46EB2E00012880 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 46EB2E00012890 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 46EB2E000128A0 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 46EB2E000128B0 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 46EB2E000128C0 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 46EB2E000128D0 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 46EB2E000128E0 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 46EB2E000128F0 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 46EB2E00012900 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 46EB2E00012910 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 46EB2E00012930 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 46EB2E00012940 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 46EB2E00012950 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 46EB2E00012960 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 46EB2E00012970 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 46EB2E00012980 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 46EB2E000129A0 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 46EB2E000129B0 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 46EB2E000129C0 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 46EB2E000129D0 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 46EB2E000129E0 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 46EB2E000129F0 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 46EB2E00012A00 /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = ""; }; + 46EB2E00012A10 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = ""; }; + 46EB2E00012A20 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 46EB2E00012A30 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 46EB2E00012A40 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 46EB2E00012A50 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + 46EB2E00012A70 /* RCTDefaultCxxLogFunction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefaultCxxLogFunction.h; sourceTree = ""; }; + 46EB2E00012A80 /* RCTDefaultCxxLogFunction.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDefaultCxxLogFunction.mm; sourceTree = ""; }; + 46EB2E00012AA0 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 46EB2E00012AB0 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 46EB2E00012AC0 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 46EB2E00012AD0 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 46EB2E00012AE0 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 46EB2E00012AF0 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 46EB2E00012B00 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 46EB2E00012B10 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 46EB2E00012B20 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 46EB2E00012B40 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 46EB2E00012B50 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 46EB2E00012B70 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 46EB2E00012B80 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 46EB2E00012B90 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 46EB2E00012BA0 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 46EB2E00012BB0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 46EB2E00012BC0 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 46EB2E00012BD0 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 46EB2E00012BE0 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 46EB2E00012BF0 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 46EB2E00012C00 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 46EB2E00012C10 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 46EB2E00012C20 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 46EB2E00012C30 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 46EB2E00012C40 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 46EB2E00012C50 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 46EB2E00012C60 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 46EB2E00012C70 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 46EB2E00012C80 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 46EB2E00012CA0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 46EB2E00012CB0 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 46EB2E00012CC0 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 46EB2E00012CD0 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 46EB2E00012CE0 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 46EB2E00012CF0 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 46EB2E00012D00 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 46EB2E00012D20 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 46EB2E00012D30 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 46EB2E00012D50 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 46EB2E00012D60 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 46EB2E00012D70 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 46EB2E00012D80 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 46EB2E00012D90 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 46EB2E00012DA0 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 46EB2E00012DB0 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 46EB2E00012DC0 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 46EB2E00012DD0 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 46EB2E00012DE0 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 46EB2E00012DF0 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 46EB2E00012E00 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 46EB2E00012E10 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 46EB2E00012E20 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 46EB2E00012E30 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 46EB2E00012E40 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 46EB2E00012E50 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 46EB2E00012E60 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 46EB2E00012E70 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 46EB2E00012E80 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 46EB2E00012E90 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 46EB2E00012EA0 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 46EB2E00012EB0 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 46EB2E00012EC0 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 46EB2E00012ED0 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 46EB2E00012EE0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 46EB2E00012EF0 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 46EB2E00012F00 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 46EB2E00012F10 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 46EB2E00012F20 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 46EB2E00012F30 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 46EB2E00012F40 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 46EB2E00012F50 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 46EB2E00012F60 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 46EB2E00012F70 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 46EB2E00012F80 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 46EB2E00012F90 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 46EB2E00012FA0 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 46EB2E00012FB0 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 46EB2E00012FC0 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 46EB2E00012FD0 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 46EB2E00012FE0 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 46EB2E00012FF0 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 46EB2E00013000 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 46EB2E00013010 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 46EB2E00013020 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 46EB2E00013030 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 46EB2E00013040 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 46EB2E00013050 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 46EB2E00013060 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 46EB2E00013070 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 46EB2E00013080 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 46EB2E00013090 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 46EB2E000130A0 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 46EB2E000130B0 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 46EB2E000130C0 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 46EB2E000130D0 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 46EB2E000130E0 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 46EB2E000130F0 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 46EB2E00013100 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 46EB2E00013110 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 46EB2E00013120 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 46EB2E00013130 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 46EB2E00013140 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 46EB2E00013150 /* RCTViewUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewUtils.h; sourceTree = ""; }; + 46EB2E00013160 /* RCTViewUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewUtils.m; sourceTree = ""; }; + 46EB2E00013170 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 46EB2E00013180 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 46EB2E000131A0 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + 46EB2E000131B0 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 46EB2E000131C0 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 46EB2E000131D0 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 46EB2E000131E0 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 46EB2E00013200 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 46EB2E00013210 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 46EB2E00013220 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 46EB2E00013230 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 46EB2E00013240 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 46EB2E00013250 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 46EB2E00013260 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 46EB2E00013270 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 46EB2E00013290 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 46EB2E000132A0 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 46EB2E000132B0 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 46EB2E000132C0 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 46EB2E000132D0 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 46EB2E000132E0 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 46EB2E000132F0 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 46EB2E00013300 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 46EB2E00013310 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 46EB2E00013320 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 46EB2E00013330 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 46EB2E00013340 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 46EB2E00013350 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 46EB2E00013360 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 46EB2E00013370 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 46EB2E00013380 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 46EB2E000133B0 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + 46EB2E000133C0 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; + 46EB2E000133D0 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + 46EB2E000133E0 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 46EB2E000133F0 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 46EB2E00013400 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 46EB2E00013410 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 46EB2E00013420 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 46EB2E00013430 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 46EB2E00013450 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 46EB2E00013460 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 46EB2E00013470 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 46EB2E00013480 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 46EB2E000134B0 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 46EB2E000134C0 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 46EB2E000134D0 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 46EB2E000134E0 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 46EB2E000134F0 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 46EB2E00013510 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013520 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013530 /* RCTColorAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTColorAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013540 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013550 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013560 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013570 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013580 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 46EB2E00013590 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135A0 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135B0 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135C0 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135D0 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135E0 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 46EB2E000135F0 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; + 46EB2E00013600 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 46EB2E00013610 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 46EB2E00013620 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 46EB2E00013630 /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = ""; }; + 46EB2E00013650 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 46EB2E00013660 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 46EB2E00013680 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 46EB2E00013690 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; + 46EB2E000136A0 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 46EB2E000136B0 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 46EB2E000136C0 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 46EB2E000136D0 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 46EB2E000136E0 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + 46EB2E000136F0 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 46EB2E00013700 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = ""; }; + 46EB2E00013710 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 46EB2E00013720 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + 46EB2E00013730 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + 46EB2E00013740 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 46EB2E00013750 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 46EB2E00013760 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 46EB2E00013770 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; + 46EB2E00013780 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 46EB2E00013790 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 46EB2E000137A0 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 46EB2E000137B0 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 46EB2E000137C0 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 46EB2E000137D0 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 46EB2E000137F0 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 46EB2E00013800 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 46EB2E00013820 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 46EB2E00013830 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 46EB2E00013840 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 46EB2E00013850 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 46EB2E00013860 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + 46EB2E00013870 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 46EB2E00013890 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 46EB2E000138A0 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + 46EB2E000138D0 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 46EB2E000138E0 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 46EB2E00013900 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 46EB2E00013910 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 46EB2E00013920 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 46EB2E00013930 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 46EB2E00013940 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 46EB2E00013960 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 46EB2E00013970 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 46EB2E00013980 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 46EB2E00013990 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 46EB2E000139C0 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 46EB2E000139D0 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 46EB2E000139E0 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + 46EB2E000139F0 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 46EB2E00013A00 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 46EB2E00013A10 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 46EB2E00013A20 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 46EB2E00013A30 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 46EB2E00013A40 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 46EB2E00013A50 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 46EB2E00013A60 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 46EB2E00013A70 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 46EB2E00013A80 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 46EB2E00013A90 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 46EB2E00013AB0 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 46EB2E00013AC0 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 46EB2E00013AD0 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 46EB2E00013AF0 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 46EB2E00013B00 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 46EB2E00013B20 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 46EB2E00013B30 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 46EB2E00013B50 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 46EB2E00013B60 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 46EB2E00013B70 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 46EB2E00013B80 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 46EB2E00013B90 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 46EB2E00013BA0 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 46EB2E00013BB0 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + 46EB2E00013BC0 /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = ""; }; + 46EB2E00013BD0 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; + 46EB2E00013BE0 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + 46EB2E00013BF0 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + 46EB2E00013C00 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + 46EB2E00013C10 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; + 46EB2E00013C20 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + 46EB2E00013C30 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; + 46EB2E00013C40 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + 46EB2E00013C50 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 46EB2E00013C60 /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSplitBundleLoader.mm; sourceTree = ""; }; + 46EB2E00013C70 /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTEventDispatcher.mm; sourceTree = ""; }; + 46EB2E00013C80 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 46EB2E00013C90 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 46EB2E00013CA0 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 46EB2E00013CB0 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + 46EB2E00013CC0 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; + 46EB2E00013CD0 /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBoxView.mm; sourceTree = ""; }; + 46EB2E00013CE0 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 46EB2E00013CF0 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 46EB2E00013D00 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 46EB2E00013D10 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 46EB2E00013D20 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 46EB2E00013D30 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; + 46EB2E00013D40 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + 46EB2E00013D50 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; + 46EB2E00013D70 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 46EB2E00013D80 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 46EB2E00013D90 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 46EB2E00013DA0 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 46EB2E00013DC0 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013DD0 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013DE0 /* RCTColorAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTColorAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013DF0 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E00 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E10 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E20 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E30 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E40 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E50 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E60 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E70 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E80 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013E90 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 46EB2E00013EA0 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; + 46EB2E00013EB0 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 46EB2E00013EC0 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; + 46EB2E00013ED0 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 46EB2E00013EE0 /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedTurboModule.mm; sourceTree = ""; }; + 46EB2E00013EF0 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 46EB2E00013F00 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 46EB2E00013F10 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 46EB2E00013F20 /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = ""; }; + 46EB2E00013F30 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 46EB2E00013F40 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + 46EB2E00013F50 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 46EB2E00013F60 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; + 46EB2E00013F70 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 46EB2E00013F80 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 46EB2E00013F90 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 46EB2E00013FA0 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + 46EB2E00013FB0 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 46EB2E00013FC0 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + 46EB2E00013FD0 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 46EB2E00013FE0 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; + 46EB2E00013FF0 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; + 46EB2E00014000 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 46EB2E00014010 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + 46EB2E00014020 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + 46EB2E00014030 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; + 46EB2E00014040 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 46EB2E00014050 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + 46EB2E00014060 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + 46EB2E00014070 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 46EB2E00014080 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 46EB2E00014090 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 46EB2E000140A0 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 46EB2E000140B0 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 46EB2E000140C0 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + 46EB2E000140D0 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; + 46EB2E000140E0 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 46EB2E000140F0 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 46EB2E00014110 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 46EB2E00014120 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 46EB2E00014140 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 46EB2E00014150 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 46EB2E00014160 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 46EB2E00014170 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 46EB2E00014190 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 46EB2E000141A0 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 46EB2E000141B0 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 46EB2E000141C0 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 46EB2E000141F0 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 46EB2E00014200 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 46EB2E00014210 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 46EB2E00014220 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 46EB2E00014230 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 46EB2E00014240 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 46EB2E00014250 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 46EB2E00014260 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 46EB2E00014270 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 46EB2E00014280 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 46EB2E00014290 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 46EB2E000142A0 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 46EB2E000142C0 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 46EB2E000142D0 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 46EB2E000142E0 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 46EB2E00014300 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 46EB2E00014310 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 46EB2E00014320 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 46EB2E00014330 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; + 46EB2E00014340 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = react/bridging/Array.h; sourceTree = ""; }; + 46EB2E00014350 /* AString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AString.h; path = react/bridging/AString.h; sourceTree = ""; }; + 46EB2E00014360 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = react/bridging/Base.h; sourceTree = ""; }; + 46EB2E00014370 /* Bool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bool.h; path = react/bridging/Bool.h; sourceTree = ""; }; + 46EB2E00014380 /* Bridging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bridging.h; path = react/bridging/Bridging.h; sourceTree = ""; }; + 46EB2E00014390 /* CallbackWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallbackWrapper.h; path = react/bridging/CallbackWrapper.h; sourceTree = ""; }; + 46EB2E000143A0 /* Class.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Class.h; path = react/bridging/Class.h; sourceTree = ""; }; + 46EB2E000143B0 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = react/bridging/Convert.h; sourceTree = ""; }; + 46EB2E000143C0 /* Error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Error.h; path = react/bridging/Error.h; sourceTree = ""; }; + 46EB2E000143D0 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = react/bridging/Function.h; sourceTree = ""; }; + 46EB2E000143E0 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LongLivedObject.cpp; path = react/bridging/LongLivedObject.cpp; sourceTree = ""; }; + 46EB2E000143F0 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = react/bridging/LongLivedObject.h; sourceTree = ""; }; + 46EB2E00014400 /* Number.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Number.h; path = react/bridging/Number.h; sourceTree = ""; }; + 46EB2E00014410 /* Object.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Object.h; path = react/bridging/Object.h; sourceTree = ""; }; + 46EB2E00014420 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = react/bridging/Promise.h; sourceTree = ""; }; + 46EB2E00014430 /* Value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Value.h; path = react/bridging/Value.h; sourceTree = ""; }; + 46EB2E00014440 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; + 46EB2E00014450 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 46EB2E00014460 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = ""; }; + 46EB2E00014470 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 46EB2E00014480 /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = ""; }; + 46EB2E00014490 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; + 46EB2E000144A0 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 46EB2E000144B0 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 46EB2E000144C0 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 46EB2E000144D0 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = ""; }; + 46EB2E000144E0 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 46EB2E000144F0 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = ""; }; + 46EB2E00014500 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 46EB2E00014510 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = ""; }; + 46EB2E00014520 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 46EB2E00014530 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 46EB2E00014540 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 46EB2E00014550 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 46EB2E00014560 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 46EB2E00014570 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = ""; }; + 46EB2E00014580 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 46EB2E00014590 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = ""; }; + 46EB2E000145A0 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 46EB2E000145B0 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 46EB2E000145C0 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 46EB2E000145D0 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 46EB2E000145E0 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 46EB2E000145F0 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 46EB2E00014600 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = ""; }; + 46EB2E00014610 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 46EB2E00014620 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + 46EB2E00014630 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 46EB2E00014640 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 46EB2E00014650 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 46EB2E00014670 /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = ""; }; + 46EB2E00014680 /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = ""; }; + 46EB2E00014690 /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = ""; }; + 46EB2E000146A0 /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = ""; }; + 46EB2E000146C0 /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = ""; }; + 46EB2E000146D0 /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = ""; }; + 46EB2E000146E0 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = ""; }; + 46EB2E000146F0 /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = ""; }; + 46EB2E00014700 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = ""; }; + 46EB2E00014710 /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = ""; }; + 46EB2E00014720 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = ""; }; + 46EB2E00014730 /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = ""; }; + 46EB2E00014750 /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = ""; }; + 46EB2E00014760 /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = ""; }; + 46EB2E00014770 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = ""; }; + 46EB2E00014780 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = ""; }; + 46EB2E00014790 /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = ""; }; + 46EB2E000147A0 /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = ""; }; + 46EB2E000147B0 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = ""; }; + 46EB2E000147C0 /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = ""; }; + 46EB2E000147D0 /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = ""; }; + 46EB2E000147E0 /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = ""; }; + 46EB2E000147F0 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = ""; }; + 46EB2E00014800 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = ""; }; + 46EB2E00014810 /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = ""; }; + 46EB2E00014820 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = ""; }; + 46EB2E00014830 /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = ""; }; + 46EB2E00014840 /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = ""; }; + 46EB2E00014860 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = ""; }; + 46EB2E00014870 /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = ""; }; + 46EB2E00014880 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = ""; }; + 46EB2E00014890 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = ""; }; + 46EB2E000148A0 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = ""; }; + 46EB2E000148B0 /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = ""; }; + 46EB2E000148C0 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = ""; }; + 46EB2E000148D0 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 46EB2E000148F0 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 46EB2E00014900 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 46EB2E00014910 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 46EB2E00014920 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = ""; }; + 46EB2E00014930 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 46EB2E00014940 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; + 46EB2E00014950 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 46EB2E00014960 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 46EB2E00014970 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 46EB2E00014980 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 46EB2E00014990 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 46EB2E000149A0 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 46EB2E000149B0 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 46EB2E000149C0 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 46EB2E000149D0 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 46EB2E000149E0 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 46EB2E000149F0 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 46EB2E00014A00 /* react_native_log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = react_native_log.cpp; sourceTree = ""; }; + 46EB2E00014A10 /* react_native_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = react_native_log.h; sourceTree = ""; }; + 46EB2E00014A20 /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = ""; }; + 46EB2E00014A30 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = ""; }; + 46EB2E00014A40 /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = ""; }; + 46EB2E00014A50 /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = ""; }; + 46EB2E00014A90 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = ""; }; + 46EB2E00014AA0 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = ""; }; + 46EB2E00014AB0 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = ""; }; + 46EB2E00014AC0 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = ""; }; + 46EB2E00014AD0 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = ""; }; + 46EB2E00014AE0 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = ""; }; + 46EB2E00014AF0 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = ""; }; + 46EB2E00014B00 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = ""; }; + 46EB2E00014B10 /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = ""; }; + 46EB2E00014B20 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = ""; }; + 46EB2E00014B30 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; + 46EB2E00014B60 /* RCTBlockGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlockGuard.h; sourceTree = ""; }; + 46EB2E00014B70 /* RCTBlockGuard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlockGuard.mm; sourceTree = ""; }; + 46EB2E00014B80 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 46EB2E00014B90 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 46EB2E00014BA0 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 46EB2E00014BB0 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 46EB2E00014BD0 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 46EB2E00014BE0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + 46EB2E00014BF0 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + 46EB2E00014C00 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + 46EB2E00014C10 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 46EB2E00014C20 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 46EB2E00014C30 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 46EB2E00014C40 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + 46EB2E00014C50 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 46EB2E00014C60 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + 46EB2E00014C70 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + 46EB2E00014C80 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 46EB2E00014C90 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + 46EB2E00014CA0 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + 46EB2E00014CB0 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 46EB2E00014CC0 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 46EB2E00014CD0 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 46EB2E00014CE0 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 46EB2E00014CF0 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + 46EB2E00014D00 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + 46EB2E00014D10 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 46EB2E00014D20 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 46EB2E00014D30 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + 46EB2E00014D40 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + 46EB2E00014D50 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + 46EB2E00014D60 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 46EB2E00014D70 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 46EB2E00014D80 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 46EB2E00014D90 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + 46EB2E00014DA0 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 46EB2E00014DB0 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 46EB2E00014DC0 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 46EB2E00014DD0 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + 46EB2E00014DE0 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 46EB2E00014DF0 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 46EB2E00014E00 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 46EB2E00014E10 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 46EB2E00014E20 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 46EB2E00014E30 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 46EB2E00014E40 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 46EB2E00014E50 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 46EB2E00014E60 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 46EB2E00014E70 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + 46EB2E00014E80 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + 46EB2E00014E90 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 46EB2E00014EA0 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + 46EB2E00014EB0 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 46EB2E00014EC0 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + 46EB2E00014ED0 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 46EB2E00014EE0 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 46EB2E00014EF0 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + 46EB2E00014F00 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 46EB2E00014F10 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 46EB2E00014F20 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 46EB2E00014F30 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 46EB2E00014F40 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 46EB2E00014F50 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + 46EB2E00014F60 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + 46EB2E00014F70 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 46EB2E00014F80 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 46EB2E00014F90 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 46EB2E00014FA0 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 46EB2E00014FB0 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + 46EB2E00014FC0 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + 46EB2E00014FD0 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 46EB2E00014FE0 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + 46EB2E00014FF0 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 46EB2E00015000 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + 46EB2E00015010 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + 46EB2E00015020 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + 46EB2E00015030 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + 46EB2E00015040 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + 46EB2E00015050 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 46EB2E00015060 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 46EB2E00015070 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + 46EB2E00015080 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 46EB2E00015090 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 46EB2E000150A0 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 46EB2E000150B0 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 46EB2E000150C0 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + 46EB2E000150D0 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 46EB2E000150E0 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + 46EB2E000150F0 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 46EB2E00015100 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + 46EB2E00015110 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 46EB2E00015120 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 46EB2E00015130 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 46EB2E00015140 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + 46EB2E00015150 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 46EB2E00015160 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + 46EB2E00015170 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 46EB2E00015180 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + 46EB2E00015190 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 46EB2E000151A0 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 46EB2E000151B0 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + 46EB2E000151C0 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + 46EB2E000151D0 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + 46EB2E000151E0 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 46EB2E000151F0 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + 46EB2E00015200 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 46EB2E00015210 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 46EB2E00015220 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 46EB2E00015230 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 46EB2E00015240 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + 46EB2E00015250 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 46EB2E00015260 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 46EB2E00015270 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + 46EB2E00015280 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 46EB2E00015290 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 46EB2E000152A0 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 46EB2E000152B0 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 46EB2E000152C0 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + 46EB2E000152D0 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 46EB2E000152E0 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + 46EB2E000152F0 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 46EB2E00015300 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 46EB2E00015310 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + 46EB2E00015320 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 46EB2E00015330 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + 46EB2E00015340 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 46EB2E00015350 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 46EB2E00015360 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + 46EB2E00015370 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 46EB2E00015380 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 46EB2E00015390 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 46EB2E000153A0 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + 46EB2E000153B0 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 46EB2E000153C0 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 46EB2E000153D0 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 46EB2E000153E0 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 46EB2E000153F0 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + 46EB2E00015400 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + 46EB2E00015410 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + 46EB2E00015420 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 46EB2E00015430 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; + 46EB2E00015440 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + 46EB2E00015450 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 46EB2E00015460 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + 46EB2E00015470 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 46EB2E00015480 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + 46EB2E00015490 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + 46EB2E000154A0 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 46EB2E000154B0 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; + 46EB2E000154C0 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; + 46EB2E000154D0 /* SDWebImageWebPCoderDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoderDefine.h; path = SDWebImageWebPCoder/Classes/SDWebImageWebPCoderDefine.h; sourceTree = ""; }; + 46EB2E000154E0 /* SDWebImageWebPCoderDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageWebPCoderDefine.m; path = SDWebImageWebPCoder/Classes/SDWebImageWebPCoderDefine.m; sourceTree = ""; }; + 46EB2E000154F0 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; + 46EB2E00015500 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; + 46EB2E00015510 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; + 46EB2E00015520 /* SSZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipArchive.h; path = SSZipArchive/SSZipArchive.h; sourceTree = ""; }; + 46EB2E00015530 /* SSZipArchive.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SSZipArchive.m; path = SSZipArchive/SSZipArchive.m; sourceTree = ""; }; + 46EB2E00015540 /* SSZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipCommon.h; path = SSZipArchive/SSZipCommon.h; sourceTree = ""; }; + 46EB2E00015550 /* ZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = SSZipArchive/ZipArchive.h; sourceTree = ""; }; + 46EB2E00015560 /* mz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz.h; path = SSZipArchive/minizip/mz.h; sourceTree = ""; }; + 46EB2E00015570 /* mz_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_compat.c; path = SSZipArchive/minizip/mz_compat.c; sourceTree = ""; }; + 46EB2E00015580 /* mz_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_compat.h; path = SSZipArchive/minizip/mz_compat.h; sourceTree = ""; }; + 46EB2E00015590 /* mz_crypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_crypt.c; path = SSZipArchive/minizip/mz_crypt.c; sourceTree = ""; }; + 46EB2E000155A0 /* mz_crypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_crypt.h; path = SSZipArchive/minizip/mz_crypt.h; sourceTree = ""; }; + 46EB2E000155B0 /* mz_crypt_apple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_crypt_apple.c; path = SSZipArchive/minizip/mz_crypt_apple.c; sourceTree = ""; }; + 46EB2E000155C0 /* mz_os.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_os.c; path = SSZipArchive/minizip/mz_os.c; sourceTree = ""; }; + 46EB2E000155D0 /* mz_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_os.h; path = SSZipArchive/minizip/mz_os.h; sourceTree = ""; }; + 46EB2E000155E0 /* mz_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_os_posix.c; path = SSZipArchive/minizip/mz_os_posix.c; sourceTree = ""; }; + 46EB2E000155F0 /* mz_strm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm.c; path = SSZipArchive/minizip/mz_strm.c; sourceTree = ""; }; + 46EB2E00015600 /* mz_strm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm.h; path = SSZipArchive/minizip/mz_strm.h; sourceTree = ""; }; + 46EB2E00015610 /* mz_strm_buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_buf.c; path = SSZipArchive/minizip/mz_strm_buf.c; sourceTree = ""; }; + 46EB2E00015620 /* mz_strm_buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_buf.h; path = SSZipArchive/minizip/mz_strm_buf.h; sourceTree = ""; }; + 46EB2E00015630 /* mz_strm_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_mem.c; path = SSZipArchive/minizip/mz_strm_mem.c; sourceTree = ""; }; + 46EB2E00015640 /* mz_strm_mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_mem.h; path = SSZipArchive/minizip/mz_strm_mem.h; sourceTree = ""; }; + 46EB2E00015650 /* mz_strm_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_os.h; path = SSZipArchive/minizip/mz_strm_os.h; sourceTree = ""; }; + 46EB2E00015660 /* mz_strm_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_os_posix.c; path = SSZipArchive/minizip/mz_strm_os_posix.c; sourceTree = ""; }; + 46EB2E00015670 /* mz_strm_pkcrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_pkcrypt.c; path = SSZipArchive/minizip/mz_strm_pkcrypt.c; sourceTree = ""; }; + 46EB2E00015680 /* mz_strm_pkcrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_pkcrypt.h; path = SSZipArchive/minizip/mz_strm_pkcrypt.h; sourceTree = ""; }; + 46EB2E00015690 /* mz_strm_split.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_split.c; path = SSZipArchive/minizip/mz_strm_split.c; sourceTree = ""; }; + 46EB2E000156A0 /* mz_strm_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_split.h; path = SSZipArchive/minizip/mz_strm_split.h; sourceTree = ""; }; + 46EB2E000156B0 /* mz_strm_wzaes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_wzaes.c; path = SSZipArchive/minizip/mz_strm_wzaes.c; sourceTree = ""; }; + 46EB2E000156C0 /* mz_strm_wzaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_wzaes.h; path = SSZipArchive/minizip/mz_strm_wzaes.h; sourceTree = ""; }; + 46EB2E000156D0 /* mz_strm_zlib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_zlib.c; path = SSZipArchive/minizip/mz_strm_zlib.c; sourceTree = ""; }; + 46EB2E000156E0 /* mz_strm_zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_zlib.h; path = SSZipArchive/minizip/mz_strm_zlib.h; sourceTree = ""; }; + 46EB2E000156F0 /* mz_zip.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_zip.c; path = SSZipArchive/minizip/mz_zip.c; sourceTree = ""; }; + 46EB2E00015700 /* mz_zip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip.h; path = SSZipArchive/minizip/mz_zip.h; sourceTree = ""; }; + 46EB2E00015710 /* mz_zip_rw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_zip_rw.c; path = SSZipArchive/minizip/mz_zip_rw.c; sourceTree = ""; }; + 46EB2E00015720 /* mz_zip_rw.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip_rw.h; path = SSZipArchive/minizip/mz_zip_rw.h; sourceTree = ""; }; + 46EB2E00015730 /* SRDelegateController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRDelegateController.h; path = SocketRocket/Internal/Delegate/SRDelegateController.h; sourceTree = ""; }; + 46EB2E00015740 /* SRDelegateController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRDelegateController.m; path = SocketRocket/Internal/Delegate/SRDelegateController.m; sourceTree = ""; }; + 46EB2E00015750 /* SRIOConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRIOConsumer.h; path = SocketRocket/Internal/IOConsumer/SRIOConsumer.h; sourceTree = ""; }; + 46EB2E00015760 /* SRIOConsumer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRIOConsumer.m; path = SocketRocket/Internal/IOConsumer/SRIOConsumer.m; sourceTree = ""; }; + 46EB2E00015770 /* SRIOConsumerPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRIOConsumerPool.h; path = SocketRocket/Internal/IOConsumer/SRIOConsumerPool.h; sourceTree = ""; }; + 46EB2E00015780 /* SRIOConsumerPool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRIOConsumerPool.m; path = SocketRocket/Internal/IOConsumer/SRIOConsumerPool.m; sourceTree = ""; }; + 46EB2E00015790 /* NSRunLoop+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSRunLoop+SRWebSocketPrivate.h"; path = "SocketRocket/Internal/NSRunLoop+SRWebSocketPrivate.h"; sourceTree = ""; }; + 46EB2E000157A0 /* NSURLRequest+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+SRWebSocketPrivate.h"; path = "SocketRocket/Internal/NSURLRequest+SRWebSocketPrivate.h"; sourceTree = ""; }; + 46EB2E000157B0 /* SRProxyConnect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRProxyConnect.h; path = SocketRocket/Internal/Proxy/SRProxyConnect.h; sourceTree = ""; }; + 46EB2E000157C0 /* SRProxyConnect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRProxyConnect.m; path = SocketRocket/Internal/Proxy/SRProxyConnect.m; sourceTree = ""; }; + 46EB2E000157D0 /* SRRunLoopThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRRunLoopThread.h; path = SocketRocket/Internal/RunLoop/SRRunLoopThread.h; sourceTree = ""; }; + 46EB2E000157E0 /* SRRunLoopThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRRunLoopThread.m; path = SocketRocket/Internal/RunLoop/SRRunLoopThread.m; sourceTree = ""; }; + 46EB2E000157F0 /* SRPinningSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRPinningSecurityPolicy.h; path = SocketRocket/Internal/Security/SRPinningSecurityPolicy.h; sourceTree = ""; }; + 46EB2E00015800 /* SRPinningSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRPinningSecurityPolicy.m; path = SocketRocket/Internal/Security/SRPinningSecurityPolicy.m; sourceTree = ""; }; + 46EB2E00015810 /* SRConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRConstants.h; path = SocketRocket/Internal/SRConstants.h; sourceTree = ""; }; + 46EB2E00015820 /* SRConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRConstants.m; path = SocketRocket/Internal/SRConstants.m; sourceTree = ""; }; + 46EB2E00015830 /* SRError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRError.h; path = SocketRocket/Internal/Utilities/SRError.h; sourceTree = ""; }; + 46EB2E00015840 /* SRError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRError.m; path = SocketRocket/Internal/Utilities/SRError.m; sourceTree = ""; }; + 46EB2E00015850 /* SRHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRHash.h; path = SocketRocket/Internal/Utilities/SRHash.h; sourceTree = ""; }; + 46EB2E00015860 /* SRHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRHash.m; path = SocketRocket/Internal/Utilities/SRHash.m; sourceTree = ""; }; + 46EB2E00015870 /* SRHTTPConnectMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRHTTPConnectMessage.h; path = SocketRocket/Internal/Utilities/SRHTTPConnectMessage.h; sourceTree = ""; }; + 46EB2E00015880 /* SRHTTPConnectMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRHTTPConnectMessage.m; path = SocketRocket/Internal/Utilities/SRHTTPConnectMessage.m; sourceTree = ""; }; + 46EB2E00015890 /* SRLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRLog.h; path = SocketRocket/Internal/Utilities/SRLog.h; sourceTree = ""; }; + 46EB2E000158A0 /* SRLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRLog.m; path = SocketRocket/Internal/Utilities/SRLog.m; sourceTree = ""; }; + 46EB2E000158B0 /* SRMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRMutex.h; path = SocketRocket/Internal/Utilities/SRMutex.h; sourceTree = ""; }; + 46EB2E000158C0 /* SRMutex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRMutex.m; path = SocketRocket/Internal/Utilities/SRMutex.m; sourceTree = ""; }; + 46EB2E000158D0 /* SRRandom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRRandom.h; path = SocketRocket/Internal/Utilities/SRRandom.h; sourceTree = ""; }; + 46EB2E000158E0 /* SRRandom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRRandom.m; path = SocketRocket/Internal/Utilities/SRRandom.m; sourceTree = ""; }; + 46EB2E000158F0 /* SRSIMDHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRSIMDHelpers.h; path = SocketRocket/Internal/Utilities/SRSIMDHelpers.h; sourceTree = ""; }; + 46EB2E00015900 /* SRSIMDHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRSIMDHelpers.m; path = SocketRocket/Internal/Utilities/SRSIMDHelpers.m; sourceTree = ""; }; + 46EB2E00015910 /* SRURLUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRURLUtilities.h; path = SocketRocket/Internal/Utilities/SRURLUtilities.h; sourceTree = ""; }; + 46EB2E00015920 /* SRURLUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRURLUtilities.m; path = SocketRocket/Internal/Utilities/SRURLUtilities.m; sourceTree = ""; }; + 46EB2E00015930 /* NSRunLoop+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSRunLoop+SRWebSocket.h"; path = "SocketRocket/NSRunLoop+SRWebSocket.h"; sourceTree = ""; }; + 46EB2E00015940 /* NSRunLoop+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSRunLoop+SRWebSocket.m"; path = "SocketRocket/NSRunLoop+SRWebSocket.m"; sourceTree = ""; }; + 46EB2E00015950 /* NSURLRequest+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+SRWebSocket.h"; path = "SocketRocket/NSURLRequest+SRWebSocket.h"; sourceTree = ""; }; + 46EB2E00015960 /* NSURLRequest+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLRequest+SRWebSocket.m"; path = "SocketRocket/NSURLRequest+SRWebSocket.m"; sourceTree = ""; }; + 46EB2E00015970 /* SocketRocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketRocket.h; path = SocketRocket/SocketRocket.h; sourceTree = ""; }; + 46EB2E00015980 /* SRSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRSecurityPolicy.h; path = SocketRocket/SRSecurityPolicy.h; sourceTree = ""; }; + 46EB2E00015990 /* SRSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRSecurityPolicy.m; path = SocketRocket/SRSecurityPolicy.m; sourceTree = ""; }; + 46EB2E000159A0 /* SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRWebSocket.h; path = SocketRocket/SRWebSocket.h; sourceTree = ""; }; + 46EB2E000159B0 /* SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRWebSocket.m; path = SocketRocket/SRWebSocket.m; sourceTree = ""; }; + 46EB2E000159C0 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + 46EB2E000159D0 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 46EB2E000159F0 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = ""; }; + 46EB2E00015A00 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 46EB2E00015A20 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 46EB2E00015A30 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; + 46EB2E00015A40 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 46EB2E00015A50 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 46EB2E00015A60 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 46EB2E00015A70 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 46EB2E00015A80 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 46EB2E00015A90 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 46EB2E00015AA0 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 46EB2E00015AB0 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 46EB2E00015AC0 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 46EB2E00015AD0 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 46EB2E00015AE0 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 46EB2E00015AF0 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 46EB2E00015B00 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 46EB2E00015B10 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 46EB2E00015B20 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 46EB2E00015B30 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 46EB2E00015B40 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 46EB2E00015B50 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 46EB2E00015B60 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 46EB2E00015B70 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 46EB2E00015B80 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 46EB2E00015B90 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 46EB2E00015BA0 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 46EB2E00015BB0 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 46EB2E00015BC0 /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; + 46EB2E00015BD0 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; + 46EB2E00015BE0 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; + 46EB2E00015BF0 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; + 46EB2E00015C00 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; + 46EB2E00015C10 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; + 46EB2E00015C40 /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; + 46EB2E00015C60 /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; + 46EB2E00015C90 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; + 46EB2E00015CB0 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; + 46EB2E00015CC0 /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; + 46EB2E00015CD0 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; + 46EB2E00015CE0 /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; + 46EB2E00015CF0 /* low_level_scheduling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_scheduling.h; path = absl/base/internal/low_level_scheduling.h; sourceTree = ""; }; + 46EB2E00015D00 /* per_thread_tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_tls.h; path = absl/base/internal/per_thread_tls.h; sourceTree = ""; }; + 46EB2E00015D10 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; + 46EB2E00015D20 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; + 46EB2E00015D30 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; + 46EB2E00015D40 /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; + 46EB2E00015D50 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; + 46EB2E00015D60 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; + 46EB2E00015D70 /* tsan_mutex_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsan_mutex_interface.h; path = absl/base/internal/tsan_mutex_interface.h; sourceTree = ""; }; + 46EB2E00015D80 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; + 46EB2E00015D90 /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; + 46EB2E00015DB0 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; + 46EB2E00015DC0 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; + 46EB2E00015DD0 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; + 46EB2E00015DE0 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; + 46EB2E00015DF0 /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; + 46EB2E00015E10 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; + 46EB2E00015E20 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; + 46EB2E00015E30 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; + 46EB2E00015E50 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; + 46EB2E00015E60 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; + 46EB2E00015E70 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; + 46EB2E00015E80 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; + 46EB2E00015E90 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; + 46EB2E00015EA0 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; + 46EB2E00015EB0 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; + 46EB2E00015ED0 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; + 46EB2E00015EE0 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; + 46EB2E00015F00 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; + 46EB2E00015F10 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; + 46EB2E00015F30 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; + 46EB2E00015F50 /* fast_type_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_type_id.h; path = absl/base/internal/fast_type_id.h; sourceTree = ""; }; + 46EB2E00015F70 /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; + 46EB2E00015F80 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; + 46EB2E00015FA0 /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; + 46EB2E00015FB0 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; + 46EB2E00015FC0 /* low_level_alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_alloc.h; path = absl/base/internal/low_level_alloc.h; sourceTree = ""; }; + 46EB2E00015FE0 /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; + 46EB2E00016000 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; + 46EB2E00016010 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; + 46EB2E00016030 /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; + 46EB2E00016040 /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; + 46EB2E00016050 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; + 46EB2E00016060 /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; + 46EB2E00016070 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; + 46EB2E00016080 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; + 46EB2E000160A0 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; + 46EB2E000160B0 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; + 46EB2E000160D0 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; + 46EB2E000160E0 /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; + 46EB2E00016110 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; + 46EB2E00016130 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; + 46EB2E00016150 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; + 46EB2E00016170 /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; + 46EB2E00016190 /* flat_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_map.h; path = absl/container/flat_hash_map.h; sourceTree = ""; }; + 46EB2E000161B0 /* hash_function_defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_function_defaults.h; path = absl/container/internal/hash_function_defaults.h; sourceTree = ""; }; + 46EB2E000161D0 /* hash_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy_traits.h; path = absl/container/internal/hash_policy_traits.h; sourceTree = ""; }; + 46EB2E000161F0 /* hashtable_debug_hooks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtable_debug_hooks.h; path = absl/container/internal/hashtable_debug_hooks.h; sourceTree = ""; }; + 46EB2E00016210 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; + 46EB2E00016220 /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; + 46EB2E00016230 /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; + 46EB2E00016250 /* have_sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = have_sse.h; path = absl/container/internal/have_sse.h; sourceTree = ""; }; + 46EB2E00016270 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; + 46EB2E00016290 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; + 46EB2E000162B0 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; + 46EB2E000162D0 /* raw_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_map.h; path = absl/container/internal/raw_hash_map.h; sourceTree = ""; }; + 46EB2E000162F0 /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; + 46EB2E00016300 /* raw_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_set.h; path = absl/container/internal/raw_hash_set.h; sourceTree = ""; }; + 46EB2E00016330 /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; + 46EB2E00016340 /* address_is_readable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_is_readable.h; path = absl/debugging/internal/address_is_readable.h; sourceTree = ""; }; + 46EB2E00016350 /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; + 46EB2E00016360 /* elf_mem_image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = elf_mem_image.h; path = absl/debugging/internal/elf_mem_image.h; sourceTree = ""; }; + 46EB2E00016370 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; + 46EB2E00016380 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; + 46EB2E000163A0 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; + 46EB2E000163B0 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; + 46EB2E000163D0 /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; + 46EB2E000163E0 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; + 46EB2E000163F0 /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; + 46EB2E00016400 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; + 46EB2E00016410 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; + 46EB2E00016420 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; + 46EB2E00016430 /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; + 46EB2E00016440 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; + 46EB2E00016450 /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; + 46EB2E00016460 /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; + 46EB2E00016470 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; + 46EB2E00016480 /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; + 46EB2E000164A0 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; + 46EB2E000164B0 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; + 46EB2E000164C0 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; + 46EB2E000164D0 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; + 46EB2E000164E0 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; + 46EB2E000164F0 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; + 46EB2E00016500 /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; + 46EB2E00016510 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; + 46EB2E00016540 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; + 46EB2E00016550 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; + 46EB2E00016570 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; + 46EB2E00016580 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; + 46EB2E000165B0 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; + 46EB2E000165C0 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; + 46EB2E000165E0 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; + 46EB2E000165F0 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; + 46EB2E00016600 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; + 46EB2E00016620 /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; + 46EB2E00016630 /* low_level_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_hash.h; path = absl/hash/internal/low_level_hash.h; sourceTree = ""; }; + 46EB2E00016660 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; + 46EB2E00016690 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; + 46EB2E000166C0 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; + 46EB2E000166D0 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; + 46EB2E000166F0 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; + 46EB2E00016700 /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; + 46EB2E00016710 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; + 46EB2E00016720 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; + 46EB2E00016740 /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; + 46EB2E00016770 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; + 46EB2E00016780 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; + 46EB2E000167A0 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; + 46EB2E000167D0 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; + 46EB2E000167E0 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; + 46EB2E000167F0 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; + 46EB2E00016800 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; + 46EB2E00016810 /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; + 46EB2E00016820 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; + 46EB2E00016830 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; + 46EB2E00016840 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; + 46EB2E00016850 /* log_uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_uniform_int_distribution.h; path = absl/random/log_uniform_int_distribution.h; sourceTree = ""; }; + 46EB2E00016860 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; + 46EB2E00016870 /* uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_int_distribution.h; path = absl/random/uniform_int_distribution.h; sourceTree = ""; }; + 46EB2E00016880 /* uniform_real_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_real_distribution.h; path = absl/random/uniform_real_distribution.h; sourceTree = ""; }; + 46EB2E00016890 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; + 46EB2E000168C0 /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; + 46EB2E000168E0 /* fast_uniform_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_uniform_bits.h; path = absl/random/internal/fast_uniform_bits.h; sourceTree = ""; }; + 46EB2E00016900 /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; + 46EB2E00016920 /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; + 46EB2E00016940 /* iostream_state_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iostream_state_saver.h; path = absl/random/internal/iostream_state_saver.h; sourceTree = ""; }; + 46EB2E00016960 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; + 46EB2E00016980 /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; + 46EB2E000169A0 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; + 46EB2E000169B0 /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; + 46EB2E000169C0 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; + 46EB2E000169E0 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; + 46EB2E000169F0 /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; + 46EB2E00016A10 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; + 46EB2E00016A20 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; + 46EB2E00016A40 /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; + 46EB2E00016A60 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; + 46EB2E00016A70 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; + 46EB2E00016A80 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; + 46EB2E00016AA0 /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; + 46EB2E00016AC0 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; + 46EB2E00016AD0 /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; + 46EB2E00016AF0 /* salted_seed_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = salted_seed_seq.h; path = absl/random/internal/salted_seed_seq.h; sourceTree = ""; }; + 46EB2E00016B10 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; + 46EB2E00016B20 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; + 46EB2E00016B40 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; + 46EB2E00016B60 /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; + 46EB2E00016B80 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; + 46EB2E00016BA0 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; + 46EB2E00016BC0 /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; + 46EB2E00016BD0 /* seed_gen_exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_gen_exception.h; path = absl/random/seed_gen_exception.h; sourceTree = ""; }; + 46EB2E00016BF0 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; + 46EB2E00016C00 /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; + 46EB2E00016C30 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; + 46EB2E00016C40 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; + 46EB2E00016C50 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; + 46EB2E00016C60 /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; + 46EB2E00016C70 /* status_payload_printer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_payload_printer.h; path = absl/status/status_payload_printer.h; sourceTree = ""; }; + 46EB2E00016C90 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; + 46EB2E00016CA0 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; + 46EB2E00016CB0 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; + 46EB2E00016CE0 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; + 46EB2E00016CF0 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; + 46EB2E00016D10 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; + 46EB2E00016D20 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; + 46EB2E00016D30 /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; + 46EB2E00016D40 /* cord_rep_btree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree.h; path = absl/strings/internal/cord_rep_btree.h; sourceTree = ""; }; + 46EB2E00016D50 /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; + 46EB2E00016D60 /* cord_rep_btree_navigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_navigator.h; path = absl/strings/internal/cord_rep_btree_navigator.h; sourceTree = ""; }; + 46EB2E00016D70 /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; + 46EB2E00016D80 /* cord_rep_btree_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_reader.h; path = absl/strings/internal/cord_rep_btree_reader.h; sourceTree = ""; }; + 46EB2E00016D90 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; + 46EB2E00016DA0 /* cord_rep_consume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_consume.h; path = absl/strings/internal/cord_rep_consume.h; sourceTree = ""; }; + 46EB2E00016DB0 /* cord_rep_flat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_flat.h; path = absl/strings/internal/cord_rep_flat.h; sourceTree = ""; }; + 46EB2E00016DC0 /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; + 46EB2E00016DD0 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; + 46EB2E00016DE0 /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; + 46EB2E00016E00 /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; + 46EB2E00016E10 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; + 46EB2E00016E30 /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; + 46EB2E00016E40 /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; + 46EB2E00016E60 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; + 46EB2E00016E70 /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; + 46EB2E00016E90 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; + 46EB2E00016EB0 /* cordz_update_scope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_scope.h; path = absl/strings/internal/cordz_update_scope.h; sourceTree = ""; }; + 46EB2E00016ED0 /* cordz_update_tracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_tracker.h; path = absl/strings/internal/cordz_update_tracker.h; sourceTree = ""; }; + 46EB2E00016EF0 /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; + 46EB2E00016F00 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; + 46EB2E00016F10 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; + 46EB2E00016F20 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; + 46EB2E00016F30 /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; + 46EB2E00016F40 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; + 46EB2E00016F50 /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; + 46EB2E00016F60 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; + 46EB2E00016F80 /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; + 46EB2E00016FA0 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; + 46EB2E00016FB0 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; + 46EB2E00016FC0 /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; + 46EB2E00016FD0 /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; + 46EB2E00016FE0 /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; + 46EB2E00016FF0 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; + 46EB2E00017000 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; + 46EB2E00017010 /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; + 46EB2E00017020 /* float_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = float_conversion.h; path = absl/strings/internal/str_format/float_conversion.h; sourceTree = ""; }; + 46EB2E00017030 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; + 46EB2E00017040 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; + 46EB2E00017050 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; + 46EB2E00017060 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; + 46EB2E00017080 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; + 46EB2E00017090 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; + 46EB2E000170A0 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; + 46EB2E000170B0 /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; + 46EB2E000170C0 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; + 46EB2E000170D0 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; + 46EB2E000170E0 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; + 46EB2E000170F0 /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; + 46EB2E00017100 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; + 46EB2E00017110 /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; + 46EB2E00017120 /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; + 46EB2E00017130 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; + 46EB2E00017140 /* stl_type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_type_traits.h; path = absl/strings/internal/stl_type_traits.h; sourceTree = ""; }; + 46EB2E00017150 /* str_join_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join_internal.h; path = absl/strings/internal/str_join_internal.h; sourceTree = ""; }; + 46EB2E00017160 /* str_split_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split_internal.h; path = absl/strings/internal/str_split_internal.h; sourceTree = ""; }; + 46EB2E00017170 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; + 46EB2E00017180 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; + 46EB2E00017190 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; + 46EB2E000171A0 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; + 46EB2E000171B0 /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; + 46EB2E000171C0 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; + 46EB2E000171D0 /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; + 46EB2E000171E0 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; + 46EB2E000171F0 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; + 46EB2E00017200 /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; + 46EB2E00017210 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; + 46EB2E00017220 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; + 46EB2E00017230 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; + 46EB2E00017240 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; + 46EB2E00017250 /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; + 46EB2E00017260 /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; + 46EB2E00017270 /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; + 46EB2E000172A0 /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; + 46EB2E000172B0 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; + 46EB2E000172D0 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; + 46EB2E000172F0 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; + 46EB2E00017300 /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; + 46EB2E00017310 /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; + 46EB2E00017320 /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; + 46EB2E00017330 /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; + 46EB2E00017340 /* create_thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_thread_identity.h; path = absl/synchronization/internal/create_thread_identity.h; sourceTree = ""; }; + 46EB2E00017350 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; + 46EB2E00017360 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; + 46EB2E00017370 /* per_thread_sem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_sem.h; path = absl/synchronization/internal/per_thread_sem.h; sourceTree = ""; }; + 46EB2E00017380 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; + 46EB2E00017390 /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; + 46EB2E000173A0 /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; + 46EB2E000173B0 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; + 46EB2E000173C0 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; + 46EB2E000173D0 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; + 46EB2E00017420 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/internal/cctz/include/cctz/civil_time.h; sourceTree = ""; }; + 46EB2E00017430 /* civil_time_detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time_detail.h; path = absl/time/internal/cctz/include/cctz/civil_time_detail.h; sourceTree = ""; }; + 46EB2E00017440 /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; + 46EB2E00017460 /* time_zone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone.h; path = absl/time/internal/cctz/include/cctz/time_zone.h; sourceTree = ""; }; + 46EB2E00017470 /* zone_info_source.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zone_info_source.h; path = absl/time/internal/cctz/include/cctz/zone_info_source.h; sourceTree = ""; }; + 46EB2E00017480 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; + 46EB2E00017490 /* time_zone_fixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_fixed.h; path = absl/time/internal/cctz/src/time_zone_fixed.h; sourceTree = ""; }; + 46EB2E000174A0 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; + 46EB2E000174B0 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; + 46EB2E000174C0 /* time_zone_if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_if.h; path = absl/time/internal/cctz/src/time_zone_if.h; sourceTree = ""; }; + 46EB2E000174D0 /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; + 46EB2E000174E0 /* time_zone_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_impl.h; path = absl/time/internal/cctz/src/time_zone_impl.h; sourceTree = ""; }; + 46EB2E000174F0 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; + 46EB2E00017500 /* time_zone_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_info.h; path = absl/time/internal/cctz/src/time_zone_info.h; sourceTree = ""; }; + 46EB2E00017510 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; + 46EB2E00017520 /* time_zone_libc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_libc.h; path = absl/time/internal/cctz/src/time_zone_libc.h; sourceTree = ""; }; + 46EB2E00017530 /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; + 46EB2E00017540 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; + 46EB2E00017550 /* time_zone_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_posix.h; path = absl/time/internal/cctz/src/time_zone_posix.h; sourceTree = ""; }; + 46EB2E00017560 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; + 46EB2E00017570 /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; + 46EB2E00017590 /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; + 46EB2E000175A0 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; + 46EB2E000175B0 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; + 46EB2E000175C0 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; + 46EB2E000175D0 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; + 46EB2E000175E0 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; + 46EB2E000175F0 /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; + 46EB2E00017600 /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; + 46EB2E00017610 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; + 46EB2E00017620 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; + 46EB2E00017650 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; + 46EB2E00017670 /* bad_any_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_any_cast.h; path = absl/types/bad_any_cast.h; sourceTree = ""; }; + 46EB2E00017690 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; + 46EB2E000176B0 /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; + 46EB2E000176C0 /* bad_optional_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_optional_access.h; path = absl/types/bad_optional_access.h; sourceTree = ""; }; + 46EB2E000176E0 /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; + 46EB2E000176F0 /* bad_variant_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_variant_access.h; path = absl/types/bad_variant_access.h; sourceTree = ""; }; + 46EB2E00017710 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; + 46EB2E00017730 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; + 46EB2E00017740 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; + 46EB2E00017760 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; + 46EB2E00017770 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; + 46EB2E00017790 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; + 46EB2E000177A0 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; + 46EB2E000177D0 /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; + 46EB2E000177E0 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = src/format.cc; sourceTree = ""; }; + 46EB2E000177F0 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; + 46EB2E00017800 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; + 46EB2E00017810 /* compile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compile.h; path = include/fmt/compile.h; sourceTree = ""; }; + 46EB2E00017820 /* core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core.h; path = include/fmt/core.h; sourceTree = ""; }; + 46EB2E00017830 /* format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "format-inl.h"; path = "include/fmt/format-inl.h"; sourceTree = ""; }; + 46EB2E00017840 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = include/fmt/format.h; sourceTree = ""; }; + 46EB2E00017850 /* locale.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = locale.h; path = include/fmt/locale.h; sourceTree = ""; }; + 46EB2E00017860 /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; + 46EB2E00017870 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; + 46EB2E00017880 /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = include/fmt/posix.h; sourceTree = ""; }; + 46EB2E00017890 /* printf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = printf.h; path = include/fmt/printf.h; sourceTree = ""; }; + 46EB2E000178A0 /* ranges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ranges.h; path = include/fmt/ranges.h; sourceTree = ""; }; + 46EB2E000178C0 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; + 46EB2E000178D0 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; + 46EB2E000178E0 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; + 46EB2E000178F0 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; + 46EB2E00017900 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; + 46EB2E00017910 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; + 46EB2E00017920 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; + 46EB2E00017930 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; + 46EB2E00017940 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + 46EB2E00017950 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; + 46EB2E00017960 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; + 46EB2E00017970 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; + 46EB2E00017980 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; + 46EB2E00017990 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; + 46EB2E000179A0 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; + 46EB2E000179B0 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 46EB2E000179C0 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; + 46EB2E000179D0 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; + 46EB2E000179E0 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; + 46EB2E000179F0 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + 46EB2E00017A00 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; + 46EB2E00017A10 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; + 46EB2E00017A20 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; + 46EB2E00017A30 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; + 46EB2E00017A40 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; + 46EB2E00017A50 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; + 46EB2E00017A60 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; + 46EB2E00017A70 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + 46EB2E00017A80 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; + 46EB2E00017A90 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; + 46EB2E00017AA0 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + 46EB2E00017AB0 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + 46EB2E00017AC0 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; + 46EB2E00017AD0 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; + 46EB2E00017AE0 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; + 46EB2E00017AF0 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; + 46EB2E00017B00 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; + 46EB2E00017B10 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; + 46EB2E00017B20 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; + 46EB2E00017B30 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; + 46EB2E00017B40 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; + 46EB2E00017B50 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 46EB2E00017B60 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; + 46EB2E00017B70 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; + 46EB2E00017B80 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; + 46EB2E00017B90 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; + 46EB2E00017BA0 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; + 46EB2E00017BB0 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; + 46EB2E00017BC0 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; + 46EB2E00017BD0 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; + 46EB2E00017BE0 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; + 46EB2E00017BF0 /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; + 46EB2E00017C00 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; + 46EB2E00017C10 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; + 46EB2E00017C20 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; + 46EB2E00017C30 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; + 46EB2E00017C40 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; + 46EB2E00017C50 /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; + 46EB2E00017C60 /* binder_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_connector.h; path = src/core/ext/transport/binder/client/binder_connector.h; sourceTree = ""; }; + 46EB2E00017C70 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; + 46EB2E00017C80 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; + 46EB2E00017C90 /* channel_create_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_create_impl.h; path = src/core/ext/transport/binder/client/channel_create_impl.h; sourceTree = ""; }; + 46EB2E00017CA0 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; + 46EB2E00017CB0 /* connection_id_generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connection_id_generator.h; path = src/core/ext/transport/binder/client/connection_id_generator.h; sourceTree = ""; }; + 46EB2E00017CC0 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; + 46EB2E00017CD0 /* endpoint_binder_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_binder_pool.h; path = src/core/ext/transport/binder/client/endpoint_binder_pool.h; sourceTree = ""; }; + 46EB2E00017CE0 /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; + 46EB2E00017CF0 /* jni_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jni_utils.h; path = src/core/ext/transport/binder/client/jni_utils.h; sourceTree = ""; }; + 46EB2E00017D00 /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; + 46EB2E00017D10 /* security_policy_setting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_policy_setting.h; path = src/core/ext/transport/binder/client/security_policy_setting.h; sourceTree = ""; }; + 46EB2E00017D20 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; + 46EB2E00017D30 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; + 46EB2E00017D40 /* binder_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_server.h; path = src/core/ext/transport/binder/server/binder_server.h; sourceTree = ""; }; + 46EB2E00017D50 /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; + 46EB2E00017D60 /* binder_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_stream.h; path = src/core/ext/transport/binder/transport/binder_stream.h; sourceTree = ""; }; + 46EB2E00017D70 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; + 46EB2E00017D80 /* binder_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_transport.h; path = src/core/ext/transport/binder/transport/binder_transport.h; sourceTree = ""; }; + 46EB2E00017D90 /* binder_auto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_auto_utils.h; path = src/core/ext/transport/binder/utils/binder_auto_utils.h; sourceTree = ""; }; + 46EB2E00017DA0 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; + 46EB2E00017DB0 /* ndk_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ndk_binder.h; path = src/core/ext/transport/binder/utils/ndk_binder.h; sourceTree = ""; }; + 46EB2E00017DC0 /* transport_stream_receiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver.h; sourceTree = ""; }; + 46EB2E00017DD0 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; + 46EB2E00017DE0 /* transport_stream_receiver_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver_impl.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.h; sourceTree = ""; }; + 46EB2E00017DF0 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; + 46EB2E00017E00 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; + 46EB2E00017E10 /* binder_android.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_android.h; path = src/core/ext/transport/binder/wire_format/binder_android.h; sourceTree = ""; }; + 46EB2E00017E20 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; + 46EB2E00017E30 /* binder_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_constants.h; path = src/core/ext/transport/binder/wire_format/binder_constants.h; sourceTree = ""; }; + 46EB2E00017E40 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; + 46EB2E00017E50 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; + 46EB2E00017E60 /* wire_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader.h; path = src/core/ext/transport/binder/wire_format/wire_reader.h; sourceTree = ""; }; + 46EB2E00017E70 /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; + 46EB2E00017E80 /* wire_reader_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader_impl.h; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.h; sourceTree = ""; }; + 46EB2E00017E90 /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; + 46EB2E00017EA0 /* wire_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_writer.h; path = src/core/ext/transport/binder/wire_format/wire_writer.h; sourceTree = ""; }; + 46EB2E00017EB0 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 46EB2E00017EC0 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; + 46EB2E00017ED0 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; + 46EB2E00017EE0 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; + 46EB2E00017EF0 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; + 46EB2E00017F00 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; + 46EB2E00017F10 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; + 46EB2E00017F20 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; + 46EB2E00017F30 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + 46EB2E00017F40 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; + 46EB2E00017F50 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; + 46EB2E00017F60 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; + 46EB2E00017F70 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; + 46EB2E00017F80 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; + 46EB2E00017F90 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; + 46EB2E00017FA0 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; + 46EB2E00017FB0 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; + 46EB2E00017FC0 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; + 46EB2E00017FD0 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; + 46EB2E00017FE0 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; + 46EB2E00017FF0 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; + 46EB2E00018000 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + 46EB2E00018010 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + 46EB2E00018020 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; + 46EB2E00018030 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + 46EB2E00018040 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; + 46EB2E00018050 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + 46EB2E00018060 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + 46EB2E00018070 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + 46EB2E00018080 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + 46EB2E00018090 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + 46EB2E000180A0 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + 46EB2E000180B0 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + 46EB2E000180C0 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + 46EB2E000180D0 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + 46EB2E000180E0 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + 46EB2E000180F0 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + 46EB2E00018100 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + 46EB2E00018110 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 46EB2E00018120 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 46EB2E00018130 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + 46EB2E00018140 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + 46EB2E00018150 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + 46EB2E00018160 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + 46EB2E00018170 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + 46EB2E00018180 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + 46EB2E00018190 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + 46EB2E000181A0 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + 46EB2E000181B0 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 46EB2E000181C0 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + 46EB2E000181D0 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + 46EB2E000181E0 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + 46EB2E000181F0 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + 46EB2E00018200 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + 46EB2E00018210 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + 46EB2E00018220 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + 46EB2E00018230 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + 46EB2E00018240 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + 46EB2E00018250 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + 46EB2E00018260 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + 46EB2E00018270 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 46EB2E00018280 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + 46EB2E00018290 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + 46EB2E000182A0 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 46EB2E000182B0 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; + 46EB2E000182C0 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + 46EB2E000182D0 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 46EB2E000182E0 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + 46EB2E000182F0 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 46EB2E00018300 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 46EB2E00018310 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + 46EB2E00018320 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 46EB2E00018330 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + 46EB2E00018340 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + 46EB2E00018350 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + 46EB2E00018360 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; + 46EB2E00018370 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + 46EB2E00018380 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + 46EB2E00018390 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; + 46EB2E000183A0 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; + 46EB2E000183B0 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + 46EB2E000183C0 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; + 46EB2E000183D0 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; + 46EB2E000183E0 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + 46EB2E000183F0 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 46EB2E00018400 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + 46EB2E00018410 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + 46EB2E00018420 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + 46EB2E00018430 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + 46EB2E00018440 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 46EB2E00018450 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 46EB2E00018460 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + 46EB2E00018470 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + 46EB2E00018480 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + 46EB2E00018490 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 46EB2E000184A0 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 46EB2E000184B0 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + 46EB2E000184C0 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 46EB2E000184D0 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + 46EB2E000184E0 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; + 46EB2E000184F0 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + 46EB2E00018500 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; + 46EB2E00018510 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; + 46EB2E00018520 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + 46EB2E00018530 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; + 46EB2E00018540 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; + 46EB2E00018550 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; + 46EB2E00018560 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + 46EB2E00018570 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; + 46EB2E00018580 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; + 46EB2E00018590 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; + 46EB2E000185A0 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + 46EB2E000185B0 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + 46EB2E000185C0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; + 46EB2E000185D0 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + 46EB2E000185E0 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + 46EB2E000185F0 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + 46EB2E00018600 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 46EB2E00018610 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + 46EB2E00018620 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + 46EB2E00018630 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + 46EB2E00018640 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; + 46EB2E00018650 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + 46EB2E00018660 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; + 46EB2E00018670 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + 46EB2E00018680 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; + 46EB2E00018690 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + 46EB2E000186A0 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + 46EB2E000186B0 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 46EB2E000186C0 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + 46EB2E000186D0 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + 46EB2E000186E0 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + 46EB2E000186F0 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + 46EB2E00018700 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + 46EB2E00018710 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + 46EB2E00018720 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018730 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018740 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018750 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018760 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018770 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018780 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018790 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187A0 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187B0 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187C0 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187D0 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187E0 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + 46EB2E000187F0 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018800 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018810 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018820 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018830 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018840 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018850 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018860 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018870 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018880 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018890 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188A0 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188B0 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188C0 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188D0 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188E0 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + 46EB2E000188F0 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018900 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018910 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018920 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018930 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018940 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018950 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018960 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018970 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018980 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018990 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189A0 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189B0 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189C0 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189D0 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189E0 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + 46EB2E000189F0 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A00 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A10 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A20 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A30 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A40 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A50 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A60 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A70 /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A80 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018A90 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AA0 /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AB0 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AC0 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AD0 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AE0 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018AF0 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B00 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B10 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B20 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B30 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B40 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B50 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B60 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B70 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B80 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018B90 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BA0 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BB0 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BC0 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BD0 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BE0 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018BF0 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C00 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C10 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C20 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C30 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C40 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C50 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C60 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C70 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C80 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018C90 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CA0 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CB0 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CC0 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CD0 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CE0 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018CF0 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D00 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D10 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D20 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D30 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D40 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D50 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D60 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D70 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E00018D80 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; + 46EB2E00018D90 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; + 46EB2E00018DA0 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; + 46EB2E00018DB0 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; + 46EB2E00018DC0 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + 46EB2E00018DD0 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + 46EB2E00018DE0 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 46EB2E00018DF0 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; + 46EB2E00018E00 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; + 46EB2E00018E10 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; + 46EB2E00018E20 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; + 46EB2E00018E30 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 46EB2E00018E40 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; + 46EB2E00018E50 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + 46EB2E00018E60 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; + 46EB2E00018E70 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + 46EB2E00018E80 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; + 46EB2E00018E90 /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; + 46EB2E00018EA0 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; + 46EB2E00018EB0 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; + 46EB2E00018EC0 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; + 46EB2E00018ED0 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; + 46EB2E00018EE0 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; + 46EB2E00018EF0 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 46EB2E00018F00 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; + 46EB2E00018F10 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; + 46EB2E00018F20 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + 46EB2E00018F30 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + 46EB2E00018F40 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + 46EB2E00018F50 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; + 46EB2E00018F60 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; + 46EB2E00018F70 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + 46EB2E00018F80 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; + 46EB2E00018F90 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + 46EB2E00018FA0 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + 46EB2E00018FB0 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + 46EB2E00018FC0 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + 46EB2E00018FD0 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + 46EB2E00018FE0 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; + 46EB2E00018FF0 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; + 46EB2E00019000 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; + 46EB2E00019010 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + 46EB2E00019020 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + 46EB2E00019030 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + 46EB2E00019040 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 46EB2E00019050 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + 46EB2E00019060 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 46EB2E00019070 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + 46EB2E00019080 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; + 46EB2E00019090 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; + 46EB2E000190A0 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; + 46EB2E000190B0 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + 46EB2E000190C0 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; + 46EB2E000190D0 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; + 46EB2E000190E0 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 46EB2E000190F0 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; + 46EB2E00019100 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; + 46EB2E00019110 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + 46EB2E00019120 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; + 46EB2E00019130 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + 46EB2E00019140 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + 46EB2E00019150 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + 46EB2E00019160 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + 46EB2E00019170 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + 46EB2E00019180 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + 46EB2E00019190 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; + 46EB2E000191A0 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 46EB2E000191B0 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; + 46EB2E000191C0 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + 46EB2E000191D0 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + 46EB2E000191E0 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; + 46EB2E000191F0 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; + 46EB2E00019200 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; + 46EB2E00019210 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; + 46EB2E00019220 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + 46EB2E00019230 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + 46EB2E00019240 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 46EB2E00019250 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + 46EB2E00019260 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + 46EB2E00019270 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + 46EB2E00019280 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; + 46EB2E00019290 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + 46EB2E000192A0 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + 46EB2E000192B0 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + 46EB2E000192C0 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 46EB2E000192D0 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + 46EB2E000192E0 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + 46EB2E000192F0 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + 46EB2E00019300 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 46EB2E00019310 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + 46EB2E00019320 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + 46EB2E00019330 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + 46EB2E00019340 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 46EB2E00019350 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 46EB2E00019360 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + 46EB2E00019370 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 46EB2E00019380 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 46EB2E00019390 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + 46EB2E000193A0 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + 46EB2E000193B0 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + 46EB2E000193C0 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 46EB2E000193D0 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + 46EB2E000193E0 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; + 46EB2E000193F0 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + 46EB2E00019400 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; + 46EB2E00019410 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; + 46EB2E00019420 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; + 46EB2E00019430 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + 46EB2E00019440 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; + 46EB2E00019450 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; + 46EB2E00019460 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; + 46EB2E00019470 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; + 46EB2E00019480 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; + 46EB2E00019490 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; + 46EB2E000194A0 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + 46EB2E000194B0 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + 46EB2E000194C0 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; + 46EB2E000194D0 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; + 46EB2E000194E0 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + 46EB2E000194F0 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; + 46EB2E00019500 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + 46EB2E00019510 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 46EB2E00019520 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + 46EB2E00019530 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; + 46EB2E00019540 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + 46EB2E00019550 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; + 46EB2E00019560 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; + 46EB2E00019570 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; + 46EB2E00019580 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + 46EB2E00019590 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + 46EB2E000195A0 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 46EB2E000195B0 /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; + 46EB2E000195C0 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + 46EB2E000195D0 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; + 46EB2E000195E0 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; + 46EB2E000195F0 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + 46EB2E00019600 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + 46EB2E00019610 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + 46EB2E00019620 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + 46EB2E00019630 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; + 46EB2E00019640 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; + 46EB2E00019650 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; + 46EB2E00019660 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; + 46EB2E00019670 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + 46EB2E00019680 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + 46EB2E00019690 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + 46EB2E000196A0 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + 46EB2E000196B0 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; + 46EB2E000196C0 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + 46EB2E000196D0 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + 46EB2E000196E0 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; + 46EB2E000196F0 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + 46EB2E00019700 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; + 46EB2E00019710 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + 46EB2E00019720 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; + 46EB2E00019730 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; + 46EB2E00019740 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + 46EB2E00019750 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + 46EB2E00019760 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; + 46EB2E00019770 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + 46EB2E00019780 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; + 46EB2E00019790 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 46EB2E000197A0 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; + 46EB2E000197B0 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + 46EB2E000197C0 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + 46EB2E000197D0 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + 46EB2E000197E0 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; + 46EB2E000197F0 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; + 46EB2E00019800 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; + 46EB2E00019810 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; + 46EB2E00019820 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + 46EB2E00019830 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + 46EB2E00019840 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + 46EB2E00019850 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; + 46EB2E00019860 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + 46EB2E00019870 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + 46EB2E00019880 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; + 46EB2E00019890 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; + 46EB2E000198A0 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; + 46EB2E000198B0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + 46EB2E000198C0 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; + 46EB2E000198D0 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; + 46EB2E000198E0 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 46EB2E000198F0 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + 46EB2E00019900 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 46EB2E00019910 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + 46EB2E00019920 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + 46EB2E00019930 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; + 46EB2E00019940 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; + 46EB2E00019950 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; + 46EB2E00019960 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; + 46EB2E00019970 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + 46EB2E00019980 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + 46EB2E00019990 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; + 46EB2E000199A0 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; + 46EB2E000199B0 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; + 46EB2E000199C0 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + 46EB2E000199D0 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; + 46EB2E000199E0 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; + 46EB2E000199F0 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; + 46EB2E00019A00 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; + 46EB2E00019A10 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + 46EB2E00019A20 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; + 46EB2E00019A30 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; + 46EB2E00019A40 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; + 46EB2E00019A50 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; + 46EB2E00019A60 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; + 46EB2E00019A70 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; + 46EB2E00019A80 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; + 46EB2E00019A90 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 46EB2E00019AA0 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; + 46EB2E00019AB0 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; + 46EB2E00019AC0 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; + 46EB2E00019AD0 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; + 46EB2E00019AE0 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; + 46EB2E00019AF0 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; + 46EB2E00019B00 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; + 46EB2E00019B10 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; + 46EB2E00019B20 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; + 46EB2E00019B30 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; + 46EB2E00019B40 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; + 46EB2E00019B50 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; + 46EB2E00019B60 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; + 46EB2E00019B70 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; + 46EB2E00019B80 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; + 46EB2E00019B90 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; + 46EB2E00019BA0 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; + 46EB2E00019BB0 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; + 46EB2E00019BC0 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; + 46EB2E00019BD0 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; + 46EB2E00019BE0 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; + 46EB2E00019BF0 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; + 46EB2E00019C00 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; + 46EB2E00019C10 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; + 46EB2E00019C20 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; + 46EB2E00019C30 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; + 46EB2E00019C40 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; + 46EB2E00019C50 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; + 46EB2E00019C60 /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; + 46EB2E00019C70 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; + 46EB2E00019C80 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; + 46EB2E00019C90 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; + 46EB2E00019CA0 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; + 46EB2E00019CB0 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; + 46EB2E00019CC0 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; + 46EB2E00019CD0 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; + 46EB2E00019CE0 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; + 46EB2E00019CF0 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; + 46EB2E00019D00 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; + 46EB2E00019D10 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; + 46EB2E00019D20 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; + 46EB2E00019D30 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + 46EB2E00019D40 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 46EB2E00019D50 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + 46EB2E00019D60 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + 46EB2E00019D70 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + 46EB2E00019D80 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; + 46EB2E00019D90 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; + 46EB2E00019DA0 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; + 46EB2E00019DB0 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; + 46EB2E00019DC0 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 46EB2E00019DD0 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + 46EB2E00019DE0 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + 46EB2E00019DF0 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; + 46EB2E00019E00 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + 46EB2E00019E10 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + 46EB2E00019E20 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; + 46EB2E00019E30 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + 46EB2E00019E40 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; + 46EB2E00019E50 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + 46EB2E00019E60 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + 46EB2E00019E70 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + 46EB2E00019E80 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 46EB2E00019E90 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 46EB2E00019EA0 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + 46EB2E00019EB0 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; + 46EB2E00019EC0 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 46EB2E00019ED0 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + 46EB2E00019EE0 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + 46EB2E00019EF0 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 46EB2E00019F00 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + 46EB2E00019F10 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; + 46EB2E00019F20 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + 46EB2E00019F30 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + 46EB2E00019F40 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + 46EB2E00019F50 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; + 46EB2E00019F60 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + 46EB2E00019F70 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 46EB2E00019F80 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; + 46EB2E00019F90 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; + 46EB2E00019FA0 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; + 46EB2E00019FB0 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; + 46EB2E00019FC0 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; + 46EB2E00019FD0 /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; + 46EB2E00019FE0 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; + 46EB2E00019FF0 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; + 46EB2E0001A000 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; + 46EB2E0001A010 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; + 46EB2E0001A020 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; + 46EB2E0001A030 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; + 46EB2E0001A040 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; + 46EB2E0001A050 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; + 46EB2E0001A060 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; + 46EB2E0001A070 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; + 46EB2E0001A080 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; + 46EB2E0001A090 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; + 46EB2E0001A0A0 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; + 46EB2E0001A0B0 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; + 46EB2E0001A0C0 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; + 46EB2E0001A0D0 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; + 46EB2E0001A0E0 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + 46EB2E0001A0F0 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 46EB2E0001A100 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; + 46EB2E0001A110 /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; + 46EB2E0001A120 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; + 46EB2E0001A130 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; + 46EB2E0001A140 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; + 46EB2E0001A150 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; + 46EB2E0001A160 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; + 46EB2E0001A170 /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; + 46EB2E0001A180 /* create_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_internal.h; path = src/cpp/client/create_channel_internal.h; sourceTree = ""; }; + 46EB2E0001A190 /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; + 46EB2E0001A1A0 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; + 46EB2E0001A1B0 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; + 46EB2E0001A1C0 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; + 46EB2E0001A1D0 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; + 46EB2E0001A1E0 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; + 46EB2E0001A1F0 /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; + 46EB2E0001A200 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; + 46EB2E0001A210 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; + 46EB2E0001A220 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; + 46EB2E0001A230 /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; + 46EB2E0001A240 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; + 46EB2E0001A250 /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; + 46EB2E0001A260 /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; + 46EB2E0001A270 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; + 46EB2E0001A280 /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; + 46EB2E0001A290 /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; + 46EB2E0001A2A0 /* secure_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_auth_context.h; path = src/cpp/common/secure_auth_context.h; sourceTree = ""; }; + 46EB2E0001A2B0 /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; + 46EB2E0001A2C0 /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; + 46EB2E0001A2D0 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; + 46EB2E0001A2E0 /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; + 46EB2E0001A2F0 /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; + 46EB2E0001A300 /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; + 46EB2E0001A310 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; + 46EB2E0001A320 /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; + 46EB2E0001A330 /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; + 46EB2E0001A340 /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; + 46EB2E0001A350 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; + 46EB2E0001A360 /* dynamic_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_thread_pool.h; path = src/cpp/server/dynamic_thread_pool.h; sourceTree = ""; }; + 46EB2E0001A370 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; + 46EB2E0001A380 /* external_connection_acceptor_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_connection_acceptor_impl.h; path = src/cpp/server/external_connection_acceptor_impl.h; sourceTree = ""; }; + 46EB2E0001A390 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; + 46EB2E0001A3A0 /* default_health_check_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_health_check_service.h; path = src/cpp/server/health/default_health_check_service.h; sourceTree = ""; }; + 46EB2E0001A3B0 /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; + 46EB2E0001A3C0 /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; + 46EB2E0001A3D0 /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; + 46EB2E0001A3E0 /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; + 46EB2E0001A3F0 /* secure_server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_server_credentials.h; path = src/cpp/server/secure_server_credentials.h; sourceTree = ""; }; + 46EB2E0001A400 /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; + 46EB2E0001A410 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; + 46EB2E0001A420 /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; + 46EB2E0001A430 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; + 46EB2E0001A440 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; + 46EB2E0001A450 /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; + 46EB2E0001A460 /* thread_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool_interface.h; path = src/cpp/server/thread_pool_interface.h; sourceTree = ""; }; + 46EB2E0001A470 /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; + 46EB2E0001A480 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; + 46EB2E0001A490 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; + 46EB2E0001A4A0 /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; + 46EB2E0001A4B0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; + 46EB2E0001A4C0 /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; + 46EB2E0001A4D0 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; + 46EB2E0001A4E0 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; + 46EB2E0001A4F0 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; + 46EB2E0001A500 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; + 46EB2E0001A510 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; + 46EB2E0001A520 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; + 46EB2E0001A530 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; + 46EB2E0001A540 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; + 46EB2E0001A550 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; + 46EB2E0001A560 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 46EB2E0001A570 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + 46EB2E0001A580 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; + 46EB2E0001A590 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; + 46EB2E0001A5A0 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; + 46EB2E0001A5B0 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; + 46EB2E0001A5C0 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; + 46EB2E0001A5D0 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; + 46EB2E0001A5E0 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; + 46EB2E0001A5F0 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + 46EB2E0001A610 /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; + 46EB2E0001A620 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; + 46EB2E0001A630 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; + 46EB2E0001A640 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; + 46EB2E0001A650 /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; + 46EB2E0001A660 /* create_channel_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_binder.h; path = include/grpcpp/create_channel_binder.h; sourceTree = ""; }; + 46EB2E0001A670 /* create_channel_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_posix.h; path = include/grpcpp/create_channel_posix.h; sourceTree = ""; }; + 46EB2E0001A680 /* health_check_service_server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_server_builder_option.h; path = include/grpcpp/ext/health_check_service_server_builder_option.h; sourceTree = ""; }; + 46EB2E0001A690 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/generic/async_generic_service.h; sourceTree = ""; }; + 46EB2E0001A6A0 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; + 46EB2E0001A6B0 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; + 46EB2E0001A6C0 /* health_check_service_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_interface.h; path = include/grpcpp/health_check_service_interface.h; sourceTree = ""; }; + 46EB2E0001A6D0 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; + 46EB2E0001A6E0 /* channel_argument_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_argument_option.h; path = include/grpcpp/impl/channel_argument_option.h; sourceTree = ""; }; + 46EB2E0001A6F0 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/client_unary_call.h; sourceTree = ""; }; + 46EB2E0001A700 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/impl/codegen/async_generic_service.h; sourceTree = ""; }; + 46EB2E0001A710 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; + 46EB2E0001A720 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/impl/codegen/async_unary_call.h; sourceTree = ""; }; + 46EB2E0001A730 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; + 46EB2E0001A740 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; + 46EB2E0001A750 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; + 46EB2E0001A760 /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/codegen/call_op_set.h; sourceTree = ""; }; + 46EB2E0001A770 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/codegen/call_op_set_interface.h; sourceTree = ""; }; + 46EB2E0001A780 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; + 46EB2E0001A790 /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; + 46EB2E0001A7A0 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; + 46EB2E0001A7B0 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; + 46EB2E0001A7C0 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; + 46EB2E0001A7D0 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/codegen/client_unary_call.h; sourceTree = ""; }; + 46EB2E0001A7E0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; + 46EB2E0001A7F0 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/codegen/completion_queue_tag.h; sourceTree = ""; }; + 46EB2E0001A800 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; + 46EB2E0001A810 /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; + 46EB2E0001A820 /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; + 46EB2E0001A830 /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/codegen/create_auth_context.h; sourceTree = ""; }; + 46EB2E0001A840 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; + 46EB2E0001A850 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; + 46EB2E0001A860 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; + 46EB2E0001A870 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; + 46EB2E0001A880 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; + 46EB2E0001A890 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; + 46EB2E0001A8A0 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; + 46EB2E0001A8B0 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; + 46EB2E0001A8C0 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/codegen/method_handler_impl.h; sourceTree = ""; }; + 46EB2E0001A8D0 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; + 46EB2E0001A8E0 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/codegen/rpc_service_method.h; sourceTree = ""; }; + 46EB2E0001A8F0 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/impl/codegen/security/auth_context.h; sourceTree = ""; }; + 46EB2E0001A900 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; + 46EB2E0001A910 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; + 46EB2E0001A920 /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/codegen/server_callback_handlers.h; sourceTree = ""; }; + 46EB2E0001A930 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; + 46EB2E0001A940 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; + 46EB2E0001A950 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; + 46EB2E0001A960 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; + 46EB2E0001A970 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; + 46EB2E0001A980 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; + 46EB2E0001A990 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/impl/codegen/status_code_enum.h; sourceTree = ""; }; + 46EB2E0001A9A0 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; + 46EB2E0001A9B0 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; + 46EB2E0001A9C0 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; + 46EB2E0001A9D0 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; + 46EB2E0001A9E0 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; + 46EB2E0001A9F0 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; + 46EB2E0001AA00 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/method_handler_impl.h; sourceTree = ""; }; + 46EB2E0001AA10 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; + 46EB2E0001AA20 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/rpc_service_method.h; sourceTree = ""; }; + 46EB2E0001AA30 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; + 46EB2E0001AA40 /* server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_option.h; path = include/grpcpp/impl/server_builder_option.h; sourceTree = ""; }; + 46EB2E0001AA50 /* server_builder_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_plugin.h; path = include/grpcpp/impl/server_builder_plugin.h; sourceTree = ""; }; + 46EB2E0001AA60 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; + 46EB2E0001AA70 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; + 46EB2E0001AA80 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; + 46EB2E0001AA90 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; + 46EB2E0001AAA0 /* auth_metadata_processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_metadata_processor.h; path = include/grpcpp/security/auth_metadata_processor.h; sourceTree = ""; }; + 46EB2E0001AAB0 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = include/grpcpp/security/authorization_policy_provider.h; sourceTree = ""; }; + 46EB2E0001AAC0 /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; + 46EB2E0001AAD0 /* binder_security_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_security_policy.h; path = include/grpcpp/security/binder_security_policy.h; sourceTree = ""; }; + 46EB2E0001AAE0 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; + 46EB2E0001AAF0 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; + 46EB2E0001AB00 /* tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_provider.h; path = include/grpcpp/security/tls_certificate_provider.h; sourceTree = ""; }; + 46EB2E0001AB10 /* tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_verifier.h; path = include/grpcpp/security/tls_certificate_verifier.h; sourceTree = ""; }; + 46EB2E0001AB20 /* tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials_options.h; path = include/grpcpp/security/tls_credentials_options.h; sourceTree = ""; }; + 46EB2E0001AB30 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; + 46EB2E0001AB40 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; + 46EB2E0001AB50 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; + 46EB2E0001AB60 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; + 46EB2E0001AB70 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; + 46EB2E0001AB80 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/support/async_unary_call.h; sourceTree = ""; }; + 46EB2E0001AB90 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; + 46EB2E0001ABA0 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; + 46EB2E0001ABB0 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; + 46EB2E0001ABC0 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; + 46EB2E0001ABD0 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; + 46EB2E0001ABE0 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; + 46EB2E0001ABF0 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; + 46EB2E0001AC00 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; + 46EB2E0001AC10 /* proto_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_reader.h; path = include/grpcpp/support/proto_buffer_reader.h; sourceTree = ""; }; + 46EB2E0001AC20 /* proto_buffer_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_writer.h; path = include/grpcpp/support/proto_buffer_writer.h; sourceTree = ""; }; + 46EB2E0001AC30 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; + 46EB2E0001AC40 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; + 46EB2E0001AC50 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; + 46EB2E0001AC60 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; + 46EB2E0001AC70 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/support/status_code_enum.h; sourceTree = ""; }; + 46EB2E0001AC80 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; + 46EB2E0001AC90 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; + 46EB2E0001ACA0 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; + 46EB2E0001ACB0 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; + 46EB2E0001ACC0 /* validate_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_service_config.h; path = include/grpcpp/support/validate_service_config.h; sourceTree = ""; }; + 46EB2E0001ACD0 /* xds_server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_server_builder.h; path = include/grpcpp/xds_server_builder.h; sourceTree = ""; }; + 46EB2E0001ACF0 /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; + 46EB2E0001AD00 /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; + 46EB2E0001AD10 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; + 46EB2E0001AD20 /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; + 46EB2E0001AD30 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; + 46EB2E0001AD40 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; + 46EB2E0001AD50 /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; + 46EB2E0001AD60 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; + 46EB2E0001AD70 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; + 46EB2E0001AD80 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; + 46EB2E0001AD90 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; + 46EB2E0001ADA0 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; + 46EB2E0001ADB0 /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; + 46EB2E0001ADC0 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; + 46EB2E0001ADD0 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; + 46EB2E0001ADE0 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; + 46EB2E0001ADF0 /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; + 46EB2E0001AE00 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; + 46EB2E0001AE10 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; + 46EB2E0001AE20 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + 46EB2E0001AE30 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; + 46EB2E0001AE40 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; + 46EB2E0001AE50 /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; + 46EB2E0001AE60 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; + 46EB2E0001AE70 /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; + 46EB2E0001AE80 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; + 46EB2E0001AE90 /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; + 46EB2E0001AEA0 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; + 46EB2E0001AEB0 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; + 46EB2E0001AEC0 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; + 46EB2E0001AED0 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; + 46EB2E0001AEE0 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; + 46EB2E0001AEF0 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; + 46EB2E0001AF00 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 46EB2E0001AF10 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; + 46EB2E0001AF20 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; + 46EB2E0001AF30 /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; + 46EB2E0001AF40 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; + 46EB2E0001AF50 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; + 46EB2E0001AF60 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; + 46EB2E0001AF70 /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; + 46EB2E0001AF80 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + 46EB2E0001AF90 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; + 46EB2E0001AFA0 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; + 46EB2E0001AFB0 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; + 46EB2E0001AFC0 /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; + 46EB2E0001AFD0 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; + 46EB2E0001AFE0 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; + 46EB2E0001AFF0 /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; + 46EB2E0001B000 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; + 46EB2E0001B010 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; + 46EB2E0001B020 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; + 46EB2E0001B030 /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; + 46EB2E0001B040 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; + 46EB2E0001B050 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; + 46EB2E0001B060 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; + 46EB2E0001B070 /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; + 46EB2E0001B080 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; + 46EB2E0001B090 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; + 46EB2E0001B0A0 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; + 46EB2E0001B0B0 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; + 46EB2E0001B0C0 /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; + 46EB2E0001B0D0 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + 46EB2E0001B0E0 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; + 46EB2E0001B0F0 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; + 46EB2E0001B100 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; + 46EB2E0001B110 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; + 46EB2E0001B120 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; + 46EB2E0001B130 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + 46EB2E0001B140 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; + 46EB2E0001B150 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; + 46EB2E0001B160 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; + 46EB2E0001B170 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; + 46EB2E0001B180 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + 46EB2E0001B190 /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; + 46EB2E0001B1A0 /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; + 46EB2E0001B1B0 /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; + 46EB2E0001B1C0 /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; + 46EB2E0001B1D0 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; + 46EB2E0001B1E0 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; + 46EB2E0001B1F0 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; + 46EB2E0001B200 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; + 46EB2E0001B210 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; + 46EB2E0001B220 /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; + 46EB2E0001B230 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; + 46EB2E0001B240 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; + 46EB2E0001B250 /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; + 46EB2E0001B260 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; + 46EB2E0001B270 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; + 46EB2E0001B280 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; + 46EB2E0001B290 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; + 46EB2E0001B2A0 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; + 46EB2E0001B2B0 /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; + 46EB2E0001B2C0 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; + 46EB2E0001B2D0 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; + 46EB2E0001B2E0 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; + 46EB2E0001B2F0 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; + 46EB2E0001B300 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; + 46EB2E0001B310 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; + 46EB2E0001B320 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 46EB2E0001B330 /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; + 46EB2E0001B340 /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; + 46EB2E0001B350 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; + 46EB2E0001B360 /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; + 46EB2E0001B370 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; + 46EB2E0001B380 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; + 46EB2E0001B390 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; + 46EB2E0001B3A0 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; + 46EB2E0001B3B0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; + 46EB2E0001B3C0 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; + 46EB2E0001B3D0 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; + 46EB2E0001B3E0 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; + 46EB2E0001B3F0 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; + 46EB2E0001B400 /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; + 46EB2E0001B410 /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; + 46EB2E0001B420 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; + 46EB2E0001B430 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; + 46EB2E0001B440 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; + 46EB2E0001B450 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; + 46EB2E0001B460 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; + 46EB2E0001B470 /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; + 46EB2E0001B480 /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; + 46EB2E0001B490 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; + 46EB2E0001B4A0 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; + 46EB2E0001B4B0 /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; + 46EB2E0001B4C0 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; + 46EB2E0001B4D0 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; + 46EB2E0001B4E0 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; + 46EB2E0001B4F0 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; + 46EB2E0001B500 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; + 46EB2E0001B510 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; + 46EB2E0001B520 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; + 46EB2E0001B530 /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; + 46EB2E0001B540 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 46EB2E0001B550 /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; + 46EB2E0001B560 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; + 46EB2E0001B570 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; + 46EB2E0001B580 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; + 46EB2E0001B590 /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; + 46EB2E0001B5A0 /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; + 46EB2E0001B5B0 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; + 46EB2E0001B5C0 /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; + 46EB2E0001B5D0 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; + 46EB2E0001B5E0 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; + 46EB2E0001B5F0 /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; + 46EB2E0001B600 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; + 46EB2E0001B610 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; + 46EB2E0001B620 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; + 46EB2E0001B630 /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; + 46EB2E0001B640 /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; + 46EB2E0001B650 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; + 46EB2E0001B660 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; + 46EB2E0001B670 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; + 46EB2E0001B680 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; + 46EB2E0001B690 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; + 46EB2E0001B6A0 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + 46EB2E0001B6B0 /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; + 46EB2E0001B6C0 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; + 46EB2E0001B6D0 /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; + 46EB2E0001B6E0 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; + 46EB2E0001B6F0 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; + 46EB2E0001B700 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; + 46EB2E0001B710 /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; + 46EB2E0001B720 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; + 46EB2E0001B730 /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; + 46EB2E0001B740 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; + 46EB2E0001B750 /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; + 46EB2E0001B760 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; + 46EB2E0001B770 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; + 46EB2E0001B780 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; + 46EB2E0001B790 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; + 46EB2E0001B7A0 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; + 46EB2E0001B7B0 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; + 46EB2E0001B7C0 /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; + 46EB2E0001B7D0 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; + 46EB2E0001B7E0 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; + 46EB2E0001B7F0 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; + 46EB2E0001B800 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; + 46EB2E0001B810 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; + 46EB2E0001B820 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; + 46EB2E0001B830 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + 46EB2E0001B840 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + 46EB2E0001B850 /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; + 46EB2E0001B860 /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; + 46EB2E0001B870 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; + 46EB2E0001B880 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; + 46EB2E0001B890 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; + 46EB2E0001B8A0 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + 46EB2E0001B8B0 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; + 46EB2E0001B8C0 /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; + 46EB2E0001B8D0 /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; + 46EB2E0001B8E0 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; + 46EB2E0001B8F0 /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; + 46EB2E0001B900 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + 46EB2E0001B910 /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; + 46EB2E0001B920 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + 46EB2E0001B930 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; + 46EB2E0001B940 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + 46EB2E0001B950 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; + 46EB2E0001B960 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + 46EB2E0001B970 /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; + 46EB2E0001B980 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + 46EB2E0001B990 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; + 46EB2E0001B9A0 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + 46EB2E0001B9B0 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; + 46EB2E0001B9C0 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + 46EB2E0001B9D0 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; + 46EB2E0001B9E0 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + 46EB2E0001B9F0 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; + 46EB2E0001BA00 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + 46EB2E0001BA10 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; + 46EB2E0001BA20 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + 46EB2E0001BA30 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; + 46EB2E0001BA40 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + 46EB2E0001BA50 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; + 46EB2E0001BA60 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + 46EB2E0001BA70 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; + 46EB2E0001BA80 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 46EB2E0001BA90 /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; + 46EB2E0001BAA0 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 46EB2E0001BAB0 /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; + 46EB2E0001BAC0 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + 46EB2E0001BAD0 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; + 46EB2E0001BAE0 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + 46EB2E0001BAF0 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; + 46EB2E0001BB00 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + 46EB2E0001BB10 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; + 46EB2E0001BB20 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + 46EB2E0001BB30 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; + 46EB2E0001BB40 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + 46EB2E0001BB50 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; + 46EB2E0001BB60 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + 46EB2E0001BB70 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; + 46EB2E0001BB80 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + 46EB2E0001BB90 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; + 46EB2E0001BBA0 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + 46EB2E0001BBB0 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; + 46EB2E0001BBC0 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 46EB2E0001BBD0 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; + 46EB2E0001BBE0 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + 46EB2E0001BBF0 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; + 46EB2E0001BC00 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + 46EB2E0001BC10 /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; + 46EB2E0001BC20 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + 46EB2E0001BC30 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; + 46EB2E0001BC40 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + 46EB2E0001BC50 /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; + 46EB2E0001BC60 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + 46EB2E0001BC70 /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; + 46EB2E0001BC80 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + 46EB2E0001BC90 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; + 46EB2E0001BCA0 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + 46EB2E0001BCB0 /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; + 46EB2E0001BCC0 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + 46EB2E0001BCD0 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; + 46EB2E0001BCE0 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + 46EB2E0001BCF0 /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; + 46EB2E0001BD00 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + 46EB2E0001BD10 /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; + 46EB2E0001BD20 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + 46EB2E0001BD30 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + 46EB2E0001BD40 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 46EB2E0001BD50 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; + 46EB2E0001BD60 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + 46EB2E0001BD70 /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; + 46EB2E0001BD80 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + 46EB2E0001BD90 /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; + 46EB2E0001BDA0 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 46EB2E0001BDB0 /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; + 46EB2E0001BDC0 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; + 46EB2E0001BDD0 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; + 46EB2E0001BDE0 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + 46EB2E0001BDF0 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; + 46EB2E0001BE00 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 46EB2E0001BE10 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; + 46EB2E0001BE20 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + 46EB2E0001BE30 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + 46EB2E0001BE40 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 46EB2E0001BE50 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; + 46EB2E0001BE60 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 46EB2E0001BE70 /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; + 46EB2E0001BE80 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + 46EB2E0001BE90 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; + 46EB2E0001BEA0 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 46EB2E0001BEB0 /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; + 46EB2E0001BEC0 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + 46EB2E0001BED0 /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; + 46EB2E0001BEE0 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + 46EB2E0001BEF0 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; + 46EB2E0001BF00 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + 46EB2E0001BF10 /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; + 46EB2E0001BF20 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; + 46EB2E0001BF30 /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; + 46EB2E0001BF40 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + 46EB2E0001BF50 /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; + 46EB2E0001BF60 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + 46EB2E0001BF70 /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; + 46EB2E0001BF80 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; + 46EB2E0001BF90 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; + 46EB2E0001BFA0 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; + 46EB2E0001BFB0 /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; + 46EB2E0001BFC0 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + 46EB2E0001BFD0 /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; + 46EB2E0001BFE0 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; + 46EB2E0001BFF0 /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; + 46EB2E0001C000 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; + 46EB2E0001C010 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; + 46EB2E0001C020 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + 46EB2E0001C030 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; + 46EB2E0001C040 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 46EB2E0001C050 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; + 46EB2E0001C060 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + 46EB2E0001C070 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; + 46EB2E0001C080 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + 46EB2E0001C090 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; + 46EB2E0001C0A0 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + 46EB2E0001C0B0 /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; + 46EB2E0001C0C0 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + 46EB2E0001C0D0 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; + 46EB2E0001C0E0 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 46EB2E0001C0F0 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; + 46EB2E0001C100 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 46EB2E0001C110 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; + 46EB2E0001C120 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + 46EB2E0001C130 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; + 46EB2E0001C140 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + 46EB2E0001C150 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; + 46EB2E0001C160 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + 46EB2E0001C170 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; + 46EB2E0001C180 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 46EB2E0001C190 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; + 46EB2E0001C1A0 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 46EB2E0001C1B0 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; + 46EB2E0001C1C0 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + 46EB2E0001C1D0 /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; + 46EB2E0001C1E0 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 46EB2E0001C1F0 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; + 46EB2E0001C200 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + 46EB2E0001C210 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; + 46EB2E0001C220 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; + 46EB2E0001C230 /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; + 46EB2E0001C240 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + 46EB2E0001C250 /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; + 46EB2E0001C260 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; + 46EB2E0001C270 /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; + 46EB2E0001C280 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; + 46EB2E0001C290 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; + 46EB2E0001C2A0 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + 46EB2E0001C2B0 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; + 46EB2E0001C2C0 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; + 46EB2E0001C2D0 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; + 46EB2E0001C2E0 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; + 46EB2E0001C2F0 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; + 46EB2E0001C300 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; + 46EB2E0001C310 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; + 46EB2E0001C320 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + 46EB2E0001C330 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; + 46EB2E0001C340 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; + 46EB2E0001C350 /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; + 46EB2E0001C360 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; + 46EB2E0001C370 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; + 46EB2E0001C380 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; + 46EB2E0001C390 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; + 46EB2E0001C3A0 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + 46EB2E0001C3B0 /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; + 46EB2E0001C3C0 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + 46EB2E0001C3D0 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; + 46EB2E0001C3E0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; + 46EB2E0001C3F0 /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; + 46EB2E0001C400 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + 46EB2E0001C410 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; + 46EB2E0001C420 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + 46EB2E0001C430 /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; + 46EB2E0001C440 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + 46EB2E0001C450 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; + 46EB2E0001C460 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 46EB2E0001C470 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; + 46EB2E0001C480 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + 46EB2E0001C490 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; + 46EB2E0001C4A0 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + 46EB2E0001C4B0 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; + 46EB2E0001C4C0 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + 46EB2E0001C4D0 /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; + 46EB2E0001C4E0 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; + 46EB2E0001C4F0 /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; + 46EB2E0001C500 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + 46EB2E0001C510 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; + 46EB2E0001C520 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; + 46EB2E0001C530 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; + 46EB2E0001C540 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + 46EB2E0001C550 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; + 46EB2E0001C560 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; + 46EB2E0001C570 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; + 46EB2E0001C580 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + 46EB2E0001C590 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; + 46EB2E0001C5A0 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + 46EB2E0001C5B0 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; + 46EB2E0001C5C0 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 46EB2E0001C5D0 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; + 46EB2E0001C5E0 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + 46EB2E0001C5F0 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; + 46EB2E0001C600 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + 46EB2E0001C610 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; + 46EB2E0001C620 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + 46EB2E0001C630 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; + 46EB2E0001C640 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + 46EB2E0001C650 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; + 46EB2E0001C660 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + 46EB2E0001C670 /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; + 46EB2E0001C680 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + 46EB2E0001C690 /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C6A0 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C6B0 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C6C0 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C6D0 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C6E0 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C6F0 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C700 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C710 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C720 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C730 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C740 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C750 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C760 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C770 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C780 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C790 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C7A0 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C7B0 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C7C0 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C7D0 /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C7E0 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C7F0 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C800 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C810 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C820 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C830 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C840 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C850 /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C860 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C870 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C880 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C890 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C8A0 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C8B0 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C8C0 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C8D0 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C8E0 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C8F0 /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C900 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C910 /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C920 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C930 /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C940 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C950 /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C960 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C970 /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C980 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C990 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C9A0 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C9B0 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C9C0 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C9D0 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001C9E0 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001C9F0 /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CA00 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CA10 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CA20 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CA30 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CA40 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CA50 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CA60 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CA70 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CA80 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CA90 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CAA0 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CAB0 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CAC0 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CAD0 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CAE0 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CAF0 /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CB00 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CB10 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CB20 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CB30 /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CB40 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CB50 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CB60 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CB70 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CB80 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CB90 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CBA0 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CBB0 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CBC0 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CBD0 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CBE0 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CBF0 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CC00 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CC10 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CC20 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CC30 /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CC40 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CC50 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CC60 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CC70 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CC80 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CC90 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CCA0 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CCB0 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CCC0 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CCD0 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CCE0 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CCF0 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CD00 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CD10 /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CD20 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CD30 /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CD40 /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CD50 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CD60 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CD70 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CD80 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CD90 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CDA0 /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CDB0 /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CDC0 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CDD0 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CDE0 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CDF0 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CE00 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CE10 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CE20 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CE30 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CE40 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CE50 /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CE60 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CE70 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CE80 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CE90 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CEA0 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CEB0 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CEC0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CED0 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CEE0 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CEF0 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CF00 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CF10 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CF20 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CF30 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CF40 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CF50 /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CF60 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CF70 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CF80 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CF90 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CFA0 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CFB0 /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CFC0 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CFD0 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001CFE0 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001CFF0 /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D000 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D010 /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D020 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D030 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D040 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D050 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D060 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D070 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D080 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D090 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D0A0 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D0B0 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D0C0 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D0D0 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D0E0 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D0F0 /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D100 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D110 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D120 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D130 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D140 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D150 /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D160 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D170 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D180 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D190 /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D1A0 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D1B0 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D1C0 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D1D0 /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D1E0 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D1F0 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D200 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D210 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D220 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D230 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D240 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D250 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D260 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D270 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D280 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D290 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D2A0 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D2B0 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D2C0 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D2D0 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D2E0 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D2F0 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D300 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D310 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D320 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D330 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; + 46EB2E0001D340 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 46EB2E0001D350 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; + 46EB2E0001D360 /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; + 46EB2E0001D370 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; + 46EB2E0001D380 /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; + 46EB2E0001D390 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; + 46EB2E0001D3A0 /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; + 46EB2E0001D3B0 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; + 46EB2E0001D3C0 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + 46EB2E0001D3D0 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; + 46EB2E0001D3E0 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + 46EB2E0001D3F0 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; + 46EB2E0001D400 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 46EB2E0001D410 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; + 46EB2E0001D420 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; + 46EB2E0001D430 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; + 46EB2E0001D440 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; + 46EB2E0001D450 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; + 46EB2E0001D460 /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; + 46EB2E0001D470 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; + 46EB2E0001D480 /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; + 46EB2E0001D490 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 46EB2E0001D4A0 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; + 46EB2E0001D4B0 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; + 46EB2E0001D4C0 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; + 46EB2E0001D4D0 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + 46EB2E0001D4E0 /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; + 46EB2E0001D4F0 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; + 46EB2E0001D500 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; + 46EB2E0001D510 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + 46EB2E0001D520 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; + 46EB2E0001D530 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; + 46EB2E0001D540 /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; + 46EB2E0001D550 /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; + 46EB2E0001D560 /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; + 46EB2E0001D570 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; + 46EB2E0001D580 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; + 46EB2E0001D590 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; + 46EB2E0001D5A0 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; + 46EB2E0001D5B0 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; + 46EB2E0001D5C0 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; + 46EB2E0001D5D0 /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; + 46EB2E0001D5E0 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; + 46EB2E0001D5F0 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; + 46EB2E0001D600 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 46EB2E0001D610 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; + 46EB2E0001D620 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; + 46EB2E0001D630 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; + 46EB2E0001D640 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; + 46EB2E0001D650 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; + 46EB2E0001D660 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + 46EB2E0001D670 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; + 46EB2E0001D680 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + 46EB2E0001D690 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + 46EB2E0001D6A0 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; + 46EB2E0001D6B0 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; + 46EB2E0001D6C0 /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; + 46EB2E0001D6D0 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; + 46EB2E0001D6E0 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; + 46EB2E0001D6F0 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + 46EB2E0001D700 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; + 46EB2E0001D710 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; + 46EB2E0001D720 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; + 46EB2E0001D730 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + 46EB2E0001D740 /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; + 46EB2E0001D750 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + 46EB2E0001D760 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; + 46EB2E0001D770 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + 46EB2E0001D780 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; + 46EB2E0001D790 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + 46EB2E0001D7A0 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + 46EB2E0001D7B0 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; + 46EB2E0001D7C0 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; + 46EB2E0001D7D0 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; + 46EB2E0001D7E0 /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; + 46EB2E0001D7F0 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; + 46EB2E0001D800 /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; + 46EB2E0001D810 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + 46EB2E0001D820 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; + 46EB2E0001D830 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; + 46EB2E0001D840 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + 46EB2E0001D850 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; + 46EB2E0001D860 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + 46EB2E0001D870 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; + 46EB2E0001D880 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 46EB2E0001D890 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; + 46EB2E0001D8A0 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + 46EB2E0001D8B0 /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; + 46EB2E0001D8C0 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 46EB2E0001D8D0 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; + 46EB2E0001D8E0 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + 46EB2E0001D8F0 /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; + 46EB2E0001D900 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; + 46EB2E0001D910 /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; + 46EB2E0001D920 /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; + 46EB2E0001D930 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; + 46EB2E0001D940 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; + 46EB2E0001D950 /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; + 46EB2E0001D960 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; + 46EB2E0001D970 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; + 46EB2E0001D980 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + 46EB2E0001D990 /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; + 46EB2E0001D9A0 /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; + 46EB2E0001D9B0 /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; + 46EB2E0001D9C0 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; + 46EB2E0001D9D0 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; + 46EB2E0001D9E0 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; + 46EB2E0001D9F0 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; + 46EB2E0001DA00 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; + 46EB2E0001DA10 /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; + 46EB2E0001DA20 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; + 46EB2E0001DA30 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; + 46EB2E0001DA40 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; + 46EB2E0001DA50 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; + 46EB2E0001DA60 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; + 46EB2E0001DA70 /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; + 46EB2E0001DA80 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; + 46EB2E0001DA90 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 46EB2E0001DAA0 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; + 46EB2E0001DAB0 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; + 46EB2E0001DAC0 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; + 46EB2E0001DAD0 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; + 46EB2E0001DAE0 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; + 46EB2E0001DAF0 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; + 46EB2E0001DB00 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; + 46EB2E0001DB10 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; + 46EB2E0001DB20 /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; + 46EB2E0001DB30 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; + 46EB2E0001DB40 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; + 46EB2E0001DB50 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; + 46EB2E0001DB60 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; + 46EB2E0001DB70 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + 46EB2E0001DB80 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; + 46EB2E0001DB90 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; + 46EB2E0001DBA0 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + 46EB2E0001DBB0 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; + 46EB2E0001DBC0 /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; + 46EB2E0001DBD0 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; + 46EB2E0001DBE0 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + 46EB2E0001DBF0 /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; + 46EB2E0001DC00 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + 46EB2E0001DC10 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + 46EB2E0001DC20 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + 46EB2E0001DC30 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + 46EB2E0001DC40 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; + 46EB2E0001DC50 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 46EB2E0001DC60 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; + 46EB2E0001DC70 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; + 46EB2E0001DC80 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + 46EB2E0001DC90 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; + 46EB2E0001DCA0 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + 46EB2E0001DCB0 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; + 46EB2E0001DCC0 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; + 46EB2E0001DCD0 /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; + 46EB2E0001DCE0 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; + 46EB2E0001DCF0 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; + 46EB2E0001DD00 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; + 46EB2E0001DD10 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + 46EB2E0001DD20 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + 46EB2E0001DD30 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 46EB2E0001DD40 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; + 46EB2E0001DD50 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + 46EB2E0001DD60 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + 46EB2E0001DD70 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + 46EB2E0001DD80 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; + 46EB2E0001DD90 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + 46EB2E0001DDA0 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; + 46EB2E0001DDB0 /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; + 46EB2E0001DDC0 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; + 46EB2E0001DDD0 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + 46EB2E0001DDE0 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + 46EB2E0001DDF0 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 46EB2E0001DE00 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + 46EB2E0001DE10 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; + 46EB2E0001DE20 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; + 46EB2E0001DE30 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; + 46EB2E0001DE40 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + 46EB2E0001DE50 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; + 46EB2E0001DE60 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + 46EB2E0001DE70 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; + 46EB2E0001DE80 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 46EB2E0001DE90 /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; + 46EB2E0001DEA0 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; + 46EB2E0001DEB0 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + 46EB2E0001DEC0 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + 46EB2E0001DED0 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; + 46EB2E0001DEE0 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + 46EB2E0001DEF0 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; + 46EB2E0001DF00 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 46EB2E0001DF10 /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; + 46EB2E0001DF20 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 46EB2E0001DF30 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + 46EB2E0001DF40 /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; + 46EB2E0001DF50 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 46EB2E0001DF60 /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; + 46EB2E0001DF70 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 46EB2E0001DF80 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; + 46EB2E0001DF90 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + 46EB2E0001DFA0 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; + 46EB2E0001DFB0 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + 46EB2E0001DFC0 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + 46EB2E0001DFD0 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; + 46EB2E0001DFE0 /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; + 46EB2E0001DFF0 /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; + 46EB2E0001E000 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; + 46EB2E0001E010 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 46EB2E0001E020 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; + 46EB2E0001E030 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + 46EB2E0001E040 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; + 46EB2E0001E050 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; + 46EB2E0001E060 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + 46EB2E0001E070 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; + 46EB2E0001E080 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; + 46EB2E0001E090 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; + 46EB2E0001E0A0 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; + 46EB2E0001E0B0 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; + 46EB2E0001E0C0 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; + 46EB2E0001E0D0 /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; + 46EB2E0001E0E0 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + 46EB2E0001E0F0 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; + 46EB2E0001E100 /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; + 46EB2E0001E110 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; + 46EB2E0001E120 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; + 46EB2E0001E130 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; + 46EB2E0001E140 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; + 46EB2E0001E150 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; + 46EB2E0001E160 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; + 46EB2E0001E170 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; + 46EB2E0001E180 /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; + 46EB2E0001E190 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; + 46EB2E0001E1A0 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; + 46EB2E0001E1B0 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; + 46EB2E0001E1C0 /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; + 46EB2E0001E1D0 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; + 46EB2E0001E1E0 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; + 46EB2E0001E1F0 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + 46EB2E0001E200 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; + 46EB2E0001E210 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + 46EB2E0001E220 /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; + 46EB2E0001E230 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; + 46EB2E0001E240 /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; + 46EB2E0001E250 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; + 46EB2E0001E260 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; + 46EB2E0001E270 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; + 46EB2E0001E280 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + 46EB2E0001E290 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; + 46EB2E0001E2A0 /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; + 46EB2E0001E2B0 /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; + 46EB2E0001E2C0 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; + 46EB2E0001E2D0 /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; + 46EB2E0001E2E0 /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; + 46EB2E0001E2F0 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; + 46EB2E0001E300 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + 46EB2E0001E310 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; + 46EB2E0001E320 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 46EB2E0001E330 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; + 46EB2E0001E340 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + 46EB2E0001E350 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; + 46EB2E0001E360 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; + 46EB2E0001E370 /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; + 46EB2E0001E380 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + 46EB2E0001E390 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; + 46EB2E0001E3A0 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; + 46EB2E0001E3B0 /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; + 46EB2E0001E3C0 /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; + 46EB2E0001E3D0 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; + 46EB2E0001E3E0 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; + 46EB2E0001E3F0 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; + 46EB2E0001E400 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; + 46EB2E0001E410 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; + 46EB2E0001E420 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + 46EB2E0001E430 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; + 46EB2E0001E440 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + 46EB2E0001E450 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; + 46EB2E0001E460 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 46EB2E0001E470 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; + 46EB2E0001E480 /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; + 46EB2E0001E490 /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; + 46EB2E0001E4A0 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + 46EB2E0001E4B0 /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; + 46EB2E0001E4C0 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; + 46EB2E0001E4D0 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; + 46EB2E0001E4E0 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; + 46EB2E0001E4F0 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; + 46EB2E0001E500 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + 46EB2E0001E510 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + 46EB2E0001E520 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + 46EB2E0001E530 /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; + 46EB2E0001E540 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + 46EB2E0001E550 /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; + 46EB2E0001E560 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; + 46EB2E0001E570 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; + 46EB2E0001E580 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; + 46EB2E0001E590 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; + 46EB2E0001E5A0 /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; + 46EB2E0001E5B0 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; + 46EB2E0001E5C0 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + 46EB2E0001E5D0 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + 46EB2E0001E5E0 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + 46EB2E0001E5F0 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + 46EB2E0001E600 /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; + 46EB2E0001E610 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; + 46EB2E0001E620 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; + 46EB2E0001E630 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + 46EB2E0001E640 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + 46EB2E0001E650 /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; + 46EB2E0001E660 /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; + 46EB2E0001E670 /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; + 46EB2E0001E680 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; + 46EB2E0001E690 /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; + 46EB2E0001E6A0 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; + 46EB2E0001E6B0 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + 46EB2E0001E6C0 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; + 46EB2E0001E6D0 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; + 46EB2E0001E6E0 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + 46EB2E0001E6F0 /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; + 46EB2E0001E700 /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; + 46EB2E0001E710 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; + 46EB2E0001E720 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; + 46EB2E0001E730 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; + 46EB2E0001E740 /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; + 46EB2E0001E750 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; + 46EB2E0001E760 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; + 46EB2E0001E770 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + 46EB2E0001E780 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; + 46EB2E0001E790 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + 46EB2E0001E7A0 /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; + 46EB2E0001E7B0 /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; + 46EB2E0001E7C0 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; + 46EB2E0001E7D0 /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; + 46EB2E0001E7E0 /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; + 46EB2E0001E7F0 /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; + 46EB2E0001E800 /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; + 46EB2E0001E810 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; + 46EB2E0001E820 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + 46EB2E0001E830 /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; + 46EB2E0001E840 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; + 46EB2E0001E850 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; + 46EB2E0001E860 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 46EB2E0001E870 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; + 46EB2E0001E880 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; + 46EB2E0001E890 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; + 46EB2E0001E8A0 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + 46EB2E0001E8B0 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; + 46EB2E0001E8C0 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + 46EB2E0001E8D0 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; + 46EB2E0001E8E0 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + 46EB2E0001E8F0 /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; + 46EB2E0001E900 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; + 46EB2E0001E910 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; + 46EB2E0001E920 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; + 46EB2E0001E930 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; + 46EB2E0001E940 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; + 46EB2E0001E950 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; + 46EB2E0001E960 /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; + 46EB2E0001E970 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; + 46EB2E0001E980 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; + 46EB2E0001E990 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; + 46EB2E0001E9A0 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + 46EB2E0001E9B0 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; + 46EB2E0001E9C0 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; + 46EB2E0001E9D0 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + 46EB2E0001E9E0 /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; + 46EB2E0001E9F0 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; + 46EB2E0001EA00 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + 46EB2E0001EA10 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; + 46EB2E0001EA20 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; + 46EB2E0001EA30 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; + 46EB2E0001EA40 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; + 46EB2E0001EA50 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + 46EB2E0001EA60 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + 46EB2E0001EA70 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; + 46EB2E0001EA80 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; + 46EB2E0001EA90 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; + 46EB2E0001EAA0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + 46EB2E0001EAB0 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; + 46EB2E0001EAC0 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; + 46EB2E0001EAD0 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 46EB2E0001EAE0 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + 46EB2E0001EAF0 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 46EB2E0001EB00 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + 46EB2E0001EB10 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + 46EB2E0001EB20 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; + 46EB2E0001EB30 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; + 46EB2E0001EB40 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; + 46EB2E0001EB50 /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; + 46EB2E0001EB60 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; + 46EB2E0001EB70 /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; + 46EB2E0001EB80 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; + 46EB2E0001EB90 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; + 46EB2E0001EBA0 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + 46EB2E0001EBB0 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; + 46EB2E0001EBC0 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + 46EB2E0001EBD0 /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; + 46EB2E0001EBE0 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; + 46EB2E0001EBF0 /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; + 46EB2E0001EC00 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; + 46EB2E0001EC10 /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; + 46EB2E0001EC20 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; + 46EB2E0001EC30 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; + 46EB2E0001EC40 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + 46EB2E0001EC50 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; + 46EB2E0001EC60 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; + 46EB2E0001EC70 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; + 46EB2E0001EC80 /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; + 46EB2E0001EC90 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; + 46EB2E0001ECA0 /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; + 46EB2E0001ECB0 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; + 46EB2E0001ECC0 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; + 46EB2E0001ECD0 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + 46EB2E0001ECE0 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; + 46EB2E0001ECF0 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; + 46EB2E0001ED00 /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; + 46EB2E0001ED10 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; + 46EB2E0001ED20 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; + 46EB2E0001ED30 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; + 46EB2E0001ED40 /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; + 46EB2E0001ED50 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; + 46EB2E0001ED60 /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; + 46EB2E0001ED70 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; + 46EB2E0001ED80 /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; + 46EB2E0001ED90 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; + 46EB2E0001EDA0 /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; + 46EB2E0001EDB0 /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; + 46EB2E0001EDC0 /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; + 46EB2E0001EDD0 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; + 46EB2E0001EDE0 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; + 46EB2E0001EDF0 /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; + 46EB2E0001EE00 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; + 46EB2E0001EE10 /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; + 46EB2E0001EE20 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 46EB2E0001EE30 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; + 46EB2E0001EE40 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; + 46EB2E0001EE50 /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; + 46EB2E0001EE60 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; + 46EB2E0001EE70 /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; + 46EB2E0001EE80 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; + 46EB2E0001EE90 /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; + 46EB2E0001EEA0 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; + 46EB2E0001EEB0 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; + 46EB2E0001EEC0 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; + 46EB2E0001EED0 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; + 46EB2E0001EEE0 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; + 46EB2E0001EEF0 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; + 46EB2E0001EF00 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; + 46EB2E0001EF10 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; + 46EB2E0001EF20 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; + 46EB2E0001EF30 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; + 46EB2E0001EF40 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; + 46EB2E0001EF50 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; + 46EB2E0001EF60 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; + 46EB2E0001EF70 /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; + 46EB2E0001EF80 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; + 46EB2E0001EF90 /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; + 46EB2E0001EFA0 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; + 46EB2E0001EFB0 /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; + 46EB2E0001EFC0 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; + 46EB2E0001EFD0 /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; + 46EB2E0001EFE0 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; + 46EB2E0001EFF0 /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; + 46EB2E0001F000 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; + 46EB2E0001F010 /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; + 46EB2E0001F020 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; + 46EB2E0001F030 /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; + 46EB2E0001F040 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; + 46EB2E0001F050 /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; + 46EB2E0001F060 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; + 46EB2E0001F070 /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; + 46EB2E0001F080 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; + 46EB2E0001F090 /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; + 46EB2E0001F0A0 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; + 46EB2E0001F0B0 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; + 46EB2E0001F0C0 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; + 46EB2E0001F0D0 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; + 46EB2E0001F0E0 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; + 46EB2E0001F0F0 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; + 46EB2E0001F100 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; + 46EB2E0001F110 /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F120 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; + 46EB2E0001F130 /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F140 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; + 46EB2E0001F150 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F160 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; + 46EB2E0001F170 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; + 46EB2E0001F180 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; + 46EB2E0001F190 /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; + 46EB2E0001F1A0 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; + 46EB2E0001F1B0 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F1C0 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; + 46EB2E0001F1D0 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; + 46EB2E0001F1E0 /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; + 46EB2E0001F1F0 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F200 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; + 46EB2E0001F210 /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; + 46EB2E0001F220 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; + 46EB2E0001F230 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; + 46EB2E0001F240 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; + 46EB2E0001F250 /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; + 46EB2E0001F260 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; + 46EB2E0001F270 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; + 46EB2E0001F280 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; + 46EB2E0001F290 /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; + 46EB2E0001F2A0 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; + 46EB2E0001F2B0 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; + 46EB2E0001F2C0 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; + 46EB2E0001F2D0 /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; + 46EB2E0001F2E0 /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; + 46EB2E0001F2F0 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; + 46EB2E0001F300 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; + 46EB2E0001F310 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; + 46EB2E0001F320 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; + 46EB2E0001F330 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; + 46EB2E0001F340 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; + 46EB2E0001F350 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; + 46EB2E0001F360 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; + 46EB2E0001F370 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; + 46EB2E0001F380 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + 46EB2E0001F390 /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; + 46EB2E0001F3A0 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 46EB2E0001F3B0 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; + 46EB2E0001F3C0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + 46EB2E0001F3D0 /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; + 46EB2E0001F3E0 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; + 46EB2E0001F3F0 /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; + 46EB2E0001F400 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + 46EB2E0001F410 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; + 46EB2E0001F420 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + 46EB2E0001F430 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; + 46EB2E0001F440 /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; + 46EB2E0001F450 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; + 46EB2E0001F460 /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; + 46EB2E0001F470 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; + 46EB2E0001F480 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; + 46EB2E0001F490 /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; + 46EB2E0001F4A0 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 46EB2E0001F4B0 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; + 46EB2E0001F4C0 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + 46EB2E0001F4D0 /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; + 46EB2E0001F4E0 /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; + 46EB2E0001F4F0 /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; + 46EB2E0001F500 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + 46EB2E0001F510 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; + 46EB2E0001F520 /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; + 46EB2E0001F530 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; + 46EB2E0001F540 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; + 46EB2E0001F550 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + 46EB2E0001F560 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; + 46EB2E0001F570 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + 46EB2E0001F580 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; + 46EB2E0001F590 /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; + 46EB2E0001F5A0 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; + 46EB2E0001F5B0 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; + 46EB2E0001F5C0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + 46EB2E0001F5D0 /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; + 46EB2E0001F5E0 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; + 46EB2E0001F5F0 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; + 46EB2E0001F600 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + 46EB2E0001F610 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; + 46EB2E0001F620 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + 46EB2E0001F630 /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; + 46EB2E0001F640 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; + 46EB2E0001F650 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + 46EB2E0001F660 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; + 46EB2E0001F670 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; + 46EB2E0001F680 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 46EB2E0001F690 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; + 46EB2E0001F6A0 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 46EB2E0001F6B0 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; + 46EB2E0001F6C0 /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; + 46EB2E0001F6D0 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + 46EB2E0001F6E0 /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; + 46EB2E0001F6F0 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; + 46EB2E0001F700 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; + 46EB2E0001F710 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 46EB2E0001F720 /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; + 46EB2E0001F730 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + 46EB2E0001F740 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + 46EB2E0001F750 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 46EB2E0001F760 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; + 46EB2E0001F770 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + 46EB2E0001F780 /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; + 46EB2E0001F790 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; + 46EB2E0001F7A0 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; + 46EB2E0001F7B0 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + 46EB2E0001F7C0 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; + 46EB2E0001F7D0 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + 46EB2E0001F7E0 /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; + 46EB2E0001F7F0 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + 46EB2E0001F800 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; + 46EB2E0001F810 /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; + 46EB2E0001F820 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; + 46EB2E0001F830 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + 46EB2E0001F840 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; + 46EB2E0001F850 /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; + 46EB2E0001F860 /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; + 46EB2E0001F870 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 46EB2E0001F880 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; + 46EB2E0001F890 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; + 46EB2E0001F8A0 /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; + 46EB2E0001F8B0 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; + 46EB2E0001F8C0 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; + 46EB2E0001F8D0 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; + 46EB2E0001F8E0 /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; + 46EB2E0001F8F0 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; + 46EB2E0001F900 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; + 46EB2E0001F910 /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; + 46EB2E0001F920 /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; + 46EB2E0001F930 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; + 46EB2E0001F940 /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; + 46EB2E0001F950 /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; + 46EB2E0001F960 /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; + 46EB2E0001F970 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; + 46EB2E0001F980 /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; + 46EB2E0001F990 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; + 46EB2E0001F9A0 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; + 46EB2E0001F9B0 /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; + 46EB2E0001F9C0 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; + 46EB2E0001F9D0 /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; + 46EB2E0001F9E0 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; + 46EB2E0001F9F0 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_integrity_only_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc; sourceTree = ""; }; + 46EB2E0001FA00 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; + 46EB2E0001FA10 /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_privacy_integrity_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc; sourceTree = ""; }; + 46EB2E0001FA20 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; + 46EB2E0001FA30 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; + 46EB2E0001FA40 /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; + 46EB2E0001FA50 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; + 46EB2E0001FA60 /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; + 46EB2E0001FA70 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; + 46EB2E0001FA80 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; + 46EB2E0001FA90 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; + 46EB2E0001FAA0 /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; + 46EB2E0001FAB0 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; + 46EB2E0001FAC0 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; + 46EB2E0001FAD0 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; + 46EB2E0001FAE0 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; + 46EB2E0001FAF0 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; + 46EB2E0001FB00 /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; + 46EB2E0001FB10 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; + 46EB2E0001FB20 /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; + 46EB2E0001FB30 /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; + 46EB2E0001FB40 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; + 46EB2E0001FB50 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + 46EB2E0001FB60 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; + 46EB2E0001FB70 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 46EB2E0001FB80 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; + 46EB2E0001FB90 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; + 46EB2E0001FBA0 /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; + 46EB2E0001FBB0 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; + 46EB2E0001FBC0 /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; + 46EB2E0001FBD0 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; + 46EB2E0001FBE0 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; + 46EB2E0001FBF0 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; + 46EB2E0001FC00 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; + 46EB2E0001FC10 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; + 46EB2E0001FC20 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; + 46EB2E0001FC30 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; + 46EB2E0001FC40 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; + 46EB2E0001FC50 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; + 46EB2E0001FC60 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; + 46EB2E0001FC70 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; + 46EB2E0001FC80 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; + 46EB2E0001FC90 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; + 46EB2E0001FCA0 /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; + 46EB2E0001FCB0 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; + 46EB2E0001FCC0 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; + 46EB2E0001FCD0 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; + 46EB2E0001FCE0 /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; + 46EB2E0001FCF0 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; + 46EB2E0001FD00 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; + 46EB2E0001FD10 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; + 46EB2E0001FD20 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; + 46EB2E0001FD30 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; + 46EB2E0001FD40 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; + 46EB2E0001FD50 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; + 46EB2E0001FD60 /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; + 46EB2E0001FD70 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; + 46EB2E0001FD80 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; + 46EB2E0001FD90 /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; + 46EB2E0001FDA0 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; + 46EB2E0001FDB0 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; + 46EB2E0001FDC0 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; + 46EB2E0001FDD0 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; + 46EB2E0001FDE0 /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; + 46EB2E0001FDF0 /* flags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flags.h; path = third_party/re2/util/flags.h; sourceTree = ""; }; + 46EB2E0001FE00 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; + 46EB2E0001FE10 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; + 46EB2E0001FE20 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; + 46EB2E0001FE30 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; + 46EB2E0001FE40 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; + 46EB2E0001FE50 /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; + 46EB2E0001FE60 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; + 46EB2E0001FE70 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; + 46EB2E0001FE80 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; + 46EB2E0001FE90 /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; + 46EB2E0001FEA0 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; + 46EB2E0001FEB0 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; + 46EB2E0001FEC0 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; + 46EB2E0001FED0 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; + 46EB2E0001FEE0 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; + 46EB2E0001FEF0 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; + 46EB2E0001FF00 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; + 46EB2E0001FF10 /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; + 46EB2E0001FF20 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; + 46EB2E0001FF30 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; + 46EB2E0001FF40 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; + 46EB2E0001FF50 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; + 46EB2E0001FF60 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; + 46EB2E0001FF70 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; + 46EB2E0001FF80 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; + 46EB2E0001FF90 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 46EB2E0001FFA0 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + 46EB2E0001FFB0 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; + 46EB2E0001FFC0 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; + 46EB2E0001FFD0 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; + 46EB2E0001FFE0 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; + 46EB2E0001FFF0 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; + 46EB2E00020000 /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; + 46EB2E00020010 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; + 46EB2E00020020 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; + 46EB2E00020030 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; + 46EB2E00020040 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; + 46EB2E00020050 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; + 46EB2E00020060 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + 46EB2E00020080 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; + 46EB2E00020090 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/byte_buffer_reader.h; sourceTree = ""; }; + 46EB2E000200A0 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; + 46EB2E000200B0 /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; + 46EB2E000200C0 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; + 46EB2E000200D0 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; + 46EB2E000200E0 /* memory_allocator_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_impl.h; path = include/grpc/event_engine/internal/memory_allocator_impl.h; sourceTree = ""; }; + 46EB2E000200F0 /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; + 46EB2E00020100 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; + 46EB2E00020110 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; + 46EB2E00020120 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; + 46EB2E00020130 /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; + 46EB2E00020140 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; + 46EB2E00020150 /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; + 46EB2E00020160 /* grpc_security_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security_constants.h; path = include/grpc/grpc_security_constants.h; sourceTree = ""; }; + 46EB2E00020170 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; + 46EB2E00020180 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/impl/codegen/atm_gcc_atomic.h; sourceTree = ""; }; + 46EB2E00020190 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/impl/codegen/atm_gcc_sync.h; sourceTree = ""; }; + 46EB2E000201A0 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; + 46EB2E000201B0 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; + 46EB2E000201C0 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/impl/codegen/byte_buffer_reader.h; sourceTree = ""; }; + 46EB2E000201D0 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; + 46EB2E000201E0 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; + 46EB2E000201F0 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; + 46EB2E00020200 /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; + 46EB2E00020210 /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; + 46EB2E00020220 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; + 46EB2E00020230 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; + 46EB2E00020240 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; + 46EB2E00020250 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; + 46EB2E00020260 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; + 46EB2E00020270 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; + 46EB2E00020280 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; + 46EB2E00020290 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; + 46EB2E000202A0 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; + 46EB2E000202B0 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; + 46EB2E000202C0 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; + 46EB2E000202D0 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; + 46EB2E000202E0 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; + 46EB2E000202F0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; + 46EB2E00020300 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; + 46EB2E00020310 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; + 46EB2E00020320 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; + 46EB2E00020330 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; + 46EB2E00020340 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/support/atm_gcc_atomic.h; sourceTree = ""; }; + 46EB2E00020350 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/support/atm_gcc_sync.h; sourceTree = ""; }; + 46EB2E00020360 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; + 46EB2E00020370 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; + 46EB2E00020380 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; + 46EB2E00020390 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; + 46EB2E000203A0 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; + 46EB2E000203B0 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; + 46EB2E000203C0 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; + 46EB2E000203D0 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; + 46EB2E000203E0 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; + 46EB2E000203F0 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; + 46EB2E00020400 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; + 46EB2E00020410 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; + 46EB2E00020420 /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; + 46EB2E00020430 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; + 46EB2E00020440 /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; + 46EB2E00020450 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; + 46EB2E00020460 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; + 46EB2E00020470 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; + 46EB2E00020480 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + 46EB2E00020490 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; + 46EB2E000204A0 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; + 46EB2E000204B0 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; + 46EB2E000204C0 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; + 46EB2E000204D0 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; + 46EB2E000204E0 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; + 46EB2E000204F0 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; + 46EB2E00020500 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; + 46EB2E00020510 /* CompileJS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompileJS.h; path = destroot/include/hermes/CompileJS.h; sourceTree = ""; }; + 46EB2E00020520 /* DebuggerAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerAPI.h; path = destroot/include/hermes/DebuggerAPI.h; sourceTree = ""; }; + 46EB2E00020530 /* hermes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes.h; path = destroot/include/hermes/hermes.h; sourceTree = ""; }; + 46EB2E00020540 /* hermes_tracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes_tracing.h; path = destroot/include/hermes/hermes_tracing.h; sourceTree = ""; }; + 46EB2E00020550 /* Buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Buffer.h; path = destroot/include/hermes/Public/Buffer.h; sourceTree = ""; }; + 46EB2E00020560 /* CrashManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CrashManager.h; path = destroot/include/hermes/Public/CrashManager.h; sourceTree = ""; }; + 46EB2E00020570 /* CtorConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CtorConfig.h; path = destroot/include/hermes/Public/CtorConfig.h; sourceTree = ""; }; + 46EB2E00020580 /* DebuggerTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerTypes.h; path = destroot/include/hermes/Public/DebuggerTypes.h; sourceTree = ""; }; + 46EB2E00020590 /* GCConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCConfig.h; path = destroot/include/hermes/Public/GCConfig.h; sourceTree = ""; }; + 46EB2E000205A0 /* GCTripwireContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCTripwireContext.h; path = destroot/include/hermes/Public/GCTripwireContext.h; sourceTree = ""; }; + 46EB2E000205B0 /* RuntimeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeConfig.h; path = destroot/include/hermes/Public/RuntimeConfig.h; sourceTree = ""; }; + 46EB2E000205C0 /* SynthTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTrace.h; path = destroot/include/hermes/SynthTrace.h; sourceTree = ""; }; + 46EB2E000205D0 /* SynthTraceParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTraceParser.h; path = destroot/include/hermes/SynthTraceParser.h; sourceTree = ""; }; + 46EB2E000205E0 /* TimerStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerStats.h; path = destroot/include/hermes/TimerStats.h; sourceTree = ""; }; + 46EB2E000205F0 /* TraceInterpreter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceInterpreter.h; path = destroot/include/hermes/TraceInterpreter.h; sourceTree = ""; }; + 46EB2E00020600 /* TracingRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TracingRuntime.h; path = destroot/include/hermes/TracingRuntime.h; sourceTree = ""; }; + 46EB2E00020610 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decorator.h; path = destroot/include/jsi/decorator.h; sourceTree = ""; }; + 46EB2E00020620 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = destroot/include/jsi/instrumentation.h; sourceTree = ""; }; + 46EB2E00020630 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "jsi-inl.h"; path = "destroot/include/jsi/jsi-inl.h"; sourceTree = ""; }; + 46EB2E00020640 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsi.h; path = destroot/include/jsi/jsi.h; sourceTree = ""; }; + 46EB2E00020650 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIDynamic.h; path = destroot/include/jsi/JSIDynamic.h; sourceTree = ""; }; + 46EB2E00020660 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsilib.h; path = destroot/include/jsi/jsilib.h; sourceTree = ""; }; + 46EB2E00020670 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadsafe.h; path = destroot/include/jsi/threadsafe.h; sourceTree = ""; }; + 46EB2E00020680 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; + 46EB2E00020690 /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; + 46EB2E000206A0 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = c.cc; path = db/c.cc; sourceTree = ""; }; + 46EB2E000206B0 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; + 46EB2E000206C0 /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; + 46EB2E000206D0 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; + 46EB2E000206E0 /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; + 46EB2E000206F0 /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; + 46EB2E00020700 /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; + 46EB2E00020710 /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; + 46EB2E00020720 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; + 46EB2E00020730 /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; + 46EB2E00020740 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; + 46EB2E00020750 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; + 46EB2E00020760 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; + 46EB2E00020770 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; + 46EB2E00020780 /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; + 46EB2E00020790 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; + 46EB2E000207A0 /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; + 46EB2E000207B0 /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; + 46EB2E000207C0 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; + 46EB2E000207D0 /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; + 46EB2E000207E0 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; + 46EB2E000207F0 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; + 46EB2E00020800 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; + 46EB2E00020810 /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; + 46EB2E00020820 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; + 46EB2E00020830 /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; + 46EB2E00020840 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; + 46EB2E00020850 /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; + 46EB2E00020860 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; + 46EB2E00020870 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; + 46EB2E00020880 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; + 46EB2E00020890 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; + 46EB2E000208A0 /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block.cc; path = table/block.cc; sourceTree = ""; }; + 46EB2E000208B0 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; + 46EB2E000208C0 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; + 46EB2E000208D0 /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; + 46EB2E000208E0 /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; + 46EB2E000208F0 /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; + 46EB2E00020900 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = table/format.cc; sourceTree = ""; }; + 46EB2E00020910 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; + 46EB2E00020920 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; + 46EB2E00020930 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; + 46EB2E00020940 /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; + 46EB2E00020950 /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; + 46EB2E00020960 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table.cc; path = table/table.cc; sourceTree = ""; }; + 46EB2E00020970 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; + 46EB2E00020980 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; + 46EB2E00020990 /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; + 46EB2E000209A0 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; + 46EB2E000209B0 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; + 46EB2E000209C0 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; + 46EB2E000209D0 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; + 46EB2E000209E0 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; + 46EB2E000209F0 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; + 46EB2E00020A00 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; + 46EB2E00020A10 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; + 46EB2E00020A20 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; + 46EB2E00020A30 /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env.cc; path = util/env.cc; sourceTree = ""; }; + 46EB2E00020A40 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; + 46EB2E00020A50 /* env_posix_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_posix_test_helper.h; path = util/env_posix_test_helper.h; sourceTree = ""; }; + 46EB2E00020A60 /* env_windows_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_windows_test_helper.h; path = util/env_windows_test_helper.h; sourceTree = ""; }; + 46EB2E00020A70 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; + 46EB2E00020A80 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; + 46EB2E00020A90 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; + 46EB2E00020AA0 /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; + 46EB2E00020AB0 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; + 46EB2E00020AC0 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; + 46EB2E00020AD0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; + 46EB2E00020AE0 /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; + 46EB2E00020AF0 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; + 46EB2E00020B00 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = options.cc; path = util/options.cc; sourceTree = ""; }; + 46EB2E00020B10 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; + 46EB2E00020B20 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; + 46EB2E00020B30 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = util/status.cc; sourceTree = ""; }; + 46EB2E00020B40 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; + 46EB2E00020B50 /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; + 46EB2E00020B60 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; + 46EB2E00020B70 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; + 46EB2E00020B80 /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; + 46EB2E00020B90 /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; + 46EB2E00020BA0 /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; + 46EB2E00020BB0 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; + 46EB2E00020BC0 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; + 46EB2E00020BD0 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; + 46EB2E00020BE0 /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; + 46EB2E00020BF0 /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; + 46EB2E00020C00 /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; + 46EB2E00020C10 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; + 46EB2E00020C20 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; + 46EB2E00020C30 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; + 46EB2E00020C40 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; + 46EB2E00020C50 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; + 46EB2E00020C60 /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; + 46EB2E00020C70 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = include/evdns.h; sourceTree = ""; }; + 46EB2E00020C80 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = include/event.h; sourceTree = ""; }; + 46EB2E00020C90 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = include/evhttp.h; sourceTree = ""; }; + 46EB2E00020CA0 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = ""; }; + 46EB2E00020CB0 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = include/evutil.h; sourceTree = ""; }; + 46EB2E00020CC0 /* bufferevent-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "bufferevent-internal.h"; sourceTree = ""; }; + 46EB2E00020CD0 /* changelist-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "changelist-internal.h"; sourceTree = ""; }; + 46EB2E00020CE0 /* defer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "defer-internal.h"; sourceTree = ""; }; + 46EB2E00020CF0 /* epolltable-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "epolltable-internal.h"; sourceTree = ""; }; + 46EB2E00020D00 /* evbuffer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evbuffer-internal.h"; sourceTree = ""; }; + 46EB2E00020D10 /* evconfig-private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evconfig-private.h"; sourceTree = ""; }; + 46EB2E00020D20 /* event-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "event-internal.h"; sourceTree = ""; }; + 46EB2E00020D30 /* evmap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evmap-internal.h"; sourceTree = ""; }; + 46EB2E00020D40 /* evrpc-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evrpc-internal.h"; sourceTree = ""; }; + 46EB2E00020D50 /* evsignal-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evsignal-internal.h"; sourceTree = ""; }; + 46EB2E00020D60 /* evthread-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evthread-internal.h"; sourceTree = ""; }; + 46EB2E00020D70 /* ht-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ht-internal.h"; sourceTree = ""; }; + 46EB2E00020D80 /* http-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "http-internal.h"; sourceTree = ""; }; + 46EB2E00020D90 /* iocp-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iocp-internal.h"; sourceTree = ""; }; + 46EB2E00020DA0 /* ipv6-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ipv6-internal.h"; sourceTree = ""; }; + 46EB2E00020DB0 /* kqueue-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "kqueue-internal.h"; sourceTree = ""; }; + 46EB2E00020DC0 /* log-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "log-internal.h"; sourceTree = ""; }; + 46EB2E00020DD0 /* minheap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "minheap-internal.h"; sourceTree = ""; }; + 46EB2E00020DE0 /* mm-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mm-internal.h"; sourceTree = ""; }; + 46EB2E00020DF0 /* ratelim-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ratelim-internal.h"; sourceTree = ""; }; + 46EB2E00020E00 /* strlcpy-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "strlcpy-internal.h"; sourceTree = ""; }; + 46EB2E00020E10 /* time-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "time-internal.h"; sourceTree = ""; }; + 46EB2E00020E20 /* util-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "util-internal.h"; sourceTree = ""; }; + 46EB2E00020E30 /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = ""; }; + 46EB2E00020E40 /* bufferevent.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent.c; sourceTree = ""; }; + 46EB2E00020E50 /* bufferevent_filter.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_filter.c; sourceTree = ""; }; + 46EB2E00020E60 /* bufferevent_pair.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_pair.c; sourceTree = ""; }; + 46EB2E00020E70 /* bufferevent_ratelim.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_ratelim.c; sourceTree = ""; }; + 46EB2E00020E80 /* bufferevent_sock.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_sock.c; sourceTree = ""; }; + 46EB2E00020E90 /* event.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event.c; sourceTree = ""; }; + 46EB2E00020EA0 /* evmap.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evmap.c; sourceTree = ""; }; + 46EB2E00020EB0 /* evthread.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evthread.c; sourceTree = ""; }; + 46EB2E00020EC0 /* evutil.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil.c; sourceTree = ""; }; + 46EB2E00020ED0 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = ""; }; + 46EB2E00020EE0 /* evutil_time.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_time.c; sourceTree = ""; }; + 46EB2E00020EF0 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; path = kqueue.c; sourceTree = ""; }; + 46EB2E00020F00 /* listener.c */ = {isa = PBXFileReference; includeInIndex = 1; path = listener.c; sourceTree = ""; }; + 46EB2E00020F10 /* log.c */ = {isa = PBXFileReference; includeInIndex = 1; path = log.c; sourceTree = ""; }; + 46EB2E00020F20 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; path = poll.c; sourceTree = ""; }; + 46EB2E00020F30 /* select.c */ = {isa = PBXFileReference; includeInIndex = 1; path = select.c; sourceTree = ""; }; + 46EB2E00020F40 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = signal.c; sourceTree = ""; }; + 46EB2E00020F50 /* strlcpy.c */ = {isa = PBXFileReference; includeInIndex = 1; path = strlcpy.c; sourceTree = ""; }; + 46EB2E00020F60 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = ""; }; + 46EB2E00020F70 /* event_tagging.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event_tagging.c; sourceTree = ""; }; + 46EB2E00020F80 /* evrpc.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evrpc.c; sourceTree = ""; }; + 46EB2E00020F90 /* http.c */ = {isa = PBXFileReference; includeInIndex = 1; path = http.c; sourceTree = ""; }; + 46EB2E00020FB0 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; + 46EB2E00020FC0 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; + 46EB2E00020FD0 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 46EB2E00020FF0 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + 46EB2E00021000 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 46EB2E00021010 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; + 46EB2E00021020 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; + 46EB2E00021030 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + 46EB2E00021040 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; + 46EB2E00021050 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 46EB2E00021070 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; + 46EB2E00021080 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; + 46EB2E00021090 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; + 46EB2E000210A0 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; + 46EB2E000210B0 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + 46EB2E000210C0 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; + 46EB2E000210D0 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; + 46EB2E000210E0 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; + 46EB2E000210F0 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; + 46EB2E00021100 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; + 46EB2E00021110 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + 46EB2E00021120 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; + 46EB2E00021130 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; + 46EB2E00021140 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; + 46EB2E00021150 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 46EB2E00021160 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; + 46EB2E00021170 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; + 46EB2E00021180 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; + 46EB2E00021190 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + 46EB2E000211A0 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + 46EB2E000211B0 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; + 46EB2E000211C0 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; + 46EB2E000211D0 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; + 46EB2E000211E0 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; + 46EB2E000211F0 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + 46EB2E00021200 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; + 46EB2E00021210 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; + 46EB2E00021220 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; + 46EB2E00021230 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; + 46EB2E00021240 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; + 46EB2E00021250 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; + 46EB2E00021260 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; + 46EB2E00021270 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021280 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 46EB2E00021290 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; + 46EB2E000212A0 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; + 46EB2E000212B0 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; + 46EB2E000212C0 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + 46EB2E000212D0 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; + 46EB2E000212E0 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; + 46EB2E000212F0 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021300 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; + 46EB2E00021310 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 46EB2E00021320 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; + 46EB2E00021330 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + 46EB2E00021340 /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + 46EB2E00021350 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; + 46EB2E00021360 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021370 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + 46EB2E00021380 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + 46EB2E00021390 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; + 46EB2E000213A0 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; + 46EB2E000213B0 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + 46EB2E000213C0 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 46EB2E000213D0 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + 46EB2E000213E0 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E000213F0 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; + 46EB2E00021400 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + 46EB2E00021410 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; + 46EB2E00021420 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; + 46EB2E00021430 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; + 46EB2E00021440 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021450 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + 46EB2E00021460 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; + 46EB2E00021470 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; + 46EB2E00021480 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; + 46EB2E00021490 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; + 46EB2E000214A0 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; + 46EB2E000214B0 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + 46EB2E000214C0 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; + 46EB2E000214D0 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E000214E0 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; + 46EB2E000214F0 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; + 46EB2E00021500 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; + 46EB2E00021510 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; + 46EB2E00021520 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021530 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + 46EB2E00021540 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; + 46EB2E00021550 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; + 46EB2E00021560 /* lossless_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse41.c; path = src/dsp/lossless_sse41.c; sourceTree = ""; }; + 46EB2E00021570 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + 46EB2E00021580 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; + 46EB2E00021590 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; + 46EB2E000215A0 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + 46EB2E000215B0 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; + 46EB2E000215C0 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; + 46EB2E000215D0 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E000215E0 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; + 46EB2E000215F0 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; + 46EB2E00021600 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; + 46EB2E00021610 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + 46EB2E00021620 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; + 46EB2E00021630 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + 46EB2E00021640 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E00021650 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; + 46EB2E00021660 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + 46EB2E00021670 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; + 46EB2E00021680 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; + 46EB2E00021690 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; + 46EB2E000216A0 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; + 46EB2E000216B0 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; + 46EB2E000216C0 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; + 46EB2E000216D0 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; + 46EB2E000216E0 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; + 46EB2E000216F0 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; + 46EB2E00021700 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; + 46EB2E00021710 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; + 46EB2E00021720 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; + 46EB2E00021730 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; + 46EB2E00021740 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 46EB2E00021750 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; + 46EB2E00021760 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; + 46EB2E00021770 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; + 46EB2E00021780 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; + 46EB2E00021790 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; + 46EB2E000217A0 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; + 46EB2E000217B0 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; + 46EB2E000217C0 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; + 46EB2E000217D0 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; + 46EB2E000217E0 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; + 46EB2E000217F0 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; + 46EB2E00021800 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; + 46EB2E00021810 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; + 46EB2E00021820 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + 46EB2E00021830 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; + 46EB2E00021840 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; + 46EB2E00021850 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; + 46EB2E00021860 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; + 46EB2E00021870 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; + 46EB2E00021880 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; + 46EB2E00021890 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; + 46EB2E000218A0 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; + 46EB2E000218B0 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; + 46EB2E000218C0 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + 46EB2E000218D0 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; + 46EB2E000218E0 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; + 46EB2E000218F0 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; + 46EB2E00021900 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; + 46EB2E00021910 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; + 46EB2E00021920 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; + 46EB2E00021930 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + 46EB2E00021940 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; + 46EB2E00021950 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; + 46EB2E00021960 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; + 46EB2E00021970 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; + 46EB2E00021980 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; + 46EB2E00021990 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; + 46EB2E000219A0 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; + 46EB2E000219B0 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; + 46EB2E000219C0 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 46EB2E000219D0 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + 46EB2E000219E0 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + 46EB2E000219F0 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + 46EB2E00021A00 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 46EB2E00021A10 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + 46EB2E00021A20 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + 46EB2E00021A60 /* ReactNativeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeConfig.h; path = ios/ReactNativeConfig/ReactNativeConfig.h; sourceTree = ""; }; + 46EB2E00021A70 /* ReactNativeConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeConfig.m; path = ios/ReactNativeConfig/ReactNativeConfig.m; sourceTree = ""; }; + 46EB2E00021A80 /* ReactNativeConfigModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeConfigModule.h; path = ios/ReactNativeConfig/ReactNativeConfigModule.h; sourceTree = ""; }; + 46EB2E00021A90 /* ReactNativeConfigModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeConfigModule.m; path = ios/ReactNativeConfig/ReactNativeConfigModule.m; sourceTree = ""; }; + 46EB2E00021AA0 /* FlipperModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperModule.h; path = ios/FlipperModule.h; sourceTree = ""; }; + 46EB2E00021AB0 /* FlipperModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperModule.m; path = ios/FlipperModule.m; sourceTree = ""; }; + 46EB2E00021AC0 /* FlipperReactNativeJavaScriptPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperReactNativeJavaScriptPlugin.h; path = ios/FlipperReactNativeJavaScriptPlugin.h; sourceTree = ""; }; + 46EB2E00021AD0 /* FlipperReactNativeJavaScriptPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperReactNativeJavaScriptPlugin.m; path = ios/FlipperReactNativeJavaScriptPlugin.m; sourceTree = ""; }; + 46EB2E00021AE0 /* FlipperReactNativeJavaScriptPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperReactNativeJavaScriptPluginManager.h; path = ios/FlipperReactNativeJavaScriptPluginManager.h; sourceTree = ""; }; + 46EB2E00021AF0 /* FlipperReactNativeJavaScriptPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperReactNativeJavaScriptPluginManager.m; path = ios/FlipperReactNativeJavaScriptPluginManager.m; sourceTree = ""; }; + 46EB2E00021B00 /* PdfManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PdfManager.h; path = ios/RCTPdf/PdfManager.h; sourceTree = ""; }; + 46EB2E00021B10 /* PdfManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PdfManager.m; path = ios/RCTPdf/PdfManager.m; sourceTree = ""; }; + 46EB2E00021B20 /* RCTPdfPageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfPageView.h; path = ios/RCTPdf/RCTPdfPageView.h; sourceTree = ""; }; + 46EB2E00021B30 /* RCTPdfPageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfPageView.m; path = ios/RCTPdf/RCTPdfPageView.m; sourceTree = ""; }; + 46EB2E00021B40 /* RCTPdfPageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfPageViewManager.h; path = ios/RCTPdf/RCTPdfPageViewManager.h; sourceTree = ""; }; + 46EB2E00021B50 /* RCTPdfPageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfPageViewManager.m; path = ios/RCTPdf/RCTPdfPageViewManager.m; sourceTree = ""; }; + 46EB2E00021B60 /* RCTPdfView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfView.h; path = ios/RCTPdf/RCTPdfView.h; sourceTree = ""; }; + 46EB2E00021B70 /* RCTPdfView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfView.m; path = ios/RCTPdf/RCTPdfView.m; sourceTree = ""; }; + 46EB2E00021B80 /* RCTPdfViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPdfViewManager.h; path = ios/RCTPdf/RCTPdfViewManager.h; sourceTree = ""; }; + 46EB2E00021B90 /* RCTPdfViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPdfViewManager.m; path = ios/RCTPdf/RCTPdfViewManager.m; sourceTree = ""; }; + 46EB2E00021BA0 /* RNCSafeAreaContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaContext.h; path = ios/RNCSafeAreaContext.h; sourceTree = ""; }; + 46EB2E00021BB0 /* RNCSafeAreaContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RNCSafeAreaContext.mm; path = ios/RNCSafeAreaContext.mm; sourceTree = ""; }; + 46EB2E00021BC0 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/RNCSafeAreaProvider.h; sourceTree = ""; }; + 46EB2E00021BD0 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/RNCSafeAreaProvider.m; sourceTree = ""; }; + 46EB2E00021BE0 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + 46EB2E00021BF0 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/RNCSafeAreaProviderManager.m; sourceTree = ""; }; + 46EB2E00021C00 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 46EB2E00021C10 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/RNCSafeAreaShadowView.m; sourceTree = ""; }; + 46EB2E00021C20 /* RNCSafeAreaUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaUtils.h; path = ios/RNCSafeAreaUtils.h; sourceTree = ""; }; + 46EB2E00021C30 /* RNCSafeAreaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaUtils.m; path = ios/RNCSafeAreaUtils.m; sourceTree = ""; }; + 46EB2E00021C40 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/RNCSafeAreaView.h; sourceTree = ""; }; + 46EB2E00021C50 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/RNCSafeAreaView.m; sourceTree = ""; }; + 46EB2E00021C60 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + 46EB2E00021C70 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + 46EB2E00021C80 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + 46EB2E00021C90 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 46EB2E00021CA0 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 46EB2E00021CB0 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 46EB2E00021CC0 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/RNCSafeAreaViewMode.h; sourceTree = ""; }; + 46EB2E00021CD0 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/RNCSafeAreaViewMode.m; sourceTree = ""; }; + 46EB2E00021CE0 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 46EB2E00021CF0 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 46EB2E00021D00 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + 46EB2E00021D10 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + 46EB2E00021D20 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 46EB2E00021D30 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 46EB2E00021D60 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; + 46EB2E00021D80 /* glog.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = glog.xcframework; path = Frameworks/glog.xcframework; sourceTree = ""; }; + 46EB2E00021DB0 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; + 46EB2E00021DE0 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; + 46EB2E00021E00 /* OpenSSL.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.xcframework; path = Frameworks/OpenSSL.xcframework; sourceTree = ""; }; + 46EB2E00021E20 /* hermes.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = hermes.xcframework; path = destroot/Library/Frameworks/universal/hermes.xcframework; sourceTree = ""; }; + 46EB2E00021E30 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 46EB2E00021E40 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 46EB2E00021E50 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 46EB2E00021E60 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 46EB2E00021E70 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 46EB2E00021E80 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 46EB2E00021E90 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 46EB2E00021EA0 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 46EB2E00021EB0 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 46EB2E00021EC0 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 46EB2E00021ED0 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 46EB2E00021EE0 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 46EB2E00021EF0 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 46EB2E00021F00 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 46EB2E00021F10 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 46EB2E00021F20 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 46EB2E00021F30 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; + 46EB2E00021F50 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; + 46EB2E00021F70 /* BVLinearGradient.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BVLinearGradient.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00021F80 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00021F90 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00021FB0 /* CodePush.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CodePush.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00021FC0 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 46EB2E00021FD0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00021FE0 /* api-android.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "api-android.md"; path = "docs/api-android.md"; sourceTree = ""; }; + 46EB2E00021FF0 /* api-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "api-ios.md"; path = "docs/api-ios.md"; sourceTree = ""; }; + 46EB2E00022000 /* api-js.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "api-js.md"; path = "docs/api-js.md"; sourceTree = ""; }; + 46EB2E00022010 /* multi-deployment-testing-android.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "multi-deployment-testing-android.md"; path = "docs/multi-deployment-testing-android.md"; sourceTree = ""; }; + 46EB2E00022020 /* multi-deployment-testing-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "multi-deployment-testing-ios.md"; path = "docs/multi-deployment-testing-ios.md"; sourceTree = ""; }; + 46EB2E00022030 /* setup-android.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "setup-android.md"; path = "docs/setup-android.md"; sourceTree = ""; }; + 46EB2E00022040 /* setup-ios.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "setup-ios.md"; path = "docs/setup-ios.md"; sourceTree = ""; }; + 46EB2E00022050 /* setup-windows.md */ = {isa = PBXFileReference; includeInIndex = 1; name = "setup-windows.md"; path = "docs/setup-windows.md"; sourceTree = ""; }; + 46EB2E00022070 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022090 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000220B0 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000220D0 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000220F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022100 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022110 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022130 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022140 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022160 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022170 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022180 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000221A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000221B0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000221C0 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000221E0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000221F0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022200 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022220 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022230 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022240 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022260 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022270 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022280 /* RNFBAuth.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAuth.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000222A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000222B0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000222C0 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000222E0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000222F0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022300 /* RNFBDatabase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBDatabase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022320 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022330 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022340 /* RNFBFirestore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBFirestore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022360 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022370 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022380 /* RNFBMessaging.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBMessaging.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000223A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000223B0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000223C0 /* RNFBRemoteConfig.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBRemoteConfig.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000223E0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000223F0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022400 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022420 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022430 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022440 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022460 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022470 /* RNRate.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRate.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022490 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000224A0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000224B0 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000224D0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000224E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000224F0 /* RNSVG.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNSVG.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022510 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022520 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022530 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022550 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022560 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022570 /* RNShare.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNShare.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022590 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000225A0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000225B0 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000225D0 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000225F0 /* React-Codegen.podspec.json */ = {isa = PBXFileReference; includeInIndex = 1; path = "React-Codegen.podspec.json"; sourceTree = ""; }; + 46EB2E00022610 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022630 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022650 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022670 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022690 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000226B0 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000226D0 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000226F0 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022710 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022730 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022750 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022770 /* React-bridging.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-bridging.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022790 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000227B0 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000227D0 /* React-hermes.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-hermes.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000227F0 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022810 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022830 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022850 /* React-logger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-logger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022870 /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022890 /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-runtimeexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000228B0 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000228D0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000228E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000228F0 /* react-native-config.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-config.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022910 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022920 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022930 /* react-native-flipper.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-flipper.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022950 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E00022960 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E00022970 /* react-native-pdf.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-pdf.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022990 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000229A0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000229B0 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E000229D0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 46EB2E000229E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46EB2E000229F0 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EB2E00022AF0 /* BVLinearGradient.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BVLinearGradient.debug.xcconfig; sourceTree = ""; }; + 46EB2E00022B00 /* BVLinearGradient.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BVLinearGradient.release.xcconfig; sourceTree = ""; }; + 46EB2E00022B10 /* BVLinearGradient-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BVLinearGradient-prefix.pch"; sourceTree = ""; }; + 46EB2E00022B20 /* BVLinearGradient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BVLinearGradient-dummy.m"; sourceTree = ""; }; + 46EB2E00022BF0 /* Base64.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Base64.debug.xcconfig; sourceTree = ""; }; + 46EB2E00022C00 /* Base64.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Base64.release.xcconfig; sourceTree = ""; }; + 46EB2E00022C10 /* Base64-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Base64-prefix.pch"; sourceTree = ""; }; + 46EB2E00022C20 /* Base64-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Base64-dummy.m"; sourceTree = ""; }; + 46EB2E00024A70 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00024A80 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; + 46EB2E00024A90 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; + 46EB2E00024AA0 /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; + 46EB2E00024B90 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; + 46EB2E00024BA0 /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; + 46EB2E00024BB0 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; + 46EB2E00024BC0 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; + 46EB2E00024D20 /* CodePush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CodePush.debug.xcconfig; sourceTree = ""; }; + 46EB2E00024D30 /* CodePush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CodePush.release.xcconfig; sourceTree = ""; }; + 46EB2E00024D40 /* CodePush-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CodePush-prefix.pch"; sourceTree = ""; }; + 46EB2E00024D50 /* CodePush-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CodePush-dummy.m"; sourceTree = ""; }; + 46EB2E00024F20 /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; + 46EB2E00024F30 /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; + 46EB2E00024F40 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; + 46EB2E00024F50 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; + 46EB2E00024FC0 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; + 46EB2E00024FD0 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; + 46EB2E00025030 /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; + 46EB2E00025040 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + 46EB2E000250A0 /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; + 46EB2E000250B0 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; + 46EB2E00025300 /* FirebaseABTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.debug.xcconfig; sourceTree = ""; }; + 46EB2E00025310 /* FirebaseABTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.release.xcconfig; sourceTree = ""; }; + 46EB2E00025320 /* FirebaseABTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseABTesting-dummy.m"; sourceTree = ""; }; + 46EB2E00025390 /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; + 46EB2E000253A0 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; + 46EB2E000253B0 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; + 46EB2E00026450 /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; + 46EB2E00026460 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; + 46EB2E00026470 /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; + 46EB2E000267C0 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + 46EB2E000267D0 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; + 46EB2E000267E0 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; + 46EB2E000267F0 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; + 46EB2E00026810 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 46EB2E00026920 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; + 46EB2E00026930 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; + 46EB2E00026940 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; + 46EB2E00026AC0 /* FirebaseCoreExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.debug.xcconfig; sourceTree = ""; }; + 46EB2E00026AD0 /* FirebaseCoreExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.release.xcconfig; sourceTree = ""; }; + 46EB2E00026AE0 /* FirebaseCoreExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-prefix.pch"; sourceTree = ""; }; + 46EB2E00026AF0 /* FirebaseCoreExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreExtension-dummy.m"; sourceTree = ""; }; + 46EB2E00026C50 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + 46EB2E00026C60 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; + 46EB2E00026C70 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; + 46EB2E00026C80 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + 46EB2E00026CB0 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; + 46EB2E00026CC0 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; + 46EB2E00027990 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; + 46EB2E000279A0 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; + 46EB2E000279B0 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; + 46EB2E00028A70 /* FirebaseDatabase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseDatabase.debug.xcconfig; sourceTree = ""; }; + 46EB2E00028A80 /* FirebaseDatabase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseDatabase.release.xcconfig; sourceTree = ""; }; + 46EB2E00028A90 /* FirebaseDatabase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseDatabase-dummy.m"; sourceTree = ""; }; + 46EB2E00029B30 /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; + 46EB2E00029B40 /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; + 46EB2E00029B50 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; + 46EB2E00029F30 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; + 46EB2E00029F40 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; + 46EB2E00029F50 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; + 46EB2E0002A560 /* FirebaseMessaging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseMessaging.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002A570 /* FirebaseMessaging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseMessaging.release.xcconfig; sourceTree = ""; }; + 46EB2E0002A580 /* FirebaseMessaging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseMessaging-dummy.m"; sourceTree = ""; }; + 46EB2E0002A910 /* FirebaseRemoteConfig.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002A920 /* FirebaseRemoteConfig.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.release.xcconfig; sourceTree = ""; }; + 46EB2E0002A930 /* FirebaseRemoteConfig-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseRemoteConfig-dummy.m"; sourceTree = ""; }; + 46EB2E0002AC40 /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002AC50 /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; + 46EB2E0002AC60 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; + 46EB2E0002AC70 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; + 46EB2E0002AD50 /* Flipper-Boost-iOSX.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Boost-iOSX.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002AD60 /* Flipper-Boost-iOSX.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Boost-iOSX.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002AD70 /* Flipper-Boost-iOSX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Boost-iOSX-prefix.pch"; sourceTree = ""; }; + 46EB2E0002AD80 /* Flipper-Boost-iOSX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Boost-iOSX-dummy.m"; sourceTree = ""; }; + 46EB2E0002AF50 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002AF60 /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002AF70 /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; + 46EB2E0002AF80 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; + 46EB2E0002B100 /* Flipper-Fmt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Fmt.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002B110 /* Flipper-Fmt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Fmt.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002B120 /* Flipper-Fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Fmt-prefix.pch"; sourceTree = ""; }; + 46EB2E0002B130 /* Flipper-Fmt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Fmt-dummy.m"; sourceTree = ""; }; + 46EB2E0002E7D0 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002E7E0 /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002E7F0 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; + 46EB2E0002E800 /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; + 46EB2E0002E870 /* Flipper-Glog-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Flipper-Glog-xcframeworks.sh"; sourceTree = ""; }; + 46EB2E0002E880 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002E890 /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002E9B0 /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002E9C0 /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002E9D0 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; + 46EB2E0002E9E0 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; + 46EB2E0002F460 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0002F470 /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; + 46EB2E0002F480 /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; + 46EB2E0002F490 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; + 46EB2E0002FBC0 /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002FBD0 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; + 46EB2E0002FBE0 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; + 46EB2E0002FBF0 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; + 46EB2E0002FC10 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; + 46EB2E0002FC20 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; + 46EB2E0002FD50 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002FD60 /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; + 46EB2E0002FD70 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; + 46EB2E0002FDE0 /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; + 46EB2E0002FDF0 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; + 46EB2E0002FE00 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; + 46EB2E00030240 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + 46EB2E00030250 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; + 46EB2E00030260 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + 46EB2E00030790 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; + 46EB2E000307A0 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; + 46EB2E000307B0 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; + 46EB2E000307C0 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + 46EB2E000307E0 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + 46EB2E00030CB0 /* JWT.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JWT.debug.xcconfig; sourceTree = ""; }; + 46EB2E00030CC0 /* JWT.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JWT.release.xcconfig; sourceTree = ""; }; + 46EB2E00030CD0 /* JWT-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JWT-prefix.pch"; sourceTree = ""; }; + 46EB2E00030CE0 /* JWT-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JWT-dummy.m"; sourceTree = ""; }; + 46EB2E00031080 /* Libuv-gRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00031090 /* Libuv-gRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.release.xcconfig"; sourceTree = ""; }; + 46EB2E000310A0 /* Libuv-gRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-prefix.pch"; sourceTree = ""; }; + 46EB2E000310B0 /* Libuv-gRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Libuv-gRPC-dummy.m"; sourceTree = ""; }; + 46EB2E00031120 /* OpenSSL-Universal-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenSSL-Universal-xcframeworks.sh"; sourceTree = ""; }; + 46EB2E00031130 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00031140 /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; + 46EB2E00031460 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; + 46EB2E00031470 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; + 46EB2E00031480 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; + 46EB2E00031490 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; + 46EB2E000314B0 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + 46EB2E00034130 /* RCT-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00034140 /* RCT-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.release.xcconfig"; sourceTree = ""; }; + 46EB2E00034150 /* RCT-Folly.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "RCT-Folly.modulemap"; sourceTree = ""; }; + 46EB2E00034160 /* RCT-Folly-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-umbrella.h"; sourceTree = ""; }; + 46EB2E00034180 /* RCT-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-prefix.pch"; sourceTree = ""; }; + 46EB2E00034190 /* RCT-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCT-Folly-dummy.m"; sourceTree = ""; }; + 46EB2E00034200 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034210 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; + 46EB2E000342F0 /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034300 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; + 46EB2E00034310 /* RCTTypeSafety.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RCTTypeSafety.modulemap; sourceTree = ""; }; + 46EB2E00034320 /* RCTTypeSafety-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-umbrella.h"; sourceTree = ""; }; + 46EB2E00034340 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 46EB2E00034350 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 46EB2E00034430 /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034440 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; + 46EB2E00034450 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 46EB2E00034460 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + 46EB2E00034550 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034560 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; + 46EB2E00034570 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + 46EB2E00034580 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + 46EB2E00034690 /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = ""; }; + 46EB2E000346A0 /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = ""; }; + 46EB2E000346B0 /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = ""; }; + 46EB2E000346C0 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = ""; }; + 46EB2E000347D0 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; + 46EB2E000347E0 /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + 46EB2E000347F0 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 46EB2E00034800 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 46EB2E000348D0 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + 46EB2E000348E0 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; + 46EB2E000348F0 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; + 46EB2E00034900 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; + 46EB2E00034AF0 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034B00 /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; + 46EB2E00034B10 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; + 46EB2E00034B20 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; + 46EB2E00034BF0 /* RNFBAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAuth.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034C00 /* RNFBAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAuth.release.xcconfig; sourceTree = ""; }; + 46EB2E00034C10 /* RNFBAuth-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAuth-prefix.pch"; sourceTree = ""; }; + 46EB2E00034C20 /* RNFBAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAuth-dummy.m"; sourceTree = ""; }; + 46EB2E00034D30 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034D40 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; + 46EB2E00034D50 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; + 46EB2E00034D60 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; + 46EB2E00034EF0 /* RNFBDatabase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBDatabase.debug.xcconfig; sourceTree = ""; }; + 46EB2E00034F00 /* RNFBDatabase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBDatabase.release.xcconfig; sourceTree = ""; }; + 46EB2E00034F10 /* RNFBDatabase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBDatabase-prefix.pch"; sourceTree = ""; }; + 46EB2E00034F20 /* RNFBDatabase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBDatabase-dummy.m"; sourceTree = ""; }; + 46EB2E000350D0 /* RNFBFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBFirestore.debug.xcconfig; sourceTree = ""; }; + 46EB2E000350E0 /* RNFBFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBFirestore.release.xcconfig; sourceTree = ""; }; + 46EB2E000350F0 /* RNFBFirestore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBFirestore-prefix.pch"; sourceTree = ""; }; + 46EB2E00035100 /* RNFBFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBFirestore-dummy.m"; sourceTree = ""; }; + 46EB2E00035270 /* RNFBMessaging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBMessaging.debug.xcconfig; sourceTree = ""; }; + 46EB2E00035280 /* RNFBMessaging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBMessaging.release.xcconfig; sourceTree = ""; }; + 46EB2E00035290 /* RNFBMessaging-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBMessaging-prefix.pch"; sourceTree = ""; }; + 46EB2E000352A0 /* RNFBMessaging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBMessaging-dummy.m"; sourceTree = ""; }; + 46EB2E00035370 /* RNFBRemoteConfig.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBRemoteConfig.debug.xcconfig; sourceTree = ""; }; + 46EB2E00035380 /* RNFBRemoteConfig.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBRemoteConfig.release.xcconfig; sourceTree = ""; }; + 46EB2E00035390 /* RNFBRemoteConfig-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBRemoteConfig-prefix.pch"; sourceTree = ""; }; + 46EB2E000353A0 /* RNFBRemoteConfig-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBRemoteConfig-dummy.m"; sourceTree = ""; }; + 46EB2E000354D0 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; + 46EB2E000354E0 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; + 46EB2E000354F0 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 46EB2E00035500 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 46EB2E00035890 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; + 46EB2E000358A0 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + 46EB2E000358B0 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 46EB2E000358C0 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 46EB2E00035990 /* RNRate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRate.debug.xcconfig; sourceTree = ""; }; + 46EB2E000359A0 /* RNRate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRate.release.xcconfig; sourceTree = ""; }; + 46EB2E000359B0 /* RNRate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRate-prefix.pch"; sourceTree = ""; }; + 46EB2E000359C0 /* RNRate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRate-dummy.m"; sourceTree = ""; }; + 46EB2E00036250 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; + 46EB2E00036260 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; + 46EB2E00036270 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 46EB2E00036280 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 46EB2E00036B80 /* RNSVG.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNSVG.debug.xcconfig; sourceTree = ""; }; + 46EB2E00036B90 /* RNSVG.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNSVG.release.xcconfig; sourceTree = ""; }; + 46EB2E00036BA0 /* RNSVG-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNSVG-prefix.pch"; sourceTree = ""; }; + 46EB2E00036BB0 /* RNSVG-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNSVG-dummy.m"; sourceTree = ""; }; + 46EB2E00036E50 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; + 46EB2E00036E60 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; + 46EB2E00036E70 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 46EB2E00036E80 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 46EB2E000370B0 /* RNShare.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNShare.debug.xcconfig; sourceTree = ""; }; + 46EB2E000370C0 /* RNShare.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNShare.release.xcconfig; sourceTree = ""; }; + 46EB2E000370D0 /* RNShare-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNShare-prefix.pch"; sourceTree = ""; }; + 46EB2E000370E0 /* RNShare-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNShare-dummy.m"; sourceTree = ""; }; + 46EB2E000371B0 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; + 46EB2E000371C0 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + 46EB2E000371D0 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 46EB2E000371E0 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 46EB2E00037250 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; + 46EB2E00037260 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + 46EB2E00037320 /* React-Codegen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Codegen.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00037330 /* React-Codegen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Codegen.release.xcconfig"; sourceTree = ""; }; + 46EB2E00037340 /* React-Codegen.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Codegen.modulemap"; sourceTree = ""; }; + 46EB2E00037350 /* React-Codegen-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Codegen-umbrella.h"; sourceTree = ""; }; + 46EB2E00037370 /* React-Codegen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Codegen-prefix.pch"; sourceTree = ""; }; + 46EB2E00037380 /* React-Codegen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Codegen-dummy.m"; sourceTree = ""; }; + 46EB2E000374C0 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; + 46EB2E00038DD0 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00038DE0 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; + 46EB2E00038DF0 /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = ""; }; + 46EB2E00038E00 /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = ""; }; + 46EB2E00038E20 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 46EB2E00038E30 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 46EB2E000390B0 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; + 46EB2E000390C0 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + 46EB2E000390D0 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 46EB2E000390E0 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 46EB2E00039150 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039160 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; + 46EB2E000394F0 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039500 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039510 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 46EB2E00039520 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 46EB2E00039650 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039660 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039670 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 46EB2E00039680 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 46EB2E00039840 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039850 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039860 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 46EB2E00039870 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 46EB2E00039940 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039950 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039960 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 46EB2E00039970 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 46EB2E00039A80 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039A90 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039AA0 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 46EB2E00039AB0 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 46EB2E00039B80 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00039B90 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; + 46EB2E00039BA0 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 46EB2E00039BB0 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 46EB2E00039FF0 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A000 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A010 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 46EB2E0003A020 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 46EB2E0003A0F0 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A100 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A110 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 46EB2E0003A120 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 46EB2E0003A2D0 /* React-bridging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-bridging.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A2E0 /* React-bridging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-bridging.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A2F0 /* React-bridging-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-bridging-prefix.pch"; sourceTree = ""; }; + 46EB2E0003A300 /* React-bridging-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-bridging-dummy.m"; sourceTree = ""; }; + 46EB2E0003A370 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A380 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A630 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A640 /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A650 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 46EB2E0003A660 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 46EB2E0003A930 /* React-hermes.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-hermes.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003A940 /* React-hermes.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-hermes.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003A950 /* React-hermes-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-hermes-prefix.pch"; sourceTree = ""; }; + 46EB2E0003A960 /* React-hermes-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-hermes-dummy.m"; sourceTree = ""; }; + 46EB2E0003AAE0 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AAF0 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003AB00 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 46EB2E0003AB10 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 46EB2E0003AC00 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AC10 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003AC20 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 46EB2E0003AC30 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 46EB2E0003AD00 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AD10 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003AD20 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 46EB2E0003AD30 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 46EB2E0003AE00 /* React-logger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-logger.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AE10 /* React-logger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-logger.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003AE20 /* React-logger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-logger-prefix.pch"; sourceTree = ""; }; + 46EB2E0003AE30 /* React-logger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-logger-dummy.m"; sourceTree = ""; }; + 46EB2E0003AF10 /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AF20 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003AF30 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = ""; }; + 46EB2E0003AF40 /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = ""; }; + 46EB2E0003AFB0 /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = ""; }; + 46EB2E0003AFC0 /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = ""; }; + 46EB2E0003B170 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003B180 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; + 46EB2E0003B190 /* ReactCommon.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ReactCommon.modulemap; sourceTree = ""; }; + 46EB2E0003B1A0 /* ReactCommon-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-umbrella.h"; sourceTree = ""; }; + 46EB2E0003B1C0 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 46EB2E0003B1D0 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 46EB2E0003BB60 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003BB70 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; + 46EB2E0003BB80 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + 46EB2E0003BB90 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 46EB2E0003BCB0 /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003BCC0 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; + 46EB2E0003BCD0 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; + 46EB2E0003BCE0 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; + 46EB2E0003BFA0 /* SSZipArchive.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003BFB0 /* SSZipArchive.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.release.xcconfig; sourceTree = ""; }; + 46EB2E0003BFC0 /* SSZipArchive.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SSZipArchive.modulemap; sourceTree = ""; }; + 46EB2E0003BFD0 /* SSZipArchive-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-umbrella.h"; sourceTree = ""; }; + 46EB2E0003BFF0 /* SSZipArchive-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-prefix.pch"; sourceTree = ""; }; + 46EB2E0003C000 /* SSZipArchive-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSZipArchive-dummy.m"; sourceTree = ""; }; + 46EB2E0003C340 /* SocketRocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003C350 /* SocketRocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.release.xcconfig; sourceTree = ""; }; + 46EB2E0003C360 /* SocketRocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-prefix.pch"; sourceTree = ""; }; + 46EB2E0003C370 /* SocketRocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SocketRocket-dummy.m"; sourceTree = ""; }; + 46EB2E0003C600 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003C610 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; + 46EB2E0003C620 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + 46EB2E0003C630 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 46EB2E0003C650 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 46EB2E0003C660 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 46EB2E0003C770 /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003C780 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; + 46EB2E0003C790 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; + 46EB2E0003C7A0 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; + 46EB2E0003C7D0 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; + 46EB2E0003C7E0 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; + 46EB2E0003DCB0 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003DCC0 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; + 46EB2E0003DCD0 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; + 46EB2E0003DCE0 /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; + 46EB2E0003DD50 /* boost.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = boost.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003DD60 /* boost.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = boost.release.xcconfig; sourceTree = ""; }; + 46EB2E0003DED0 /* fmt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = fmt.debug.xcconfig; sourceTree = ""; }; + 46EB2E0003DEE0 /* fmt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = fmt.release.xcconfig; sourceTree = ""; }; + 46EB2E0003DEF0 /* fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "fmt-prefix.pch"; sourceTree = ""; }; + 46EB2E0003DF00 /* fmt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "fmt-dummy.m"; sourceTree = ""; }; + 46EB2E0003E040 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; + 46EB2E00041460 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00041470 /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; + 46EB2E00041480 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; + 46EB2E00041490 /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; + 46EB2E00046C90 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00046CA0 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; + 46EB2E00046CB0 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; + 46EB2E00046CC0 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; + 46EB2E00046E30 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; + 46EB2E00046E40 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; + 46EB2E00046E50 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 46EB2E00046E60 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; + 46EB2E00046ED0 /* hermes-engine-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "hermes-engine-xcframeworks.sh"; sourceTree = ""; }; + 46EB2E00046EE0 /* hermes-engine.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00046EF0 /* hermes-engine.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.release.xcconfig"; sourceTree = ""; }; + 46EB2E00047580 /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00047590 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; + 46EB2E000475A0 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; + 46EB2E000475B0 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; + 46EB2E00047990 /* libevent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.debug.xcconfig; sourceTree = ""; }; + 46EB2E000479A0 /* libevent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.release.xcconfig; sourceTree = ""; }; + 46EB2E000479B0 /* libevent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libevent-prefix.pch"; sourceTree = ""; }; + 46EB2E000479C0 /* libevent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libevent-dummy.m"; sourceTree = ""; }; + 46EB2E00048460 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; + 46EB2E00048470 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; + 46EB2E00048480 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + 46EB2E00048490 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; + 46EB2E000485B0 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; + 46EB2E000485C0 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; + 46EB2E000485D0 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 46EB2E000485E0 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; + 46EB2E000486D0 /* react-native-config.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-config.debug.xcconfig"; sourceTree = ""; }; + 46EB2E000486E0 /* react-native-config.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-config.release.xcconfig"; sourceTree = ""; }; + 46EB2E000486F0 /* react-native-config-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-config-prefix.pch"; sourceTree = ""; }; + 46EB2E00048700 /* react-native-config-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-config-dummy.m"; sourceTree = ""; }; + 46EB2E00048810 /* react-native-flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-flipper.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00048820 /* react-native-flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-flipper.release.xcconfig"; sourceTree = ""; }; + 46EB2E00048830 /* react-native-flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-flipper-prefix.pch"; sourceTree = ""; }; + 46EB2E00048840 /* react-native-flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-flipper-dummy.m"; sourceTree = ""; }; + 46EB2E00048990 /* react-native-pdf.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-pdf.debug.xcconfig"; sourceTree = ""; }; + 46EB2E000489A0 /* react-native-pdf.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-pdf.release.xcconfig"; sourceTree = ""; }; + 46EB2E000489B0 /* react-native-pdf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-pdf-prefix.pch"; sourceTree = ""; }; + 46EB2E000489C0 /* react-native-pdf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-pdf-dummy.m"; sourceTree = ""; }; + 46EB2E00048BB0 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00048BC0 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; + 46EB2E00048BD0 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + 46EB2E00048BE0 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 46EB2E00048CF0 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00048D00 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; + 46EB2E00048D10 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 46EB2E00048D20 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 46EB2E00048DD0 /* Pods-Hurt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Hurt.release.xcconfig"; sourceTree = ""; }; + 46EB2E00048DE0 /* Pods-Hurt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Hurt.debug.xcconfig"; sourceTree = ""; }; + 46EB2E00048DF0 /* Pods-Hurt.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Hurt.modulemap"; sourceTree = ""; }; + 46EB2E00048E00 /* Pods-Hurt-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Hurt-umbrella.h"; sourceTree = ""; }; + 46EB2E00048E20 /* Pods-Hurt-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Hurt-frameworks.sh"; sourceTree = ""; }; + 46EB2E00048E30 /* Pods-Hurt-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Hurt-resources.sh"; sourceTree = ""; }; + 46EB2E00048E40 /* Pods-Hurt-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Hurt-acknowledgements.plist"; sourceTree = ""; }; + 46EB2E00048E50 /* Pods-Hurt-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Hurt-acknowledgements.markdown"; sourceTree = ""; }; + 46EB2E00048E60 /* Pods-Hurt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Hurt-dummy.m"; sourceTree = ""; }; 484E6781D8E6CE2FB8F6C8D7C9578D97 /* RNShare */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNShare; path = libRNShare.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* RNScreens */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNScreens; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "BoringSSL-GRPC"; path = "libBoringSSL-GRPC.a"; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -20331,6 +20301,7 @@ 8998273719FDD789E6F9C7541AFD0B33 /* RNVectorIcons */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNVectorIcons; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8C1EA40EBD30D734BFD7F4BC6E754BB9 /* RNFBMessaging */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNFBMessaging; path = libRNFBMessaging.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CC9178C366942FD6FF6A115604EAD58 /* FirebaseCoreDiagnostics */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FirebaseCoreDiagnostics; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8DF63376066E2275FF26820B3A512A9B /* react-native-webview */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "react-native-webview"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8F65F9361F2069CF9E9D751272968DE4 /* RNGestureHandler */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNGestureHandler; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8FD3DD8368ED4B6E773ABAA49C117D42 /* Flipper-Boost-iOSX */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Boost-iOSX"; path = "libFlipper-Boost-iOSX.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 90EE8D3C082C157169540FC8F5913DAD /* RNSVG */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNSVG; path = libRNSVG.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -20380,672 +20351,679 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 46EB2E00022B50 /* Frameworks */ = { + 46EB2E00022A70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022C90 /* Frameworks */ = { + 46EB2E00022BB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022D90 /* Frameworks */ = { + 46EB2E00022CB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024C10 /* Frameworks */ = { + 46EB2E00024B30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024D30 /* Frameworks */ = { + 46EB2E00024C50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024EC0 /* Frameworks */ = { + 46EB2E00024DE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00025210 /* Frameworks */ = { + 46EB2E00025130 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00025510 /* Frameworks */ = { + 46EB2E00025430 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000265E0 /* Frameworks */ = { + 46EB2E00026500 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026980 /* Frameworks */ = { + 46EB2E000268A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026AB0 /* Frameworks */ = { + 46EB2E000269D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026C60 /* Frameworks */ = { + 46EB2E00026B80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026E30 /* Frameworks */ = { + 46EB2E00026D50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00027B20 /* Frameworks */ = { + 46EB2E00027A40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00028C00 /* Frameworks */ = { + 46EB2E00028B20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00029CC0 /* Frameworks */ = { + 46EB2E00029BE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002A0C0 /* Frameworks */ = { + 46EB2E00029FE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002A6F0 /* Frameworks */ = { + 46EB2E0002A610 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002AAA0 /* Frameworks */ = { + 46EB2E0002A9C0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002ADE0 /* Frameworks */ = { + 46EB2E0002AD00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002AEF0 /* Frameworks */ = { + 46EB2E0002AE10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B0F0 /* Frameworks */ = { + 46EB2E0002B010 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B2A0 /* Frameworks */ = { + 46EB2E0002B1C0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002E9F0 /* Frameworks */ = { + 46EB2E0002E910 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002EB50 /* Frameworks */ = { + 46EB2E0002EA70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002F600 /* Frameworks */ = { + 46EB2E0002F520 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002FD90 /* Frameworks */ = { + 46EB2E0002FCB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002FF60 /* Frameworks */ = { + 46EB2E0002FE80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000303D0 /* Frameworks */ = { + 46EB2E000302F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00030950 /* Frameworks */ = { + 46EB2E00030870 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00030FE0 /* Frameworks */ = { + 46EB2E00030D70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00031430 /* Frameworks */ = { + 46EB2E000311C0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000317B0 /* Frameworks */ = { + 46EB2E00031540 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034500 /* Frameworks */ = { + 46EB2E00034290 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034650 /* Frameworks */ = { + 46EB2E000343E0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034760 /* Frameworks */ = { + 46EB2E000344F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034880 /* Frameworks */ = { + 46EB2E00034610 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000349C0 /* Frameworks */ = { + 46EB2E00034750 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034B00 /* Frameworks */ = { + 46EB2E00034890 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034C00 /* Frameworks */ = { + 46EB2E00034990 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034E20 /* Frameworks */ = { + 46EB2E00034BB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034F20 /* Frameworks */ = { + 46EB2E00034CB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035060 /* Frameworks */ = { + 46EB2E00034DF0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035220 /* Frameworks */ = { + 46EB2E00034FB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035400 /* Frameworks */ = { + 46EB2E00035190 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000355A0 /* Frameworks */ = { + 46EB2E00035330 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000356A0 /* Frameworks */ = { + 46EB2E00035430 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035800 /* Frameworks */ = { + 46EB2E00035590 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035BC0 /* Frameworks */ = { + 46EB2E00035950 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035CC0 /* Frameworks */ = { + 46EB2E00035A50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00036580 /* Frameworks */ = { + 46EB2E00036310 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00036EB0 /* Frameworks */ = { + 46EB2E00036C40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037180 /* Frameworks */ = { + 46EB2E00036F10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000373E0 /* Frameworks */ = { + 46EB2E00037170 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037550 /* Frameworks */ = { + 46EB2E000372E0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037680 /* Frameworks */ = { + 46EB2E00037410 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000376F0 /* Frameworks */ = { + 46EB2E00037480 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039130 /* Frameworks */ = { + 46EB2E00038EC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039450 /* Frameworks */ = { + 46EB2E000391E0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039820 /* Frameworks */ = { + 46EB2E000395B0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039980 /* Frameworks */ = { + 46EB2E00039710 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039B70 /* Frameworks */ = { + 46EB2E00039900 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039C70 /* Frameworks */ = { + 46EB2E00039A00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039DB0 /* Frameworks */ = { + 46EB2E00039B40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039EB0 /* Frameworks */ = { + 46EB2E00039C40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A320 /* Frameworks */ = { + 46EB2E0003A0B0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A420 /* Frameworks */ = { + 46EB2E0003A1B0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A670 /* Frameworks */ = { + 46EB2E0003A400 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A960 /* Frameworks */ = { + 46EB2E0003A6F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AC60 /* Frameworks */ = { + 46EB2E0003A9F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AE10 /* Frameworks */ = { + 46EB2E0003ABA0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AF30 /* Frameworks */ = { + 46EB2E0003ACC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B030 /* Frameworks */ = { + 46EB2E0003ADC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B130 /* Frameworks */ = { + 46EB2E0003AEC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B2B0 /* Frameworks */ = { + 46EB2E0003B040 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B4D0 /* Frameworks */ = { + 46EB2E0003B260 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003BE90 /* Frameworks */ = { + 46EB2E0003BC20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003BFE0 /* Frameworks */ = { + 46EB2E0003BD70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003C300 /* Frameworks */ = { + 46EB2E0003C090 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003C670 /* Frameworks */ = { + 46EB2E0003C400 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003C960 /* Frameworks */ = { + 46EB2E0003C6F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003CAE0 /* Frameworks */ = { + 46EB2E0003C870 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E050 /* Frameworks */ = { + 46EB2E0003DDE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E200 /* Frameworks */ = { + 46EB2E0003DF90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E270 /* Frameworks */ = { + 46EB2E0003E000 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00041790 /* Frameworks */ = { + 46EB2E00041520 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00046FC0 /* Frameworks */ = { + 46EB2E00046D50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000471E0 /* Frameworks */ = { + 46EB2E00046F70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000478B0 /* Frameworks */ = { + 46EB2E00047640 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00047CC0 /* Frameworks */ = { + 46EB2E00047A50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048790 /* Frameworks */ = { + 46EB2E00048520 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00048670 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000488E0 /* Frameworks */ = { + 46EB2E00048790 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048A00 /* Frameworks */ = { + 46EB2E000488D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048B40 /* Frameworks */ = { + 46EB2E00048A50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048CC0 /* Frameworks */ = { + 46EB2E00048C70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048EE0 /* Frameworks */ = { + 46EB2E00048DB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -21058,7 +21036,7 @@ 46EB2E00000010 = { isa = PBXGroup; children = ( - 46EB2E00000760 /* Podfile */, + 46EB2E00000770 /* Podfile */, 46EB2E00000090 /* Development Pods */, 46EB2E00000060 /* Frameworks */, 46EB2E00000080 /* Pods */, @@ -21111,7 +21089,7 @@ 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */, 5E4674603A5D5B9215FFA0F8E69F8B71 /* libwebp */, 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, - 2A2CA8ECD2FE74426FEB496F6125C735 /* libPods-Hurt.a */, + 2A2CA8ECD2FE74426FEB496F6125C735 /* Pods-Hurt */, 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, 1936453FF2A7E3A13063C4917C4D5598 /* RCT-Folly */, F958876A082BF810B342435CE3FB5AF6 /* RCTTypeSafety */, @@ -21130,6 +21108,7 @@ FBDF68F56E3CE4F16A2EF4D1BCBB1A11 /* react-native-flipper */, A1EAA80E5B66229087E18E7F02A0B9B1 /* react-native-pdf */, 52FCF98CEFF94C742080B6965D537AD0 /* react-native-safe-area-context */, + 8DF63376066E2275FF26820B3A512A9B /* react-native-webview */, 666E72807891C591E025A75410CD2A26 /* React-perflogger */, FE7B9294FF05AAFD1653E2104E10844A /* React-RCTAnimation */, F71EBF73F354B475D465FF6DE9A66707 /* React-RCTBlob */, @@ -21180,7 +21159,7 @@ 46EB2E00000070 /* Targets Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048EF0 /* Pods-Hurt */, + 46EB2E00048DC0 /* Pods-Hurt */, ); name = "Targets Support Files"; sourceTree = ""; @@ -21269,6 +21248,7 @@ 46EB2E00000730 /* react-native-flipper */, 46EB2E00000740 /* react-native-pdf */, 46EB2E00000750 /* react-native-safe-area-context */, + 46EB2E00000760 /* react-native-webview */, 46EB2E000005E0 /* React-perflogger */, 46EB2E000004D0 /* React-RCTActionSheet */, 46EB2E000004E0 /* React-RCTAnimation */, @@ -21309,14 +21289,14 @@ 46EB2E000000B0 /* BVLinearGradient */ = { isa = PBXGroup; children = ( - 46EB2E00000770 /* BVLinearGradient.h */, - 46EB2E00000780 /* BVLinearGradient.m */, - 46EB2E00000790 /* BVLinearGradientLayer.h */, - 46EB2E000007A0 /* BVLinearGradientLayer.m */, - 46EB2E000007B0 /* BVLinearGradientManager.h */, - 46EB2E000007C0 /* BVLinearGradientManager.m */, - 46EB2E00022080 /* Pod */, - 46EB2E00022BC0 /* Support Files */, + 46EB2E00000780 /* BVLinearGradient.h */, + 46EB2E00000790 /* BVLinearGradient.m */, + 46EB2E000007A0 /* BVLinearGradientLayer.h */, + 46EB2E000007B0 /* BVLinearGradientLayer.m */, + 46EB2E000007C0 /* BVLinearGradientManager.h */, + 46EB2E000007D0 /* BVLinearGradientManager.m */, + 46EB2E00021F60 /* Pod */, + 46EB2E00022AE0 /* Support Files */, ); name = BVLinearGradient; path = "../../node_modules/react-native-linear-gradient"; @@ -21325,51 +21305,54 @@ 46EB2E000000C0 /* Base64 */ = { isa = PBXGroup; children = ( - 46EB2E000007D0 /* MF_Base64Additions.h */, - 46EB2E000007E0 /* MF_Base64Additions.m */, - 46EB2E00022CC0 /* Support Files */, + 46EB2E000007E0 /* MF_Base64Additions.h */, + 46EB2E000007F0 /* MF_Base64Additions.m */, + 46EB2E00022BE0 /* Support Files */, ); + name = Base64; path = Base64; sourceTree = ""; }; 46EB2E000000D0 /* BoringSSL-GRPC */ = { isa = PBXGroup; children = ( - 46EB2E000007F0 /* Implementation */, - 46EB2E00002090 /* Interface */, - 46EB2E00024B40 /* Support Files */, + 46EB2E00000800 /* Implementation */, + 46EB2E000020A0 /* Interface */, + 46EB2E00024A60 /* Support Files */, ); + name = "BoringSSL-GRPC"; path = "BoringSSL-GRPC"; sourceTree = ""; }; 46EB2E000000E0 /* CocoaAsyncSocket */ = { isa = PBXGroup; children = ( - 46EB2E000025B0 /* GCDAsyncSocket.h */, - 46EB2E000025C0 /* GCDAsyncSocket.m */, - 46EB2E000025D0 /* GCDAsyncUdpSocket.h */, - 46EB2E000025E0 /* GCDAsyncUdpSocket.m */, - 46EB2E00024C60 /* Support Files */, + 46EB2E000025C0 /* GCDAsyncSocket.h */, + 46EB2E000025D0 /* GCDAsyncSocket.m */, + 46EB2E000025E0 /* GCDAsyncUdpSocket.h */, + 46EB2E000025F0 /* GCDAsyncUdpSocket.m */, + 46EB2E00024B80 /* Support Files */, ); + name = CocoaAsyncSocket; path = CocoaAsyncSocket; sourceTree = ""; }; 46EB2E000000F0 /* CodePush */ = { isa = PBXGroup; children = ( - 46EB2E000025F0 /* CodePush.h */, - 46EB2E00002600 /* CodePush.m */, - 46EB2E00002610 /* CodePushConfig.m */, - 46EB2E00002620 /* CodePushDownloadHandler.m */, - 46EB2E00002630 /* CodePushErrorUtils.m */, - 46EB2E00002640 /* CodePushPackage.m */, - 46EB2E00002650 /* CodePushTelemetryManager.m */, - 46EB2E00002660 /* CodePushUpdateUtils.m */, - 46EB2E00002670 /* CodePushUtils.m */, - 46EB2E00002680 /* RCTConvert+CodePushInstallMode.m */, - 46EB2E00002690 /* RCTConvert+CodePushUpdateState.m */, - 46EB2E000220C0 /* Pod */, - 46EB2E00024DF0 /* Support Files */, + 46EB2E00002600 /* CodePush.h */, + 46EB2E00002610 /* CodePush.m */, + 46EB2E00002620 /* CodePushConfig.m */, + 46EB2E00002630 /* CodePushDownloadHandler.m */, + 46EB2E00002640 /* CodePushErrorUtils.m */, + 46EB2E00002650 /* CodePushPackage.m */, + 46EB2E00002660 /* CodePushTelemetryManager.m */, + 46EB2E00002670 /* CodePushUpdateUtils.m */, + 46EB2E00002680 /* CodePushUtils.m */, + 46EB2E00002690 /* RCTConvert+CodePushInstallMode.m */, + 46EB2E000026A0 /* RCTConvert+CodePushUpdateState.m */, + 46EB2E00021FA0 /* Pod */, + 46EB2E00024D10 /* Support Files */, ); name = CodePush; path = "../../node_modules/react-native-code-push"; @@ -21378,36 +21361,37 @@ 46EB2E00000100 /* DoubleConversion */ = { isa = PBXGroup; children = ( - 46EB2E000026C0 /* bignum.cc */, - 46EB2E000026D0 /* bignum.h */, - 46EB2E000026A0 /* bignum-dtoa.cc */, - 46EB2E000026B0 /* bignum-dtoa.h */, - 46EB2E000026E0 /* cached-powers.cc */, - 46EB2E000026F0 /* cached-powers.h */, - 46EB2E00002700 /* diy-fp.cc */, - 46EB2E00002710 /* diy-fp.h */, - 46EB2E00002720 /* double-conversion.cc */, - 46EB2E00002730 /* double-conversion.h */, - 46EB2E00002740 /* fast-dtoa.cc */, - 46EB2E00002750 /* fast-dtoa.h */, - 46EB2E00002760 /* fixed-dtoa.cc */, - 46EB2E00002770 /* fixed-dtoa.h */, - 46EB2E00002780 /* ieee.h */, - 46EB2E00002790 /* strtod.cc */, - 46EB2E000027A0 /* strtod.h */, - 46EB2E000027B0 /* utils.h */, - 46EB2E00024FF0 /* Support Files */, + 46EB2E000026D0 /* bignum.cc */, + 46EB2E000026E0 /* bignum.h */, + 46EB2E000026B0 /* bignum-dtoa.cc */, + 46EB2E000026C0 /* bignum-dtoa.h */, + 46EB2E000026F0 /* cached-powers.cc */, + 46EB2E00002700 /* cached-powers.h */, + 46EB2E00002710 /* diy-fp.cc */, + 46EB2E00002720 /* diy-fp.h */, + 46EB2E00002730 /* double-conversion.cc */, + 46EB2E00002740 /* double-conversion.h */, + 46EB2E00002750 /* fast-dtoa.cc */, + 46EB2E00002760 /* fast-dtoa.h */, + 46EB2E00002770 /* fixed-dtoa.cc */, + 46EB2E00002780 /* fixed-dtoa.h */, + 46EB2E00002790 /* ieee.h */, + 46EB2E000027A0 /* strtod.cc */, + 46EB2E000027B0 /* strtod.h */, + 46EB2E000027C0 /* utils.h */, + 46EB2E00024F10 /* Support Files */, ); + name = DoubleConversion; path = DoubleConversion; sourceTree = ""; }; 46EB2E00000110 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 46EB2E000027C0 /* FBLazyIterator.h */, - 46EB2E000027D0 /* FBLazyVector.h */, - 46EB2E00022180 /* Pod */, - 46EB2E00025090 /* Support Files */, + 46EB2E000027D0 /* FBLazyIterator.h */, + 46EB2E000027E0 /* FBLazyVector.h */, + 46EB2E00022060 /* Pod */, + 46EB2E00024FB0 /* Support Files */, ); name = FBLazyVector; path = "../../node_modules/react-native/Libraries/FBLazyVector"; @@ -21416,8 +21400,8 @@ 46EB2E00000120 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - 46EB2E000221A0 /* Pod */, - 46EB2E00025100 /* Support Files */, + 46EB2E00022080 /* Pod */, + 46EB2E00025020 /* Support Files */, ); name = FBReactNativeSpec; path = "../../node_modules/react-native/React/FBReactNativeSpec"; @@ -21426,3119 +21410,3126 @@ 46EB2E00000130 /* Firebase */ = { isa = PBXGroup; children = ( - 46EB2E000027E0 /* CoreOnly */, - 46EB2E00025170 /* Support Files */, + 46EB2E000027F0 /* CoreOnly */, + 46EB2E00025090 /* Support Files */, ); + name = Firebase; path = Firebase; sourceTree = ""; }; 46EB2E00000140 /* FirebaseABTesting */ = { isa = PBXGroup; children = ( - 46EB2E00002800 /* ABTConditionalUserPropertyController.h */, - 46EB2E00002810 /* ABTConditionalUserPropertyController.m */, - 46EB2E00002820 /* ABTConstants.h */, - 46EB2E00002860 /* ABTExperimentPayload.h */, - 46EB2E00002830 /* ABTExperimentPayload.m */, - 46EB2E000028B0 /* FIRAnalyticsInterop.h */, - 46EB2E000028C0 /* FIRAnalyticsInteropListener.h */, - 46EB2E000028F0 /* FIRAppInternal.h */, - 46EB2E00002900 /* FIRComponent.h */, - 46EB2E00002910 /* FIRComponentContainer.h */, - 46EB2E00002920 /* FIRComponentType.h */, - 46EB2E00002930 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00002940 /* FIRDependency.h */, - 46EB2E00002880 /* FirebaseABTesting.h */, - 46EB2E00002870 /* FirebaseABTestingInternal.h */, - 46EB2E00002950 /* FirebaseCoreInternal.h */, - 46EB2E00002890 /* FIRExperimentController.h */, - 46EB2E00002840 /* FIRExperimentController.m */, - 46EB2E00002960 /* FIRHeartbeatInfo.h */, - 46EB2E00002970 /* FIRHeartbeatLogger.h */, - 46EB2E000028D0 /* FIRInteropEventNames.h */, - 46EB2E000028E0 /* FIRInteropParameterNames.h */, - 46EB2E00002980 /* FIRLibrary.h */, - 46EB2E000028A0 /* FIRLifecycleEvents.h */, - 46EB2E00002850 /* FIRLifecycleEvents.m */, - 46EB2E00002990 /* FIRLogger.h */, - 46EB2E000029A0 /* FIROptionsInternal.h */, - 46EB2E000253D0 /* Support Files */, + 46EB2E00002810 /* ABTConditionalUserPropertyController.h */, + 46EB2E00002820 /* ABTConditionalUserPropertyController.m */, + 46EB2E00002830 /* ABTConstants.h */, + 46EB2E00002870 /* ABTExperimentPayload.h */, + 46EB2E00002840 /* ABTExperimentPayload.m */, + 46EB2E000028C0 /* FIRAnalyticsInterop.h */, + 46EB2E000028D0 /* FIRAnalyticsInteropListener.h */, + 46EB2E00002900 /* FIRAppInternal.h */, + 46EB2E00002910 /* FIRComponent.h */, + 46EB2E00002920 /* FIRComponentContainer.h */, + 46EB2E00002930 /* FIRComponentType.h */, + 46EB2E00002940 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00002950 /* FIRDependency.h */, + 46EB2E00002890 /* FirebaseABTesting.h */, + 46EB2E00002880 /* FirebaseABTestingInternal.h */, + 46EB2E00002960 /* FirebaseCoreInternal.h */, + 46EB2E000028A0 /* FIRExperimentController.h */, + 46EB2E00002850 /* FIRExperimentController.m */, + 46EB2E00002970 /* FIRHeartbeatInfo.h */, + 46EB2E00002980 /* FIRHeartbeatLogger.h */, + 46EB2E000028E0 /* FIRInteropEventNames.h */, + 46EB2E000028F0 /* FIRInteropParameterNames.h */, + 46EB2E00002990 /* FIRLibrary.h */, + 46EB2E000028B0 /* FIRLifecycleEvents.h */, + 46EB2E00002860 /* FIRLifecycleEvents.m */, + 46EB2E000029A0 /* FIRLogger.h */, + 46EB2E000029B0 /* FIROptionsInternal.h */, + 46EB2E000252F0 /* Support Files */, ); + name = FirebaseABTesting; path = FirebaseABTesting; sourceTree = ""; }; 46EB2E00000150 /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - 46EB2E00021E60 /* AdIdSupport */, - 46EB2E00025460 /* Support Files */, + 46EB2E00021D40 /* AdIdSupport */, + 46EB2E00025380 /* Support Files */, ); + name = FirebaseAnalytics; path = FirebaseAnalytics; sourceTree = ""; }; 46EB2E00000160 /* FirebaseAuth */ = { isa = PBXGroup; children = ( - 46EB2E00003420 /* FIRActionCodeSettings.h */, - 46EB2E000029B0 /* FIRActionCodeSettings.m */, - 46EB2E00003430 /* FIRAdditionalUserInfo.h */, - 46EB2E00003750 /* FIRAdditionalUserInfo.m */, - 46EB2E00003760 /* FIRAdditionalUserInfo_Internal.h */, - 46EB2E000038E0 /* FIRAppInternal.h */, - 46EB2E00003440 /* FIRAuth.h */, - 46EB2E000029C0 /* FIRAuth.m */, - 46EB2E00002A90 /* FIRAuth_Internal.h */, - 46EB2E00003670 /* FIRAuthAPNSToken.h */, - 46EB2E00003680 /* FIRAuthAPNSToken.m */, - 46EB2E00003690 /* FIRAuthAPNSTokenManager.h */, - 46EB2E000036A0 /* FIRAuthAPNSTokenManager.m */, - 46EB2E00003450 /* FIRAuthAPNSTokenType.h */, - 46EB2E000036B0 /* FIRAuthAppCredential.h */, - 46EB2E000036C0 /* FIRAuthAppCredential.m */, - 46EB2E000036D0 /* FIRAuthAppCredentialManager.h */, - 46EB2E000036E0 /* FIRAuthAppCredentialManager.m */, - 46EB2E00002C70 /* FIRAuthBackend.h */, - 46EB2E00002C80 /* FIRAuthBackend.m */, - 46EB2E00002C50 /* FIRAuthBackend+MultiFactor.h */, - 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.m */, - 46EB2E00003460 /* FIRAuthCredential.h */, - 46EB2E00002B00 /* FIRAuthCredential.m */, - 46EB2E00002B10 /* FIRAuthCredential_Internal.h */, - 46EB2E00003470 /* FIRAuthDataResult.h */, - 46EB2E000029D0 /* FIRAuthDataResult.m */, - 46EB2E000029E0 /* FIRAuthDataResult_Internal.h */, - 46EB2E000037D0 /* FIRAuthDefaultUIDelegate.h */, - 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.m */, - 46EB2E000029F0 /* FIRAuthDispatcher.h */, - 46EB2E00002A00 /* FIRAuthDispatcher.m */, - 46EB2E00003480 /* FIRAuthErrors.h */, - 46EB2E000037F0 /* FIRAuthErrorUtils.h */, - 46EB2E00003800 /* FIRAuthErrorUtils.m */, - 46EB2E00003810 /* FIRAuthExceptionUtils.h */, - 46EB2E00003820 /* FIRAuthExceptionUtils.m */, - 46EB2E00002A10 /* FIRAuthGlobalWorkQueue.h */, - 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.m */, - 46EB2E00003830 /* FIRAuthInternalErrors.h */, - 46EB2E000039A0 /* FIRAuthInterop.h */, - 46EB2E00003630 /* FIRAuthKeychainServices.h */, - 46EB2E00003640 /* FIRAuthKeychainServices.m */, - 46EB2E000036F0 /* FIRAuthNotificationManager.h */, - 46EB2E00003700 /* FIRAuthNotificationManager.m */, - 46EB2E00002A30 /* FIRAuthOperationType.h */, - 46EB2E00003270 /* FIRAuthProto.h */, - 46EB2E000032A0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, - 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, - 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, - 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, - 46EB2E00003280 /* FIRAuthProtoMFAEnrollment.h */, - 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.m */, - 46EB2E000032E0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, - 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, - 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, - 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, - 46EB2E00002B20 /* FIRAuthProvider.m */, - 46EB2E00002C90 /* FIRAuthRequestConfiguration.h */, - 46EB2E00002CA0 /* FIRAuthRequestConfiguration.m */, - 46EB2E00002CB0 /* FIRAuthRPCRequest.h */, - 46EB2E00002CC0 /* FIRAuthRPCResponse.h */, - 46EB2E00002A40 /* FIRAuthSerialTaskQueue.h */, - 46EB2E00002A50 /* FIRAuthSerialTaskQueue.m */, - 46EB2E00003490 /* FIRAuthSettings.h */, - 46EB2E00002A60 /* FIRAuthSettings.m */, - 46EB2E00003710 /* FIRAuthStoredUserManager.h */, - 46EB2E00003720 /* FIRAuthStoredUserManager.m */, - 46EB2E000034A0 /* FIRAuthTokenResult.h */, - 46EB2E00002A70 /* FIRAuthTokenResult.m */, - 46EB2E00002A80 /* FIRAuthTokenResult_Internal.h */, - 46EB2E000034B0 /* FIRAuthUIDelegate.h */, - 46EB2E00003840 /* FIRAuthURLPresenter.h */, - 46EB2E00003850 /* FIRAuthURLPresenter.m */, - 46EB2E00003650 /* FIRAuthUserDefaults.h */, - 46EB2E00003660 /* FIRAuthUserDefaults.m */, - 46EB2E00003860 /* FIRAuthWebUtils.h */, - 46EB2E00003870 /* FIRAuthWebUtils.m */, - 46EB2E00003880 /* FIRAuthWebView.h */, - 46EB2E00003890 /* FIRAuthWebView.m */, - 46EB2E000038A0 /* FIRAuthWebViewController.h */, - 46EB2E000038B0 /* FIRAuthWebViewController.m */, - 46EB2E000038F0 /* FIRComponent.h */, - 46EB2E00003900 /* FIRComponentContainer.h */, - 46EB2E00003910 /* FIRComponentType.h */, - 46EB2E00003920 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00002CF0 /* FIRCreateAuthURIRequest.h */, - 46EB2E00002D00 /* FIRCreateAuthURIRequest.m */, - 46EB2E00002D10 /* FIRCreateAuthURIResponse.h */, - 46EB2E00002D20 /* FIRCreateAuthURIResponse.m */, - 46EB2E00002D30 /* FIRDeleteAccountRequest.h */, - 46EB2E00002D40 /* FIRDeleteAccountRequest.m */, - 46EB2E00002D50 /* FIRDeleteAccountResponse.h */, - 46EB2E00002D60 /* FIRDeleteAccountResponse.m */, - 46EB2E00003930 /* FIRDependency.h */, - 46EB2E000034C0 /* FirebaseAuth.h */, - 46EB2E00003940 /* FirebaseCoreInternal.h */, - 46EB2E000034D0 /* FIREmailAuthProvider.h */, - 46EB2E00002AA0 /* FIREmailAuthProvider.m */, - 46EB2E00002D70 /* FIREmailLinkSignInRequest.h */, - 46EB2E00002D80 /* FIREmailLinkSignInRequest.m */, - 46EB2E00002D90 /* FIREmailLinkSignInResponse.h */, - 46EB2E00002DA0 /* FIREmailLinkSignInResponse.m */, - 46EB2E00002AB0 /* FIREmailPasswordAuthCredential.h */, - 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.m */, - 46EB2E00002AD0 /* FIRFacebookAuthCredential.h */, - 46EB2E00002AE0 /* FIRFacebookAuthCredential.m */, - 46EB2E000034E0 /* FIRFacebookAuthProvider.h */, - 46EB2E00002AF0 /* FIRFacebookAuthProvider.m */, - 46EB2E000034F0 /* FIRFederatedAuthProvider.h */, - 46EB2E00003130 /* FIRFinalizeMFAEnrollmentRequest.h */, - 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.m */, - 46EB2E00003150 /* FIRFinalizeMFAEnrollmentResponse.h */, - 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.m */, - 46EB2E000031B0 /* FIRFinalizeMFASignInRequest.h */, - 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.m */, - 46EB2E000031D0 /* FIRFinalizeMFASignInResponse.h */, - 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.m */, - 46EB2E00002B30 /* FIRGameCenterAuthCredential.h */, - 46EB2E00002B40 /* FIRGameCenterAuthCredential.m */, - 46EB2E00003500 /* FIRGameCenterAuthProvider.h */, - 46EB2E00002B50 /* FIRGameCenterAuthProvider.m */, - 46EB2E00002DB0 /* FIRGetAccountInfoRequest.h */, - 46EB2E00002DC0 /* FIRGetAccountInfoRequest.m */, - 46EB2E00002DD0 /* FIRGetAccountInfoResponse.h */, - 46EB2E00002DE0 /* FIRGetAccountInfoResponse.m */, - 46EB2E00002DF0 /* FIRGetOOBConfirmationCodeRequest.h */, - 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.m */, - 46EB2E00002E10 /* FIRGetOOBConfirmationCodeResponse.h */, - 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.m */, - 46EB2E00002E30 /* FIRGetProjectConfigRequest.h */, - 46EB2E00002E40 /* FIRGetProjectConfigRequest.m */, - 46EB2E00002E50 /* FIRGetProjectConfigResponse.h */, - 46EB2E00002E60 /* FIRGetProjectConfigResponse.m */, - 46EB2E00002B60 /* FIRGitHubAuthCredential.h */, - 46EB2E00002B70 /* FIRGitHubAuthCredential.m */, - 46EB2E00003510 /* FIRGitHubAuthProvider.h */, - 46EB2E00002B80 /* FIRGitHubAuthProvider.m */, - 46EB2E00002B90 /* FIRGoogleAuthCredential.h */, - 46EB2E00002BA0 /* FIRGoogleAuthCredential.m */, - 46EB2E00003520 /* FIRGoogleAuthProvider.h */, - 46EB2E00002BB0 /* FIRGoogleAuthProvider.m */, - 46EB2E00003950 /* FIRHeartbeatInfo.h */, - 46EB2E00003960 /* FIRHeartbeatLogger.h */, - 46EB2E00002CD0 /* FIRIdentityToolkitRequest.h */, - 46EB2E00002CE0 /* FIRIdentityToolkitRequest.m */, - 46EB2E00003970 /* FIRLibrary.h */, - 46EB2E00003980 /* FIRLogger.h */, - 46EB2E00003530 /* FIRMultiFactor.h */, - 46EB2E00003330 /* FIRMultiFactor.m */, - 46EB2E00003320 /* FIRMultiFactor+Internal.h */, - 46EB2E00003540 /* FIRMultiFactorAssertion.h */, - 46EB2E00003350 /* FIRMultiFactorAssertion.m */, - 46EB2E00003340 /* FIRMultiFactorAssertion+Internal.h */, - 46EB2E00003360 /* FIRMultiFactorConstants.m */, - 46EB2E00003550 /* FIRMultiFactorInfo.h */, - 46EB2E00003380 /* FIRMultiFactorInfo.m */, - 46EB2E00003370 /* FIRMultiFactorInfo+Internal.h */, - 46EB2E00003560 /* FIRMultiFactorResolver.h */, - 46EB2E000033A0 /* FIRMultiFactorResolver.m */, - 46EB2E00003390 /* FIRMultiFactorResolver+Internal.h */, - 46EB2E00003570 /* FIRMultiFactorSession.h */, - 46EB2E000033C0 /* FIRMultiFactorSession.m */, - 46EB2E000033B0 /* FIRMultiFactorSession+Internal.h */, - 46EB2E00003580 /* FIROAuthCredential.h */, - 46EB2E00002BC0 /* FIROAuthCredential.m */, - 46EB2E00002BD0 /* FIROAuthCredential_Internal.h */, - 46EB2E00003590 /* FIROAuthProvider.h */, - 46EB2E00002BE0 /* FIROAuthProvider.m */, - 46EB2E00003990 /* FIROptionsInternal.h */, - 46EB2E000035A0 /* FIRPhoneAuthCredential.h */, - 46EB2E00002BF0 /* FIRPhoneAuthCredential.m */, - 46EB2E00002C00 /* FIRPhoneAuthCredential_Internal.h */, - 46EB2E000035B0 /* FIRPhoneAuthProvider.h */, - 46EB2E00002C10 /* FIRPhoneAuthProvider.m */, - 46EB2E000035C0 /* FIRPhoneMultiFactorAssertion.h */, - 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion.m */, - 46EB2E000033D0 /* FIRPhoneMultiFactorAssertion+Internal.h */, - 46EB2E000035D0 /* FIRPhoneMultiFactorGenerator.h */, - 46EB2E000033F0 /* FIRPhoneMultiFactorGenerator.m */, - 46EB2E000035E0 /* FIRPhoneMultiFactorInfo.h */, - 46EB2E00003410 /* FIRPhoneMultiFactorInfo.m */, - 46EB2E00003400 /* FIRPhoneMultiFactorInfo+Internal.h */, - 46EB2E00002E70 /* FIRResetPasswordRequest.h */, - 46EB2E00002E80 /* FIRResetPasswordRequest.m */, - 46EB2E00002E90 /* FIRResetPasswordResponse.h */, - 46EB2E00002EA0 /* FIRResetPasswordResponse.m */, - 46EB2E00002EB0 /* FIRSecureTokenRequest.h */, - 46EB2E00002EC0 /* FIRSecureTokenRequest.m */, - 46EB2E00002ED0 /* FIRSecureTokenResponse.h */, - 46EB2E00002EE0 /* FIRSecureTokenResponse.m */, - 46EB2E00003730 /* FIRSecureTokenService.h */, - 46EB2E00003740 /* FIRSecureTokenService.m */, - 46EB2E00002EF0 /* FIRSendVerificationCodeRequest.h */, - 46EB2E00002F00 /* FIRSendVerificationCodeRequest.m */, - 46EB2E00002F10 /* FIRSendVerificationCodeResponse.h */, - 46EB2E00002F20 /* FIRSendVerificationCodeResponse.m */, - 46EB2E00002F30 /* FIRSetAccountInfoRequest.h */, - 46EB2E00002F40 /* FIRSetAccountInfoRequest.m */, - 46EB2E00002F50 /* FIRSetAccountInfoResponse.h */, - 46EB2E00002F60 /* FIRSetAccountInfoResponse.m */, - 46EB2E00002F70 /* FIRSignInWithGameCenterRequest.h */, - 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.m */, - 46EB2E00002F90 /* FIRSignInWithGameCenterResponse.h */, - 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.m */, - 46EB2E00002FB0 /* FIRSignUpNewUserRequest.h */, - 46EB2E00002FC0 /* FIRSignUpNewUserRequest.m */, - 46EB2E00002FD0 /* FIRSignUpNewUserResponse.h */, - 46EB2E00002FE0 /* FIRSignUpNewUserResponse.m */, - 46EB2E00003170 /* FIRStartMFAEnrollmentRequest.h */, - 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.m */, - 46EB2E00003190 /* FIRStartMFAEnrollmentResponse.h */, - 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.m */, - 46EB2E000031F0 /* FIRStartMFASignInRequest.h */, - 46EB2E00003200 /* FIRStartMFASignInRequest.m */, - 46EB2E00003210 /* FIRStartMFASignInResponse.h */, - 46EB2E00003220 /* FIRStartMFASignInResponse.m */, - 46EB2E00002C20 /* FIRTwitterAuthCredential.h */, - 46EB2E00002C30 /* FIRTwitterAuthCredential.m */, - 46EB2E000035F0 /* FIRTwitterAuthProvider.h */, - 46EB2E00002C40 /* FIRTwitterAuthProvider.m */, - 46EB2E00003600 /* FIRUser.h */, - 46EB2E00003770 /* FIRUser.m */, - 46EB2E000037C0 /* FIRUser_Internal.h */, - 46EB2E00003610 /* FIRUserInfo.h */, - 46EB2E00003780 /* FIRUserInfoImpl.h */, - 46EB2E00003790 /* FIRUserInfoImpl.m */, - 46EB2E00003620 /* FIRUserMetadata.h */, - 46EB2E000037A0 /* FIRUserMetadata.m */, - 46EB2E000037B0 /* FIRUserMetadata_Internal.h */, - 46EB2E00002FF0 /* FIRVerifyAssertionRequest.h */, - 46EB2E00003000 /* FIRVerifyAssertionRequest.m */, - 46EB2E00003010 /* FIRVerifyAssertionResponse.h */, - 46EB2E00003020 /* FIRVerifyAssertionResponse.m */, - 46EB2E00003030 /* FIRVerifyClientRequest.h */, - 46EB2E00003040 /* FIRVerifyClientRequest.m */, - 46EB2E00003050 /* FIRVerifyClientResponse.h */, - 46EB2E00003060 /* FIRVerifyClientResponse.m */, - 46EB2E00003070 /* FIRVerifyCustomTokenRequest.h */, - 46EB2E00003080 /* FIRVerifyCustomTokenRequest.m */, - 46EB2E00003090 /* FIRVerifyCustomTokenResponse.h */, - 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.m */, - 46EB2E000030B0 /* FIRVerifyPasswordRequest.h */, - 46EB2E000030C0 /* FIRVerifyPasswordRequest.m */, - 46EB2E000030D0 /* FIRVerifyPasswordResponse.h */, - 46EB2E000030E0 /* FIRVerifyPasswordResponse.m */, - 46EB2E000030F0 /* FIRVerifyPhoneNumberRequest.h */, - 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.m */, - 46EB2E00003110 /* FIRVerifyPhoneNumberResponse.h */, - 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.m */, - 46EB2E00003230 /* FIRWithdrawMFARequest.h */, - 46EB2E00003240 /* FIRWithdrawMFARequest.m */, - 46EB2E00003250 /* FIRWithdrawMFAResponse.h */, - 46EB2E00003260 /* FIRWithdrawMFAResponse.m */, - 46EB2E000038C0 /* NSData+FIRBase64.h */, - 46EB2E000038D0 /* NSData+FIRBase64.m */, - 46EB2E00026520 /* Support Files */, + 46EB2E00003430 /* FIRActionCodeSettings.h */, + 46EB2E000029C0 /* FIRActionCodeSettings.m */, + 46EB2E00003440 /* FIRAdditionalUserInfo.h */, + 46EB2E00003760 /* FIRAdditionalUserInfo.m */, + 46EB2E00003770 /* FIRAdditionalUserInfo_Internal.h */, + 46EB2E000038F0 /* FIRAppInternal.h */, + 46EB2E00003450 /* FIRAuth.h */, + 46EB2E000029D0 /* FIRAuth.m */, + 46EB2E00002AA0 /* FIRAuth_Internal.h */, + 46EB2E00003680 /* FIRAuthAPNSToken.h */, + 46EB2E00003690 /* FIRAuthAPNSToken.m */, + 46EB2E000036A0 /* FIRAuthAPNSTokenManager.h */, + 46EB2E000036B0 /* FIRAuthAPNSTokenManager.m */, + 46EB2E00003460 /* FIRAuthAPNSTokenType.h */, + 46EB2E000036C0 /* FIRAuthAppCredential.h */, + 46EB2E000036D0 /* FIRAuthAppCredential.m */, + 46EB2E000036E0 /* FIRAuthAppCredentialManager.h */, + 46EB2E000036F0 /* FIRAuthAppCredentialManager.m */, + 46EB2E00002C80 /* FIRAuthBackend.h */, + 46EB2E00002C90 /* FIRAuthBackend.m */, + 46EB2E00002C60 /* FIRAuthBackend+MultiFactor.h */, + 46EB2E00002C70 /* FIRAuthBackend+MultiFactor.m */, + 46EB2E00003470 /* FIRAuthCredential.h */, + 46EB2E00002B10 /* FIRAuthCredential.m */, + 46EB2E00002B20 /* FIRAuthCredential_Internal.h */, + 46EB2E00003480 /* FIRAuthDataResult.h */, + 46EB2E000029E0 /* FIRAuthDataResult.m */, + 46EB2E000029F0 /* FIRAuthDataResult_Internal.h */, + 46EB2E000037E0 /* FIRAuthDefaultUIDelegate.h */, + 46EB2E000037F0 /* FIRAuthDefaultUIDelegate.m */, + 46EB2E00002A00 /* FIRAuthDispatcher.h */, + 46EB2E00002A10 /* FIRAuthDispatcher.m */, + 46EB2E00003490 /* FIRAuthErrors.h */, + 46EB2E00003800 /* FIRAuthErrorUtils.h */, + 46EB2E00003810 /* FIRAuthErrorUtils.m */, + 46EB2E00003820 /* FIRAuthExceptionUtils.h */, + 46EB2E00003830 /* FIRAuthExceptionUtils.m */, + 46EB2E00002A20 /* FIRAuthGlobalWorkQueue.h */, + 46EB2E00002A30 /* FIRAuthGlobalWorkQueue.m */, + 46EB2E00003840 /* FIRAuthInternalErrors.h */, + 46EB2E000039B0 /* FIRAuthInterop.h */, + 46EB2E00003640 /* FIRAuthKeychainServices.h */, + 46EB2E00003650 /* FIRAuthKeychainServices.m */, + 46EB2E00003700 /* FIRAuthNotificationManager.h */, + 46EB2E00003710 /* FIRAuthNotificationManager.m */, + 46EB2E00002A40 /* FIRAuthOperationType.h */, + 46EB2E00003280 /* FIRAuthProto.h */, + 46EB2E000032B0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, + 46EB2E000032C0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, + 46EB2E000032D0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, + 46EB2E000032E0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, + 46EB2E00003290 /* FIRAuthProtoMFAEnrollment.h */, + 46EB2E000032A0 /* FIRAuthProtoMFAEnrollment.m */, + 46EB2E000032F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, + 46EB2E00003300 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, + 46EB2E00003310 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, + 46EB2E00003320 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, + 46EB2E00002B30 /* FIRAuthProvider.m */, + 46EB2E00002CA0 /* FIRAuthRequestConfiguration.h */, + 46EB2E00002CB0 /* FIRAuthRequestConfiguration.m */, + 46EB2E00002CC0 /* FIRAuthRPCRequest.h */, + 46EB2E00002CD0 /* FIRAuthRPCResponse.h */, + 46EB2E00002A50 /* FIRAuthSerialTaskQueue.h */, + 46EB2E00002A60 /* FIRAuthSerialTaskQueue.m */, + 46EB2E000034A0 /* FIRAuthSettings.h */, + 46EB2E00002A70 /* FIRAuthSettings.m */, + 46EB2E00003720 /* FIRAuthStoredUserManager.h */, + 46EB2E00003730 /* FIRAuthStoredUserManager.m */, + 46EB2E000034B0 /* FIRAuthTokenResult.h */, + 46EB2E00002A80 /* FIRAuthTokenResult.m */, + 46EB2E00002A90 /* FIRAuthTokenResult_Internal.h */, + 46EB2E000034C0 /* FIRAuthUIDelegate.h */, + 46EB2E00003850 /* FIRAuthURLPresenter.h */, + 46EB2E00003860 /* FIRAuthURLPresenter.m */, + 46EB2E00003660 /* FIRAuthUserDefaults.h */, + 46EB2E00003670 /* FIRAuthUserDefaults.m */, + 46EB2E00003870 /* FIRAuthWebUtils.h */, + 46EB2E00003880 /* FIRAuthWebUtils.m */, + 46EB2E00003890 /* FIRAuthWebView.h */, + 46EB2E000038A0 /* FIRAuthWebView.m */, + 46EB2E000038B0 /* FIRAuthWebViewController.h */, + 46EB2E000038C0 /* FIRAuthWebViewController.m */, + 46EB2E00003900 /* FIRComponent.h */, + 46EB2E00003910 /* FIRComponentContainer.h */, + 46EB2E00003920 /* FIRComponentType.h */, + 46EB2E00003930 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00002D00 /* FIRCreateAuthURIRequest.h */, + 46EB2E00002D10 /* FIRCreateAuthURIRequest.m */, + 46EB2E00002D20 /* FIRCreateAuthURIResponse.h */, + 46EB2E00002D30 /* FIRCreateAuthURIResponse.m */, + 46EB2E00002D40 /* FIRDeleteAccountRequest.h */, + 46EB2E00002D50 /* FIRDeleteAccountRequest.m */, + 46EB2E00002D60 /* FIRDeleteAccountResponse.h */, + 46EB2E00002D70 /* FIRDeleteAccountResponse.m */, + 46EB2E00003940 /* FIRDependency.h */, + 46EB2E000034D0 /* FirebaseAuth.h */, + 46EB2E00003950 /* FirebaseCoreInternal.h */, + 46EB2E000034E0 /* FIREmailAuthProvider.h */, + 46EB2E00002AB0 /* FIREmailAuthProvider.m */, + 46EB2E00002D80 /* FIREmailLinkSignInRequest.h */, + 46EB2E00002D90 /* FIREmailLinkSignInRequest.m */, + 46EB2E00002DA0 /* FIREmailLinkSignInResponse.h */, + 46EB2E00002DB0 /* FIREmailLinkSignInResponse.m */, + 46EB2E00002AC0 /* FIREmailPasswordAuthCredential.h */, + 46EB2E00002AD0 /* FIREmailPasswordAuthCredential.m */, + 46EB2E00002AE0 /* FIRFacebookAuthCredential.h */, + 46EB2E00002AF0 /* FIRFacebookAuthCredential.m */, + 46EB2E000034F0 /* FIRFacebookAuthProvider.h */, + 46EB2E00002B00 /* FIRFacebookAuthProvider.m */, + 46EB2E00003500 /* FIRFederatedAuthProvider.h */, + 46EB2E00003140 /* FIRFinalizeMFAEnrollmentRequest.h */, + 46EB2E00003150 /* FIRFinalizeMFAEnrollmentRequest.m */, + 46EB2E00003160 /* FIRFinalizeMFAEnrollmentResponse.h */, + 46EB2E00003170 /* FIRFinalizeMFAEnrollmentResponse.m */, + 46EB2E000031C0 /* FIRFinalizeMFASignInRequest.h */, + 46EB2E000031D0 /* FIRFinalizeMFASignInRequest.m */, + 46EB2E000031E0 /* FIRFinalizeMFASignInResponse.h */, + 46EB2E000031F0 /* FIRFinalizeMFASignInResponse.m */, + 46EB2E00002B40 /* FIRGameCenterAuthCredential.h */, + 46EB2E00002B50 /* FIRGameCenterAuthCredential.m */, + 46EB2E00003510 /* FIRGameCenterAuthProvider.h */, + 46EB2E00002B60 /* FIRGameCenterAuthProvider.m */, + 46EB2E00002DC0 /* FIRGetAccountInfoRequest.h */, + 46EB2E00002DD0 /* FIRGetAccountInfoRequest.m */, + 46EB2E00002DE0 /* FIRGetAccountInfoResponse.h */, + 46EB2E00002DF0 /* FIRGetAccountInfoResponse.m */, + 46EB2E00002E00 /* FIRGetOOBConfirmationCodeRequest.h */, + 46EB2E00002E10 /* FIRGetOOBConfirmationCodeRequest.m */, + 46EB2E00002E20 /* FIRGetOOBConfirmationCodeResponse.h */, + 46EB2E00002E30 /* FIRGetOOBConfirmationCodeResponse.m */, + 46EB2E00002E40 /* FIRGetProjectConfigRequest.h */, + 46EB2E00002E50 /* FIRGetProjectConfigRequest.m */, + 46EB2E00002E60 /* FIRGetProjectConfigResponse.h */, + 46EB2E00002E70 /* FIRGetProjectConfigResponse.m */, + 46EB2E00002B70 /* FIRGitHubAuthCredential.h */, + 46EB2E00002B80 /* FIRGitHubAuthCredential.m */, + 46EB2E00003520 /* FIRGitHubAuthProvider.h */, + 46EB2E00002B90 /* FIRGitHubAuthProvider.m */, + 46EB2E00002BA0 /* FIRGoogleAuthCredential.h */, + 46EB2E00002BB0 /* FIRGoogleAuthCredential.m */, + 46EB2E00003530 /* FIRGoogleAuthProvider.h */, + 46EB2E00002BC0 /* FIRGoogleAuthProvider.m */, + 46EB2E00003960 /* FIRHeartbeatInfo.h */, + 46EB2E00003970 /* FIRHeartbeatLogger.h */, + 46EB2E00002CE0 /* FIRIdentityToolkitRequest.h */, + 46EB2E00002CF0 /* FIRIdentityToolkitRequest.m */, + 46EB2E00003980 /* FIRLibrary.h */, + 46EB2E00003990 /* FIRLogger.h */, + 46EB2E00003540 /* FIRMultiFactor.h */, + 46EB2E00003340 /* FIRMultiFactor.m */, + 46EB2E00003330 /* FIRMultiFactor+Internal.h */, + 46EB2E00003550 /* FIRMultiFactorAssertion.h */, + 46EB2E00003360 /* FIRMultiFactorAssertion.m */, + 46EB2E00003350 /* FIRMultiFactorAssertion+Internal.h */, + 46EB2E00003370 /* FIRMultiFactorConstants.m */, + 46EB2E00003560 /* FIRMultiFactorInfo.h */, + 46EB2E00003390 /* FIRMultiFactorInfo.m */, + 46EB2E00003380 /* FIRMultiFactorInfo+Internal.h */, + 46EB2E00003570 /* FIRMultiFactorResolver.h */, + 46EB2E000033B0 /* FIRMultiFactorResolver.m */, + 46EB2E000033A0 /* FIRMultiFactorResolver+Internal.h */, + 46EB2E00003580 /* FIRMultiFactorSession.h */, + 46EB2E000033D0 /* FIRMultiFactorSession.m */, + 46EB2E000033C0 /* FIRMultiFactorSession+Internal.h */, + 46EB2E00003590 /* FIROAuthCredential.h */, + 46EB2E00002BD0 /* FIROAuthCredential.m */, + 46EB2E00002BE0 /* FIROAuthCredential_Internal.h */, + 46EB2E000035A0 /* FIROAuthProvider.h */, + 46EB2E00002BF0 /* FIROAuthProvider.m */, + 46EB2E000039A0 /* FIROptionsInternal.h */, + 46EB2E000035B0 /* FIRPhoneAuthCredential.h */, + 46EB2E00002C00 /* FIRPhoneAuthCredential.m */, + 46EB2E00002C10 /* FIRPhoneAuthCredential_Internal.h */, + 46EB2E000035C0 /* FIRPhoneAuthProvider.h */, + 46EB2E00002C20 /* FIRPhoneAuthProvider.m */, + 46EB2E000035D0 /* FIRPhoneMultiFactorAssertion.h */, + 46EB2E000033F0 /* FIRPhoneMultiFactorAssertion.m */, + 46EB2E000033E0 /* FIRPhoneMultiFactorAssertion+Internal.h */, + 46EB2E000035E0 /* FIRPhoneMultiFactorGenerator.h */, + 46EB2E00003400 /* FIRPhoneMultiFactorGenerator.m */, + 46EB2E000035F0 /* FIRPhoneMultiFactorInfo.h */, + 46EB2E00003420 /* FIRPhoneMultiFactorInfo.m */, + 46EB2E00003410 /* FIRPhoneMultiFactorInfo+Internal.h */, + 46EB2E00002E80 /* FIRResetPasswordRequest.h */, + 46EB2E00002E90 /* FIRResetPasswordRequest.m */, + 46EB2E00002EA0 /* FIRResetPasswordResponse.h */, + 46EB2E00002EB0 /* FIRResetPasswordResponse.m */, + 46EB2E00002EC0 /* FIRSecureTokenRequest.h */, + 46EB2E00002ED0 /* FIRSecureTokenRequest.m */, + 46EB2E00002EE0 /* FIRSecureTokenResponse.h */, + 46EB2E00002EF0 /* FIRSecureTokenResponse.m */, + 46EB2E00003740 /* FIRSecureTokenService.h */, + 46EB2E00003750 /* FIRSecureTokenService.m */, + 46EB2E00002F00 /* FIRSendVerificationCodeRequest.h */, + 46EB2E00002F10 /* FIRSendVerificationCodeRequest.m */, + 46EB2E00002F20 /* FIRSendVerificationCodeResponse.h */, + 46EB2E00002F30 /* FIRSendVerificationCodeResponse.m */, + 46EB2E00002F40 /* FIRSetAccountInfoRequest.h */, + 46EB2E00002F50 /* FIRSetAccountInfoRequest.m */, + 46EB2E00002F60 /* FIRSetAccountInfoResponse.h */, + 46EB2E00002F70 /* FIRSetAccountInfoResponse.m */, + 46EB2E00002F80 /* FIRSignInWithGameCenterRequest.h */, + 46EB2E00002F90 /* FIRSignInWithGameCenterRequest.m */, + 46EB2E00002FA0 /* FIRSignInWithGameCenterResponse.h */, + 46EB2E00002FB0 /* FIRSignInWithGameCenterResponse.m */, + 46EB2E00002FC0 /* FIRSignUpNewUserRequest.h */, + 46EB2E00002FD0 /* FIRSignUpNewUserRequest.m */, + 46EB2E00002FE0 /* FIRSignUpNewUserResponse.h */, + 46EB2E00002FF0 /* FIRSignUpNewUserResponse.m */, + 46EB2E00003180 /* FIRStartMFAEnrollmentRequest.h */, + 46EB2E00003190 /* FIRStartMFAEnrollmentRequest.m */, + 46EB2E000031A0 /* FIRStartMFAEnrollmentResponse.h */, + 46EB2E000031B0 /* FIRStartMFAEnrollmentResponse.m */, + 46EB2E00003200 /* FIRStartMFASignInRequest.h */, + 46EB2E00003210 /* FIRStartMFASignInRequest.m */, + 46EB2E00003220 /* FIRStartMFASignInResponse.h */, + 46EB2E00003230 /* FIRStartMFASignInResponse.m */, + 46EB2E00002C30 /* FIRTwitterAuthCredential.h */, + 46EB2E00002C40 /* FIRTwitterAuthCredential.m */, + 46EB2E00003600 /* FIRTwitterAuthProvider.h */, + 46EB2E00002C50 /* FIRTwitterAuthProvider.m */, + 46EB2E00003610 /* FIRUser.h */, + 46EB2E00003780 /* FIRUser.m */, + 46EB2E000037D0 /* FIRUser_Internal.h */, + 46EB2E00003620 /* FIRUserInfo.h */, + 46EB2E00003790 /* FIRUserInfoImpl.h */, + 46EB2E000037A0 /* FIRUserInfoImpl.m */, + 46EB2E00003630 /* FIRUserMetadata.h */, + 46EB2E000037B0 /* FIRUserMetadata.m */, + 46EB2E000037C0 /* FIRUserMetadata_Internal.h */, + 46EB2E00003000 /* FIRVerifyAssertionRequest.h */, + 46EB2E00003010 /* FIRVerifyAssertionRequest.m */, + 46EB2E00003020 /* FIRVerifyAssertionResponse.h */, + 46EB2E00003030 /* FIRVerifyAssertionResponse.m */, + 46EB2E00003040 /* FIRVerifyClientRequest.h */, + 46EB2E00003050 /* FIRVerifyClientRequest.m */, + 46EB2E00003060 /* FIRVerifyClientResponse.h */, + 46EB2E00003070 /* FIRVerifyClientResponse.m */, + 46EB2E00003080 /* FIRVerifyCustomTokenRequest.h */, + 46EB2E00003090 /* FIRVerifyCustomTokenRequest.m */, + 46EB2E000030A0 /* FIRVerifyCustomTokenResponse.h */, + 46EB2E000030B0 /* FIRVerifyCustomTokenResponse.m */, + 46EB2E000030C0 /* FIRVerifyPasswordRequest.h */, + 46EB2E000030D0 /* FIRVerifyPasswordRequest.m */, + 46EB2E000030E0 /* FIRVerifyPasswordResponse.h */, + 46EB2E000030F0 /* FIRVerifyPasswordResponse.m */, + 46EB2E00003100 /* FIRVerifyPhoneNumberRequest.h */, + 46EB2E00003110 /* FIRVerifyPhoneNumberRequest.m */, + 46EB2E00003120 /* FIRVerifyPhoneNumberResponse.h */, + 46EB2E00003130 /* FIRVerifyPhoneNumberResponse.m */, + 46EB2E00003240 /* FIRWithdrawMFARequest.h */, + 46EB2E00003250 /* FIRWithdrawMFARequest.m */, + 46EB2E00003260 /* FIRWithdrawMFAResponse.h */, + 46EB2E00003270 /* FIRWithdrawMFAResponse.m */, + 46EB2E000038D0 /* NSData+FIRBase64.h */, + 46EB2E000038E0 /* NSData+FIRBase64.m */, + 46EB2E00026440 /* Support Files */, ); + name = FirebaseAuth; path = FirebaseAuth; sourceTree = ""; }; 46EB2E00000170 /* FirebaseCore */ = { isa = PBXGroup; children = ( - 46EB2E000039B0 /* FIRAnalyticsConfiguration.h */, - 46EB2E000039C0 /* FIRAnalyticsConfiguration.m */, - 46EB2E00003B10 /* FIRApp.h */, - 46EB2E000039D0 /* FIRApp.m */, - 46EB2E00003B70 /* FIRAppInternal.h */, - 46EB2E000039E0 /* FIRBundleUtil.h */, - 46EB2E000039F0 /* FIRBundleUtil.m */, - 46EB2E00003B80 /* FIRComponent.h */, - 46EB2E00003A00 /* FIRComponent.m */, - 46EB2E00003B90 /* FIRComponentContainer.h */, - 46EB2E00003A10 /* FIRComponentContainer.m */, - 46EB2E00003A20 /* FIRComponentContainerInternal.h */, - 46EB2E00003BA0 /* FIRComponentType.h */, - 46EB2E00003A30 /* FIRComponentType.m */, - 46EB2E00003B20 /* FIRConfiguration.h */, - 46EB2E00003A40 /* FIRConfiguration.m */, - 46EB2E00003A50 /* FIRConfigurationInternal.h */, - 46EB2E00003BB0 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00003A60 /* FIRCoreDiagnosticsConnector.m */, - 46EB2E00003C30 /* FIRCoreDiagnosticsData.h */, - 46EB2E00003C40 /* FIRCoreDiagnosticsInterop.h */, - 46EB2E00003BC0 /* FIRDependency.h */, - 46EB2E00003A70 /* FIRDependency.m */, - 46EB2E00003A80 /* FIRDiagnosticsData.h */, - 46EB2E00003A90 /* FIRDiagnosticsData.m */, - 46EB2E00003B30 /* FirebaseCore.h */, - 46EB2E00003BD0 /* FirebaseCoreInternal.h */, - 46EB2E00003AA0 /* FIRFirebaseUserAgent.h */, - 46EB2E00003AB0 /* FIRFirebaseUserAgent.m */, - 46EB2E00003BE0 /* FIRHeartbeatInfo.h */, - 46EB2E00003AC0 /* FIRHeartbeatInfo.m */, - 46EB2E00003BF0 /* FIRHeartbeatLogger.h */, - 46EB2E00003AD0 /* FIRHeartbeatLogger.m */, - 46EB2E00003C00 /* FIRLibrary.h */, - 46EB2E00003C10 /* FIRLogger.h */, - 46EB2E00003AE0 /* FIRLogger.m */, - 46EB2E00003B40 /* FIRLoggerLevel.h */, - 46EB2E00003B50 /* FIROptions.h */, - 46EB2E00003AF0 /* FIROptions.m */, - 46EB2E00003C20 /* FIROptionsInternal.h */, - 46EB2E00003B60 /* FIRVersion.h */, - 46EB2E00003B00 /* FIRVersion.m */, - 46EB2E00026890 /* Support Files */, + 46EB2E000039C0 /* FIRAnalyticsConfiguration.h */, + 46EB2E000039D0 /* FIRAnalyticsConfiguration.m */, + 46EB2E00003B20 /* FIRApp.h */, + 46EB2E000039E0 /* FIRApp.m */, + 46EB2E00003B80 /* FIRAppInternal.h */, + 46EB2E000039F0 /* FIRBundleUtil.h */, + 46EB2E00003A00 /* FIRBundleUtil.m */, + 46EB2E00003B90 /* FIRComponent.h */, + 46EB2E00003A10 /* FIRComponent.m */, + 46EB2E00003BA0 /* FIRComponentContainer.h */, + 46EB2E00003A20 /* FIRComponentContainer.m */, + 46EB2E00003A30 /* FIRComponentContainerInternal.h */, + 46EB2E00003BB0 /* FIRComponentType.h */, + 46EB2E00003A40 /* FIRComponentType.m */, + 46EB2E00003B30 /* FIRConfiguration.h */, + 46EB2E00003A50 /* FIRConfiguration.m */, + 46EB2E00003A60 /* FIRConfigurationInternal.h */, + 46EB2E00003BC0 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00003A70 /* FIRCoreDiagnosticsConnector.m */, + 46EB2E00003C40 /* FIRCoreDiagnosticsData.h */, + 46EB2E00003C50 /* FIRCoreDiagnosticsInterop.h */, + 46EB2E00003BD0 /* FIRDependency.h */, + 46EB2E00003A80 /* FIRDependency.m */, + 46EB2E00003A90 /* FIRDiagnosticsData.h */, + 46EB2E00003AA0 /* FIRDiagnosticsData.m */, + 46EB2E00003B40 /* FirebaseCore.h */, + 46EB2E00003BE0 /* FirebaseCoreInternal.h */, + 46EB2E00003AB0 /* FIRFirebaseUserAgent.h */, + 46EB2E00003AC0 /* FIRFirebaseUserAgent.m */, + 46EB2E00003BF0 /* FIRHeartbeatInfo.h */, + 46EB2E00003AD0 /* FIRHeartbeatInfo.m */, + 46EB2E00003C00 /* FIRHeartbeatLogger.h */, + 46EB2E00003AE0 /* FIRHeartbeatLogger.m */, + 46EB2E00003C10 /* FIRLibrary.h */, + 46EB2E00003C20 /* FIRLogger.h */, + 46EB2E00003AF0 /* FIRLogger.m */, + 46EB2E00003B50 /* FIRLoggerLevel.h */, + 46EB2E00003B60 /* FIROptions.h */, + 46EB2E00003B00 /* FIROptions.m */, + 46EB2E00003C30 /* FIROptionsInternal.h */, + 46EB2E00003B70 /* FIRVersion.h */, + 46EB2E00003B10 /* FIRVersion.m */, + 46EB2E000267B0 /* Support Files */, ); + name = FirebaseCore; path = FirebaseCore; sourceTree = ""; }; 46EB2E00000180 /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( - 46EB2E00003C80 /* FIRCoreDiagnostics.h */, - 46EB2E00003C50 /* FIRCoreDiagnostics.m */, - 46EB2E00003C90 /* FIRCoreDiagnosticsData.h */, - 46EB2E00003CA0 /* FIRCoreDiagnosticsInterop.h */, - 46EB2E00003C60 /* firebasecore.nanopb.c */, - 46EB2E00003C70 /* firebasecore.nanopb.h */, - 46EB2E000269F0 /* Support Files */, + 46EB2E00003C90 /* FIRCoreDiagnostics.h */, + 46EB2E00003C60 /* FIRCoreDiagnostics.m */, + 46EB2E00003CA0 /* FIRCoreDiagnosticsData.h */, + 46EB2E00003CB0 /* FIRCoreDiagnosticsInterop.h */, + 46EB2E00003C70 /* firebasecore.nanopb.c */, + 46EB2E00003C80 /* firebasecore.nanopb.h */, + 46EB2E00026910 /* Support Files */, ); + name = FirebaseCoreDiagnostics; path = FirebaseCoreDiagnostics; sourceTree = ""; }; 46EB2E00000190 /* FirebaseCoreExtension */ = { isa = PBXGroup; children = ( - 46EB2E00003CB0 /* dummy.m */, - 46EB2E00003CC0 /* FIRAppInternal.h */, - 46EB2E00003CD0 /* FIRComponent.h */, - 46EB2E00003CE0 /* FIRComponentContainer.h */, - 46EB2E00003CF0 /* FIRComponentType.h */, - 46EB2E00003D00 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00003D10 /* FIRDependency.h */, - 46EB2E00003D20 /* FirebaseCoreInternal.h */, - 46EB2E00003D30 /* FIRHeartbeatInfo.h */, - 46EB2E00003D40 /* FIRHeartbeatLogger.h */, - 46EB2E00003D50 /* FIRLibrary.h */, - 46EB2E00003D60 /* FIRLogger.h */, - 46EB2E00003D70 /* FIROptionsInternal.h */, - 46EB2E00026B90 /* Support Files */, + 46EB2E00003CC0 /* dummy.m */, + 46EB2E00003CD0 /* FIRAppInternal.h */, + 46EB2E00003CE0 /* FIRComponent.h */, + 46EB2E00003CF0 /* FIRComponentContainer.h */, + 46EB2E00003D00 /* FIRComponentType.h */, + 46EB2E00003D10 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00003D20 /* FIRDependency.h */, + 46EB2E00003D30 /* FirebaseCoreInternal.h */, + 46EB2E00003D40 /* FIRHeartbeatInfo.h */, + 46EB2E00003D50 /* FIRHeartbeatLogger.h */, + 46EB2E00003D60 /* FIRLibrary.h */, + 46EB2E00003D70 /* FIRLogger.h */, + 46EB2E00003D80 /* FIROptionsInternal.h */, + 46EB2E00026AB0 /* Support Files */, ); + name = FirebaseCoreExtension; path = FirebaseCoreExtension; sourceTree = ""; }; 46EB2E000001A0 /* FirebaseCoreInternal */ = { isa = PBXGroup; children = ( - 46EB2E00003E10 /* _ObjC_HeartbeatController.swift */, - 46EB2E00003E20 /* _ObjC_HeartbeatsPayload.swift */, - 46EB2E00003D80 /* Heartbeat.swift */, - 46EB2E00003D90 /* HeartbeatController.swift */, - 46EB2E00003DA0 /* HeartbeatsBundle.swift */, - 46EB2E00003DB0 /* HeartbeatsPayload.swift */, - 46EB2E00003DC0 /* HeartbeatStorage.swift */, - 46EB2E00003DD0 /* RingBuffer.swift */, - 46EB2E00003DE0 /* Storage.swift */, - 46EB2E00003DF0 /* StorageFactory.swift */, - 46EB2E00003E00 /* WeakContainer.swift */, - 46EB2E00026D20 /* Support Files */, + 46EB2E00003E20 /* _ObjC_HeartbeatController.swift */, + 46EB2E00003E30 /* _ObjC_HeartbeatsPayload.swift */, + 46EB2E00003D90 /* Heartbeat.swift */, + 46EB2E00003DA0 /* HeartbeatController.swift */, + 46EB2E00003DB0 /* HeartbeatsBundle.swift */, + 46EB2E00003DC0 /* HeartbeatsPayload.swift */, + 46EB2E00003DD0 /* HeartbeatStorage.swift */, + 46EB2E00003DE0 /* RingBuffer.swift */, + 46EB2E00003DF0 /* Storage.swift */, + 46EB2E00003E00 /* StorageFactory.swift */, + 46EB2E00003E10 /* WeakContainer.swift */, + 46EB2E00026C40 /* Support Files */, ); + name = FirebaseCoreInternal; path = FirebaseCoreInternal; sourceTree = ""; }; 46EB2E000001B0 /* FirebaseCrashlytics */ = { isa = PBXGroup; children = ( - 46EB2E00004710 /* crashlytics.nanopb.c */, - 46EB2E00004720 /* crashlytics.nanopb.h */, - 46EB2E00004930 /* dwarf.h */, - 46EB2E00004A10 /* FIRAnalyticsInterop.h */, - 46EB2E00004A20 /* FIRAnalyticsInteropListener.h */, - 46EB2E00004940 /* FIRAppInternal.h */, - 46EB2E00004150 /* FIRCLSAllocate.c */, - 46EB2E00004160 /* FIRCLSAllocate.h */, - 46EB2E00003F20 /* FIRCLSAnalyticsManager.h */, - 46EB2E00003F30 /* FIRCLSAnalyticsManager.m */, - 46EB2E00003E30 /* FIRCLSApplication.h */, - 46EB2E00003E40 /* FIRCLSApplication.m */, - 46EB2E000045B0 /* FIRCLSApplicationIdentifierModel.h */, - 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.m */, - 46EB2E00004420 /* FIRCLSAsyncOperation.h */, - 46EB2E00004430 /* FIRCLSAsyncOperation.m */, - 46EB2E00004440 /* FIRCLSAsyncOperation_Private.h */, - 46EB2E00003E50 /* FIRCLSBinaryImage.h */, - 46EB2E00003E60 /* FIRCLSBinaryImage.m */, - 46EB2E00004730 /* FIRCLSByteUtility.h */, - 46EB2E00004740 /* FIRCLSByteUtility.m */, - 46EB2E00004170 /* FIRCLSCallStackTree.h */, - 46EB2E00004180 /* FIRCLSCallStackTree.m */, - 46EB2E00004790 /* FIRCLSCodeMapping.h */, - 46EB2E000047A0 /* FIRCLSCodeMapping.m */, - 46EB2E00004610 /* FIRCLSCompactUnwind.c */, - 46EB2E00004620 /* FIRCLSCompactUnwind.h */, - 46EB2E00004630 /* FIRCLSCompactUnwind_Private.h */, - 46EB2E000048B0 /* FIRCLSCompoundOperation.h */, - 46EB2E000048C0 /* FIRCLSCompoundOperation.m */, - 46EB2E00004750 /* FIRCLSConstants.h */, - 46EB2E00004760 /* FIRCLSConstants.m */, - 46EB2E00003E70 /* FIRCLSContext.h */, - 46EB2E00003E80 /* FIRCLSContext.m */, - 46EB2E00003E90 /* FIRCLSCrashedMarkerFile.c */, - 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.h */, - 46EB2E00004020 /* FIRCLSDataCollectionArbiter.h */, - 46EB2E00004030 /* FIRCLSDataCollectionArbiter.m */, - 46EB2E00004040 /* FIRCLSDataCollectionToken.h */, - 46EB2E00004050 /* FIRCLSDataCollectionToken.m */, - 46EB2E00004640 /* FIRCLSDataParsing.c */, - 46EB2E00004650 /* FIRCLSDataParsing.h */, - 46EB2E00004190 /* FIRCLSDefines.h */, - 46EB2E00004470 /* FIRCLSDemangleOperation.h */, - 46EB2E00004480 /* FIRCLSDemangleOperation.mm */, - 46EB2E000045D0 /* FIRCLSDownloadAndSaveSettingsOperation.h */, - 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.m */, - 46EB2E000047B0 /* FIRCLSdSYM.h */, - 46EB2E000047C0 /* FIRCLSdSYM.m */, - 46EB2E00004660 /* FIRCLSDwarfExpressionMachine.c */, - 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.h */, - 46EB2E00004680 /* FIRCLSDwarfUnwind.c */, - 46EB2E00004690 /* FIRCLSDwarfUnwind.h */, - 46EB2E000046A0 /* FIRCLSDwarfUnwindRegisters.h */, - 46EB2E000040D0 /* FIRCLSException.h */, - 46EB2E000040E0 /* FIRCLSException.mm */, - 46EB2E00004270 /* FIRCLSExecutionIdentifierModel.h */, - 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.m */, - 46EB2E00003F40 /* FIRCLSExistingReportManager.h */, - 46EB2E00003F50 /* FIRCLSExistingReportManager.m */, - 46EB2E000044F0 /* FIRCLSExistingReportManager_Private.h */, - 46EB2E000048D0 /* FIRCLSFABAsyncOperation.h */, - 46EB2E000048E0 /* FIRCLSFABAsyncOperation.m */, - 46EB2E000048F0 /* FIRCLSFABAsyncOperation_Private.h */, - 46EB2E00004770 /* FIRCLSFABHost.h */, - 46EB2E00004780 /* FIRCLSFABHost.m */, - 46EB2E00004830 /* FIRCLSFABNetworkClient.h */, - 46EB2E00004840 /* FIRCLSFABNetworkClient.m */, - 46EB2E000041A0 /* FIRCLSFeatures.h */, - 46EB2E000041B0 /* FIRCLSFile.h */, - 46EB2E000041C0 /* FIRCLSFile.m */, - 46EB2E00004290 /* FIRCLSFileManager.h */, - 46EB2E000042A0 /* FIRCLSFileManager.m */, - 46EB2E00003EB0 /* FIRCLSGlobals.h */, - 46EB2E000040F0 /* FIRCLSHandler.h */, - 46EB2E00004100 /* FIRCLSHandler.m */, - 46EB2E00003EC0 /* FIRCLSHost.h */, - 46EB2E00003ED0 /* FIRCLSHost.m */, - 46EB2E000042B0 /* FIRCLSInstallIdentifierModel.h */, - 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.m */, - 46EB2E000041D0 /* FIRCLSInternalLogging.c */, - 46EB2E000041E0 /* FIRCLSInternalLogging.h */, - 46EB2E000042D0 /* FIRCLSInternalReport.h */, - 46EB2E000042E0 /* FIRCLSInternalReport.m */, - 46EB2E000042F0 /* FIRCLSLaunchMarkerModel.h */, - 46EB2E00004300 /* FIRCLSLaunchMarkerModel.m */, - 46EB2E000041F0 /* FIRCLSLogger.h */, - 46EB2E00004200 /* FIRCLSLogger.m */, - 46EB2E00004110 /* FIRCLSMachException.c */, - 46EB2E00004120 /* FIRCLSMachException.h */, - 46EB2E000047D0 /* FIRCLSMachO.h */, - 46EB2E000047E0 /* FIRCLSMachO.m */, - 46EB2E000047F0 /* FIRCLSMachOBinary.h */, - 46EB2E00004800 /* FIRCLSMachOBinary.m */, - 46EB2E00004810 /* FIRCLSMachOSlice.h */, - 46EB2E00004820 /* FIRCLSMachOSlice.m */, - 46EB2E00003F60 /* FIRCLSManagerData.h */, - 46EB2E00003F70 /* FIRCLSManagerData.m */, - 46EB2E00003F80 /* FIRCLSMetricKitManager.h */, - 46EB2E00003F90 /* FIRCLSMetricKitManager.m */, - 46EB2E00004850 /* FIRCLSMultipartMimeStreamEncoder.h */, - 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.m */, - 46EB2E000045F0 /* FIRCLSNetworkOperation.h */, - 46EB2E00004600 /* FIRCLSNetworkOperation.m */, - 46EB2E00004870 /* FIRCLSNetworkResponseHandler.h */, - 46EB2E00004880 /* FIRCLSNetworkResponseHandler.m */, - 46EB2E00003FA0 /* FIRCLSNotificationManager.h */, - 46EB2E00003FB0 /* FIRCLSNotificationManager.m */, - 46EB2E00004310 /* FIRCLSOnDemandModel.h */, - 46EB2E00004320 /* FIRCLSOnDemandModel.m */, - 46EB2E00004500 /* FIRCLSOnDemandModel_Private.h */, - 46EB2E00004900 /* FIRCLSOperation.h */, - 46EB2E00003EE0 /* FIRCLSProcess.c */, - 46EB2E00003EF0 /* FIRCLSProcess.h */, - 46EB2E00004450 /* FIRCLSProcessReportOperation.h */, - 46EB2E00004460 /* FIRCLSProcessReportOperation.m */, - 46EB2E00004210 /* FIRCLSProfiling.c */, - 46EB2E00004220 /* FIRCLSProfiling.h */, - 46EB2E00004370 /* FIRCLSRecordApplication.h */, - 46EB2E00004380 /* FIRCLSRecordApplication.m */, - 46EB2E00004390 /* FIRCLSRecordBase.h */, - 46EB2E000043A0 /* FIRCLSRecordBase.m */, - 46EB2E000043B0 /* FIRCLSRecordHost.h */, - 46EB2E000043C0 /* FIRCLSRecordHost.m */, - 46EB2E000043D0 /* FIRCLSRecordIdentity.h */, - 46EB2E000043E0 /* FIRCLSRecordIdentity.m */, - 46EB2E000043F0 /* FIRCLSReportAdapter.h */, - 46EB2E00004400 /* FIRCLSReportAdapter.m */, - 46EB2E00004410 /* FIRCLSReportAdapter_Private.h */, - 46EB2E00003FC0 /* FIRCLSReportManager.h */, - 46EB2E00003FD0 /* FIRCLSReportManager.m */, - 46EB2E00003FE0 /* FIRCLSReportManager_Private.h */, - 46EB2E00003FF0 /* FIRCLSReportUploader.h */, - 46EB2E00004000 /* FIRCLSReportUploader.m */, - 46EB2E00004010 /* FIRCLSReportUploader_Private.h */, - 46EB2E00004490 /* FIRCLSSerializeSymbolicatedFramesOperation.h */, - 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */, - 46EB2E00004330 /* FIRCLSSettings.h */, - 46EB2E00004340 /* FIRCLSSettings.m */, - 46EB2E00004590 /* FIRCLSSettingsManager.h */, - 46EB2E000045A0 /* FIRCLSSettingsManager.m */, - 46EB2E00004130 /* FIRCLSSignal.c */, - 46EB2E00004140 /* FIRCLSSignal.h */, - 46EB2E000044B0 /* FIRCLSSymbolicationOperation.h */, - 46EB2E000044C0 /* FIRCLSSymbolicationOperation.m */, - 46EB2E00004350 /* FIRCLSSymbolResolver.h */, - 46EB2E00004360 /* FIRCLSSymbolResolver.m */, - 46EB2E000044D0 /* FIRCLSThreadArrayOperation.h */, - 46EB2E000044E0 /* FIRCLSThreadArrayOperation.m */, - 46EB2E00004230 /* FIRCLSThreadState.c */, - 46EB2E00004240 /* FIRCLSThreadState.h */, - 46EB2E000046B0 /* FIRCLSUnwind.c */, - 46EB2E000046C0 /* FIRCLSUnwind.h */, - 46EB2E000046D0 /* FIRCLSUnwind_arch.h */, - 46EB2E000046E0 /* FIRCLSUnwind_arm.c */, - 46EB2E000046F0 /* FIRCLSUnwind_x86.c */, - 46EB2E00004700 /* FIRCLSUnwind_x86.h */, - 46EB2E00004890 /* FIRCLSURLBuilder.h */, - 46EB2E000048A0 /* FIRCLSURLBuilder.m */, - 46EB2E00004060 /* FIRCLSUserDefaults.h */, - 46EB2E00004070 /* FIRCLSUserDefaults.m */, - 46EB2E00004080 /* FIRCLSUserDefaults_private.h */, - 46EB2E00003F00 /* FIRCLSUserLogging.h */, - 46EB2E00003F10 /* FIRCLSUserLogging.m */, - 46EB2E00004250 /* FIRCLSUtility.h */, - 46EB2E00004260 /* FIRCLSUtility.m */, - 46EB2E00004910 /* FIRCLSUUID.h */, - 46EB2E00004920 /* FIRCLSUUID.m */, - 46EB2E00004950 /* FIRComponent.h */, - 46EB2E00004960 /* FIRComponentContainer.h */, - 46EB2E00004970 /* FIRComponentType.h */, - 46EB2E00004980 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00004540 /* FIRCrashlytics.h */, - 46EB2E00004090 /* FIRCrashlytics.m */, - 46EB2E00004550 /* FIRCrashlyticsReport.h */, - 46EB2E000040A0 /* FIRCrashlyticsReport.m */, - 46EB2E00004510 /* FIRCrashlyticsReport_Private.h */, - 46EB2E00004990 /* FIRDependency.h */, - 46EB2E000049A0 /* FirebaseCoreInternal.h */, - 46EB2E00004560 /* FirebaseCrashlytics.h */, - 46EB2E00004A00 /* FirebaseInstallationsInternal.h */, - 46EB2E00004570 /* FIRExceptionModel.h */, - 46EB2E000040B0 /* FIRExceptionModel.m */, - 46EB2E00004520 /* FIRExceptionModel_Private.h */, - 46EB2E000049B0 /* FIRHeartbeatInfo.h */, - 46EB2E000049C0 /* FIRHeartbeatLogger.h */, - 46EB2E00004A30 /* FIRInteropEventNames.h */, - 46EB2E00004A40 /* FIRInteropParameterNames.h */, - 46EB2E000049D0 /* FIRLibrary.h */, - 46EB2E000049E0 /* FIRLogger.h */, - 46EB2E000049F0 /* FIROptionsInternal.h */, - 46EB2E00004580 /* FIRStackFrame.h */, - 46EB2E000040C0 /* FIRStackFrame.m */, - 46EB2E00004530 /* FIRStackFrame_Private.h */, - 46EB2E00027A60 /* Support Files */, + 46EB2E00004720 /* crashlytics.nanopb.c */, + 46EB2E00004730 /* crashlytics.nanopb.h */, + 46EB2E00004940 /* dwarf.h */, + 46EB2E00004A20 /* FIRAnalyticsInterop.h */, + 46EB2E00004A30 /* FIRAnalyticsInteropListener.h */, + 46EB2E00004950 /* FIRAppInternal.h */, + 46EB2E00004160 /* FIRCLSAllocate.c */, + 46EB2E00004170 /* FIRCLSAllocate.h */, + 46EB2E00003F30 /* FIRCLSAnalyticsManager.h */, + 46EB2E00003F40 /* FIRCLSAnalyticsManager.m */, + 46EB2E00003E40 /* FIRCLSApplication.h */, + 46EB2E00003E50 /* FIRCLSApplication.m */, + 46EB2E000045C0 /* FIRCLSApplicationIdentifierModel.h */, + 46EB2E000045D0 /* FIRCLSApplicationIdentifierModel.m */, + 46EB2E00004430 /* FIRCLSAsyncOperation.h */, + 46EB2E00004440 /* FIRCLSAsyncOperation.m */, + 46EB2E00004450 /* FIRCLSAsyncOperation_Private.h */, + 46EB2E00003E60 /* FIRCLSBinaryImage.h */, + 46EB2E00003E70 /* FIRCLSBinaryImage.m */, + 46EB2E00004740 /* FIRCLSByteUtility.h */, + 46EB2E00004750 /* FIRCLSByteUtility.m */, + 46EB2E00004180 /* FIRCLSCallStackTree.h */, + 46EB2E00004190 /* FIRCLSCallStackTree.m */, + 46EB2E000047A0 /* FIRCLSCodeMapping.h */, + 46EB2E000047B0 /* FIRCLSCodeMapping.m */, + 46EB2E00004620 /* FIRCLSCompactUnwind.c */, + 46EB2E00004630 /* FIRCLSCompactUnwind.h */, + 46EB2E00004640 /* FIRCLSCompactUnwind_Private.h */, + 46EB2E000048C0 /* FIRCLSCompoundOperation.h */, + 46EB2E000048D0 /* FIRCLSCompoundOperation.m */, + 46EB2E00004760 /* FIRCLSConstants.h */, + 46EB2E00004770 /* FIRCLSConstants.m */, + 46EB2E00003E80 /* FIRCLSContext.h */, + 46EB2E00003E90 /* FIRCLSContext.m */, + 46EB2E00003EA0 /* FIRCLSCrashedMarkerFile.c */, + 46EB2E00003EB0 /* FIRCLSCrashedMarkerFile.h */, + 46EB2E00004030 /* FIRCLSDataCollectionArbiter.h */, + 46EB2E00004040 /* FIRCLSDataCollectionArbiter.m */, + 46EB2E00004050 /* FIRCLSDataCollectionToken.h */, + 46EB2E00004060 /* FIRCLSDataCollectionToken.m */, + 46EB2E00004650 /* FIRCLSDataParsing.c */, + 46EB2E00004660 /* FIRCLSDataParsing.h */, + 46EB2E000041A0 /* FIRCLSDefines.h */, + 46EB2E00004480 /* FIRCLSDemangleOperation.h */, + 46EB2E00004490 /* FIRCLSDemangleOperation.mm */, + 46EB2E000045E0 /* FIRCLSDownloadAndSaveSettingsOperation.h */, + 46EB2E000045F0 /* FIRCLSDownloadAndSaveSettingsOperation.m */, + 46EB2E000047C0 /* FIRCLSdSYM.h */, + 46EB2E000047D0 /* FIRCLSdSYM.m */, + 46EB2E00004670 /* FIRCLSDwarfExpressionMachine.c */, + 46EB2E00004680 /* FIRCLSDwarfExpressionMachine.h */, + 46EB2E00004690 /* FIRCLSDwarfUnwind.c */, + 46EB2E000046A0 /* FIRCLSDwarfUnwind.h */, + 46EB2E000046B0 /* FIRCLSDwarfUnwindRegisters.h */, + 46EB2E000040E0 /* FIRCLSException.h */, + 46EB2E000040F0 /* FIRCLSException.mm */, + 46EB2E00004280 /* FIRCLSExecutionIdentifierModel.h */, + 46EB2E00004290 /* FIRCLSExecutionIdentifierModel.m */, + 46EB2E00003F50 /* FIRCLSExistingReportManager.h */, + 46EB2E00003F60 /* FIRCLSExistingReportManager.m */, + 46EB2E00004500 /* FIRCLSExistingReportManager_Private.h */, + 46EB2E000048E0 /* FIRCLSFABAsyncOperation.h */, + 46EB2E000048F0 /* FIRCLSFABAsyncOperation.m */, + 46EB2E00004900 /* FIRCLSFABAsyncOperation_Private.h */, + 46EB2E00004780 /* FIRCLSFABHost.h */, + 46EB2E00004790 /* FIRCLSFABHost.m */, + 46EB2E00004840 /* FIRCLSFABNetworkClient.h */, + 46EB2E00004850 /* FIRCLSFABNetworkClient.m */, + 46EB2E000041B0 /* FIRCLSFeatures.h */, + 46EB2E000041C0 /* FIRCLSFile.h */, + 46EB2E000041D0 /* FIRCLSFile.m */, + 46EB2E000042A0 /* FIRCLSFileManager.h */, + 46EB2E000042B0 /* FIRCLSFileManager.m */, + 46EB2E00003EC0 /* FIRCLSGlobals.h */, + 46EB2E00004100 /* FIRCLSHandler.h */, + 46EB2E00004110 /* FIRCLSHandler.m */, + 46EB2E00003ED0 /* FIRCLSHost.h */, + 46EB2E00003EE0 /* FIRCLSHost.m */, + 46EB2E000042C0 /* FIRCLSInstallIdentifierModel.h */, + 46EB2E000042D0 /* FIRCLSInstallIdentifierModel.m */, + 46EB2E000041E0 /* FIRCLSInternalLogging.c */, + 46EB2E000041F0 /* FIRCLSInternalLogging.h */, + 46EB2E000042E0 /* FIRCLSInternalReport.h */, + 46EB2E000042F0 /* FIRCLSInternalReport.m */, + 46EB2E00004300 /* FIRCLSLaunchMarkerModel.h */, + 46EB2E00004310 /* FIRCLSLaunchMarkerModel.m */, + 46EB2E00004200 /* FIRCLSLogger.h */, + 46EB2E00004210 /* FIRCLSLogger.m */, + 46EB2E00004120 /* FIRCLSMachException.c */, + 46EB2E00004130 /* FIRCLSMachException.h */, + 46EB2E000047E0 /* FIRCLSMachO.h */, + 46EB2E000047F0 /* FIRCLSMachO.m */, + 46EB2E00004800 /* FIRCLSMachOBinary.h */, + 46EB2E00004810 /* FIRCLSMachOBinary.m */, + 46EB2E00004820 /* FIRCLSMachOSlice.h */, + 46EB2E00004830 /* FIRCLSMachOSlice.m */, + 46EB2E00003F70 /* FIRCLSManagerData.h */, + 46EB2E00003F80 /* FIRCLSManagerData.m */, + 46EB2E00003F90 /* FIRCLSMetricKitManager.h */, + 46EB2E00003FA0 /* FIRCLSMetricKitManager.m */, + 46EB2E00004860 /* FIRCLSMultipartMimeStreamEncoder.h */, + 46EB2E00004870 /* FIRCLSMultipartMimeStreamEncoder.m */, + 46EB2E00004600 /* FIRCLSNetworkOperation.h */, + 46EB2E00004610 /* FIRCLSNetworkOperation.m */, + 46EB2E00004880 /* FIRCLSNetworkResponseHandler.h */, + 46EB2E00004890 /* FIRCLSNetworkResponseHandler.m */, + 46EB2E00003FB0 /* FIRCLSNotificationManager.h */, + 46EB2E00003FC0 /* FIRCLSNotificationManager.m */, + 46EB2E00004320 /* FIRCLSOnDemandModel.h */, + 46EB2E00004330 /* FIRCLSOnDemandModel.m */, + 46EB2E00004510 /* FIRCLSOnDemandModel_Private.h */, + 46EB2E00004910 /* FIRCLSOperation.h */, + 46EB2E00003EF0 /* FIRCLSProcess.c */, + 46EB2E00003F00 /* FIRCLSProcess.h */, + 46EB2E00004460 /* FIRCLSProcessReportOperation.h */, + 46EB2E00004470 /* FIRCLSProcessReportOperation.m */, + 46EB2E00004220 /* FIRCLSProfiling.c */, + 46EB2E00004230 /* FIRCLSProfiling.h */, + 46EB2E00004380 /* FIRCLSRecordApplication.h */, + 46EB2E00004390 /* FIRCLSRecordApplication.m */, + 46EB2E000043A0 /* FIRCLSRecordBase.h */, + 46EB2E000043B0 /* FIRCLSRecordBase.m */, + 46EB2E000043C0 /* FIRCLSRecordHost.h */, + 46EB2E000043D0 /* FIRCLSRecordHost.m */, + 46EB2E000043E0 /* FIRCLSRecordIdentity.h */, + 46EB2E000043F0 /* FIRCLSRecordIdentity.m */, + 46EB2E00004400 /* FIRCLSReportAdapter.h */, + 46EB2E00004410 /* FIRCLSReportAdapter.m */, + 46EB2E00004420 /* FIRCLSReportAdapter_Private.h */, + 46EB2E00003FD0 /* FIRCLSReportManager.h */, + 46EB2E00003FE0 /* FIRCLSReportManager.m */, + 46EB2E00003FF0 /* FIRCLSReportManager_Private.h */, + 46EB2E00004000 /* FIRCLSReportUploader.h */, + 46EB2E00004010 /* FIRCLSReportUploader.m */, + 46EB2E00004020 /* FIRCLSReportUploader_Private.h */, + 46EB2E000044A0 /* FIRCLSSerializeSymbolicatedFramesOperation.h */, + 46EB2E000044B0 /* FIRCLSSerializeSymbolicatedFramesOperation.m */, + 46EB2E00004340 /* FIRCLSSettings.h */, + 46EB2E00004350 /* FIRCLSSettings.m */, + 46EB2E000045A0 /* FIRCLSSettingsManager.h */, + 46EB2E000045B0 /* FIRCLSSettingsManager.m */, + 46EB2E00004140 /* FIRCLSSignal.c */, + 46EB2E00004150 /* FIRCLSSignal.h */, + 46EB2E000044C0 /* FIRCLSSymbolicationOperation.h */, + 46EB2E000044D0 /* FIRCLSSymbolicationOperation.m */, + 46EB2E00004360 /* FIRCLSSymbolResolver.h */, + 46EB2E00004370 /* FIRCLSSymbolResolver.m */, + 46EB2E000044E0 /* FIRCLSThreadArrayOperation.h */, + 46EB2E000044F0 /* FIRCLSThreadArrayOperation.m */, + 46EB2E00004240 /* FIRCLSThreadState.c */, + 46EB2E00004250 /* FIRCLSThreadState.h */, + 46EB2E000046C0 /* FIRCLSUnwind.c */, + 46EB2E000046D0 /* FIRCLSUnwind.h */, + 46EB2E000046E0 /* FIRCLSUnwind_arch.h */, + 46EB2E000046F0 /* FIRCLSUnwind_arm.c */, + 46EB2E00004700 /* FIRCLSUnwind_x86.c */, + 46EB2E00004710 /* FIRCLSUnwind_x86.h */, + 46EB2E000048A0 /* FIRCLSURLBuilder.h */, + 46EB2E000048B0 /* FIRCLSURLBuilder.m */, + 46EB2E00004070 /* FIRCLSUserDefaults.h */, + 46EB2E00004080 /* FIRCLSUserDefaults.m */, + 46EB2E00004090 /* FIRCLSUserDefaults_private.h */, + 46EB2E00003F10 /* FIRCLSUserLogging.h */, + 46EB2E00003F20 /* FIRCLSUserLogging.m */, + 46EB2E00004260 /* FIRCLSUtility.h */, + 46EB2E00004270 /* FIRCLSUtility.m */, + 46EB2E00004920 /* FIRCLSUUID.h */, + 46EB2E00004930 /* FIRCLSUUID.m */, + 46EB2E00004960 /* FIRComponent.h */, + 46EB2E00004970 /* FIRComponentContainer.h */, + 46EB2E00004980 /* FIRComponentType.h */, + 46EB2E00004990 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00004550 /* FIRCrashlytics.h */, + 46EB2E000040A0 /* FIRCrashlytics.m */, + 46EB2E00004560 /* FIRCrashlyticsReport.h */, + 46EB2E000040B0 /* FIRCrashlyticsReport.m */, + 46EB2E00004520 /* FIRCrashlyticsReport_Private.h */, + 46EB2E000049A0 /* FIRDependency.h */, + 46EB2E000049B0 /* FirebaseCoreInternal.h */, + 46EB2E00004570 /* FirebaseCrashlytics.h */, + 46EB2E00004A10 /* FirebaseInstallationsInternal.h */, + 46EB2E00004580 /* FIRExceptionModel.h */, + 46EB2E000040C0 /* FIRExceptionModel.m */, + 46EB2E00004530 /* FIRExceptionModel_Private.h */, + 46EB2E000049C0 /* FIRHeartbeatInfo.h */, + 46EB2E000049D0 /* FIRHeartbeatLogger.h */, + 46EB2E00004A40 /* FIRInteropEventNames.h */, + 46EB2E00004A50 /* FIRInteropParameterNames.h */, + 46EB2E000049E0 /* FIRLibrary.h */, + 46EB2E000049F0 /* FIRLogger.h */, + 46EB2E00004A00 /* FIROptionsInternal.h */, + 46EB2E00004590 /* FIRStackFrame.h */, + 46EB2E000040D0 /* FIRStackFrame.m */, + 46EB2E00004540 /* FIRStackFrame_Private.h */, + 46EB2E00027980 /* Support Files */, ); + name = FirebaseCrashlytics; path = FirebaseCrashlytics; sourceTree = ""; }; 46EB2E000001C0 /* FirebaseDatabase */ = { isa = PBXGroup; children = ( - 46EB2E00005690 /* APLevelDB.h */, - 46EB2E00005950 /* APLevelDB.mm */, - 46EB2E00004DB0 /* FAckUserWrite.h */, - 46EB2E00004DC0 /* FAckUserWrite.m */, - 46EB2E00005550 /* FArraySortedDictionary.h */, - 46EB2E00005560 /* FArraySortedDictionary.m */, - 46EB2E000056A0 /* FAtomicNumber.h */, - 46EB2E000056B0 /* FAtomicNumber.m */, - 46EB2E00005960 /* fbase64.c */, - 46EB2E00005640 /* fbase64.h */, - 46EB2E00004EE0 /* FCacheNode.h */, - 46EB2E00004EF0 /* FCacheNode.m */, - 46EB2E000052C0 /* FCachePolicy.h */, - 46EB2E000052D0 /* FCachePolicy.m */, - 46EB2E00004F00 /* FCancelEvent.h */, - 46EB2E00004F10 /* FCancelEvent.m */, - 46EB2E00004F20 /* FChange.h */, - 46EB2E00004F30 /* FChange.m */, - 46EB2E00004FC0 /* FChildChangeAccumulator.h */, - 46EB2E00004FD0 /* FChildChangeAccumulator.m */, - 46EB2E00004F40 /* FChildEventRegistration.h */, - 46EB2E00004F50 /* FChildEventRegistration.m */, - 46EB2E00005480 /* FChildrenNode.h */, - 46EB2E00005490 /* FChildrenNode.m */, - 46EB2E000050C0 /* FClock.h */, - 46EB2E000050D0 /* FClock.m */, - 46EB2E00004FE0 /* FCompleteChildSource.h */, - 46EB2E00004B80 /* FCompoundHash.h */, - 46EB2E00004B90 /* FCompoundHash.m */, - 46EB2E000054A0 /* FCompoundWrite.h */, - 46EB2E000054B0 /* FCompoundWrite.m */, - 46EB2E00005440 /* FConnection.h */, - 46EB2E00005450 /* FConnection.m */, - 46EB2E00004B60 /* FConstants.h */, - 46EB2E00004B70 /* FConstants.m */, - 46EB2E00004F60 /* FDataEvent.h */, - 46EB2E00004F70 /* FDataEvent.m */, - 46EB2E000054C0 /* FEmptyNode.h */, - 46EB2E000054D0 /* FEmptyNode.m */, - 46EB2E00004F80 /* FEvent.h */, - 46EB2E000056C0 /* FEventEmitter.h */, - 46EB2E000056D0 /* FEventEmitter.m */, - 46EB2E000050E0 /* FEventGenerator.h */, - 46EB2E000050F0 /* FEventGenerator.m */, - 46EB2E00004F90 /* FEventRaiser.h */, - 46EB2E00004FA0 /* FEventRaiser.m */, - 46EB2E00004FB0 /* FEventRegistration.h */, - 46EB2E00005570 /* FImmutableSortedDictionary.h */, - 46EB2E00005580 /* FImmutableSortedDictionary.m */, - 46EB2E00005590 /* FImmutableSortedSet.h */, - 46EB2E000055A0 /* FImmutableSortedSet.m */, - 46EB2E00004E40 /* FImmutableTree.h */, - 46EB2E00004E50 /* FImmutableTree.m */, - 46EB2E00005100 /* FIndex.h */, - 46EB2E00005110 /* FIndex.m */, - 46EB2E00004FF0 /* FIndexedFilter.h */, - 46EB2E00005000 /* FIndexedFilter.m */, - 46EB2E000054E0 /* FIndexedNode.h */, - 46EB2E000054F0 /* FIndexedNode.m */, - 46EB2E00005980 /* FIRAppCheckInterop.h */, - 46EB2E00005990 /* FIRAppCheckTokenResultInterop.h */, - 46EB2E000059A0 /* FIRAppInternal.h */, - 46EB2E00005970 /* FIRAuthInterop.h */, - 46EB2E000059B0 /* FIRComponent.h */, - 46EB2E000059C0 /* FIRComponentContainer.h */, - 46EB2E000059D0 /* FIRComponentType.h */, - 46EB2E000059E0 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E000053B0 /* FIRDatabase.h */, - 46EB2E00004A50 /* FIRDatabase.m */, - 46EB2E00004B10 /* FIRDatabase_Private.h */, - 46EB2E00004A60 /* FIRDatabaseComponent.h */, - 46EB2E00004A70 /* FIRDatabaseComponent.m */, - 46EB2E00004A80 /* FIRDatabaseConfig.h */, - 46EB2E00004A90 /* FIRDatabaseConfig.m */, - 46EB2E00005120 /* FIRDatabaseConfig_Private.h */, - 46EB2E000052A0 /* FIRDatabaseConnectionContextProvider.h */, - 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.m */, - 46EB2E000053C0 /* FIRDatabaseQuery.h */, - 46EB2E00004AA0 /* FIRDatabaseQuery.m */, - 46EB2E00004AF0 /* FIRDatabaseQuery_Private.h */, - 46EB2E000053D0 /* FIRDatabaseReference.h */, - 46EB2E00005130 /* FIRDatabaseReference.m */, - 46EB2E00004B00 /* FIRDatabaseReference_Private.h */, - 46EB2E000053E0 /* FIRDataEventType.h */, - 46EB2E000053F0 /* FIRDataSnapshot.h */, - 46EB2E00004AB0 /* FIRDataSnapshot.m */, - 46EB2E00004B20 /* FIRDataSnapshot_Private.h */, - 46EB2E000059F0 /* FIRDependency.h */, - 46EB2E00005A00 /* FirebaseCoreInternal.h */, - 46EB2E00005400 /* FirebaseDatabase.h */, - 46EB2E00005A10 /* FIRHeartbeatInfo.h */, - 46EB2E00005A20 /* FIRHeartbeatLogger.h */, - 46EB2E00005A30 /* FIRLibrary.h */, - 46EB2E00005A40 /* FIRLogger.h */, - 46EB2E00005410 /* FIRMutableData.h */, - 46EB2E00004AC0 /* FIRMutableData.m */, - 46EB2E00004B30 /* FIRMutableData_Private.h */, - 46EB2E00005A50 /* FIROptionsInternal.h */, - 46EB2E00004E60 /* FIRRetryHelper.h */, - 46EB2E00004E70 /* FIRRetryHelper.m */, - 46EB2E00005420 /* FIRServerValue.h */, - 46EB2E00004AD0 /* FIRServerValue.m */, - 46EB2E00005430 /* FIRTransactionResult.h */, - 46EB2E00004AE0 /* FIRTransactionResult.m */, - 46EB2E00004B40 /* FIRTransactionResult_Private.h */, - 46EB2E00005040 /* FKeepSyncedEventRegistration.h */, - 46EB2E00005050 /* FKeepSyncedEventRegistration.m */, - 46EB2E00005140 /* FKeyIndex.h */, - 46EB2E00005150 /* FKeyIndex.m */, - 46EB2E00005500 /* FLeafNode.h */, - 46EB2E00005510 /* FLeafNode.m */, - 46EB2E000052E0 /* FLevelDBStorageEngine.h */, - 46EB2E000052F0 /* FLevelDBStorageEngine.m */, - 46EB2E00005010 /* FLimitedFilter.h */, - 46EB2E00005020 /* FLimitedFilter.m */, - 46EB2E00005160 /* FListenComplete.h */, - 46EB2E00005170 /* FListenComplete.m */, - 46EB2E00004BA0 /* FListenProvider.h */, - 46EB2E00004BB0 /* FListenProvider.m */, - 46EB2E000055B0 /* FLLRBEmptyNode.h */, - 46EB2E000055C0 /* FLLRBEmptyNode.m */, - 46EB2E000055D0 /* FLLRBNode.h */, - 46EB2E000055E0 /* FLLRBValueNode.h */, - 46EB2E000055F0 /* FLLRBValueNode.m */, - 46EB2E00005180 /* FMaxNode.h */, - 46EB2E00005190 /* FMaxNode.m */, - 46EB2E00004DD0 /* FMerge.h */, - 46EB2E00004DE0 /* FMerge.m */, - 46EB2E000051A0 /* FNamedNode.h */, - 46EB2E000051B0 /* FNamedNode.m */, - 46EB2E000056E0 /* FNextPushId.h */, - 46EB2E000056F0 /* FNextPushId.m */, - 46EB2E00005520 /* FNode.h */, - 46EB2E00005030 /* FNodeFilter.h */, - 46EB2E00004DF0 /* FOperation.h */, - 46EB2E00004E00 /* FOperationSource.h */, - 46EB2E00004E10 /* FOperationSource.m */, - 46EB2E00004E20 /* FOverwrite.h */, - 46EB2E00004E30 /* FOverwrite.m */, - 46EB2E00005700 /* FParsedUrl.h */, - 46EB2E00005710 /* FParsedUrl.m */, - 46EB2E00004E80 /* FPath.h */, - 46EB2E00004E90 /* FPath.m */, - 46EB2E000051C0 /* FPathIndex.h */, - 46EB2E000051D0 /* FPathIndex.m */, - 46EB2E00005300 /* FPendingPut.h */, - 46EB2E00005310 /* FPendingPut.m */, - 46EB2E00005320 /* FPersistenceManager.h */, - 46EB2E00005330 /* FPersistenceManager.m */, - 46EB2E00004BC0 /* FPersistentConnection.h */, - 46EB2E00004BD0 /* FPersistentConnection.m */, - 46EB2E000051E0 /* FPriorityIndex.h */, - 46EB2E000051F0 /* FPriorityIndex.m */, - 46EB2E00005340 /* FPruneForest.h */, - 46EB2E00005350 /* FPruneForest.m */, - 46EB2E00004BE0 /* FQueryParams.h */, - 46EB2E00004BF0 /* FQueryParams.m */, - 46EB2E00004C00 /* FQuerySpec.h */, - 46EB2E00004C10 /* FQuerySpec.m */, - 46EB2E00005200 /* FRangedFilter.h */, - 46EB2E00005210 /* FRangedFilter.m */, - 46EB2E00004C20 /* FRangeMerge.h */, - 46EB2E00004C30 /* FRangeMerge.m */, - 46EB2E00004C40 /* FRepo.h */, - 46EB2E00004C50 /* FRepo.m */, - 46EB2E00004CA0 /* FRepo_Private.h */, - 46EB2E00004C60 /* FRepoInfo.h */, - 46EB2E00004C70 /* FRepoInfo.m */, - 46EB2E00004C80 /* FRepoManager.h */, - 46EB2E00004C90 /* FRepoManager.m */, - 46EB2E00004CB0 /* FServerValues.h */, - 46EB2E00004CC0 /* FServerValues.m */, - 46EB2E00004CD0 /* FSnapshotHolder.h */, - 46EB2E00004CE0 /* FSnapshotHolder.m */, - 46EB2E00005530 /* FSnapshotUtilities.h */, - 46EB2E00005540 /* FSnapshotUtilities.m */, - 46EB2E00004CF0 /* FSparseSnapshotTree.h */, - 46EB2E00004D00 /* FSparseSnapshotTree.m */, - 46EB2E00005650 /* FSRWebSocket.h */, - 46EB2E00005660 /* FSRWebSocket.m */, - 46EB2E00005360 /* FStorageEngine.h */, - 46EB2E00005720 /* FStringUtilities.h */, - 46EB2E00005730 /* FStringUtilities.m */, - 46EB2E00004D10 /* FSyncPoint.h */, - 46EB2E00004D20 /* FSyncPoint.m */, - 46EB2E00004D30 /* FSyncTree.h */, - 46EB2E00004D40 /* FSyncTree.m */, - 46EB2E00005370 /* FTrackedQuery.h */, - 46EB2E00005380 /* FTrackedQuery.m */, - 46EB2E00005390 /* FTrackedQueryManager.h */, - 46EB2E000053A0 /* FTrackedQueryManager.m */, - 46EB2E00005220 /* FTransformedEnumerator.h */, - 46EB2E00005230 /* FTransformedEnumerator.m */, - 46EB2E00004EA0 /* FTree.h */, - 46EB2E00004EB0 /* FTree.m */, - 46EB2E00004EC0 /* FTreeNode.h */, - 46EB2E00004ED0 /* FTreeNode.m */, - 46EB2E00005600 /* FTreeSortedDictionary.h */, - 46EB2E00005610 /* FTreeSortedDictionary.m */, - 46EB2E00005620 /* FTreeSortedDictionaryEnumerator.h */, - 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.m */, - 46EB2E00005790 /* FTupleBoolBlock.h */, - 46EB2E000057A0 /* FTupleBoolBlock.m */, - 46EB2E000057B0 /* FTupleCallbackStatus.h */, - 46EB2E000057C0 /* FTupleCallbackStatus.m */, - 46EB2E000057D0 /* FTupleFirebase.h */, - 46EB2E000057E0 /* FTupleFirebase.m */, - 46EB2E000057F0 /* FTupleNodePath.h */, - 46EB2E00005800 /* FTupleNodePath.m */, - 46EB2E00005810 /* FTupleObjectNode.h */, - 46EB2E00005820 /* FTupleObjectNode.m */, - 46EB2E00005830 /* FTupleObjects.h */, - 46EB2E00005840 /* FTupleObjects.m */, - 46EB2E00005850 /* FTupleOnDisconnect.h */, - 46EB2E00005860 /* FTupleOnDisconnect.m */, - 46EB2E00005870 /* FTuplePathValue.h */, - 46EB2E00005880 /* FTuplePathValue.m */, - 46EB2E00005890 /* FTupleRemovedQueriesEvents.h */, - 46EB2E000058A0 /* FTupleRemovedQueriesEvents.m */, - 46EB2E000058B0 /* FTupleSetIdPath.h */, - 46EB2E000058C0 /* FTupleSetIdPath.m */, - 46EB2E000058D0 /* FTupleStringNode.h */, - 46EB2E000058E0 /* FTupleStringNode.m */, - 46EB2E000058F0 /* FTupleTransaction.h */, - 46EB2E00005900 /* FTupleTransaction.m */, - 46EB2E00005910 /* FTupleTSN.h */, - 46EB2E00005920 /* FTupleTSN.m */, - 46EB2E00005930 /* FTupleUserCallback.h */, - 46EB2E00005940 /* FTupleUserCallback.m */, - 46EB2E00005740 /* FTypedefs.h */, - 46EB2E00004B50 /* FTypedefs_Private.h */, - 46EB2E00005750 /* FUtilities.h */, - 46EB2E00005760 /* FUtilities.m */, - 46EB2E00005770 /* FValidation.h */, - 46EB2E00005780 /* FValidation.m */, - 46EB2E00005060 /* FValueEventRegistration.h */, - 46EB2E00005070 /* FValueEventRegistration.m */, - 46EB2E00005240 /* FValueIndex.h */, - 46EB2E00005250 /* FValueIndex.m */, - 46EB2E00005080 /* FView.h */, - 46EB2E00005090 /* FView.m */, - 46EB2E000050A0 /* FViewCache.h */, - 46EB2E000050B0 /* FViewCache.m */, - 46EB2E00005260 /* FViewProcessor.h */, - 46EB2E00005270 /* FViewProcessor.m */, - 46EB2E00005280 /* FViewProcessorResult.h */, - 46EB2E00005290 /* FViewProcessorResult.m */, - 46EB2E00005460 /* FWebSocketConnection.h */, - 46EB2E00005470 /* FWebSocketConnection.m */, - 46EB2E00004D50 /* FWriteRecord.h */, - 46EB2E00004D60 /* FWriteRecord.m */, - 46EB2E00004D70 /* FWriteTree.h */, - 46EB2E00004D80 /* FWriteTree.m */, - 46EB2E00004D90 /* FWriteTreeRef.h */, - 46EB2E00004DA0 /* FWriteTreeRef.m */, - 46EB2E00005670 /* NSData+SRB64Additions.h */, - 46EB2E00005680 /* NSData+SRB64Additions.m */, - 46EB2E00028B40 /* Support Files */, + 46EB2E000056A0 /* APLevelDB.h */, + 46EB2E00005960 /* APLevelDB.mm */, + 46EB2E00004DC0 /* FAckUserWrite.h */, + 46EB2E00004DD0 /* FAckUserWrite.m */, + 46EB2E00005560 /* FArraySortedDictionary.h */, + 46EB2E00005570 /* FArraySortedDictionary.m */, + 46EB2E000056B0 /* FAtomicNumber.h */, + 46EB2E000056C0 /* FAtomicNumber.m */, + 46EB2E00005970 /* fbase64.c */, + 46EB2E00005650 /* fbase64.h */, + 46EB2E00004EF0 /* FCacheNode.h */, + 46EB2E00004F00 /* FCacheNode.m */, + 46EB2E000052D0 /* FCachePolicy.h */, + 46EB2E000052E0 /* FCachePolicy.m */, + 46EB2E00004F10 /* FCancelEvent.h */, + 46EB2E00004F20 /* FCancelEvent.m */, + 46EB2E00004F30 /* FChange.h */, + 46EB2E00004F40 /* FChange.m */, + 46EB2E00004FD0 /* FChildChangeAccumulator.h */, + 46EB2E00004FE0 /* FChildChangeAccumulator.m */, + 46EB2E00004F50 /* FChildEventRegistration.h */, + 46EB2E00004F60 /* FChildEventRegistration.m */, + 46EB2E00005490 /* FChildrenNode.h */, + 46EB2E000054A0 /* FChildrenNode.m */, + 46EB2E000050D0 /* FClock.h */, + 46EB2E000050E0 /* FClock.m */, + 46EB2E00004FF0 /* FCompleteChildSource.h */, + 46EB2E00004B90 /* FCompoundHash.h */, + 46EB2E00004BA0 /* FCompoundHash.m */, + 46EB2E000054B0 /* FCompoundWrite.h */, + 46EB2E000054C0 /* FCompoundWrite.m */, + 46EB2E00005450 /* FConnection.h */, + 46EB2E00005460 /* FConnection.m */, + 46EB2E00004B70 /* FConstants.h */, + 46EB2E00004B80 /* FConstants.m */, + 46EB2E00004F70 /* FDataEvent.h */, + 46EB2E00004F80 /* FDataEvent.m */, + 46EB2E000054D0 /* FEmptyNode.h */, + 46EB2E000054E0 /* FEmptyNode.m */, + 46EB2E00004F90 /* FEvent.h */, + 46EB2E000056D0 /* FEventEmitter.h */, + 46EB2E000056E0 /* FEventEmitter.m */, + 46EB2E000050F0 /* FEventGenerator.h */, + 46EB2E00005100 /* FEventGenerator.m */, + 46EB2E00004FA0 /* FEventRaiser.h */, + 46EB2E00004FB0 /* FEventRaiser.m */, + 46EB2E00004FC0 /* FEventRegistration.h */, + 46EB2E00005580 /* FImmutableSortedDictionary.h */, + 46EB2E00005590 /* FImmutableSortedDictionary.m */, + 46EB2E000055A0 /* FImmutableSortedSet.h */, + 46EB2E000055B0 /* FImmutableSortedSet.m */, + 46EB2E00004E50 /* FImmutableTree.h */, + 46EB2E00004E60 /* FImmutableTree.m */, + 46EB2E00005110 /* FIndex.h */, + 46EB2E00005120 /* FIndex.m */, + 46EB2E00005000 /* FIndexedFilter.h */, + 46EB2E00005010 /* FIndexedFilter.m */, + 46EB2E000054F0 /* FIndexedNode.h */, + 46EB2E00005500 /* FIndexedNode.m */, + 46EB2E00005990 /* FIRAppCheckInterop.h */, + 46EB2E000059A0 /* FIRAppCheckTokenResultInterop.h */, + 46EB2E000059B0 /* FIRAppInternal.h */, + 46EB2E00005980 /* FIRAuthInterop.h */, + 46EB2E000059C0 /* FIRComponent.h */, + 46EB2E000059D0 /* FIRComponentContainer.h */, + 46EB2E000059E0 /* FIRComponentType.h */, + 46EB2E000059F0 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E000053C0 /* FIRDatabase.h */, + 46EB2E00004A60 /* FIRDatabase.m */, + 46EB2E00004B20 /* FIRDatabase_Private.h */, + 46EB2E00004A70 /* FIRDatabaseComponent.h */, + 46EB2E00004A80 /* FIRDatabaseComponent.m */, + 46EB2E00004A90 /* FIRDatabaseConfig.h */, + 46EB2E00004AA0 /* FIRDatabaseConfig.m */, + 46EB2E00005130 /* FIRDatabaseConfig_Private.h */, + 46EB2E000052B0 /* FIRDatabaseConnectionContextProvider.h */, + 46EB2E000052C0 /* FIRDatabaseConnectionContextProvider.m */, + 46EB2E000053D0 /* FIRDatabaseQuery.h */, + 46EB2E00004AB0 /* FIRDatabaseQuery.m */, + 46EB2E00004B00 /* FIRDatabaseQuery_Private.h */, + 46EB2E000053E0 /* FIRDatabaseReference.h */, + 46EB2E00005140 /* FIRDatabaseReference.m */, + 46EB2E00004B10 /* FIRDatabaseReference_Private.h */, + 46EB2E000053F0 /* FIRDataEventType.h */, + 46EB2E00005400 /* FIRDataSnapshot.h */, + 46EB2E00004AC0 /* FIRDataSnapshot.m */, + 46EB2E00004B30 /* FIRDataSnapshot_Private.h */, + 46EB2E00005A00 /* FIRDependency.h */, + 46EB2E00005A10 /* FirebaseCoreInternal.h */, + 46EB2E00005410 /* FirebaseDatabase.h */, + 46EB2E00005A20 /* FIRHeartbeatInfo.h */, + 46EB2E00005A30 /* FIRHeartbeatLogger.h */, + 46EB2E00005A40 /* FIRLibrary.h */, + 46EB2E00005A50 /* FIRLogger.h */, + 46EB2E00005420 /* FIRMutableData.h */, + 46EB2E00004AD0 /* FIRMutableData.m */, + 46EB2E00004B40 /* FIRMutableData_Private.h */, + 46EB2E00005A60 /* FIROptionsInternal.h */, + 46EB2E00004E70 /* FIRRetryHelper.h */, + 46EB2E00004E80 /* FIRRetryHelper.m */, + 46EB2E00005430 /* FIRServerValue.h */, + 46EB2E00004AE0 /* FIRServerValue.m */, + 46EB2E00005440 /* FIRTransactionResult.h */, + 46EB2E00004AF0 /* FIRTransactionResult.m */, + 46EB2E00004B50 /* FIRTransactionResult_Private.h */, + 46EB2E00005050 /* FKeepSyncedEventRegistration.h */, + 46EB2E00005060 /* FKeepSyncedEventRegistration.m */, + 46EB2E00005150 /* FKeyIndex.h */, + 46EB2E00005160 /* FKeyIndex.m */, + 46EB2E00005510 /* FLeafNode.h */, + 46EB2E00005520 /* FLeafNode.m */, + 46EB2E000052F0 /* FLevelDBStorageEngine.h */, + 46EB2E00005300 /* FLevelDBStorageEngine.m */, + 46EB2E00005020 /* FLimitedFilter.h */, + 46EB2E00005030 /* FLimitedFilter.m */, + 46EB2E00005170 /* FListenComplete.h */, + 46EB2E00005180 /* FListenComplete.m */, + 46EB2E00004BB0 /* FListenProvider.h */, + 46EB2E00004BC0 /* FListenProvider.m */, + 46EB2E000055C0 /* FLLRBEmptyNode.h */, + 46EB2E000055D0 /* FLLRBEmptyNode.m */, + 46EB2E000055E0 /* FLLRBNode.h */, + 46EB2E000055F0 /* FLLRBValueNode.h */, + 46EB2E00005600 /* FLLRBValueNode.m */, + 46EB2E00005190 /* FMaxNode.h */, + 46EB2E000051A0 /* FMaxNode.m */, + 46EB2E00004DE0 /* FMerge.h */, + 46EB2E00004DF0 /* FMerge.m */, + 46EB2E000051B0 /* FNamedNode.h */, + 46EB2E000051C0 /* FNamedNode.m */, + 46EB2E000056F0 /* FNextPushId.h */, + 46EB2E00005700 /* FNextPushId.m */, + 46EB2E00005530 /* FNode.h */, + 46EB2E00005040 /* FNodeFilter.h */, + 46EB2E00004E00 /* FOperation.h */, + 46EB2E00004E10 /* FOperationSource.h */, + 46EB2E00004E20 /* FOperationSource.m */, + 46EB2E00004E30 /* FOverwrite.h */, + 46EB2E00004E40 /* FOverwrite.m */, + 46EB2E00005710 /* FParsedUrl.h */, + 46EB2E00005720 /* FParsedUrl.m */, + 46EB2E00004E90 /* FPath.h */, + 46EB2E00004EA0 /* FPath.m */, + 46EB2E000051D0 /* FPathIndex.h */, + 46EB2E000051E0 /* FPathIndex.m */, + 46EB2E00005310 /* FPendingPut.h */, + 46EB2E00005320 /* FPendingPut.m */, + 46EB2E00005330 /* FPersistenceManager.h */, + 46EB2E00005340 /* FPersistenceManager.m */, + 46EB2E00004BD0 /* FPersistentConnection.h */, + 46EB2E00004BE0 /* FPersistentConnection.m */, + 46EB2E000051F0 /* FPriorityIndex.h */, + 46EB2E00005200 /* FPriorityIndex.m */, + 46EB2E00005350 /* FPruneForest.h */, + 46EB2E00005360 /* FPruneForest.m */, + 46EB2E00004BF0 /* FQueryParams.h */, + 46EB2E00004C00 /* FQueryParams.m */, + 46EB2E00004C10 /* FQuerySpec.h */, + 46EB2E00004C20 /* FQuerySpec.m */, + 46EB2E00005210 /* FRangedFilter.h */, + 46EB2E00005220 /* FRangedFilter.m */, + 46EB2E00004C30 /* FRangeMerge.h */, + 46EB2E00004C40 /* FRangeMerge.m */, + 46EB2E00004C50 /* FRepo.h */, + 46EB2E00004C60 /* FRepo.m */, + 46EB2E00004CB0 /* FRepo_Private.h */, + 46EB2E00004C70 /* FRepoInfo.h */, + 46EB2E00004C80 /* FRepoInfo.m */, + 46EB2E00004C90 /* FRepoManager.h */, + 46EB2E00004CA0 /* FRepoManager.m */, + 46EB2E00004CC0 /* FServerValues.h */, + 46EB2E00004CD0 /* FServerValues.m */, + 46EB2E00004CE0 /* FSnapshotHolder.h */, + 46EB2E00004CF0 /* FSnapshotHolder.m */, + 46EB2E00005540 /* FSnapshotUtilities.h */, + 46EB2E00005550 /* FSnapshotUtilities.m */, + 46EB2E00004D00 /* FSparseSnapshotTree.h */, + 46EB2E00004D10 /* FSparseSnapshotTree.m */, + 46EB2E00005660 /* FSRWebSocket.h */, + 46EB2E00005670 /* FSRWebSocket.m */, + 46EB2E00005370 /* FStorageEngine.h */, + 46EB2E00005730 /* FStringUtilities.h */, + 46EB2E00005740 /* FStringUtilities.m */, + 46EB2E00004D20 /* FSyncPoint.h */, + 46EB2E00004D30 /* FSyncPoint.m */, + 46EB2E00004D40 /* FSyncTree.h */, + 46EB2E00004D50 /* FSyncTree.m */, + 46EB2E00005380 /* FTrackedQuery.h */, + 46EB2E00005390 /* FTrackedQuery.m */, + 46EB2E000053A0 /* FTrackedQueryManager.h */, + 46EB2E000053B0 /* FTrackedQueryManager.m */, + 46EB2E00005230 /* FTransformedEnumerator.h */, + 46EB2E00005240 /* FTransformedEnumerator.m */, + 46EB2E00004EB0 /* FTree.h */, + 46EB2E00004EC0 /* FTree.m */, + 46EB2E00004ED0 /* FTreeNode.h */, + 46EB2E00004EE0 /* FTreeNode.m */, + 46EB2E00005610 /* FTreeSortedDictionary.h */, + 46EB2E00005620 /* FTreeSortedDictionary.m */, + 46EB2E00005630 /* FTreeSortedDictionaryEnumerator.h */, + 46EB2E00005640 /* FTreeSortedDictionaryEnumerator.m */, + 46EB2E000057A0 /* FTupleBoolBlock.h */, + 46EB2E000057B0 /* FTupleBoolBlock.m */, + 46EB2E000057C0 /* FTupleCallbackStatus.h */, + 46EB2E000057D0 /* FTupleCallbackStatus.m */, + 46EB2E000057E0 /* FTupleFirebase.h */, + 46EB2E000057F0 /* FTupleFirebase.m */, + 46EB2E00005800 /* FTupleNodePath.h */, + 46EB2E00005810 /* FTupleNodePath.m */, + 46EB2E00005820 /* FTupleObjectNode.h */, + 46EB2E00005830 /* FTupleObjectNode.m */, + 46EB2E00005840 /* FTupleObjects.h */, + 46EB2E00005850 /* FTupleObjects.m */, + 46EB2E00005860 /* FTupleOnDisconnect.h */, + 46EB2E00005870 /* FTupleOnDisconnect.m */, + 46EB2E00005880 /* FTuplePathValue.h */, + 46EB2E00005890 /* FTuplePathValue.m */, + 46EB2E000058A0 /* FTupleRemovedQueriesEvents.h */, + 46EB2E000058B0 /* FTupleRemovedQueriesEvents.m */, + 46EB2E000058C0 /* FTupleSetIdPath.h */, + 46EB2E000058D0 /* FTupleSetIdPath.m */, + 46EB2E000058E0 /* FTupleStringNode.h */, + 46EB2E000058F0 /* FTupleStringNode.m */, + 46EB2E00005900 /* FTupleTransaction.h */, + 46EB2E00005910 /* FTupleTransaction.m */, + 46EB2E00005920 /* FTupleTSN.h */, + 46EB2E00005930 /* FTupleTSN.m */, + 46EB2E00005940 /* FTupleUserCallback.h */, + 46EB2E00005950 /* FTupleUserCallback.m */, + 46EB2E00005750 /* FTypedefs.h */, + 46EB2E00004B60 /* FTypedefs_Private.h */, + 46EB2E00005760 /* FUtilities.h */, + 46EB2E00005770 /* FUtilities.m */, + 46EB2E00005780 /* FValidation.h */, + 46EB2E00005790 /* FValidation.m */, + 46EB2E00005070 /* FValueEventRegistration.h */, + 46EB2E00005080 /* FValueEventRegistration.m */, + 46EB2E00005250 /* FValueIndex.h */, + 46EB2E00005260 /* FValueIndex.m */, + 46EB2E00005090 /* FView.h */, + 46EB2E000050A0 /* FView.m */, + 46EB2E000050B0 /* FViewCache.h */, + 46EB2E000050C0 /* FViewCache.m */, + 46EB2E00005270 /* FViewProcessor.h */, + 46EB2E00005280 /* FViewProcessor.m */, + 46EB2E00005290 /* FViewProcessorResult.h */, + 46EB2E000052A0 /* FViewProcessorResult.m */, + 46EB2E00005470 /* FWebSocketConnection.h */, + 46EB2E00005480 /* FWebSocketConnection.m */, + 46EB2E00004D60 /* FWriteRecord.h */, + 46EB2E00004D70 /* FWriteRecord.m */, + 46EB2E00004D80 /* FWriteTree.h */, + 46EB2E00004D90 /* FWriteTree.m */, + 46EB2E00004DA0 /* FWriteTreeRef.h */, + 46EB2E00004DB0 /* FWriteTreeRef.m */, + 46EB2E00005680 /* NSData+SRB64Additions.h */, + 46EB2E00005690 /* NSData+SRB64Additions.m */, + 46EB2E00028A60 /* Support Files */, ); + name = FirebaseDatabase; path = FirebaseDatabase; sourceTree = ""; }; 46EB2E000001D0 /* FirebaseFirestore */ = { isa = PBXGroup; children = ( - 46EB2E00005E60 /* annotations.nanopb.cc */, - 46EB2E00005EF0 /* any.nanopb.cc */, - 46EB2E00006060 /* array_contains_any_filter.cc */, - 46EB2E00006070 /* array_contains_filter.cc */, - 46EB2E00006840 /* async_queue.cc */, - 46EB2E000061F0 /* auth_token.cc */, - 46EB2E00006850 /* autoid.cc */, - 46EB2E00006860 /* background_queue.cc */, - 46EB2E00006870 /* bits.cc */, - 46EB2E00006080 /* bound.cc */, - 46EB2E00005E20 /* bundle.nanopb.cc */, - 46EB2E00006030 /* bundle_loader.cc */, - 46EB2E00006040 /* bundle_reader.cc */, - 46EB2E00006050 /* bundle_serializer.cc */, - 46EB2E00006880 /* byte_stream_apple.mm */, - 46EB2E00006890 /* byte_stream_cpp.cc */, - 46EB2E00006630 /* byte_string.cc */, - 46EB2E00005F60 /* collection_reference.cc */, - 46EB2E00005EA0 /* common.nanopb.cc */, - 46EB2E000068A0 /* comparison.cc */, - 46EB2E00006690 /* connectivity_monitor.cc */, - 46EB2E000066A0 /* connectivity_monitor_apple.mm */, - 46EB2E00005C90 /* converters.mm */, - 46EB2E000064A0 /* database_id.cc */, - 46EB2E00006090 /* database_info.cc */, - 46EB2E000066B0 /* datastore.cc */, - 46EB2E000064B0 /* delete_mutation.cc */, - 46EB2E000060A0 /* direction.cc */, - 46EB2E000064C0 /* document.cc */, - 46EB2E00005EB0 /* document.nanopb.cc */, - 46EB2E00005F70 /* document_change.cc */, - 46EB2E000064D0 /* document_key.cc */, - 46EB2E00006280 /* document_key_reference.cc */, - 46EB2E00006290 /* document_overlay_cache.cc */, - 46EB2E00005F80 /* document_reference.cc */, - 46EB2E000064E0 /* document_set.cc */, - 46EB2E00005F90 /* document_snapshot.cc */, - 46EB2E00005F00 /* empty.nanopb.cc */, - 46EB2E000068B0 /* error_apple.mm */, - 46EB2E000060B0 /* event_manager.cc */, - 46EB2E000068C0 /* exception.cc */, - 46EB2E000068D0 /* exception_apple.mm */, - 46EB2E000068E0 /* executor_libdispatch.mm */, - 46EB2E000068F0 /* executor_std.cc */, - 46EB2E000066C0 /* exponential_backoff.cc */, - 46EB2E000060C0 /* field_filter.cc */, - 46EB2E000064F0 /* field_index.cc */, - 46EB2E00006500 /* field_mask.cc */, - 46EB2E00006510 /* field_path.cc */, - 46EB2E00006520 /* field_transform.cc */, - 46EB2E00006900 /* filesystem_apple.mm */, - 46EB2E00006910 /* filesystem_common.cc */, - 46EB2E00006920 /* filesystem_posix.cc */, - 46EB2E000060D0 /* filter.cc */, - 46EB2E00005A60 /* FIRAppCheckInterop.h */, - 46EB2E00005A70 /* FIRAppCheckTokenResultInterop.h */, - 46EB2E00005A80 /* FIRAppInternal.h */, - 46EB2E00006A40 /* FIRAuthInterop.h */, - 46EB2E00005B40 /* FIRCollectionReference.h */, - 46EB2E00005CA0 /* FIRCollectionReference.mm */, - 46EB2E00005A90 /* FIRComponent.h */, - 46EB2E00005AA0 /* FIRComponentContainer.h */, - 46EB2E00005AB0 /* FIRComponentType.h */, - 46EB2E00005AC0 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00005AD0 /* FIRDependency.h */, - 46EB2E00005B50 /* FIRDocumentChange.h */, - 46EB2E00005CB0 /* FIRDocumentChange.mm */, - 46EB2E00005B60 /* FIRDocumentReference.h */, - 46EB2E00005CC0 /* FIRDocumentReference.mm */, - 46EB2E00005B70 /* FIRDocumentSnapshot.h */, - 46EB2E00005CD0 /* FIRDocumentSnapshot.mm */, - 46EB2E00006200 /* firebase_app_check_credentials_provider_apple.mm */, - 46EB2E00006210 /* firebase_auth_credentials_provider_apple.mm */, - 46EB2E000066D0 /* firebase_metadata_provider.cc */, - 46EB2E000066E0 /* firebase_metadata_provider_apple.mm */, - 46EB2E000066F0 /* firebase_metadata_provider_noop.cc */, - 46EB2E00005AE0 /* FirebaseCoreInternal.h */, - 46EB2E00005B80 /* FirebaseFirestore.h */, - 46EB2E00005FA0 /* firestore.cc */, - 46EB2E00005EC0 /* firestore.nanopb.cc */, - 46EB2E000060E0 /* firestore_client.cc */, - 46EB2E00006260 /* firestore_index_value_writer.cc */, - 46EB2E00006230 /* firestore_version.cc */, - 46EB2E00005B90 /* FIRFieldPath.h */, - 46EB2E00005CE0 /* FIRFieldPath.mm */, - 46EB2E00005BA0 /* FIRFieldValue.h */, - 46EB2E00005CF0 /* FIRFieldValue.mm */, - 46EB2E00005D00 /* FIRFilter.mm */, - 46EB2E00005BB0 /* FIRFirestore.h */, - 46EB2E00005D10 /* FIRFirestore.mm */, - 46EB2E00005BC0 /* FIRFirestoreErrors.h */, - 46EB2E00005BD0 /* FIRFirestoreSettings.h */, - 46EB2E00005D20 /* FIRFirestoreSettings.mm */, - 46EB2E00005BE0 /* FIRFirestoreSource.h */, - 46EB2E00005D30 /* FIRFirestoreSource.mm */, - 46EB2E00005D40 /* FIRFirestoreVersion.mm */, - 46EB2E00005BF0 /* FIRGeoPoint.h */, - 46EB2E00005D50 /* FIRGeoPoint.mm */, - 46EB2E00005AF0 /* FIRHeartbeatInfo.h */, - 46EB2E00005B00 /* FIRHeartbeatLogger.h */, - 46EB2E00005B10 /* FIRLibrary.h */, - 46EB2E00005C00 /* FIRListenerRegistration.h */, - 46EB2E00005D60 /* FIRListenerRegistration.mm */, - 46EB2E00005C10 /* FIRLoadBundleTask.h */, - 46EB2E00005D70 /* FIRLoadBundleTask.mm */, - 46EB2E00005B20 /* FIRLogger.h */, - 46EB2E00005B30 /* FIROptionsInternal.h */, - 46EB2E00005C20 /* FIRQuery.h */, - 46EB2E00005D80 /* FIRQuery.mm */, - 46EB2E00005C30 /* FIRQuerySnapshot.h */, - 46EB2E00005D90 /* FIRQuerySnapshot.mm */, - 46EB2E00005C40 /* FIRSnapshotMetadata.h */, - 46EB2E00005DA0 /* FIRSnapshotMetadata.mm */, - 46EB2E00005C50 /* FIRTimestamp.h */, - 46EB2E00005DB0 /* FIRTimestamp.m */, - 46EB2E00005C60 /* FIRTransaction.h */, - 46EB2E00005DC0 /* FIRTransaction.mm */, - 46EB2E00005C70 /* FIRTransactionOptions.h */, - 46EB2E00005DD0 /* FIRTransactionOptions.mm */, - 46EB2E00005C80 /* FIRWriteBatch.h */, - 46EB2E00005DE0 /* FIRWriteBatch.mm */, - 46EB2E00005DF0 /* FSTFirestoreComponent.mm */, - 46EB2E00005E00 /* FSTUserDataReader.mm */, - 46EB2E00005E10 /* FSTUserDataWriter.mm */, - 46EB2E00006240 /* geo_point.cc */, - 46EB2E00006700 /* grpc_completion.cc */, - 46EB2E00006710 /* grpc_connection.cc */, - 46EB2E00006720 /* grpc_nanopb.cc */, - 46EB2E00006740 /* grpc_root_certificate_finder_generated.cc */, - 46EB2E00006730 /* grpc_root_certificates_generated.cc */, - 46EB2E00006750 /* grpc_stream.cc */, - 46EB2E00006760 /* grpc_streaming_reader.cc */, - 46EB2E00006770 /* grpc_unary_call.cc */, - 46EB2E00006780 /* grpc_util.cc */, - 46EB2E00006930 /* hard_assert.cc */, - 46EB2E00005E70 /* http.nanopb.cc */, - 46EB2E000060F0 /* in_filter.cc */, - 46EB2E00005E90 /* index.nanopb.cc */, - 46EB2E00006270 /* index_entry.cc */, - 46EB2E00006100 /* key_field_filter.cc */, - 46EB2E00006110 /* key_field_in_filter.cc */, - 46EB2E00006120 /* key_field_not_in_filter.cc */, - 46EB2E00005F50 /* latlng.nanopb.cc */, - 46EB2E000062A0 /* leveldb_bundle_cache.cc */, - 46EB2E000062B0 /* leveldb_document_overlay_cache.cc */, - 46EB2E000062C0 /* leveldb_index_manager.cc */, - 46EB2E000062D0 /* leveldb_key.cc */, - 46EB2E000062E0 /* leveldb_lru_reference_delegate.cc */, - 46EB2E000062F0 /* leveldb_migrations.cc */, - 46EB2E00006300 /* leveldb_mutation_queue.cc */, - 46EB2E00006310 /* leveldb_opener.cc */, - 46EB2E00006320 /* leveldb_overlay_migration_manager.cc */, - 46EB2E00006330 /* leveldb_persistence.cc */, - 46EB2E00006340 /* leveldb_remote_document_cache.cc */, - 46EB2E00006350 /* leveldb_target_cache.cc */, - 46EB2E00006360 /* leveldb_transaction.cc */, - 46EB2E00006370 /* leveldb_util.cc */, - 46EB2E00005FB0 /* load_bundle_task.cc */, - 46EB2E00006380 /* local_documents_view.cc */, - 46EB2E00006390 /* local_serializer.cc */, - 46EB2E000063A0 /* local_store.cc */, - 46EB2E000063B0 /* local_view_changes.cc */, - 46EB2E00006940 /* log_apple.mm */, - 46EB2E000063C0 /* lru_garbage_collector.cc */, - 46EB2E00005E30 /* maybe_document.nanopb.cc */, - 46EB2E000063D0 /* memory_bundle_cache.cc */, - 46EB2E000063E0 /* memory_document_overlay_cache.cc */, - 46EB2E000063F0 /* memory_eager_reference_delegate.cc */, - 46EB2E00006400 /* memory_index_manager.cc */, - 46EB2E00006410 /* memory_lru_reference_delegate.cc */, - 46EB2E00006420 /* memory_mutation_queue.cc */, - 46EB2E00006430 /* memory_persistence.cc */, - 46EB2E00006440 /* memory_remote_document_cache.cc */, - 46EB2E00006450 /* memory_target_cache.cc */, - 46EB2E00006640 /* message.cc */, - 46EB2E00006530 /* mutable_document.cc */, - 46EB2E00006540 /* mutation.cc */, - 46EB2E00005E40 /* mutation.nanopb.cc */, - 46EB2E00006550 /* mutation_batch.cc */, - 46EB2E00006560 /* mutation_batch_result.cc */, - 46EB2E00006650 /* nanopb_util.cc */, - 46EB2E00006130 /* not_in_filter.cc */, - 46EB2E00006570 /* object_value.cc */, - 46EB2E00006790 /* online_state_tracker.cc */, - 46EB2E00006140 /* order_by.cc */, - 46EB2E00006950 /* ordered_code.cc */, - 46EB2E00006580 /* overlay.cc */, - 46EB2E00006590 /* patch_mutation.cc */, - 46EB2E00006960 /* path.cc */, - 46EB2E000065A0 /* precondition.cc */, - 46EB2E00006660 /* pretty_printing.cc */, - 46EB2E00006460 /* proto_sizer.cc */, - 46EB2E00006150 /* query.cc */, - 46EB2E00005ED0 /* query.nanopb.cc */, - 46EB2E00005FC0 /* query_core.cc */, - 46EB2E00006470 /* query_engine.cc */, - 46EB2E00006160 /* query_listener.cc */, - 46EB2E00005FD0 /* query_listener_registration.cc */, - 46EB2E00005FE0 /* query_snapshot.cc */, - 46EB2E00006670 /* reader.cc */, - 46EB2E00006480 /* reference_set.cc */, - 46EB2E000067A0 /* remote_event.cc */, - 46EB2E000067B0 /* remote_objc_bridge.cc */, - 46EB2E000067C0 /* remote_store.cc */, - 46EB2E00005E80 /* resource.nanopb.cc */, - 46EB2E000065B0 /* resource_path.cc */, - 46EB2E00006970 /* schedule.cc */, - 46EB2E00006980 /* secure_random_arc4random.cc */, - 46EB2E000067D0 /* serializer.cc */, - 46EB2E000065C0 /* server_timestamp_util.cc */, - 46EB2E000065D0 /* set_mutation.cc */, - 46EB2E00005FF0 /* settings.cc */, - 46EB2E00006010 /* snapshot_metadata.cc */, - 46EB2E000065E0 /* snapshot_version.cc */, - 46EB2E00006000 /* snapshots_in_sync_listener_registration.cc */, - 46EB2E00006250 /* sorted_container.cc */, - 46EB2E00006990 /* status.cc */, - 46EB2E00005F40 /* status.nanopb.cc */, - 46EB2E000069B0 /* status_apple.mm */, - 46EB2E000069C0 /* status_errno.cc */, - 46EB2E000069D0 /* status_win.cc */, - 46EB2E000069A0 /* statusor.cc */, - 46EB2E000067E0 /* stream.cc */, - 46EB2E000069E0 /* strerror.cc */, - 46EB2E000069F0 /* string_apple.cc */, - 46EB2E00006A00 /* string_format.cc */, - 46EB2E00006A10 /* string_util.cc */, - 46EB2E00006A20 /* string_win.cc */, - 46EB2E00005F10 /* struct.nanopb.cc */, - 46EB2E00006170 /* sync_engine.cc */, - 46EB2E00006180 /* target.cc */, - 46EB2E00005E50 /* target.nanopb.cc */, - 46EB2E00006490 /* target_data.cc */, - 46EB2E00006190 /* target_id_generator.cc */, - 46EB2E000065F0 /* target_index_matcher.cc */, - 46EB2E00006A30 /* task.cc */, - 46EB2E00006820 /* timestamp.cc */, - 46EB2E00005F20 /* timestamp.nanopb.cc */, - 46EB2E00006830 /* timestamp_internal.cc */, - 46EB2E000061A0 /* transaction.cc */, - 46EB2E000061B0 /* transaction_runner.cc */, - 46EB2E00006600 /* transform_operation.cc */, - 46EB2E00006220 /* user.cc */, - 46EB2E000061C0 /* user_data.cc */, - 46EB2E00006610 /* value_util.cc */, - 46EB2E00006620 /* verify_mutation.cc */, - 46EB2E000061D0 /* view.cc */, - 46EB2E000061E0 /* view_snapshot.cc */, - 46EB2E000067F0 /* watch_change.cc */, - 46EB2E00006800 /* watch_stream.cc */, - 46EB2E00005F30 /* wrappers.nanopb.cc */, - 46EB2E00005EE0 /* write.nanopb.cc */, - 46EB2E00006020 /* write_batch.cc */, - 46EB2E00006810 /* write_stream.cc */, - 46EB2E00006680 /* writer.cc */, - 46EB2E00029C00 /* Support Files */, + 46EB2E00005E70 /* annotations.nanopb.cc */, + 46EB2E00005F00 /* any.nanopb.cc */, + 46EB2E00006070 /* array_contains_any_filter.cc */, + 46EB2E00006080 /* array_contains_filter.cc */, + 46EB2E00006850 /* async_queue.cc */, + 46EB2E00006200 /* auth_token.cc */, + 46EB2E00006860 /* autoid.cc */, + 46EB2E00006870 /* background_queue.cc */, + 46EB2E00006880 /* bits.cc */, + 46EB2E00006090 /* bound.cc */, + 46EB2E00005E30 /* bundle.nanopb.cc */, + 46EB2E00006040 /* bundle_loader.cc */, + 46EB2E00006050 /* bundle_reader.cc */, + 46EB2E00006060 /* bundle_serializer.cc */, + 46EB2E00006890 /* byte_stream_apple.mm */, + 46EB2E000068A0 /* byte_stream_cpp.cc */, + 46EB2E00006640 /* byte_string.cc */, + 46EB2E00005F70 /* collection_reference.cc */, + 46EB2E00005EB0 /* common.nanopb.cc */, + 46EB2E000068B0 /* comparison.cc */, + 46EB2E000066A0 /* connectivity_monitor.cc */, + 46EB2E000066B0 /* connectivity_monitor_apple.mm */, + 46EB2E00005CA0 /* converters.mm */, + 46EB2E000064B0 /* database_id.cc */, + 46EB2E000060A0 /* database_info.cc */, + 46EB2E000066C0 /* datastore.cc */, + 46EB2E000064C0 /* delete_mutation.cc */, + 46EB2E000060B0 /* direction.cc */, + 46EB2E000064D0 /* document.cc */, + 46EB2E00005EC0 /* document.nanopb.cc */, + 46EB2E00005F80 /* document_change.cc */, + 46EB2E000064E0 /* document_key.cc */, + 46EB2E00006290 /* document_key_reference.cc */, + 46EB2E000062A0 /* document_overlay_cache.cc */, + 46EB2E00005F90 /* document_reference.cc */, + 46EB2E000064F0 /* document_set.cc */, + 46EB2E00005FA0 /* document_snapshot.cc */, + 46EB2E00005F10 /* empty.nanopb.cc */, + 46EB2E000068C0 /* error_apple.mm */, + 46EB2E000060C0 /* event_manager.cc */, + 46EB2E000068D0 /* exception.cc */, + 46EB2E000068E0 /* exception_apple.mm */, + 46EB2E000068F0 /* executor_libdispatch.mm */, + 46EB2E00006900 /* executor_std.cc */, + 46EB2E000066D0 /* exponential_backoff.cc */, + 46EB2E000060D0 /* field_filter.cc */, + 46EB2E00006500 /* field_index.cc */, + 46EB2E00006510 /* field_mask.cc */, + 46EB2E00006520 /* field_path.cc */, + 46EB2E00006530 /* field_transform.cc */, + 46EB2E00006910 /* filesystem_apple.mm */, + 46EB2E00006920 /* filesystem_common.cc */, + 46EB2E00006930 /* filesystem_posix.cc */, + 46EB2E000060E0 /* filter.cc */, + 46EB2E00005A70 /* FIRAppCheckInterop.h */, + 46EB2E00005A80 /* FIRAppCheckTokenResultInterop.h */, + 46EB2E00005A90 /* FIRAppInternal.h */, + 46EB2E00006A50 /* FIRAuthInterop.h */, + 46EB2E00005B50 /* FIRCollectionReference.h */, + 46EB2E00005CB0 /* FIRCollectionReference.mm */, + 46EB2E00005AA0 /* FIRComponent.h */, + 46EB2E00005AB0 /* FIRComponentContainer.h */, + 46EB2E00005AC0 /* FIRComponentType.h */, + 46EB2E00005AD0 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00005AE0 /* FIRDependency.h */, + 46EB2E00005B60 /* FIRDocumentChange.h */, + 46EB2E00005CC0 /* FIRDocumentChange.mm */, + 46EB2E00005B70 /* FIRDocumentReference.h */, + 46EB2E00005CD0 /* FIRDocumentReference.mm */, + 46EB2E00005B80 /* FIRDocumentSnapshot.h */, + 46EB2E00005CE0 /* FIRDocumentSnapshot.mm */, + 46EB2E00006210 /* firebase_app_check_credentials_provider_apple.mm */, + 46EB2E00006220 /* firebase_auth_credentials_provider_apple.mm */, + 46EB2E000066E0 /* firebase_metadata_provider.cc */, + 46EB2E000066F0 /* firebase_metadata_provider_apple.mm */, + 46EB2E00006700 /* firebase_metadata_provider_noop.cc */, + 46EB2E00005AF0 /* FirebaseCoreInternal.h */, + 46EB2E00005B90 /* FirebaseFirestore.h */, + 46EB2E00005FB0 /* firestore.cc */, + 46EB2E00005ED0 /* firestore.nanopb.cc */, + 46EB2E000060F0 /* firestore_client.cc */, + 46EB2E00006270 /* firestore_index_value_writer.cc */, + 46EB2E00006240 /* firestore_version.cc */, + 46EB2E00005BA0 /* FIRFieldPath.h */, + 46EB2E00005CF0 /* FIRFieldPath.mm */, + 46EB2E00005BB0 /* FIRFieldValue.h */, + 46EB2E00005D00 /* FIRFieldValue.mm */, + 46EB2E00005D10 /* FIRFilter.mm */, + 46EB2E00005BC0 /* FIRFirestore.h */, + 46EB2E00005D20 /* FIRFirestore.mm */, + 46EB2E00005BD0 /* FIRFirestoreErrors.h */, + 46EB2E00005BE0 /* FIRFirestoreSettings.h */, + 46EB2E00005D30 /* FIRFirestoreSettings.mm */, + 46EB2E00005BF0 /* FIRFirestoreSource.h */, + 46EB2E00005D40 /* FIRFirestoreSource.mm */, + 46EB2E00005D50 /* FIRFirestoreVersion.mm */, + 46EB2E00005C00 /* FIRGeoPoint.h */, + 46EB2E00005D60 /* FIRGeoPoint.mm */, + 46EB2E00005B00 /* FIRHeartbeatInfo.h */, + 46EB2E00005B10 /* FIRHeartbeatLogger.h */, + 46EB2E00005B20 /* FIRLibrary.h */, + 46EB2E00005C10 /* FIRListenerRegistration.h */, + 46EB2E00005D70 /* FIRListenerRegistration.mm */, + 46EB2E00005C20 /* FIRLoadBundleTask.h */, + 46EB2E00005D80 /* FIRLoadBundleTask.mm */, + 46EB2E00005B30 /* FIRLogger.h */, + 46EB2E00005B40 /* FIROptionsInternal.h */, + 46EB2E00005C30 /* FIRQuery.h */, + 46EB2E00005D90 /* FIRQuery.mm */, + 46EB2E00005C40 /* FIRQuerySnapshot.h */, + 46EB2E00005DA0 /* FIRQuerySnapshot.mm */, + 46EB2E00005C50 /* FIRSnapshotMetadata.h */, + 46EB2E00005DB0 /* FIRSnapshotMetadata.mm */, + 46EB2E00005C60 /* FIRTimestamp.h */, + 46EB2E00005DC0 /* FIRTimestamp.m */, + 46EB2E00005C70 /* FIRTransaction.h */, + 46EB2E00005DD0 /* FIRTransaction.mm */, + 46EB2E00005C80 /* FIRTransactionOptions.h */, + 46EB2E00005DE0 /* FIRTransactionOptions.mm */, + 46EB2E00005C90 /* FIRWriteBatch.h */, + 46EB2E00005DF0 /* FIRWriteBatch.mm */, + 46EB2E00005E00 /* FSTFirestoreComponent.mm */, + 46EB2E00005E10 /* FSTUserDataReader.mm */, + 46EB2E00005E20 /* FSTUserDataWriter.mm */, + 46EB2E00006250 /* geo_point.cc */, + 46EB2E00006710 /* grpc_completion.cc */, + 46EB2E00006720 /* grpc_connection.cc */, + 46EB2E00006730 /* grpc_nanopb.cc */, + 46EB2E00006750 /* grpc_root_certificate_finder_generated.cc */, + 46EB2E00006740 /* grpc_root_certificates_generated.cc */, + 46EB2E00006760 /* grpc_stream.cc */, + 46EB2E00006770 /* grpc_streaming_reader.cc */, + 46EB2E00006780 /* grpc_unary_call.cc */, + 46EB2E00006790 /* grpc_util.cc */, + 46EB2E00006940 /* hard_assert.cc */, + 46EB2E00005E80 /* http.nanopb.cc */, + 46EB2E00006100 /* in_filter.cc */, + 46EB2E00005EA0 /* index.nanopb.cc */, + 46EB2E00006280 /* index_entry.cc */, + 46EB2E00006110 /* key_field_filter.cc */, + 46EB2E00006120 /* key_field_in_filter.cc */, + 46EB2E00006130 /* key_field_not_in_filter.cc */, + 46EB2E00005F60 /* latlng.nanopb.cc */, + 46EB2E000062B0 /* leveldb_bundle_cache.cc */, + 46EB2E000062C0 /* leveldb_document_overlay_cache.cc */, + 46EB2E000062D0 /* leveldb_index_manager.cc */, + 46EB2E000062E0 /* leveldb_key.cc */, + 46EB2E000062F0 /* leveldb_lru_reference_delegate.cc */, + 46EB2E00006300 /* leveldb_migrations.cc */, + 46EB2E00006310 /* leveldb_mutation_queue.cc */, + 46EB2E00006320 /* leveldb_opener.cc */, + 46EB2E00006330 /* leveldb_overlay_migration_manager.cc */, + 46EB2E00006340 /* leveldb_persistence.cc */, + 46EB2E00006350 /* leveldb_remote_document_cache.cc */, + 46EB2E00006360 /* leveldb_target_cache.cc */, + 46EB2E00006370 /* leveldb_transaction.cc */, + 46EB2E00006380 /* leveldb_util.cc */, + 46EB2E00005FC0 /* load_bundle_task.cc */, + 46EB2E00006390 /* local_documents_view.cc */, + 46EB2E000063A0 /* local_serializer.cc */, + 46EB2E000063B0 /* local_store.cc */, + 46EB2E000063C0 /* local_view_changes.cc */, + 46EB2E00006950 /* log_apple.mm */, + 46EB2E000063D0 /* lru_garbage_collector.cc */, + 46EB2E00005E40 /* maybe_document.nanopb.cc */, + 46EB2E000063E0 /* memory_bundle_cache.cc */, + 46EB2E000063F0 /* memory_document_overlay_cache.cc */, + 46EB2E00006400 /* memory_eager_reference_delegate.cc */, + 46EB2E00006410 /* memory_index_manager.cc */, + 46EB2E00006420 /* memory_lru_reference_delegate.cc */, + 46EB2E00006430 /* memory_mutation_queue.cc */, + 46EB2E00006440 /* memory_persistence.cc */, + 46EB2E00006450 /* memory_remote_document_cache.cc */, + 46EB2E00006460 /* memory_target_cache.cc */, + 46EB2E00006650 /* message.cc */, + 46EB2E00006540 /* mutable_document.cc */, + 46EB2E00006550 /* mutation.cc */, + 46EB2E00005E50 /* mutation.nanopb.cc */, + 46EB2E00006560 /* mutation_batch.cc */, + 46EB2E00006570 /* mutation_batch_result.cc */, + 46EB2E00006660 /* nanopb_util.cc */, + 46EB2E00006140 /* not_in_filter.cc */, + 46EB2E00006580 /* object_value.cc */, + 46EB2E000067A0 /* online_state_tracker.cc */, + 46EB2E00006150 /* order_by.cc */, + 46EB2E00006960 /* ordered_code.cc */, + 46EB2E00006590 /* overlay.cc */, + 46EB2E000065A0 /* patch_mutation.cc */, + 46EB2E00006970 /* path.cc */, + 46EB2E000065B0 /* precondition.cc */, + 46EB2E00006670 /* pretty_printing.cc */, + 46EB2E00006470 /* proto_sizer.cc */, + 46EB2E00006160 /* query.cc */, + 46EB2E00005EE0 /* query.nanopb.cc */, + 46EB2E00005FD0 /* query_core.cc */, + 46EB2E00006480 /* query_engine.cc */, + 46EB2E00006170 /* query_listener.cc */, + 46EB2E00005FE0 /* query_listener_registration.cc */, + 46EB2E00005FF0 /* query_snapshot.cc */, + 46EB2E00006680 /* reader.cc */, + 46EB2E00006490 /* reference_set.cc */, + 46EB2E000067B0 /* remote_event.cc */, + 46EB2E000067C0 /* remote_objc_bridge.cc */, + 46EB2E000067D0 /* remote_store.cc */, + 46EB2E00005E90 /* resource.nanopb.cc */, + 46EB2E000065C0 /* resource_path.cc */, + 46EB2E00006980 /* schedule.cc */, + 46EB2E00006990 /* secure_random_arc4random.cc */, + 46EB2E000067E0 /* serializer.cc */, + 46EB2E000065D0 /* server_timestamp_util.cc */, + 46EB2E000065E0 /* set_mutation.cc */, + 46EB2E00006000 /* settings.cc */, + 46EB2E00006020 /* snapshot_metadata.cc */, + 46EB2E000065F0 /* snapshot_version.cc */, + 46EB2E00006010 /* snapshots_in_sync_listener_registration.cc */, + 46EB2E00006260 /* sorted_container.cc */, + 46EB2E000069A0 /* status.cc */, + 46EB2E00005F50 /* status.nanopb.cc */, + 46EB2E000069C0 /* status_apple.mm */, + 46EB2E000069D0 /* status_errno.cc */, + 46EB2E000069E0 /* status_win.cc */, + 46EB2E000069B0 /* statusor.cc */, + 46EB2E000067F0 /* stream.cc */, + 46EB2E000069F0 /* strerror.cc */, + 46EB2E00006A00 /* string_apple.cc */, + 46EB2E00006A10 /* string_format.cc */, + 46EB2E00006A20 /* string_util.cc */, + 46EB2E00006A30 /* string_win.cc */, + 46EB2E00005F20 /* struct.nanopb.cc */, + 46EB2E00006180 /* sync_engine.cc */, + 46EB2E00006190 /* target.cc */, + 46EB2E00005E60 /* target.nanopb.cc */, + 46EB2E000064A0 /* target_data.cc */, + 46EB2E000061A0 /* target_id_generator.cc */, + 46EB2E00006600 /* target_index_matcher.cc */, + 46EB2E00006A40 /* task.cc */, + 46EB2E00006830 /* timestamp.cc */, + 46EB2E00005F30 /* timestamp.nanopb.cc */, + 46EB2E00006840 /* timestamp_internal.cc */, + 46EB2E000061B0 /* transaction.cc */, + 46EB2E000061C0 /* transaction_runner.cc */, + 46EB2E00006610 /* transform_operation.cc */, + 46EB2E00006230 /* user.cc */, + 46EB2E000061D0 /* user_data.cc */, + 46EB2E00006620 /* value_util.cc */, + 46EB2E00006630 /* verify_mutation.cc */, + 46EB2E000061E0 /* view.cc */, + 46EB2E000061F0 /* view_snapshot.cc */, + 46EB2E00006800 /* watch_change.cc */, + 46EB2E00006810 /* watch_stream.cc */, + 46EB2E00005F40 /* wrappers.nanopb.cc */, + 46EB2E00005EF0 /* write.nanopb.cc */, + 46EB2E00006030 /* write_batch.cc */, + 46EB2E00006820 /* write_stream.cc */, + 46EB2E00006690 /* writer.cc */, + 46EB2E00029B20 /* Support Files */, ); + name = FirebaseFirestore; path = FirebaseFirestore; sourceTree = ""; }; 46EB2E000001E0 /* FirebaseInstallations */ = { isa = PBXGroup; children = ( - 46EB2E00006CC0 /* FIRAppInternal.h */, - 46EB2E00006CD0 /* FIRComponent.h */, - 46EB2E00006CE0 /* FIRComponentContainer.h */, - 46EB2E00006CF0 /* FIRComponentType.h */, - 46EB2E00006D00 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00006B80 /* FIRCurrentDateProvider.h */, - 46EB2E00006B90 /* FIRCurrentDateProvider.m */, - 46EB2E00006D10 /* FIRDependency.h */, - 46EB2E00006D20 /* FirebaseCoreInternal.h */, - 46EB2E00006C80 /* FirebaseInstallations.h */, - 46EB2E00006C70 /* FirebaseInstallationsInternal.h */, - 46EB2E00006D30 /* FIRHeartbeatInfo.h */, - 46EB2E00006D40 /* FIRHeartbeatLogger.h */, - 46EB2E00006C90 /* FIRInstallations.h */, - 46EB2E00006A90 /* FIRInstallations.m */, - 46EB2E00006B40 /* FIRInstallationsAPIService.h */, - 46EB2E00006B50 /* FIRInstallationsAPIService.m */, - 46EB2E00006CA0 /* FIRInstallationsAuthTokenResult.h */, - 46EB2E00006AA0 /* FIRInstallationsAuthTokenResult.m */, - 46EB2E00006AB0 /* FIRInstallationsAuthTokenResultInternal.h */, - 46EB2E00006BA0 /* FIRInstallationsBackoffController.h */, - 46EB2E00006BB0 /* FIRInstallationsBackoffController.m */, - 46EB2E00006CB0 /* FIRInstallationsErrors.h */, - 46EB2E00006A50 /* FIRInstallationsErrorUtil.h */, - 46EB2E00006A60 /* FIRInstallationsErrorUtil.m */, - 46EB2E00006A70 /* FIRInstallationsHTTPError.h */, - 46EB2E00006A80 /* FIRInstallationsHTTPError.m */, - 46EB2E00006BC0 /* FIRInstallationsIDController.h */, - 46EB2E00006BD0 /* FIRInstallationsIDController.m */, - 46EB2E00006B00 /* FIRInstallationsIIDStore.h */, - 46EB2E00006B10 /* FIRInstallationsIIDStore.m */, - 46EB2E00006B20 /* FIRInstallationsIIDTokenStore.h */, - 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.m */, - 46EB2E00006AC0 /* FIRInstallationsItem.h */, - 46EB2E00006AD0 /* FIRInstallationsItem.m */, - 46EB2E00006B60 /* FIRInstallationsItem+RegisterInstallationAPI.h */, - 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - 46EB2E00006AE0 /* FIRInstallationsLogger.h */, - 46EB2E00006AF0 /* FIRInstallationsLogger.m */, - 46EB2E00006BE0 /* FIRInstallationsSingleOperationPromiseCache.h */, - 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.m */, - 46EB2E00006C00 /* FIRInstallationsStatus.h */, - 46EB2E00006C10 /* FIRInstallationsStore.h */, - 46EB2E00006C20 /* FIRInstallationsStore.m */, - 46EB2E00006C30 /* FIRInstallationsStoredAuthToken.h */, - 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.m */, - 46EB2E00006C50 /* FIRInstallationsStoredItem.h */, - 46EB2E00006C60 /* FIRInstallationsStoredItem.m */, - 46EB2E00006D50 /* FIRLibrary.h */, - 46EB2E00006D60 /* FIRLogger.h */, - 46EB2E00006D70 /* FIROptionsInternal.h */, - 46EB2E0002A000 /* Support Files */, + 46EB2E00006CD0 /* FIRAppInternal.h */, + 46EB2E00006CE0 /* FIRComponent.h */, + 46EB2E00006CF0 /* FIRComponentContainer.h */, + 46EB2E00006D00 /* FIRComponentType.h */, + 46EB2E00006D10 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00006B90 /* FIRCurrentDateProvider.h */, + 46EB2E00006BA0 /* FIRCurrentDateProvider.m */, + 46EB2E00006D20 /* FIRDependency.h */, + 46EB2E00006D30 /* FirebaseCoreInternal.h */, + 46EB2E00006C90 /* FirebaseInstallations.h */, + 46EB2E00006C80 /* FirebaseInstallationsInternal.h */, + 46EB2E00006D40 /* FIRHeartbeatInfo.h */, + 46EB2E00006D50 /* FIRHeartbeatLogger.h */, + 46EB2E00006CA0 /* FIRInstallations.h */, + 46EB2E00006AA0 /* FIRInstallations.m */, + 46EB2E00006B50 /* FIRInstallationsAPIService.h */, + 46EB2E00006B60 /* FIRInstallationsAPIService.m */, + 46EB2E00006CB0 /* FIRInstallationsAuthTokenResult.h */, + 46EB2E00006AB0 /* FIRInstallationsAuthTokenResult.m */, + 46EB2E00006AC0 /* FIRInstallationsAuthTokenResultInternal.h */, + 46EB2E00006BB0 /* FIRInstallationsBackoffController.h */, + 46EB2E00006BC0 /* FIRInstallationsBackoffController.m */, + 46EB2E00006CC0 /* FIRInstallationsErrors.h */, + 46EB2E00006A60 /* FIRInstallationsErrorUtil.h */, + 46EB2E00006A70 /* FIRInstallationsErrorUtil.m */, + 46EB2E00006A80 /* FIRInstallationsHTTPError.h */, + 46EB2E00006A90 /* FIRInstallationsHTTPError.m */, + 46EB2E00006BD0 /* FIRInstallationsIDController.h */, + 46EB2E00006BE0 /* FIRInstallationsIDController.m */, + 46EB2E00006B10 /* FIRInstallationsIIDStore.h */, + 46EB2E00006B20 /* FIRInstallationsIIDStore.m */, + 46EB2E00006B30 /* FIRInstallationsIIDTokenStore.h */, + 46EB2E00006B40 /* FIRInstallationsIIDTokenStore.m */, + 46EB2E00006AD0 /* FIRInstallationsItem.h */, + 46EB2E00006AE0 /* FIRInstallationsItem.m */, + 46EB2E00006B70 /* FIRInstallationsItem+RegisterInstallationAPI.h */, + 46EB2E00006B80 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + 46EB2E00006AF0 /* FIRInstallationsLogger.h */, + 46EB2E00006B00 /* FIRInstallationsLogger.m */, + 46EB2E00006BF0 /* FIRInstallationsSingleOperationPromiseCache.h */, + 46EB2E00006C00 /* FIRInstallationsSingleOperationPromiseCache.m */, + 46EB2E00006C10 /* FIRInstallationsStatus.h */, + 46EB2E00006C20 /* FIRInstallationsStore.h */, + 46EB2E00006C30 /* FIRInstallationsStore.m */, + 46EB2E00006C40 /* FIRInstallationsStoredAuthToken.h */, + 46EB2E00006C50 /* FIRInstallationsStoredAuthToken.m */, + 46EB2E00006C60 /* FIRInstallationsStoredItem.h */, + 46EB2E00006C70 /* FIRInstallationsStoredItem.m */, + 46EB2E00006D60 /* FIRLibrary.h */, + 46EB2E00006D70 /* FIRLogger.h */, + 46EB2E00006D80 /* FIROptionsInternal.h */, + 46EB2E00029F20 /* Support Files */, ); + name = FirebaseInstallations; path = FirebaseInstallations; sourceTree = ""; }; 46EB2E000001F0 /* FirebaseMessaging */ = { isa = PBXGroup; children = ( - 46EB2E000071D0 /* FIRAnalyticsInterop.h */, - 46EB2E000071E0 /* FIRAnalyticsInteropListener.h */, - 46EB2E00007210 /* FIRAppInternal.h */, - 46EB2E00007220 /* FIRComponent.h */, - 46EB2E00007230 /* FIRComponentContainer.h */, - 46EB2E00007240 /* FIRComponentType.h */, - 46EB2E00007250 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00007260 /* FIRDependency.h */, - 46EB2E00007270 /* FirebaseCoreInternal.h */, - 46EB2E000072D0 /* FirebaseInstallationsInternal.h */, - 46EB2E00006D80 /* FirebaseMessaging.h */, - 46EB2E00006FD0 /* FirebaseMessaging.h */, - 46EB2E00007280 /* FIRHeartbeatInfo.h */, - 46EB2E00007290 /* FIRHeartbeatLogger.h */, - 46EB2E000071F0 /* FIRInteropEventNames.h */, - 46EB2E00007200 /* FIRInteropParameterNames.h */, - 46EB2E000072A0 /* FIRLibrary.h */, - 46EB2E000072B0 /* FIRLogger.h */, - 46EB2E00006FE0 /* FIRMessaging.h */, - 46EB2E00006D90 /* FIRMessaging.m */, - 46EB2E00006F60 /* FIRMessaging_Private.h */, - 46EB2E00006DA0 /* FIRMessagingAnalytics.h */, - 46EB2E00006DB0 /* FIRMessagingAnalytics.m */, - 46EB2E00007000 /* FIRMessagingAPNSInfo.h */, - 46EB2E00007010 /* FIRMessagingAPNSInfo.m */, - 46EB2E00007020 /* FIRMessagingAuthKeychain.h */, - 46EB2E00007030 /* FIRMessagingAuthKeychain.m */, - 46EB2E00007040 /* FIRMessagingAuthService.h */, - 46EB2E00007050 /* FIRMessagingAuthService.m */, - 46EB2E00007060 /* FIRMessagingBackupExcludedPlist.h */, - 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.m */, - 46EB2E00007080 /* FIRMessagingCheckinPreferences.h */, - 46EB2E00007090 /* FIRMessagingCheckinPreferences.m */, - 46EB2E000070A0 /* FIRMessagingCheckinService.h */, - 46EB2E000070B0 /* FIRMessagingCheckinService.m */, - 46EB2E000070C0 /* FIRMessagingCheckinStore.h */, - 46EB2E000070D0 /* FIRMessagingCheckinStore.m */, - 46EB2E00006DC0 /* FIRMessagingCode.h */, - 46EB2E00006DD0 /* FIRMessagingConstants.h */, - 46EB2E00006DE0 /* FIRMessagingConstants.m */, - 46EB2E00006DF0 /* FIRMessagingContextManagerService.h */, - 46EB2E00006E00 /* FIRMessagingContextManagerService.m */, - 46EB2E00006E10 /* FIRMessagingDefines.h */, - 46EB2E00006FF0 /* FIRMessagingExtensionHelper.h */, - 46EB2E00006E20 /* FIRMessagingExtensionHelper.m */, - 46EB2E000071C0 /* FIRMessagingInterop.h */, - 46EB2E000070E0 /* FIRMessagingKeychain.h */, - 46EB2E000070F0 /* FIRMessagingKeychain.m */, - 46EB2E00006E30 /* FIRMessagingLogger.h */, - 46EB2E00006E40 /* FIRMessagingLogger.m */, - 46EB2E00006E50 /* FIRMessagingPendingTopicsList.h */, - 46EB2E00006E60 /* FIRMessagingPendingTopicsList.m */, - 46EB2E00006E70 /* FIRMessagingPersistentSyncMessage.h */, - 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.m */, - 46EB2E00006E90 /* FIRMessagingPubSub.h */, - 46EB2E00006EA0 /* FIRMessagingPubSub.m */, - 46EB2E00006EB0 /* FIRMessagingRemoteNotificationsProxy.h */, - 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.m */, - 46EB2E00006ED0 /* FIRMessagingRmqManager.h */, - 46EB2E00006EE0 /* FIRMessagingRmqManager.m */, - 46EB2E00006EF0 /* FIRMessagingSyncMessageManager.h */, - 46EB2E00006F00 /* FIRMessagingSyncMessageManager.m */, - 46EB2E00007100 /* FIRMessagingTokenDeleteOperation.h */, - 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.m */, - 46EB2E00007120 /* FIRMessagingTokenFetchOperation.h */, - 46EB2E00007130 /* FIRMessagingTokenFetchOperation.m */, - 46EB2E00007140 /* FIRMessagingTokenInfo.h */, - 46EB2E00007150 /* FIRMessagingTokenInfo.m */, - 46EB2E00007160 /* FIRMessagingTokenManager.h */, - 46EB2E00007170 /* FIRMessagingTokenManager.m */, - 46EB2E00007180 /* FIRMessagingTokenOperation.h */, - 46EB2E00007190 /* FIRMessagingTokenOperation.m */, - 46EB2E000071A0 /* FIRMessagingTokenStore.h */, - 46EB2E000071B0 /* FIRMessagingTokenStore.m */, - 46EB2E00006F10 /* FIRMessagingTopicOperation.h */, - 46EB2E00006F20 /* FIRMessagingTopicOperation.m */, - 46EB2E00006F30 /* FIRMessagingTopicsCommon.h */, - 46EB2E00006F40 /* FIRMessagingUtilities.h */, - 46EB2E00006F50 /* FIRMessagingUtilities.m */, - 46EB2E000072C0 /* FIROptionsInternal.h */, - 46EB2E00006FB0 /* me.nanopb.c */, - 46EB2E00006FC0 /* me.nanopb.h */, - 46EB2E00006F70 /* NSDictionary+FIRMessaging.h */, - 46EB2E00006F80 /* NSDictionary+FIRMessaging.m */, - 46EB2E00006F90 /* NSError+FIRMessaging.h */, - 46EB2E00006FA0 /* NSError+FIRMessaging.m */, - 46EB2E0002A630 /* Support Files */, + 46EB2E000071E0 /* FIRAnalyticsInterop.h */, + 46EB2E000071F0 /* FIRAnalyticsInteropListener.h */, + 46EB2E00007220 /* FIRAppInternal.h */, + 46EB2E00007230 /* FIRComponent.h */, + 46EB2E00007240 /* FIRComponentContainer.h */, + 46EB2E00007250 /* FIRComponentType.h */, + 46EB2E00007260 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00007270 /* FIRDependency.h */, + 46EB2E00007280 /* FirebaseCoreInternal.h */, + 46EB2E000072E0 /* FirebaseInstallationsInternal.h */, + 46EB2E00006D90 /* FirebaseMessaging.h */, + 46EB2E00006FE0 /* FirebaseMessaging.h */, + 46EB2E00007290 /* FIRHeartbeatInfo.h */, + 46EB2E000072A0 /* FIRHeartbeatLogger.h */, + 46EB2E00007200 /* FIRInteropEventNames.h */, + 46EB2E00007210 /* FIRInteropParameterNames.h */, + 46EB2E000072B0 /* FIRLibrary.h */, + 46EB2E000072C0 /* FIRLogger.h */, + 46EB2E00006FF0 /* FIRMessaging.h */, + 46EB2E00006DA0 /* FIRMessaging.m */, + 46EB2E00006F70 /* FIRMessaging_Private.h */, + 46EB2E00006DB0 /* FIRMessagingAnalytics.h */, + 46EB2E00006DC0 /* FIRMessagingAnalytics.m */, + 46EB2E00007010 /* FIRMessagingAPNSInfo.h */, + 46EB2E00007020 /* FIRMessagingAPNSInfo.m */, + 46EB2E00007030 /* FIRMessagingAuthKeychain.h */, + 46EB2E00007040 /* FIRMessagingAuthKeychain.m */, + 46EB2E00007050 /* FIRMessagingAuthService.h */, + 46EB2E00007060 /* FIRMessagingAuthService.m */, + 46EB2E00007070 /* FIRMessagingBackupExcludedPlist.h */, + 46EB2E00007080 /* FIRMessagingBackupExcludedPlist.m */, + 46EB2E00007090 /* FIRMessagingCheckinPreferences.h */, + 46EB2E000070A0 /* FIRMessagingCheckinPreferences.m */, + 46EB2E000070B0 /* FIRMessagingCheckinService.h */, + 46EB2E000070C0 /* FIRMessagingCheckinService.m */, + 46EB2E000070D0 /* FIRMessagingCheckinStore.h */, + 46EB2E000070E0 /* FIRMessagingCheckinStore.m */, + 46EB2E00006DD0 /* FIRMessagingCode.h */, + 46EB2E00006DE0 /* FIRMessagingConstants.h */, + 46EB2E00006DF0 /* FIRMessagingConstants.m */, + 46EB2E00006E00 /* FIRMessagingContextManagerService.h */, + 46EB2E00006E10 /* FIRMessagingContextManagerService.m */, + 46EB2E00006E20 /* FIRMessagingDefines.h */, + 46EB2E00007000 /* FIRMessagingExtensionHelper.h */, + 46EB2E00006E30 /* FIRMessagingExtensionHelper.m */, + 46EB2E000071D0 /* FIRMessagingInterop.h */, + 46EB2E000070F0 /* FIRMessagingKeychain.h */, + 46EB2E00007100 /* FIRMessagingKeychain.m */, + 46EB2E00006E40 /* FIRMessagingLogger.h */, + 46EB2E00006E50 /* FIRMessagingLogger.m */, + 46EB2E00006E60 /* FIRMessagingPendingTopicsList.h */, + 46EB2E00006E70 /* FIRMessagingPendingTopicsList.m */, + 46EB2E00006E80 /* FIRMessagingPersistentSyncMessage.h */, + 46EB2E00006E90 /* FIRMessagingPersistentSyncMessage.m */, + 46EB2E00006EA0 /* FIRMessagingPubSub.h */, + 46EB2E00006EB0 /* FIRMessagingPubSub.m */, + 46EB2E00006EC0 /* FIRMessagingRemoteNotificationsProxy.h */, + 46EB2E00006ED0 /* FIRMessagingRemoteNotificationsProxy.m */, + 46EB2E00006EE0 /* FIRMessagingRmqManager.h */, + 46EB2E00006EF0 /* FIRMessagingRmqManager.m */, + 46EB2E00006F00 /* FIRMessagingSyncMessageManager.h */, + 46EB2E00006F10 /* FIRMessagingSyncMessageManager.m */, + 46EB2E00007110 /* FIRMessagingTokenDeleteOperation.h */, + 46EB2E00007120 /* FIRMessagingTokenDeleteOperation.m */, + 46EB2E00007130 /* FIRMessagingTokenFetchOperation.h */, + 46EB2E00007140 /* FIRMessagingTokenFetchOperation.m */, + 46EB2E00007150 /* FIRMessagingTokenInfo.h */, + 46EB2E00007160 /* FIRMessagingTokenInfo.m */, + 46EB2E00007170 /* FIRMessagingTokenManager.h */, + 46EB2E00007180 /* FIRMessagingTokenManager.m */, + 46EB2E00007190 /* FIRMessagingTokenOperation.h */, + 46EB2E000071A0 /* FIRMessagingTokenOperation.m */, + 46EB2E000071B0 /* FIRMessagingTokenStore.h */, + 46EB2E000071C0 /* FIRMessagingTokenStore.m */, + 46EB2E00006F20 /* FIRMessagingTopicOperation.h */, + 46EB2E00006F30 /* FIRMessagingTopicOperation.m */, + 46EB2E00006F40 /* FIRMessagingTopicsCommon.h */, + 46EB2E00006F50 /* FIRMessagingUtilities.h */, + 46EB2E00006F60 /* FIRMessagingUtilities.m */, + 46EB2E000072D0 /* FIROptionsInternal.h */, + 46EB2E00006FC0 /* me.nanopb.c */, + 46EB2E00006FD0 /* me.nanopb.h */, + 46EB2E00006F80 /* NSDictionary+FIRMessaging.h */, + 46EB2E00006F90 /* NSDictionary+FIRMessaging.m */, + 46EB2E00006FA0 /* NSError+FIRMessaging.h */, + 46EB2E00006FB0 /* NSError+FIRMessaging.m */, + 46EB2E0002A550 /* Support Files */, ); + name = FirebaseMessaging; path = FirebaseMessaging; sourceTree = ""; }; 46EB2E00000200 /* FirebaseRemoteConfig */ = { isa = PBXGroup; children = ( - 46EB2E000074D0 /* ABTExperimentPayload.h */, - 46EB2E00007490 /* FIRAnalyticsInterop.h */, - 46EB2E000074A0 /* FIRAnalyticsInteropListener.h */, - 46EB2E000074F0 /* FIRAppInternal.h */, - 46EB2E00007500 /* FIRComponent.h */, - 46EB2E00007510 /* FIRComponentContainer.h */, - 46EB2E00007520 /* FIRComponentType.h */, - 46EB2E000072E0 /* FIRConfigValue.m */, - 46EB2E00007530 /* FIRCoreDiagnosticsConnector.h */, - 46EB2E00007540 /* FIRDependency.h */, - 46EB2E000074E0 /* FirebaseABTestingInternal.h */, - 46EB2E00007550 /* FirebaseCoreInternal.h */, - 46EB2E000075B0 /* FirebaseInstallationsInternal.h */, - 46EB2E00007350 /* FirebaseRemoteConfig.h */, - 46EB2E00007560 /* FIRHeartbeatInfo.h */, - 46EB2E00007570 /* FIRHeartbeatLogger.h */, - 46EB2E000074B0 /* FIRInteropEventNames.h */, - 46EB2E000074C0 /* FIRInteropParameterNames.h */, - 46EB2E00007580 /* FIRLibrary.h */, - 46EB2E00007590 /* FIRLogger.h */, - 46EB2E000075A0 /* FIROptionsInternal.h */, - 46EB2E00007360 /* FIRRemoteConfig.h */, - 46EB2E000072F0 /* FIRRemoteConfig.m */, - 46EB2E00007320 /* FIRRemoteConfig_Private.h */, - 46EB2E00007300 /* FIRRemoteConfigComponent.h */, - 46EB2E00007310 /* FIRRemoteConfigComponent.m */, - 46EB2E00007370 /* RCNConfigConstants.h */, - 46EB2E00007380 /* RCNConfigContent.h */, - 46EB2E00007390 /* RCNConfigContent.m */, - 46EB2E000073A0 /* RCNConfigDBManager.h */, - 46EB2E000073B0 /* RCNConfigDBManager.m */, - 46EB2E000073C0 /* RCNConfigDefines.h */, - 46EB2E000073D0 /* RCNConfigExperiment.h */, - 46EB2E000073E0 /* RCNConfigExperiment.m */, - 46EB2E00007330 /* RCNConfigFetch.h */, - 46EB2E000073F0 /* RCNConfigFetch.m */, - 46EB2E00007340 /* RCNConfigSettings.h */, - 46EB2E00007400 /* RCNConfigSettings.m */, - 46EB2E00007410 /* RCNConfigValue_Internal.h */, - 46EB2E00007420 /* RCNConstants3P.m */, - 46EB2E00007430 /* RCNDevice.h */, - 46EB2E00007440 /* RCNDevice.m */, - 46EB2E00007450 /* RCNPersonalization.h */, - 46EB2E00007460 /* RCNPersonalization.m */, - 46EB2E00007470 /* RCNUserDefaultsManager.h */, - 46EB2E00007480 /* RCNUserDefaultsManager.m */, - 46EB2E0002A9E0 /* Support Files */, + 46EB2E000074E0 /* ABTExperimentPayload.h */, + 46EB2E000074A0 /* FIRAnalyticsInterop.h */, + 46EB2E000074B0 /* FIRAnalyticsInteropListener.h */, + 46EB2E00007500 /* FIRAppInternal.h */, + 46EB2E00007510 /* FIRComponent.h */, + 46EB2E00007520 /* FIRComponentContainer.h */, + 46EB2E00007530 /* FIRComponentType.h */, + 46EB2E000072F0 /* FIRConfigValue.m */, + 46EB2E00007540 /* FIRCoreDiagnosticsConnector.h */, + 46EB2E00007550 /* FIRDependency.h */, + 46EB2E000074F0 /* FirebaseABTestingInternal.h */, + 46EB2E00007560 /* FirebaseCoreInternal.h */, + 46EB2E000075C0 /* FirebaseInstallationsInternal.h */, + 46EB2E00007360 /* FirebaseRemoteConfig.h */, + 46EB2E00007570 /* FIRHeartbeatInfo.h */, + 46EB2E00007580 /* FIRHeartbeatLogger.h */, + 46EB2E000074C0 /* FIRInteropEventNames.h */, + 46EB2E000074D0 /* FIRInteropParameterNames.h */, + 46EB2E00007590 /* FIRLibrary.h */, + 46EB2E000075A0 /* FIRLogger.h */, + 46EB2E000075B0 /* FIROptionsInternal.h */, + 46EB2E00007370 /* FIRRemoteConfig.h */, + 46EB2E00007300 /* FIRRemoteConfig.m */, + 46EB2E00007330 /* FIRRemoteConfig_Private.h */, + 46EB2E00007310 /* FIRRemoteConfigComponent.h */, + 46EB2E00007320 /* FIRRemoteConfigComponent.m */, + 46EB2E00007380 /* RCNConfigConstants.h */, + 46EB2E00007390 /* RCNConfigContent.h */, + 46EB2E000073A0 /* RCNConfigContent.m */, + 46EB2E000073B0 /* RCNConfigDBManager.h */, + 46EB2E000073C0 /* RCNConfigDBManager.m */, + 46EB2E000073D0 /* RCNConfigDefines.h */, + 46EB2E000073E0 /* RCNConfigExperiment.h */, + 46EB2E000073F0 /* RCNConfigExperiment.m */, + 46EB2E00007340 /* RCNConfigFetch.h */, + 46EB2E00007400 /* RCNConfigFetch.m */, + 46EB2E00007350 /* RCNConfigSettings.h */, + 46EB2E00007410 /* RCNConfigSettings.m */, + 46EB2E00007420 /* RCNConfigValue_Internal.h */, + 46EB2E00007430 /* RCNConstants3P.m */, + 46EB2E00007440 /* RCNDevice.h */, + 46EB2E00007450 /* RCNDevice.m */, + 46EB2E00007460 /* RCNPersonalization.h */, + 46EB2E00007470 /* RCNPersonalization.m */, + 46EB2E00007480 /* RCNUserDefaultsManager.h */, + 46EB2E00007490 /* RCNUserDefaultsManager.m */, + 46EB2E0002A900 /* Support Files */, ); + name = FirebaseRemoteConfig; path = FirebaseRemoteConfig; sourceTree = ""; }; 46EB2E00000210 /* Flipper */ = { isa = PBXGroup; children = ( - 46EB2E00007810 /* CallstackHelper.h */, - 46EB2E000075C0 /* CertificateUtils.cpp */, - 46EB2E000075D0 /* CertificateUtils.h */, - 46EB2E000075E0 /* ConnectionContextStore.cpp */, - 46EB2E000075F0 /* ConnectionContextStore.h */, - 46EB2E00007600 /* FireAndForgetBasedFlipperResponder.h */, - 46EB2E00007610 /* FlipperBase64.cpp */, - 46EB2E00007620 /* FlipperBase64.h */, - 46EB2E00007630 /* FlipperCertificateExchangeMedium.h */, - 46EB2E00007640 /* FlipperCertificateProvider.h */, - 46EB2E00007650 /* FlipperClient.cpp */, - 46EB2E00007660 /* FlipperClient.h */, - 46EB2E00007670 /* FlipperConnection.h */, - 46EB2E00007680 /* FlipperConnectionImpl.h */, - 46EB2E00007690 /* FlipperConnectionManager.h */, - 46EB2E000076A0 /* FlipperConnectionManagerImpl.cpp */, - 46EB2E000076B0 /* FlipperConnectionManagerImpl.h */, - 46EB2E000076C0 /* FlipperInitConfig.h */, - 46EB2E000076D0 /* FlipperPlugin.h */, - 46EB2E000076E0 /* FlipperResponder.h */, - 46EB2E000076F0 /* FlipperResponderImpl.h */, - 46EB2E00007700 /* FlipperRSocket.cpp */, - 46EB2E00007710 /* FlipperRSocket.h */, - 46EB2E00007720 /* FlipperRSocketResponder.cpp */, - 46EB2E00007730 /* FlipperRSocketResponder.h */, - 46EB2E00007740 /* FlipperSocket.h */, - 46EB2E00007750 /* FlipperSocketProvider.cpp */, - 46EB2E00007760 /* FlipperSocketProvider.h */, - 46EB2E00007770 /* FlipperState.cpp */, - 46EB2E00007780 /* FlipperState.h */, - 46EB2E00007790 /* FlipperStateUpdateListener.h */, - 46EB2E000077A0 /* FlipperStep.cpp */, - 46EB2E000077B0 /* FlipperStep.h */, - 46EB2E000077C0 /* FlipperTransportTypes.h */, - 46EB2E000077D0 /* FlipperURLSerializer.cpp */, - 46EB2E000077E0 /* FlipperURLSerializer.h */, - 46EB2E000077F0 /* Log.cpp */, - 46EB2E00007800 /* Log.h */, - 46EB2E0002AD10 /* Support Files */, + 46EB2E00007820 /* CallstackHelper.h */, + 46EB2E000075D0 /* CertificateUtils.cpp */, + 46EB2E000075E0 /* CertificateUtils.h */, + 46EB2E000075F0 /* ConnectionContextStore.cpp */, + 46EB2E00007600 /* ConnectionContextStore.h */, + 46EB2E00007610 /* FireAndForgetBasedFlipperResponder.h */, + 46EB2E00007620 /* FlipperBase64.cpp */, + 46EB2E00007630 /* FlipperBase64.h */, + 46EB2E00007640 /* FlipperCertificateExchangeMedium.h */, + 46EB2E00007650 /* FlipperCertificateProvider.h */, + 46EB2E00007660 /* FlipperClient.cpp */, + 46EB2E00007670 /* FlipperClient.h */, + 46EB2E00007680 /* FlipperConnection.h */, + 46EB2E00007690 /* FlipperConnectionImpl.h */, + 46EB2E000076A0 /* FlipperConnectionManager.h */, + 46EB2E000076B0 /* FlipperConnectionManagerImpl.cpp */, + 46EB2E000076C0 /* FlipperConnectionManagerImpl.h */, + 46EB2E000076D0 /* FlipperInitConfig.h */, + 46EB2E000076E0 /* FlipperPlugin.h */, + 46EB2E000076F0 /* FlipperResponder.h */, + 46EB2E00007700 /* FlipperResponderImpl.h */, + 46EB2E00007710 /* FlipperRSocket.cpp */, + 46EB2E00007720 /* FlipperRSocket.h */, + 46EB2E00007730 /* FlipperRSocketResponder.cpp */, + 46EB2E00007740 /* FlipperRSocketResponder.h */, + 46EB2E00007750 /* FlipperSocket.h */, + 46EB2E00007760 /* FlipperSocketProvider.cpp */, + 46EB2E00007770 /* FlipperSocketProvider.h */, + 46EB2E00007780 /* FlipperState.cpp */, + 46EB2E00007790 /* FlipperState.h */, + 46EB2E000077A0 /* FlipperStateUpdateListener.h */, + 46EB2E000077B0 /* FlipperStep.cpp */, + 46EB2E000077C0 /* FlipperStep.h */, + 46EB2E000077D0 /* FlipperTransportTypes.h */, + 46EB2E000077E0 /* FlipperURLSerializer.cpp */, + 46EB2E000077F0 /* FlipperURLSerializer.h */, + 46EB2E00007800 /* Log.cpp */, + 46EB2E00007810 /* Log.h */, + 46EB2E0002AC30 /* Support Files */, ); + name = Flipper; path = Flipper; sourceTree = ""; }; 46EB2E00000220 /* Flipper-Boost-iOSX */ = { isa = PBXGroup; children = ( - 46EB2E00007840 /* jump_combined_all_macho_gas.S */, - 46EB2E00007830 /* make_combined_all_macho_gas.S */, - 46EB2E00007820 /* ontop_combined_all_macho_gas.S */, - 46EB2E0002AE20 /* Support Files */, + 46EB2E00007850 /* jump_combined_all_macho_gas.S */, + 46EB2E00007840 /* make_combined_all_macho_gas.S */, + 46EB2E00007830 /* ontop_combined_all_macho_gas.S */, + 46EB2E0002AD40 /* Support Files */, ); + name = "Flipper-Boost-iOSX"; path = "Flipper-Boost-iOSX"; sourceTree = ""; }; 46EB2E00000230 /* Flipper-DoubleConversion */ = { isa = PBXGroup; children = ( - 46EB2E00007870 /* bignum.cc */, - 46EB2E00007880 /* bignum.h */, - 46EB2E00007850 /* bignum-dtoa.cc */, - 46EB2E00007860 /* bignum-dtoa.h */, - 46EB2E00007890 /* cached-powers.cc */, - 46EB2E000078A0 /* cached-powers.h */, - 46EB2E000078B0 /* diy-fp.cc */, - 46EB2E000078C0 /* diy-fp.h */, - 46EB2E000078D0 /* double-conversion.cc */, - 46EB2E000078E0 /* double-conversion.h */, - 46EB2E000078F0 /* fast-dtoa.cc */, - 46EB2E00007900 /* fast-dtoa.h */, - 46EB2E00007910 /* fixed-dtoa.cc */, - 46EB2E00007920 /* fixed-dtoa.h */, - 46EB2E00007930 /* ieee.h */, - 46EB2E00007940 /* strtod.cc */, - 46EB2E00007950 /* strtod.h */, - 46EB2E00007960 /* utils.h */, - 46EB2E0002B020 /* Support Files */, + 46EB2E00007880 /* bignum.cc */, + 46EB2E00007890 /* bignum.h */, + 46EB2E00007860 /* bignum-dtoa.cc */, + 46EB2E00007870 /* bignum-dtoa.h */, + 46EB2E000078A0 /* cached-powers.cc */, + 46EB2E000078B0 /* cached-powers.h */, + 46EB2E000078C0 /* diy-fp.cc */, + 46EB2E000078D0 /* diy-fp.h */, + 46EB2E000078E0 /* double-conversion.cc */, + 46EB2E000078F0 /* double-conversion.h */, + 46EB2E00007900 /* fast-dtoa.cc */, + 46EB2E00007910 /* fast-dtoa.h */, + 46EB2E00007920 /* fixed-dtoa.cc */, + 46EB2E00007930 /* fixed-dtoa.h */, + 46EB2E00007940 /* ieee.h */, + 46EB2E00007950 /* strtod.cc */, + 46EB2E00007960 /* strtod.h */, + 46EB2E00007970 /* utils.h */, + 46EB2E0002AF40 /* Support Files */, ); + name = "Flipper-DoubleConversion"; path = "Flipper-DoubleConversion"; sourceTree = ""; }; 46EB2E00000240 /* Flipper-Fmt */ = { isa = PBXGroup; children = ( - 46EB2E00007980 /* args.h */, - 46EB2E00007990 /* chrono.h */, - 46EB2E000079A0 /* color.h */, - 46EB2E000079B0 /* compile.h */, - 46EB2E000079C0 /* core.h */, - 46EB2E00007970 /* format.cc */, - 46EB2E000079E0 /* format.h */, - 46EB2E000079D0 /* format-inl.h */, - 46EB2E000079F0 /* locale.h */, - 46EB2E00007A00 /* os.h */, - 46EB2E00007A10 /* ostream.h */, - 46EB2E00007A20 /* printf.h */, - 46EB2E00007A30 /* ranges.h */, - 46EB2E0002B1D0 /* Support Files */, + 46EB2E00007990 /* args.h */, + 46EB2E000079A0 /* chrono.h */, + 46EB2E000079B0 /* color.h */, + 46EB2E000079C0 /* compile.h */, + 46EB2E000079D0 /* core.h */, + 46EB2E00007980 /* format.cc */, + 46EB2E000079F0 /* format.h */, + 46EB2E000079E0 /* format-inl.h */, + 46EB2E00007A00 /* locale.h */, + 46EB2E00007A10 /* os.h */, + 46EB2E00007A20 /* ostream.h */, + 46EB2E00007A30 /* printf.h */, + 46EB2E00007A40 /* ranges.h */, + 46EB2E0002B0F0 /* Support Files */, ); + name = "Flipper-Fmt"; path = "Flipper-Fmt"; sourceTree = ""; }; 46EB2E00000250 /* Flipper-Folly */ = { isa = PBXGroup; children = ( - 46EB2E00008220 /* Access.h */, - 46EB2E0000A0C0 /* Accumulate.h */, - 46EB2E0000A0B0 /* Accumulate-inl.h */, - 46EB2E0000A470 /* Addr2Line.cpp */, - 46EB2E0000A520 /* AddTasks.h */, - 46EB2E0000A510 /* AddTasks-inl.h */, - 46EB2E000090A0 /* Align.h */, - 46EB2E000090B0 /* Aligned.h */, - 46EB2E00008A90 /* ApplyTuple.h */, - 46EB2E00009240 /* Arena.h */, - 46EB2E00009230 /* Arena-inl.h */, - 46EB2E00008230 /* Array.h */, - 46EB2E0000ACD0 /* Asm.h */, - 46EB2E00009EA0 /* Assume.cpp */, - 46EB2E000090D0 /* Assume.h */, - 46EB2E000090C0 /* Assume-inl.h */, - 46EB2E00009FD0 /* AsymmetricMemoryBarrier.cpp */, - 46EB2E000093F0 /* AsymmetricMemoryBarrier.h */, - 46EB2E00008590 /* Async.h */, - 46EB2E0000A9F0 /* AsyncFileWriter.cpp */, - 46EB2E0000A800 /* AsyncFileWriter.h */, - 46EB2E0000A0D0 /* AsyncGenerator.h */, - 46EB2E0000AA00 /* AsyncLogWriter.cpp */, - 46EB2E0000A810 /* AsyncLogWriter.h */, - 46EB2E00009D20 /* AsyncPipe.cpp */, - 46EB2E0000A0E0 /* AsyncPipe.h */, - 46EB2E00008DD0 /* AsyncPipe.h */, - 46EB2E0000A0F0 /* AsyncScope.h */, - 46EB2E00009D30 /* AsyncServerSocket.cpp */, - 46EB2E00008DE0 /* AsyncServerSocket.h */, - 46EB2E00009D40 /* AsyncSignalHandler.cpp */, - 46EB2E00008DF0 /* AsyncSignalHandler.h */, - 46EB2E00009D50 /* AsyncSocket.cpp */, - 46EB2E00008E00 /* AsyncSocket.h */, - 46EB2E00008E10 /* AsyncSocketBase.h */, - 46EB2E00009D60 /* AsyncSocketException.cpp */, - 46EB2E00008E20 /* AsyncSocketException.h */, - 46EB2E00009D70 /* AsyncSSLSocket.cpp */, - 46EB2E00008E30 /* AsyncSSLSocket.h */, - 46EB2E000097B0 /* AsyncStack.cpp */, - 46EB2E0000A100 /* AsyncStack.h */, - 46EB2E00009770 /* AsyncStack.h */, - 46EB2E00009760 /* AsyncStack-inl.h */, - 46EB2E00009D80 /* AsyncTimeout.cpp */, - 46EB2E00008E40 /* AsyncTimeout.h */, - 46EB2E00009A30 /* AsyncTrace.cpp */, - 46EB2E000083C0 /* AsyncTrace.h */, - 46EB2E00008E50 /* AsyncTransport.h */, - 46EB2E00008E60 /* AsyncTransportCertificate.h */, - 46EB2E00008E70 /* AsyncUDPServerSocket.h */, - 46EB2E00009D90 /* AsyncUDPSocket.cpp */, - 46EB2E00008E80 /* AsyncUDPSocket.h */, - 46EB2E00009A40 /* AtFork.cpp */, - 46EB2E000083D0 /* AtFork.h */, - 46EB2E0000A540 /* AtomicBatchDispatcher.h */, - 46EB2E0000A530 /* AtomicBatchDispatcher-inl.h */, - 46EB2E00007A50 /* AtomicHashArray.h */, - 46EB2E00007A40 /* AtomicHashArray-inl.h */, - 46EB2E00007A70 /* AtomicHashMap.h */, - 46EB2E00007A60 /* AtomicHashMap-inl.h */, - 46EB2E000083E0 /* AtomicHashUtils.h */, - 46EB2E00007A80 /* AtomicIntrusiveLinkedList.h */, - 46EB2E00007A90 /* AtomicLinkedList.h */, - 46EB2E00009FE0 /* AtomicNotification.cpp */, - 46EB2E00009410 /* AtomicNotification.h */, - 46EB2E00009400 /* AtomicNotification-inl.h */, - 46EB2E00008EA0 /* AtomicNotificationQueue.h */, - 46EB2E00008E90 /* AtomicNotificationQueue-inl.h */, - 46EB2E000087D0 /* AtomicReadMostlyMainPtr.h */, - 46EB2E00009420 /* AtomicRef.h */, - 46EB2E000081A0 /* AtomicSharedPtr.h */, - 46EB2E00009430 /* AtomicStruct.h */, - 46EB2E00007AA0 /* AtomicUnorderedMap.h */, - 46EB2E000083F0 /* AtomicUnorderedMapUtils.h */, - 46EB2E00009450 /* AtomicUtil.h */, - 46EB2E00009440 /* AtomicUtil-inl.h */, - 46EB2E00009640 /* AtomicUtils.h */, - 46EB2E000087E0 /* AutoTimer.h */, - 46EB2E00009C10 /* Barrier.cpp */, - 46EB2E0000ABB0 /* Barrier.h */, - 46EB2E00008AC0 /* Barrier.h */, - 46EB2E0000ABC0 /* BarrierTask.h */, - 46EB2E00008BD0 /* Base.h */, - 46EB2E00008BC0 /* Base-inl.h */, - 46EB2E00009050 /* BasicTransportCertificate.h */, - 46EB2E0000A550 /* BatchDispatcher.h */, - 46EB2E0000A770 /* BatchSemaphore.cpp */, - 46EB2E0000A560 /* BatchSemaphore.h */, - 46EB2E0000A780 /* Baton.cpp */, - 46EB2E0000A110 /* Baton.h */, - 46EB2E0000A580 /* Baton.h */, - 46EB2E00009460 /* Baton.h */, - 46EB2E0000A570 /* Baton-inl.h */, - 46EB2E000097E0 /* Benchmark.cpp */, - 46EB2E00007AB0 /* Benchmark.h */, - 46EB2E00007AC0 /* BenchmarkUtil.h */, - 46EB2E00008240 /* BitIterator.h */, - 46EB2E00008330 /* BitIteratorDetail.h */, - 46EB2E00007AD0 /* Bits.h */, - 46EB2E000087F0 /* Bits.h */, - 46EB2E000090E0 /* Bits.h */, - 46EB2E00008800 /* BitVectorCoding.h */, - 46EB2E00008700 /* BlockingQueue.h */, - 46EB2E0000A120 /* BlockingWait.h */, - 46EB2E0000A590 /* BoostContextCompatibility.h */, - 46EB2E0000AA10 /* BridgeFromGoogleLogging.cpp */, - 46EB2E0000A820 /* BridgeFromGoogleLogging.h */, - 46EB2E0000AC90 /* Builtins.cpp */, - 46EB2E0000AC80 /* Builtins.h */, - 46EB2E000090F0 /* Byte.h */, - 46EB2E00009A00 /* CacheLocality.cpp */, - 46EB2E000081B0 /* CacheLocality.h */, - 46EB2E0000A5A0 /* CallOnce.h */, - 46EB2E00009470 /* CallOnce.h */, - 46EB2E000097F0 /* CancellationToken.cpp */, - 46EB2E00007AF0 /* CancellationToken.h */, - 46EB2E00007AE0 /* CancellationToken-inl.h */, - 46EB2E00009100 /* CArray.h */, - 46EB2E00009110 /* Cast.h */, - 46EB2E00008EB0 /* CertificateIdentityVerifier.h */, - 46EB2E00009120 /* CheckedMath.h */, - 46EB2E00009C80 /* Checksum.cpp */, - 46EB2E00008CB0 /* Checksum.h */, - 46EB2E00008D00 /* ChecksumDetail.h */, - 46EB2E00007B00 /* Chrono.h */, - 46EB2E00008810 /* Cleanup.h */, - 46EB2E00009800 /* ClockGettimeWrappers.cpp */, - 46EB2E00007B10 /* ClockGettimeWrappers.h */, - 46EB2E00009B00 /* Codel.cpp */, - 46EB2E000085A0 /* Codel.h */, - 46EB2E00008820 /* CodingDetail.h */, - 46EB2E0000A140 /* Collect.h */, - 46EB2E0000A130 /* Collect-inl.h */, - 46EB2E00008BF0 /* Combine.h */, - 46EB2E00008BE0 /* Combine-inl.h */, - 46EB2E0000A160 /* Concat.h */, - 46EB2E0000A150 /* Concat-inl.h */, - 46EB2E00007B20 /* ConcurrentBitSet.h */, - 46EB2E000081C0 /* ConcurrentHashMap.h */, - 46EB2E00007B30 /* ConcurrentLazy.h */, - 46EB2E00007B50 /* ConcurrentSkipList.h */, - 46EB2E00007B40 /* ConcurrentSkipList-inl.h */, - 46EB2E0000AC60 /* Config.h */, - 46EB2E0000AC70 /* Constexpr.h */, - 46EB2E00007B60 /* ConstexprMath.h */, - 46EB2E00007B70 /* ConstructorCallback.h */, - 46EB2E00009810 /* Conv.cpp */, - 46EB2E000097C0 /* Conv.h */, - 46EB2E00007B80 /* Conv.h */, - 46EB2E0000B010 /* Core.cpp */, - 46EB2E00009C70 /* Core.cpp */, - 46EB2E0000AFE0 /* Core.h */, - 46EB2E00008BA0 /* Core.h */, - 46EB2E00008C10 /* Core.h */, - 46EB2E00008C00 /* Core-inl.h */, - 46EB2E000081D0 /* CoreCachedSharedPtr.h */, - 46EB2E0000A170 /* Coroutine.h */, - 46EB2E00007B90 /* CPortability.h */, - 46EB2E00007BA0 /* CppAttributes.h */, - 46EB2E00007BB0 /* CpuId.h */, - 46EB2E00009B10 /* CPUThreadPoolExecutor.cpp */, - 46EB2E000085B0 /* CPUThreadPoolExecutor.h */, - 46EB2E00009EB0 /* CString.cpp */, - 46EB2E00009130 /* CString.h */, - 46EB2E0000ABD0 /* CurrentAsyncFrame.h */, - 46EB2E0000A180 /* CurrentExecutor.h */, - 46EB2E00009CB0 /* Cursor.cpp */, - 46EB2E00008D40 /* Cursor.h */, - 46EB2E00008D30 /* Cursor-inl.h */, - 46EB2E00009140 /* CustomizationPoint.h */, - 46EB2E0000AA20 /* CustomLogFormatter.cpp */, - 46EB2E0000A830 /* CustomLogFormatter.h */, - 46EB2E0000A7F0 /* Debug.h */, - 46EB2E00008EC0 /* DecoratedAsyncTransportWrapper.h */, - 46EB2E00007BC0 /* DefaultKeepAliveExecutor.h */, - 46EB2E00008ED0 /* DelayedDestruction.h */, - 46EB2E00008EE0 /* DelayedDestructionBase.h */, - 46EB2E00009480 /* DelayedInit.h */, - 46EB2E00009820 /* Demangle.cpp */, - 46EB2E00007BD0 /* Demangle.h */, - 46EB2E0000A1A0 /* Dematerialize.h */, - 46EB2E0000A190 /* Dematerialize-inl.h */, - 46EB2E00008EF0 /* DestructorCheck.h */, - 46EB2E0000A1B0 /* DetachOnCancel.h */, - 46EB2E00007BE0 /* DiscriminatedPtr.h */, - 46EB2E00008400 /* DiscriminatedPtrDetail.h */, - 46EB2E00009FF0 /* DistributedMutex.cpp */, - 46EB2E000094A0 /* DistributedMutex.h */, - 46EB2E00009490 /* DistributedMutex-inl.h */, - 46EB2E000094B0 /* DistributedMutexSpecializations.h */, - 46EB2E000085C0 /* DrivableExecutor.h */, - 46EB2E0000A480 /* Dwarf.cpp */, - 46EB2E0000A3D0 /* Dwarf.h */, - 46EB2E00009830 /* dynamic.cpp */, - 46EB2E00007C00 /* dynamic.h */, - 46EB2E00007BF0 /* dynamic-inl.h */, - 46EB2E000081E0 /* DynamicBoundedQueue.h */, - 46EB2E00007C10 /* DynamicConverter.h */, - 46EB2E00008840 /* DynamicParser.h */, - 46EB2E00008830 /* DynamicParser-inl.h */, - 46EB2E00009B20 /* EDFThreadPoolExecutor.cpp */, - 46EB2E000085D0 /* EDFThreadPoolExecutor.h */, - 46EB2E0000A490 /* Elf.cpp */, - 46EB2E0000A3F0 /* Elf.h */, - 46EB2E0000A3E0 /* Elf-inl.h */, - 46EB2E0000A4A0 /* ElfCache.cpp */, - 46EB2E0000A400 /* ElfCache.h */, - 46EB2E00008850 /* EliasFanoCoding.h */, - 46EB2E00009250 /* EnableSharedFromThis.h */, - 46EB2E00008250 /* Enumerate.h */, - 46EB2E00008860 /* EnvUtil.h */, - 46EB2E0000AD50 /* Event.h */, - 46EB2E00009DA0 /* EventBase.cpp */, - 46EB2E00008F00 /* EventBase.h */, - 46EB2E00008F20 /* EventBaseAtomicNotificationQueue.h */, - 46EB2E00008F10 /* EventBaseAtomicNotificationQueue-inl.h */, - 46EB2E00009DB0 /* EventBaseBackendBase.cpp */, - 46EB2E00008F30 /* EventBaseBackendBase.h */, - 46EB2E00009DC0 /* EventBaseLocal.cpp */, - 46EB2E00008F40 /* EventBaseLocal.h */, - 46EB2E0000A5C0 /* EventBaseLoopController.h */, - 46EB2E0000A5B0 /* EventBaseLoopController-inl.h */, - 46EB2E00009DD0 /* EventBaseManager.cpp */, - 46EB2E00008F50 /* EventBaseManager.h */, - 46EB2E00009DE0 /* EventBaseThread.cpp */, - 46EB2E00008F60 /* EventBaseThread.h */, - 46EB2E00008870 /* EventCount.h */, - 46EB2E00008F70 /* EventFDWrapper.h */, - 46EB2E00009DF0 /* EventHandler.cpp */, - 46EB2E00008F80 /* EventHandler.h */, - 46EB2E00008F90 /* EventUtil.h */, - 46EB2E00008260 /* EvictingCacheMap.h */, - 46EB2E00009EC0 /* Exception.cpp */, - 46EB2E00007C20 /* Exception.h */, - 46EB2E00009150 /* Exception.h */, - 46EB2E00009840 /* ExceptionString.cpp */, - 46EB2E00007C30 /* ExceptionString.h */, - 46EB2E00009850 /* ExceptionWrapper.cpp */, - 46EB2E00007C50 /* ExceptionWrapper.h */, - 46EB2E00007C40 /* ExceptionWrapper-inl.h */, - 46EB2E00008880 /* ExecutionObserver.h */, - 46EB2E00009860 /* Executor.cpp */, - 46EB2E00007C60 /* Executor.h */, - 46EB2E0000A5D0 /* ExecutorBasedLoopController.h */, - 46EB2E0000A5F0 /* ExecutorLoopController.h */, - 46EB2E0000A5E0 /* ExecutorLoopController-inl.h */, - 46EB2E00009B30 /* ExecutorWithPriority.cpp */, - 46EB2E000085F0 /* ExecutorWithPriority.h */, - 46EB2E000085E0 /* ExecutorWithPriority-inl.h */, - 46EB2E00007C70 /* Expected.h */, - 46EB2E00009160 /* Extern.h */, - 46EB2E00008340 /* F14Defaults.h */, - 46EB2E00008350 /* F14IntrinsicsAvailability.h */, - 46EB2E00008280 /* F14Map.h */, - 46EB2E00008270 /* F14Map-fwd.h */, - 46EB2E00008360 /* F14MapFallback.h */, - 46EB2E00008370 /* F14Mask.h */, - 46EB2E00008380 /* F14Policy.h */, - 46EB2E000082A0 /* F14Set.h */, - 46EB2E00008290 /* F14Set-fwd.h */, - 46EB2E00008390 /* F14SetFallback.h */, - 46EB2E00009A20 /* F14Table.cpp */, - 46EB2E000083A0 /* F14Table.h */, - 46EB2E00008CC0 /* FarmHash.h */, - 46EB2E00007C80 /* FBString.h */, - 46EB2E00007C90 /* FBVector.h */, - 46EB2E0000AF60 /* Fcntl.cpp */, - 46EB2E0000AF50 /* Fcntl.h */, - 46EB2E0000A790 /* Fiber.cpp */, - 46EB2E0000A610 /* Fiber.h */, - 46EB2E0000A600 /* Fiber-inl.h */, - 46EB2E00008600 /* FiberIOExecutor.h */, - 46EB2E0000A7A0 /* FiberManager.cpp */, - 46EB2E0000A630 /* FiberManager.h */, - 46EB2E0000A620 /* FiberManager-inl.h */, - 46EB2E0000A650 /* FiberManagerInternal.h */, - 46EB2E0000A640 /* FiberManagerInternal-inl.h */, - 46EB2E0000A670 /* FiberManagerMap.h */, - 46EB2E0000A660 /* FiberManagerMap-inl.h */, - 46EB2E00009870 /* File.cpp */, - 46EB2E00007CA0 /* File.h */, - 46EB2E00008C30 /* File.h */, - 46EB2E00008C20 /* File-inl.h */, - 46EB2E0000AA30 /* FileHandlerFactory.cpp */, - 46EB2E0000A840 /* FileHandlerFactory.h */, - 46EB2E00009880 /* FileUtil.cpp */, - 46EB2E00007CB0 /* FileUtil.h */, - 46EB2E00008410 /* FileUtilDetail.h */, - 46EB2E00008420 /* FileUtilVectorDetail.h */, - 46EB2E0000AA40 /* FileWriterFactory.cpp */, - 46EB2E0000A850 /* FileWriterFactory.h */, - 46EB2E0000A1D0 /* Filter.h */, - 46EB2E0000A1C0 /* Filter-inl.h */, - 46EB2E00009890 /* Fingerprint.cpp */, - 46EB2E00007CC0 /* Fingerprint.h */, - 46EB2E00008430 /* FingerprintPolynomial.h */, - 46EB2E00007CD0 /* FixedString.h */, - 46EB2E00008890 /* FlatCombiningPriorityQueue.h */, - 46EB2E0000AFB0 /* FmtCompile.h */, - 46EB2E000098A0 /* FollyMemcpy.cpp */, - 46EB2E00007CE0 /* FollyMemcpy.h */, - 46EB2E000082C0 /* Foreach.h */, - 46EB2E0000A690 /* ForEach.h */, - 46EB2E000082B0 /* Foreach-inl.h */, - 46EB2E0000A680 /* ForEach-inl.h */, - 46EB2E000098B0 /* Format.cpp */, - 46EB2E00007D00 /* Format.h */, - 46EB2E00007CF0 /* Format-inl.h */, - 46EB2E00007D10 /* FormatArg.h */, - 46EB2E00007D20 /* FormatTraits.h */, - 46EB2E00007D30 /* Function.h */, - 46EB2E000088A0 /* FunctionScheduler.h */, - 46EB2E00009A50 /* Futex.cpp */, - 46EB2E00008450 /* Futex.h */, - 46EB2E00008440 /* Futex-inl.h */, - 46EB2E00009C20 /* Future.cpp */, - 46EB2E00008AF0 /* Future.h */, - 46EB2E00008AD0 /* Future-inl.h */, - 46EB2E00008AE0 /* Future-pre.h */, - 46EB2E000088B0 /* FutureDAG.h */, - 46EB2E00008610 /* FutureExecutor.h */, - 46EB2E00008B00 /* FutureSplitter.h */, - 46EB2E0000A1E0 /* FutureUtil.h */, - 46EB2E0000A1F0 /* Generator.h */, - 46EB2E0000A6A0 /* GenericBaton.h */, - 46EB2E0000AE30 /* GFlags.h */, - 46EB2E00009B40 /* GlobalExecutor.cpp */, - 46EB2E00008620 /* GlobalExecutor.h */, - 46EB2E00009CC0 /* GlobalShutdownSocketSet.cpp */, - 46EB2E00008D50 /* GlobalShutdownSocketSet.h */, - 46EB2E00009B50 /* GlobalThreadPoolList.cpp */, - 46EB2E00008630 /* GlobalThreadPoolList.h */, - 46EB2E00007D40 /* GLog.h */, - 46EB2E0000AA50 /* GlogStyleFormatter.cpp */, - 46EB2E0000A860 /* GlogStyleFormatter.h */, - 46EB2E0000A200 /* GmockHelpers.h */, - 46EB2E0000AFF0 /* GraphCycleDetector.h */, - 46EB2E000098C0 /* GroupVarint.cpp */, - 46EB2E00007D50 /* GroupVarint.h */, - 46EB2E00008460 /* GroupVarintDetail.h */, - 46EB2E0000A210 /* GtestHelpers.h */, - 46EB2E0000A7B0 /* GuardPageAllocator.cpp */, - 46EB2E0000A6B0 /* GuardPageAllocator.h */, - 46EB2E000096E0 /* Hardware.cpp */, - 46EB2E000097D0 /* Hardware.h */, - 46EB2E00009650 /* Hardware.h */, - 46EB2E0000A050 /* HardwareConcurrency.cpp */, - 46EB2E00009700 /* HardwareConcurrency.h */, - 46EB2E00007D60 /* Hash.h */, - 46EB2E00008CD0 /* Hash.h */, - 46EB2E0000A000 /* Hazptr.cpp */, - 46EB2E000094D0 /* Hazptr.h */, - 46EB2E000094C0 /* Hazptr-fwd.h */, - 46EB2E000094E0 /* HazptrDomain.h */, - 46EB2E000094F0 /* HazptrHolder.h */, - 46EB2E00009500 /* HazptrObj.h */, - 46EB2E00009510 /* HazptrObjLinked.h */, - 46EB2E00009520 /* HazptrRec.h */, - 46EB2E0000A010 /* HazptrThreadPoolExecutor.cpp */, - 46EB2E00009530 /* HazptrThreadPoolExecutor.h */, - 46EB2E00009540 /* HazptrThrLocal.h */, - 46EB2E00009660 /* HazptrUtils.h */, - 46EB2E0000ABE0 /* Helpers.h */, - 46EB2E000082E0 /* HeterogeneousAccess.h */, - 46EB2E000082D0 /* HeterogeneousAccess-fwd.h */, - 46EB2E00009E00 /* HHWheelTimer.cpp */, - 46EB2E00008FB0 /* HHWheelTimer.h */, - 46EB2E00008FA0 /* HHWheelTimer-fwd.h */, - 46EB2E0000AA60 /* ImmediateFileWriter.cpp */, - 46EB2E0000A870 /* ImmediateFileWriter.h */, - 46EB2E00007D70 /* Indestructible.h */, - 46EB2E00007D80 /* IndexedMemPool.h */, - 46EB2E0000AA70 /* Init.cpp */, - 46EB2E00009F70 /* Init.cpp */, - 46EB2E00008D10 /* Init.h */, - 46EB2E0000A880 /* Init.h */, - 46EB2E00009350 /* Init.h */, - 46EB2E00008770 /* InitThreadFactory.h */, - 46EB2E0000AA80 /* InitWeak.cpp */, - 46EB2E00009B60 /* InlineExecutor.cpp */, - 46EB2E00008640 /* InlineExecutor.h */, - 46EB2E00009670 /* InlineFunctionRef.h */, - 46EB2E0000ABF0 /* InlineTask.h */, - 46EB2E000088C0 /* Instructions.h */, - 46EB2E00007D90 /* IntrusiveList.h */, - 46EB2E0000A220 /* Invoke.h */, - 46EB2E00008AA0 /* Invoke.h */, - 46EB2E00009CD0 /* IOBuf.cpp */, - 46EB2E00008D60 /* IOBuf.h */, - 46EB2E00009CE0 /* IOBufQueue.cpp */, - 46EB2E00008D70 /* IOBufQueue.h */, - 46EB2E00008650 /* IOExecutor.h */, - 46EB2E00008660 /* IOObjectCache.h */, - 46EB2E00009B70 /* IOThreadPoolExecutor.cpp */, - 46EB2E00008670 /* IOThreadPoolExecutor.h */, - 46EB2E0000AE10 /* IOVec.h */, - 46EB2E00009A60 /* IPAddress.cpp */, - 46EB2E000098D0 /* IPAddress.cpp */, - 46EB2E00008470 /* IPAddress.h */, - 46EB2E00007DA0 /* IPAddress.h */, - 46EB2E00007DB0 /* IPAddressException.h */, - 46EB2E00008480 /* IPAddressSource.h */, - 46EB2E000098E0 /* IPAddressV4.cpp */, - 46EB2E00007DC0 /* IPAddressV4.h */, - 46EB2E000098F0 /* IPAddressV6.cpp */, - 46EB2E00007DD0 /* IPAddressV6.h */, - 46EB2E00008C40 /* IStream.h */, - 46EB2E000082F0 /* Iterator.h */, - 46EB2E00008490 /* Iterators.h */, - 46EB2E000088D0 /* JemallocHugePageAllocator.h */, - 46EB2E000088E0 /* JemallocNodumpAllocator.h */, - 46EB2E00009900 /* json.cpp */, - 46EB2E00007DE0 /* json.h */, - 46EB2E00009910 /* json_patch.cpp */, - 46EB2E00007DF0 /* json_patch.h */, - 46EB2E00009920 /* json_pointer.cpp */, - 46EB2E00007E00 /* json_pointer.h */, - 46EB2E000088F0 /* JSONSchema.h */, - 46EB2E00009170 /* Keep.h */, - 46EB2E00009180 /* Launder.h */, - 46EB2E00007E10 /* Lazy.h */, - 46EB2E00009550 /* LifoSem.h */, - 46EB2E00008710 /* LifoSemMPMCQueue.h */, - 46EB2E00007E20 /* Likely.h */, - 46EB2E0000A4B0 /* LineReader.cpp */, - 46EB2E0000A410 /* LineReader.h */, - 46EB2E00009560 /* Lock.h */, - 46EB2E00008900 /* LockFreeRingBuffer.h */, - 46EB2E00007E30 /* LockTraits.h */, - 46EB2E0000AA90 /* LogCategory.cpp */, - 46EB2E0000A890 /* LogCategory.h */, - 46EB2E0000AAA0 /* LogCategoryConfig.cpp */, - 46EB2E0000A8A0 /* LogCategoryConfig.h */, - 46EB2E0000AAB0 /* LogConfig.cpp */, - 46EB2E0000A8B0 /* LogConfig.h */, - 46EB2E0000AAC0 /* LogConfigParser.cpp */, - 46EB2E0000A8C0 /* LogConfigParser.h */, - 46EB2E0000A8D0 /* LogFormatter.h */, - 46EB2E0000AAD0 /* Logger.cpp */, - 46EB2E0000A8E0 /* Logger.h */, - 46EB2E0000AAE0 /* LoggerDB.cpp */, - 46EB2E0000A8F0 /* LoggerDB.h */, - 46EB2E0000A900 /* LogHandler.h */, - 46EB2E0000AAF0 /* LogHandlerConfig.cpp */, - 46EB2E0000A910 /* LogHandlerConfig.h */, - 46EB2E0000A920 /* LogHandlerFactory.h */, - 46EB2E0000AB00 /* LogLevel.cpp */, - 46EB2E0000A930 /* LogLevel.h */, - 46EB2E0000AB10 /* LogMessage.cpp */, - 46EB2E0000A940 /* LogMessage.h */, - 46EB2E0000AB20 /* LogName.cpp */, - 46EB2E0000A950 /* LogName.h */, - 46EB2E0000AB30 /* LogStream.cpp */, - 46EB2E0000A960 /* LogStream.h */, - 46EB2E0000AB40 /* LogStreamProcessor.cpp */, - 46EB2E0000A970 /* LogStreamProcessor.h */, - 46EB2E0000A980 /* LogWriter.h */, - 46EB2E0000A6C0 /* LoopController.h */, - 46EB2E00009930 /* MacAddress.cpp */, - 46EB2E00007E40 /* MacAddress.h */, - 46EB2E00009EF0 /* MallctlHelper.cpp */, - 46EB2E00009260 /* MallctlHelper.h */, - 46EB2E0000AC30 /* Malloc.cpp */, - 46EB2E0000ACB0 /* Malloc.cpp */, - 46EB2E0000AC00 /* Malloc.h */, - 46EB2E00009270 /* Malloc.h */, - 46EB2E0000ACA0 /* Malloc.h */, - 46EB2E00009F40 /* MallocImpl.cpp */, - 46EB2E00009300 /* MallocImpl.h */, - 46EB2E00009B80 /* ManualExecutor.cpp */, - 46EB2E00008680 /* ManualExecutor.h */, - 46EB2E0000AC10 /* ManualLifetime.h */, - 46EB2E00009C30 /* ManualTimekeeper.cpp */, - 46EB2E00008B10 /* ManualTimekeeper.h */, - 46EB2E00007E50 /* MapUtil.h */, - 46EB2E0000A240 /* Materialize.h */, - 46EB2E0000A230 /* Materialize-inl.h */, - 46EB2E00007E60 /* Math.h */, - 46EB2E0000ACC0 /* Math.h */, - 46EB2E00007E70 /* Memory.h */, - 46EB2E00009A70 /* MemoryIdler.cpp */, - 46EB2E000084A0 /* MemoryIdler.h */, - 46EB2E0000A060 /* MemoryMapping.cpp */, - 46EB2E00009710 /* MemoryMapping.h */, - 46EB2E00009280 /* MemoryResource.h */, - 46EB2E00008300 /* Merge.h */, - 46EB2E0000A260 /* Merge.h */, - 46EB2E0000A250 /* Merge-inl.h */, - 46EB2E00009B90 /* MeteredExecutor.cpp */, - 46EB2E00008690 /* MeteredExecutor.h */, - 46EB2E00009940 /* MicroLock.cpp */, - 46EB2E00007E80 /* MicroLock.h */, - 46EB2E00007E90 /* MicroSpinLock.h */, - 46EB2E00009570 /* MicroSpinLock.h */, - 46EB2E00007EA0 /* MoveWrapper.h */, - 46EB2E00007EB0 /* MPMCPipeline.h */, - 46EB2E000084B0 /* MPMCPipelineDetail.h */, - 46EB2E00007EC0 /* MPMCQueue.h */, - 46EB2E0000A280 /* Multiplex.h */, - 46EB2E0000A270 /* Multiplex-inl.h */, - 46EB2E0000A290 /* Mutex.h */, - 46EB2E00008780 /* NamedThreadFactory.h */, - 46EB2E00009580 /* NativeSemaphore.h */, - 46EB2E00008910 /* NestedCommandLineApp.h */, - 46EB2E00009F50 /* NetOps.cpp */, - 46EB2E00009310 /* NetOps.h */, - 46EB2E00009F60 /* NetOpsDispatcher.cpp */, - 46EB2E00009320 /* NetOpsDispatcher.h */, - 46EB2E00009330 /* NetworkSocket.h */, - 46EB2E000092A0 /* not_null.h */, - 46EB2E00009290 /* not_null-inl.h */, - 46EB2E00008FC0 /* NotificationQueue.h */, - 46EB2E0000AB50 /* ObjectToString.cpp */, - 46EB2E0000A990 /* ObjectToString.h */, - 46EB2E0000AD70 /* Observable.h */, - 46EB2E0000AD60 /* Observable-inl.h */, - 46EB2E0000ADA0 /* Observer.h */, - 46EB2E0000AD80 /* Observer-inl.h */, - 46EB2E0000AD90 /* Observer-pre.h */, - 46EB2E0000B020 /* ObserverManager.cpp */, - 46EB2E0000B000 /* ObserverManager.h */, - 46EB2E0000ACF0 /* OpenSSL.cpp */, - 46EB2E0000ACE0 /* OpenSSL.h */, - 46EB2E00009F80 /* OpenSSLCertUtils.cpp */, - 46EB2E00009360 /* OpenSSLCertUtils.h */, - 46EB2E00009F90 /* OpenSSLHash.cpp */, - 46EB2E00009370 /* OpenSSLHash.h */, - 46EB2E00009380 /* OpenSSLLockTypes.h */, - 46EB2E00009390 /* OpenSSLPtrTypes.h */, - 46EB2E00009FB0 /* OpenSSLSession.cpp */, - 46EB2E000093D0 /* OpenSSLSession.h */, - 46EB2E00009FC0 /* OpenSSLThreading.cpp */, - 46EB2E000093E0 /* OpenSSLThreading.h */, - 46EB2E00009060 /* OpenSSLTransportCertificate.h */, - 46EB2E00009E80 /* OpenSSLUtils.cpp */, - 46EB2E00009070 /* OpenSSLUtils.h */, - 46EB2E000093A0 /* OpenSSLVersionFinder.h */, - 46EB2E00007ED0 /* Optional.h */, - 46EB2E00009190 /* Ordering.h */, - 46EB2E00007EE0 /* Overload.h */, - 46EB2E00007EF0 /* PackedSyncPtr.h */, - 46EB2E00007F00 /* Padded.h */, - 46EB2E00008C60 /* Parallel.h */, - 46EB2E00008C50 /* Parallel-inl.h */, - 46EB2E00008C80 /* ParallelMap.h */, - 46EB2E00008C70 /* ParallelMap-inl.h */, - 46EB2E0000A020 /* ParkingLot.cpp */, - 46EB2E00009590 /* ParkingLot.h */, - 46EB2E00008AB0 /* Partial.h */, - 46EB2E00009E10 /* PasswordInFile.cpp */, - 46EB2E00008FD0 /* PasswordInFile.h */, - 46EB2E00008D20 /* Phase.h */, - 46EB2E000095A0 /* PicoSpinLock.h */, - 46EB2E0000A070 /* Pid.cpp */, - 46EB2E00009720 /* Pid.h */, - 46EB2E00007F20 /* Poly.h */, - 46EB2E00007F10 /* Poly-inl.h */, - 46EB2E000084C0 /* PolyDetail.h */, - 46EB2E00007F30 /* PolyException.h */, - 46EB2E00008B20 /* Portability.h */, - 46EB2E00007F40 /* Portability.h */, - 46EB2E00007F50 /* Preprocessor.h */, - 46EB2E000091A0 /* Pretty.h */, - 46EB2E00008920 /* PrimaryPtr.h */, - 46EB2E00008720 /* PriorityLifoSemMPMCQueue.h */, - 46EB2E00008790 /* PriorityThreadFactory.h */, - 46EB2E00008730 /* PriorityUnboundedBlockingQueue.h */, - 46EB2E000081F0 /* PriorityUnboundedQueueSet.h */, - 46EB2E00007F60 /* ProducerConsumerQueue.h */, - 46EB2E00008930 /* ProgramOptions.h */, - 46EB2E00009C40 /* Promise.cpp */, - 46EB2E0000A6E0 /* Promise.h */, - 46EB2E00008B40 /* Promise.h */, - 46EB2E0000A6D0 /* Promise-inl.h */, - 46EB2E00008B30 /* Promise-inl.h */, - 46EB2E000091B0 /* PropagateConst.h */, - 46EB2E00009690 /* ProxyLockable.h */, - 46EB2E00009680 /* ProxyLockable-inl.h */, - 46EB2E0000AD00 /* PThread.cpp */, - 46EB2E0000AD10 /* PThread.h */, - 46EB2E00009BA0 /* QueuedImmediateExecutor.cpp */, - 46EB2E000086A0 /* QueuedImmediateExecutor.h */, - 46EB2E00009A10 /* QueueObserver.cpp */, - 46EB2E00008200 /* QueueObserver.h */, - 46EB2E00008950 /* QuotientMultiSet.h */, - 46EB2E00008940 /* QuotientMultiSet-inl.h */, - 46EB2E00009950 /* Random.cpp */, - 46EB2E00007F80 /* Random.h */, - 46EB2E00007F70 /* Random-inl.h */, - 46EB2E00007F90 /* Range.h */, - 46EB2E00009A80 /* RangeCommon.cpp */, - 46EB2E000084D0 /* RangeCommon.h */, - 46EB2E00009A90 /* RangeSse42.cpp */, - 46EB2E000084E0 /* RangeSse42.h */, - 46EB2E0000AB60 /* RateLimiter.cpp */, - 46EB2E0000A9A0 /* RateLimiter.h */, - 46EB2E000095C0 /* Rcu.h */, - 46EB2E000095B0 /* Rcu-inl.h */, - 46EB2E00008960 /* ReadMostlySharedPtr.h */, - 46EB2E00009CF0 /* RecordIO.cpp */, - 46EB2E00008D90 /* RecordIO.h */, - 46EB2E00008D80 /* RecordIO-inl.h */, - 46EB2E00009F00 /* ReentrantAllocator.cpp */, - 46EB2E000092B0 /* ReentrantAllocator.h */, - 46EB2E00008970 /* RelaxedConcurrentPriorityQueue.h */, - 46EB2E00007FA0 /* Replaceable.h */, - 46EB2E00009E20 /* Request.cpp */, - 46EB2E00008FE0 /* Request.h */, - 46EB2E0000A2A0 /* Result.h */, - 46EB2E0000A2B0 /* Retry.h */, - 46EB2E00008B50 /* Retrying.h */, - 46EB2E0000A2C0 /* RustAdaptors.h */, - 46EB2E000091C0 /* RValueReferenceWrapper.h */, - 46EB2E00007FB0 /* RWSpinLock.h */, - 46EB2E000095D0 /* RWSpinLock.h */, - 46EB2E00009ED0 /* SafeAssert.cpp */, - 46EB2E000091D0 /* SafeAssert.h */, - 46EB2E00009F10 /* SanitizeAddress.cpp */, - 46EB2E000092C0 /* SanitizeAddress.h */, - 46EB2E00009F20 /* SanitizeLeak.cpp */, - 46EB2E000092D0 /* SanitizeLeak.h */, - 46EB2E0000A030 /* SanitizeThread.cpp */, - 46EB2E000095E0 /* SanitizeThread.h */, - 46EB2E000095F0 /* SaturatingSemaphore.h */, - 46EB2E0000AFD0 /* Sched.cpp */, - 46EB2E0000AFC0 /* Sched.h */, - 46EB2E000086B0 /* ScheduledExecutor.h */, - 46EB2E00009E30 /* ScopedEventBaseThread.cpp */, - 46EB2E00008FF0 /* ScopedEventBaseThread.h */, - 46EB2E00009780 /* ScopedTraceSection.h */, - 46EB2E00009960 /* ScopeGuard.cpp */, - 46EB2E00007FC0 /* ScopeGuard.h */, - 46EB2E00008980 /* Select64.h */, - 46EB2E0000A7C0 /* Semaphore.cpp */, - 46EB2E0000A6F0 /* Semaphore.h */, - 46EB2E0000A7D0 /* SemaphoreBase.cpp */, - 46EB2E0000A700 /* SemaphoreBase.h */, - 46EB2E000086C0 /* SequencedExecutor.h */, - 46EB2E00009BB0 /* SerialExecutor.cpp */, - 46EB2E000086D0 /* SerialExecutor.h */, - 46EB2E0000A2D0 /* SharedLock.h */, - 46EB2E00009970 /* SharedMutex.cpp */, - 46EB2E0000A2E0 /* SharedMutex.h */, - 46EB2E00007FD0 /* SharedMutex.h */, - 46EB2E00009C50 /* SharedPromise.cpp */, - 46EB2E00008B70 /* SharedPromise.h */, - 46EB2E00008B60 /* SharedPromise-inl.h */, - 46EB2E0000A080 /* Shell.cpp */, - 46EB2E00009730 /* Shell.h */, - 46EB2E00009D00 /* ShutdownSocketSet.cpp */, - 46EB2E00008DA0 /* ShutdownSocketSet.h */, - 46EB2E0000A4C0 /* SignalHandler.cpp */, - 46EB2E0000A420 /* SignalHandler.h */, - 46EB2E0000A7E0 /* SimpleLoopController.cpp */, - 46EB2E0000A710 /* SimpleLoopController.h */, - 46EB2E0000ADC0 /* SimpleObservable.h */, - 46EB2E0000ADB0 /* SimpleObservable-inl.h */, - 46EB2E00009980 /* Singleton.cpp */, - 46EB2E000084F0 /* Singleton.h */, - 46EB2E00007FF0 /* Singleton.h */, - 46EB2E00007FE0 /* Singleton-inl.h */, - 46EB2E00008990 /* SingletonRelaxedCounter.h */, - 46EB2E00009AA0 /* SingletonStackTrace.cpp */, - 46EB2E00008500 /* SingletonStackTrace.h */, - 46EB2E00008000 /* SingletonThreadLocal.h */, - 46EB2E000089A0 /* SingleWriterFixedHashMap.h */, - 46EB2E0000A300 /* Sleep.h */, - 46EB2E0000A2F0 /* Sleep-inl.h */, - 46EB2E000096F0 /* Sleeper.cpp */, - 46EB2E000096A0 /* Sleeper.h */, - 46EB2E00008510 /* SlowFingerprint.h */, - 46EB2E00008010 /* small_vector.h */, - 46EB2E00009600 /* SmallLocks.h */, - 46EB2E00009990 /* SocketAddress.cpp */, - 46EB2E00008020 /* SocketAddress.h */, - 46EB2E00009AB0 /* SocketFastOpen.cpp */, - 46EB2E00008520 /* SocketFastOpen.h */, - 46EB2E00009340 /* SocketFileDescriptorMap.h */, - 46EB2E00009D10 /* SocketOptionMap.cpp */, - 46EB2E00008DB0 /* SocketOptionMap.h */, - 46EB2E0000AEE0 /* Sockets.cpp */, - 46EB2E0000AED0 /* Sockets.h */, - 46EB2E000086E0 /* SoftRealTimeExecutor.h */, - 46EB2E00008030 /* sorted_vector_types.h */, - 46EB2E00008310 /* SparseByteSet.h */, - 46EB2E000096B0 /* Spin.h */, - 46EB2E00008040 /* SpinLock.h */, - 46EB2E00009C90 /* SpookyHashV1.cpp */, - 46EB2E00008CE0 /* SpookyHashV1.h */, - 46EB2E00009CA0 /* SpookyHashV2.cpp */, - 46EB2E00008CF0 /* SpookyHashV2.h */, - 46EB2E00009AC0 /* Sse.cpp */, - 46EB2E00008530 /* Sse.h */, - 46EB2E00009E40 /* SSLContext.cpp */, - 46EB2E00009000 /* SSLContext.h */, - 46EB2E00009E90 /* SSLErrors.cpp */, - 46EB2E00009080 /* SSLErrors.h */, - 46EB2E00009E50 /* SSLOptions.cpp */, - 46EB2E00009010 /* SSLOptions.h */, - 46EB2E000093B0 /* SSLSession.h */, - 46EB2E00009FA0 /* SSLSessionManager.cpp */, - 46EB2E000093C0 /* SSLSessionManager.h */, - 46EB2E0000A4D0 /* StackTrace.cpp */, - 46EB2E0000A430 /* StackTrace.h */, - 46EB2E000089B0 /* StampedPtr.h */, - 46EB2E0000AB70 /* StandardLogHandler.cpp */, - 46EB2E0000A9B0 /* StandardLogHandler.h */, - 46EB2E0000AB80 /* StandardLogHandlerFactory.cpp */, - 46EB2E0000A9C0 /* StandardLogHandlerFactory.h */, - 46EB2E000091E0 /* StaticConst.h */, - 46EB2E00009AD0 /* StaticSingletonManager.cpp */, - 46EB2E00008540 /* StaticSingletonManager.h */, - 46EB2E000097A0 /* StaticTracepoint.h */, - 46EB2E00009790 /* StaticTracepoint-ELFx86.h */, - 46EB2E0000AFA0 /* Stdio.cpp */, - 46EB2E0000AF90 /* Stdio.h */, - 46EB2E0000AF80 /* Stdlib.cpp */, - 46EB2E0000AF70 /* Stdlib.h */, - 46EB2E00008050 /* stop_watch.h */, - 46EB2E00009BC0 /* StrandExecutor.cpp */, - 46EB2E000086F0 /* StrandExecutor.h */, - 46EB2E0000AB90 /* StreamHandlerFactory.cpp */, - 46EB2E0000A9D0 /* StreamHandlerFactory.h */, - 46EB2E0000AF40 /* String.cpp */, - 46EB2E000099A0 /* String.cpp */, - 46EB2E00008CA0 /* String.h */, - 46EB2E0000AF30 /* String.h */, - 46EB2E00008070 /* String.h */, - 46EB2E00008C90 /* String-inl.h */, - 46EB2E00008060 /* String-inl.h */, - 46EB2E000089C0 /* StringKeyedCommon.h */, - 46EB2E000089D0 /* StringKeyedMap.h */, - 46EB2E000089E0 /* StringKeyedSet.h */, - 46EB2E000089F0 /* StringKeyedUnorderedMap.h */, - 46EB2E00008A00 /* StringKeyedUnorderedSet.h */, - 46EB2E00008A10 /* STTimerFDTimeoutManager.h */, - 46EB2E000099B0 /* Subprocess.cpp */, - 46EB2E00008080 /* Subprocess.h */, - 46EB2E0000A4E0 /* SymbolizedFrame.cpp */, - 46EB2E0000A440 /* SymbolizedFrame.h */, - 46EB2E0000A4F0 /* SymbolizePrinter.cpp */, - 46EB2E0000A450 /* SymbolizePrinter.h */, - 46EB2E0000A500 /* Symbolizer.cpp */, - 46EB2E0000A460 /* Symbolizer.h */, - 46EB2E00008090 /* Synchronized.h */, - 46EB2E000080A0 /* SynchronizedPtr.h */, - 46EB2E0000AF20 /* SysFile.cpp */, - 46EB2E0000AF10 /* SysFile.h */, - 46EB2E0000AF00 /* SysMembarrier.cpp */, - 46EB2E0000AEF0 /* SysMembarrier.h */, - 46EB2E0000AEC0 /* SysMman.cpp */, - 46EB2E0000AEB0 /* SysMman.h */, - 46EB2E0000AD40 /* SysResource.cpp */, - 46EB2E0000AD30 /* SysResource.h */, - 46EB2E0000AEA0 /* SysStat.cpp */, - 46EB2E0000AE90 /* SysStat.h */, - 46EB2E0000AE40 /* SysSyscall.h */, - 46EB2E0000AE80 /* SysTime.cpp */, - 46EB2E0000AE70 /* SysTime.h */, - 46EB2E0000AE20 /* SysTypes.h */, - 46EB2E0000AE60 /* SysUio.cpp */, - 46EB2E0000AE50 /* SysUio.h */, - 46EB2E0000A310 /* Task.h */, - 46EB2E00009610 /* Tearable.h */, - 46EB2E00008A20 /* TestUtil.h */, - 46EB2E00009F30 /* ThreadCachedArena.cpp */, - 46EB2E000092E0 /* ThreadCachedArena.h */, - 46EB2E000080B0 /* ThreadCachedInt.h */, - 46EB2E000096C0 /* ThreadCachedInts.h */, - 46EB2E000096D0 /* ThreadCachedLists.h */, - 46EB2E00009BD0 /* ThreadedExecutor.cpp */, - 46EB2E00008750 /* ThreadedExecutor.h */, - 46EB2E00008A30 /* ThreadedRepeatingFunctionRunner.h */, - 46EB2E000087A0 /* ThreadFactory.h */, - 46EB2E0000A090 /* ThreadId.cpp */, - 46EB2E00009740 /* ThreadId.h */, - 46EB2E000080C0 /* ThreadLocal.h */, - 46EB2E00009AE0 /* ThreadLocalDetail.cpp */, - 46EB2E00008550 /* ThreadLocalDetail.h */, - 46EB2E0000A0A0 /* ThreadName.cpp */, - 46EB2E00009750 /* ThreadName.h */, - 46EB2E00009BE0 /* ThreadPoolExecutor.cpp */, - 46EB2E00008760 /* ThreadPoolExecutor.h */, - 46EB2E00009C60 /* ThreadWheelTimekeeper.cpp */, - 46EB2E00008B80 /* ThreadWheelTimekeeper.h */, - 46EB2E00008A40 /* ThreadWheelTimekeeperHighRes.h */, - 46EB2E000091F0 /* Thunk.h */, - 46EB2E0000AE00 /* Time.cpp */, - 46EB2E0000ADF0 /* Time.h */, - 46EB2E00009BF0 /* TimedDrivableExecutor.cpp */, - 46EB2E000087B0 /* TimedDrivableExecutor.h */, - 46EB2E0000A730 /* TimedMutex.h */, - 46EB2E0000A720 /* TimedMutex-inl.h */, - 46EB2E0000A320 /* TimedWait.h */, - 46EB2E00009C00 /* TimekeeperScheduledExecutor.cpp */, - 46EB2E000087C0 /* TimekeeperScheduledExecutor.h */, - 46EB2E0000A340 /* Timeout.h */, - 46EB2E0000A330 /* Timeout-inl.h */, - 46EB2E00009E60 /* TimeoutManager.cpp */, - 46EB2E00009020 /* TimeoutManager.h */, - 46EB2E000099C0 /* TimeoutQueue.cpp */, - 46EB2E000080D0 /* TimeoutQueue.h */, - 46EB2E00008A50 /* TimerFD.h */, - 46EB2E00008A60 /* TimerFDTimeoutManager.h */, - 46EB2E00008A70 /* TLRefCount.h */, - 46EB2E00009090 /* TLSDefinitions.h */, - 46EB2E00009EE0 /* ToAscii.cpp */, - 46EB2E00009200 /* ToAscii.h */, - 46EB2E000080E0 /* TokenBucket.h */, - 46EB2E0000AC20 /* Traits.h */, - 46EB2E0000A350 /* Traits.h */, - 46EB2E0000A740 /* traits.h */, - 46EB2E000080F0 /* Traits.h */, - 46EB2E0000A370 /* Transform.h */, - 46EB2E0000A360 /* Transform-inl.h */, - 46EB2E000099D0 /* Try.cpp */, - 46EB2E00008110 /* Try.h */, - 46EB2E00008100 /* Try-inl.h */, - 46EB2E00008A80 /* TupleOps.h */, - 46EB2E00008560 /* TurnSequencer.h */, - 46EB2E00008DC0 /* TypedIOBuf.h */, - 46EB2E00009210 /* TypeInfo.h */, - 46EB2E00008570 /* TypeList.h */, - 46EB2E00008BB0 /* Types.h */, - 46EB2E00008740 /* UnboundedBlockingQueue.h */, - 46EB2E00008210 /* UnboundedQueue.h */, - 46EB2E0000A380 /* UnboundedQueue.h */, - 46EB2E00009220 /* UncaughtExceptions.h */, - 46EB2E000099E0 /* Unicode.cpp */, - 46EB2E00008120 /* Unicode.h */, - 46EB2E000092F0 /* UninitializedMemoryHacks.h */, - 46EB2E00009AF0 /* UniqueInstance.cpp */, - 46EB2E00008580 /* UniqueInstance.h */, - 46EB2E0000AC50 /* Unistd.cpp */, - 46EB2E0000AC40 /* Unistd.h */, - 46EB2E00008130 /* Unit.h */, - 46EB2E000099F0 /* Uri.cpp */, - 46EB2E00008150 /* Uri.h */, - 46EB2E00008140 /* Uri-inl.h */, - 46EB2E00008160 /* UTF8String.h */, - 46EB2E000083B0 /* Util.h */, - 46EB2E00009620 /* Utility.h */, - 46EB2E00008170 /* Utility.h */, - 46EB2E00008180 /* Varint.h */, - 46EB2E0000A390 /* ViaIfAsync.h */, - 46EB2E00008320 /* View.h */, - 46EB2E00009E70 /* VirtualEventBase.cpp */, - 46EB2E00009030 /* VirtualEventBase.h */, - 46EB2E00008190 /* VirtualExecutor.h */, - 46EB2E0000A3A0 /* Wait.h */, - 46EB2E0000A040 /* WaitOptions.cpp */, - 46EB2E00009630 /* WaitOptions.h */, - 46EB2E0000A760 /* WhenN.h */, - 46EB2E0000A750 /* WhenN-inl.h */, - 46EB2E0000AD20 /* Windows.h */, - 46EB2E0000A3B0 /* WithAsyncStack.h */, - 46EB2E0000A3C0 /* WithCancellation.h */, - 46EB2E0000ADE0 /* WithJitter.h */, - 46EB2E0000ADD0 /* WithJitter-inl.h */, - 46EB2E00009040 /* WriteChainAsyncTransportWrapper.h */, - 46EB2E00008B90 /* WTCallback.h */, - 46EB2E0000ABA0 /* xlog.cpp */, - 46EB2E0000A9E0 /* xlog.h */, - 46EB2E0002E8A0 /* Support Files */, + 46EB2E00008230 /* Access.h */, + 46EB2E0000A0D0 /* Accumulate.h */, + 46EB2E0000A0C0 /* Accumulate-inl.h */, + 46EB2E0000A480 /* Addr2Line.cpp */, + 46EB2E0000A530 /* AddTasks.h */, + 46EB2E0000A520 /* AddTasks-inl.h */, + 46EB2E000090B0 /* Align.h */, + 46EB2E000090C0 /* Aligned.h */, + 46EB2E00008AA0 /* ApplyTuple.h */, + 46EB2E00009250 /* Arena.h */, + 46EB2E00009240 /* Arena-inl.h */, + 46EB2E00008240 /* Array.h */, + 46EB2E0000ACE0 /* Asm.h */, + 46EB2E00009EB0 /* Assume.cpp */, + 46EB2E000090E0 /* Assume.h */, + 46EB2E000090D0 /* Assume-inl.h */, + 46EB2E00009FE0 /* AsymmetricMemoryBarrier.cpp */, + 46EB2E00009400 /* AsymmetricMemoryBarrier.h */, + 46EB2E000085A0 /* Async.h */, + 46EB2E0000AA00 /* AsyncFileWriter.cpp */, + 46EB2E0000A810 /* AsyncFileWriter.h */, + 46EB2E0000A0E0 /* AsyncGenerator.h */, + 46EB2E0000AA10 /* AsyncLogWriter.cpp */, + 46EB2E0000A820 /* AsyncLogWriter.h */, + 46EB2E00009D30 /* AsyncPipe.cpp */, + 46EB2E0000A0F0 /* AsyncPipe.h */, + 46EB2E00008DE0 /* AsyncPipe.h */, + 46EB2E0000A100 /* AsyncScope.h */, + 46EB2E00009D40 /* AsyncServerSocket.cpp */, + 46EB2E00008DF0 /* AsyncServerSocket.h */, + 46EB2E00009D50 /* AsyncSignalHandler.cpp */, + 46EB2E00008E00 /* AsyncSignalHandler.h */, + 46EB2E00009D60 /* AsyncSocket.cpp */, + 46EB2E00008E10 /* AsyncSocket.h */, + 46EB2E00008E20 /* AsyncSocketBase.h */, + 46EB2E00009D70 /* AsyncSocketException.cpp */, + 46EB2E00008E30 /* AsyncSocketException.h */, + 46EB2E00009D80 /* AsyncSSLSocket.cpp */, + 46EB2E00008E40 /* AsyncSSLSocket.h */, + 46EB2E000097C0 /* AsyncStack.cpp */, + 46EB2E0000A110 /* AsyncStack.h */, + 46EB2E00009780 /* AsyncStack.h */, + 46EB2E00009770 /* AsyncStack-inl.h */, + 46EB2E00009D90 /* AsyncTimeout.cpp */, + 46EB2E00008E50 /* AsyncTimeout.h */, + 46EB2E00009A40 /* AsyncTrace.cpp */, + 46EB2E000083D0 /* AsyncTrace.h */, + 46EB2E00008E60 /* AsyncTransport.h */, + 46EB2E00008E70 /* AsyncTransportCertificate.h */, + 46EB2E00008E80 /* AsyncUDPServerSocket.h */, + 46EB2E00009DA0 /* AsyncUDPSocket.cpp */, + 46EB2E00008E90 /* AsyncUDPSocket.h */, + 46EB2E00009A50 /* AtFork.cpp */, + 46EB2E000083E0 /* AtFork.h */, + 46EB2E0000A550 /* AtomicBatchDispatcher.h */, + 46EB2E0000A540 /* AtomicBatchDispatcher-inl.h */, + 46EB2E00007A60 /* AtomicHashArray.h */, + 46EB2E00007A50 /* AtomicHashArray-inl.h */, + 46EB2E00007A80 /* AtomicHashMap.h */, + 46EB2E00007A70 /* AtomicHashMap-inl.h */, + 46EB2E000083F0 /* AtomicHashUtils.h */, + 46EB2E00007A90 /* AtomicIntrusiveLinkedList.h */, + 46EB2E00007AA0 /* AtomicLinkedList.h */, + 46EB2E00009FF0 /* AtomicNotification.cpp */, + 46EB2E00009420 /* AtomicNotification.h */, + 46EB2E00009410 /* AtomicNotification-inl.h */, + 46EB2E00008EB0 /* AtomicNotificationQueue.h */, + 46EB2E00008EA0 /* AtomicNotificationQueue-inl.h */, + 46EB2E000087E0 /* AtomicReadMostlyMainPtr.h */, + 46EB2E00009430 /* AtomicRef.h */, + 46EB2E000081B0 /* AtomicSharedPtr.h */, + 46EB2E00009440 /* AtomicStruct.h */, + 46EB2E00007AB0 /* AtomicUnorderedMap.h */, + 46EB2E00008400 /* AtomicUnorderedMapUtils.h */, + 46EB2E00009460 /* AtomicUtil.h */, + 46EB2E00009450 /* AtomicUtil-inl.h */, + 46EB2E00009650 /* AtomicUtils.h */, + 46EB2E000087F0 /* AutoTimer.h */, + 46EB2E00009C20 /* Barrier.cpp */, + 46EB2E0000ABC0 /* Barrier.h */, + 46EB2E00008AD0 /* Barrier.h */, + 46EB2E0000ABD0 /* BarrierTask.h */, + 46EB2E00008BE0 /* Base.h */, + 46EB2E00008BD0 /* Base-inl.h */, + 46EB2E00009060 /* BasicTransportCertificate.h */, + 46EB2E0000A560 /* BatchDispatcher.h */, + 46EB2E0000A780 /* BatchSemaphore.cpp */, + 46EB2E0000A570 /* BatchSemaphore.h */, + 46EB2E0000A790 /* Baton.cpp */, + 46EB2E0000A120 /* Baton.h */, + 46EB2E0000A590 /* Baton.h */, + 46EB2E00009470 /* Baton.h */, + 46EB2E0000A580 /* Baton-inl.h */, + 46EB2E000097F0 /* Benchmark.cpp */, + 46EB2E00007AC0 /* Benchmark.h */, + 46EB2E00007AD0 /* BenchmarkUtil.h */, + 46EB2E00008250 /* BitIterator.h */, + 46EB2E00008340 /* BitIteratorDetail.h */, + 46EB2E00007AE0 /* Bits.h */, + 46EB2E00008800 /* Bits.h */, + 46EB2E000090F0 /* Bits.h */, + 46EB2E00008810 /* BitVectorCoding.h */, + 46EB2E00008710 /* BlockingQueue.h */, + 46EB2E0000A130 /* BlockingWait.h */, + 46EB2E0000A5A0 /* BoostContextCompatibility.h */, + 46EB2E0000AA20 /* BridgeFromGoogleLogging.cpp */, + 46EB2E0000A830 /* BridgeFromGoogleLogging.h */, + 46EB2E0000ACA0 /* Builtins.cpp */, + 46EB2E0000AC90 /* Builtins.h */, + 46EB2E00009100 /* Byte.h */, + 46EB2E00009A10 /* CacheLocality.cpp */, + 46EB2E000081C0 /* CacheLocality.h */, + 46EB2E0000A5B0 /* CallOnce.h */, + 46EB2E00009480 /* CallOnce.h */, + 46EB2E00009800 /* CancellationToken.cpp */, + 46EB2E00007B00 /* CancellationToken.h */, + 46EB2E00007AF0 /* CancellationToken-inl.h */, + 46EB2E00009110 /* CArray.h */, + 46EB2E00009120 /* Cast.h */, + 46EB2E00008EC0 /* CertificateIdentityVerifier.h */, + 46EB2E00009130 /* CheckedMath.h */, + 46EB2E00009C90 /* Checksum.cpp */, + 46EB2E00008CC0 /* Checksum.h */, + 46EB2E00008D10 /* ChecksumDetail.h */, + 46EB2E00007B10 /* Chrono.h */, + 46EB2E00008820 /* Cleanup.h */, + 46EB2E00009810 /* ClockGettimeWrappers.cpp */, + 46EB2E00007B20 /* ClockGettimeWrappers.h */, + 46EB2E00009B10 /* Codel.cpp */, + 46EB2E000085B0 /* Codel.h */, + 46EB2E00008830 /* CodingDetail.h */, + 46EB2E0000A150 /* Collect.h */, + 46EB2E0000A140 /* Collect-inl.h */, + 46EB2E00008C00 /* Combine.h */, + 46EB2E00008BF0 /* Combine-inl.h */, + 46EB2E0000A170 /* Concat.h */, + 46EB2E0000A160 /* Concat-inl.h */, + 46EB2E00007B30 /* ConcurrentBitSet.h */, + 46EB2E000081D0 /* ConcurrentHashMap.h */, + 46EB2E00007B40 /* ConcurrentLazy.h */, + 46EB2E00007B60 /* ConcurrentSkipList.h */, + 46EB2E00007B50 /* ConcurrentSkipList-inl.h */, + 46EB2E0000AC70 /* Config.h */, + 46EB2E0000AC80 /* Constexpr.h */, + 46EB2E00007B70 /* ConstexprMath.h */, + 46EB2E00007B80 /* ConstructorCallback.h */, + 46EB2E00009820 /* Conv.cpp */, + 46EB2E000097D0 /* Conv.h */, + 46EB2E00007B90 /* Conv.h */, + 46EB2E0000B020 /* Core.cpp */, + 46EB2E00009C80 /* Core.cpp */, + 46EB2E0000AFF0 /* Core.h */, + 46EB2E00008BB0 /* Core.h */, + 46EB2E00008C20 /* Core.h */, + 46EB2E00008C10 /* Core-inl.h */, + 46EB2E000081E0 /* CoreCachedSharedPtr.h */, + 46EB2E0000A180 /* Coroutine.h */, + 46EB2E00007BA0 /* CPortability.h */, + 46EB2E00007BB0 /* CppAttributes.h */, + 46EB2E00007BC0 /* CpuId.h */, + 46EB2E00009B20 /* CPUThreadPoolExecutor.cpp */, + 46EB2E000085C0 /* CPUThreadPoolExecutor.h */, + 46EB2E00009EC0 /* CString.cpp */, + 46EB2E00009140 /* CString.h */, + 46EB2E0000ABE0 /* CurrentAsyncFrame.h */, + 46EB2E0000A190 /* CurrentExecutor.h */, + 46EB2E00009CC0 /* Cursor.cpp */, + 46EB2E00008D50 /* Cursor.h */, + 46EB2E00008D40 /* Cursor-inl.h */, + 46EB2E00009150 /* CustomizationPoint.h */, + 46EB2E0000AA30 /* CustomLogFormatter.cpp */, + 46EB2E0000A840 /* CustomLogFormatter.h */, + 46EB2E0000A800 /* Debug.h */, + 46EB2E00008ED0 /* DecoratedAsyncTransportWrapper.h */, + 46EB2E00007BD0 /* DefaultKeepAliveExecutor.h */, + 46EB2E00008EE0 /* DelayedDestruction.h */, + 46EB2E00008EF0 /* DelayedDestructionBase.h */, + 46EB2E00009490 /* DelayedInit.h */, + 46EB2E00009830 /* Demangle.cpp */, + 46EB2E00007BE0 /* Demangle.h */, + 46EB2E0000A1B0 /* Dematerialize.h */, + 46EB2E0000A1A0 /* Dematerialize-inl.h */, + 46EB2E00008F00 /* DestructorCheck.h */, + 46EB2E0000A1C0 /* DetachOnCancel.h */, + 46EB2E00007BF0 /* DiscriminatedPtr.h */, + 46EB2E00008410 /* DiscriminatedPtrDetail.h */, + 46EB2E0000A000 /* DistributedMutex.cpp */, + 46EB2E000094B0 /* DistributedMutex.h */, + 46EB2E000094A0 /* DistributedMutex-inl.h */, + 46EB2E000094C0 /* DistributedMutexSpecializations.h */, + 46EB2E000085D0 /* DrivableExecutor.h */, + 46EB2E0000A490 /* Dwarf.cpp */, + 46EB2E0000A3E0 /* Dwarf.h */, + 46EB2E00009840 /* dynamic.cpp */, + 46EB2E00007C10 /* dynamic.h */, + 46EB2E00007C00 /* dynamic-inl.h */, + 46EB2E000081F0 /* DynamicBoundedQueue.h */, + 46EB2E00007C20 /* DynamicConverter.h */, + 46EB2E00008850 /* DynamicParser.h */, + 46EB2E00008840 /* DynamicParser-inl.h */, + 46EB2E00009B30 /* EDFThreadPoolExecutor.cpp */, + 46EB2E000085E0 /* EDFThreadPoolExecutor.h */, + 46EB2E0000A4A0 /* Elf.cpp */, + 46EB2E0000A400 /* Elf.h */, + 46EB2E0000A3F0 /* Elf-inl.h */, + 46EB2E0000A4B0 /* ElfCache.cpp */, + 46EB2E0000A410 /* ElfCache.h */, + 46EB2E00008860 /* EliasFanoCoding.h */, + 46EB2E00009260 /* EnableSharedFromThis.h */, + 46EB2E00008260 /* Enumerate.h */, + 46EB2E00008870 /* EnvUtil.h */, + 46EB2E0000AD60 /* Event.h */, + 46EB2E00009DB0 /* EventBase.cpp */, + 46EB2E00008F10 /* EventBase.h */, + 46EB2E00008F30 /* EventBaseAtomicNotificationQueue.h */, + 46EB2E00008F20 /* EventBaseAtomicNotificationQueue-inl.h */, + 46EB2E00009DC0 /* EventBaseBackendBase.cpp */, + 46EB2E00008F40 /* EventBaseBackendBase.h */, + 46EB2E00009DD0 /* EventBaseLocal.cpp */, + 46EB2E00008F50 /* EventBaseLocal.h */, + 46EB2E0000A5D0 /* EventBaseLoopController.h */, + 46EB2E0000A5C0 /* EventBaseLoopController-inl.h */, + 46EB2E00009DE0 /* EventBaseManager.cpp */, + 46EB2E00008F60 /* EventBaseManager.h */, + 46EB2E00009DF0 /* EventBaseThread.cpp */, + 46EB2E00008F70 /* EventBaseThread.h */, + 46EB2E00008880 /* EventCount.h */, + 46EB2E00008F80 /* EventFDWrapper.h */, + 46EB2E00009E00 /* EventHandler.cpp */, + 46EB2E00008F90 /* EventHandler.h */, + 46EB2E00008FA0 /* EventUtil.h */, + 46EB2E00008270 /* EvictingCacheMap.h */, + 46EB2E00009ED0 /* Exception.cpp */, + 46EB2E00007C30 /* Exception.h */, + 46EB2E00009160 /* Exception.h */, + 46EB2E00009850 /* ExceptionString.cpp */, + 46EB2E00007C40 /* ExceptionString.h */, + 46EB2E00009860 /* ExceptionWrapper.cpp */, + 46EB2E00007C60 /* ExceptionWrapper.h */, + 46EB2E00007C50 /* ExceptionWrapper-inl.h */, + 46EB2E00008890 /* ExecutionObserver.h */, + 46EB2E00009870 /* Executor.cpp */, + 46EB2E00007C70 /* Executor.h */, + 46EB2E0000A5E0 /* ExecutorBasedLoopController.h */, + 46EB2E0000A600 /* ExecutorLoopController.h */, + 46EB2E0000A5F0 /* ExecutorLoopController-inl.h */, + 46EB2E00009B40 /* ExecutorWithPriority.cpp */, + 46EB2E00008600 /* ExecutorWithPriority.h */, + 46EB2E000085F0 /* ExecutorWithPriority-inl.h */, + 46EB2E00007C80 /* Expected.h */, + 46EB2E00009170 /* Extern.h */, + 46EB2E00008350 /* F14Defaults.h */, + 46EB2E00008360 /* F14IntrinsicsAvailability.h */, + 46EB2E00008290 /* F14Map.h */, + 46EB2E00008280 /* F14Map-fwd.h */, + 46EB2E00008370 /* F14MapFallback.h */, + 46EB2E00008380 /* F14Mask.h */, + 46EB2E00008390 /* F14Policy.h */, + 46EB2E000082B0 /* F14Set.h */, + 46EB2E000082A0 /* F14Set-fwd.h */, + 46EB2E000083A0 /* F14SetFallback.h */, + 46EB2E00009A30 /* F14Table.cpp */, + 46EB2E000083B0 /* F14Table.h */, + 46EB2E00008CD0 /* FarmHash.h */, + 46EB2E00007C90 /* FBString.h */, + 46EB2E00007CA0 /* FBVector.h */, + 46EB2E0000AF70 /* Fcntl.cpp */, + 46EB2E0000AF60 /* Fcntl.h */, + 46EB2E0000A7A0 /* Fiber.cpp */, + 46EB2E0000A620 /* Fiber.h */, + 46EB2E0000A610 /* Fiber-inl.h */, + 46EB2E00008610 /* FiberIOExecutor.h */, + 46EB2E0000A7B0 /* FiberManager.cpp */, + 46EB2E0000A640 /* FiberManager.h */, + 46EB2E0000A630 /* FiberManager-inl.h */, + 46EB2E0000A660 /* FiberManagerInternal.h */, + 46EB2E0000A650 /* FiberManagerInternal-inl.h */, + 46EB2E0000A680 /* FiberManagerMap.h */, + 46EB2E0000A670 /* FiberManagerMap-inl.h */, + 46EB2E00009880 /* File.cpp */, + 46EB2E00007CB0 /* File.h */, + 46EB2E00008C40 /* File.h */, + 46EB2E00008C30 /* File-inl.h */, + 46EB2E0000AA40 /* FileHandlerFactory.cpp */, + 46EB2E0000A850 /* FileHandlerFactory.h */, + 46EB2E00009890 /* FileUtil.cpp */, + 46EB2E00007CC0 /* FileUtil.h */, + 46EB2E00008420 /* FileUtilDetail.h */, + 46EB2E00008430 /* FileUtilVectorDetail.h */, + 46EB2E0000AA50 /* FileWriterFactory.cpp */, + 46EB2E0000A860 /* FileWriterFactory.h */, + 46EB2E0000A1E0 /* Filter.h */, + 46EB2E0000A1D0 /* Filter-inl.h */, + 46EB2E000098A0 /* Fingerprint.cpp */, + 46EB2E00007CD0 /* Fingerprint.h */, + 46EB2E00008440 /* FingerprintPolynomial.h */, + 46EB2E00007CE0 /* FixedString.h */, + 46EB2E000088A0 /* FlatCombiningPriorityQueue.h */, + 46EB2E0000AFC0 /* FmtCompile.h */, + 46EB2E000098B0 /* FollyMemcpy.cpp */, + 46EB2E00007CF0 /* FollyMemcpy.h */, + 46EB2E000082D0 /* Foreach.h */, + 46EB2E0000A6A0 /* ForEach.h */, + 46EB2E000082C0 /* Foreach-inl.h */, + 46EB2E0000A690 /* ForEach-inl.h */, + 46EB2E000098C0 /* Format.cpp */, + 46EB2E00007D10 /* Format.h */, + 46EB2E00007D00 /* Format-inl.h */, + 46EB2E00007D20 /* FormatArg.h */, + 46EB2E00007D30 /* FormatTraits.h */, + 46EB2E00007D40 /* Function.h */, + 46EB2E000088B0 /* FunctionScheduler.h */, + 46EB2E00009A60 /* Futex.cpp */, + 46EB2E00008460 /* Futex.h */, + 46EB2E00008450 /* Futex-inl.h */, + 46EB2E00009C30 /* Future.cpp */, + 46EB2E00008B00 /* Future.h */, + 46EB2E00008AE0 /* Future-inl.h */, + 46EB2E00008AF0 /* Future-pre.h */, + 46EB2E000088C0 /* FutureDAG.h */, + 46EB2E00008620 /* FutureExecutor.h */, + 46EB2E00008B10 /* FutureSplitter.h */, + 46EB2E0000A1F0 /* FutureUtil.h */, + 46EB2E0000A200 /* Generator.h */, + 46EB2E0000A6B0 /* GenericBaton.h */, + 46EB2E0000AE40 /* GFlags.h */, + 46EB2E00009B50 /* GlobalExecutor.cpp */, + 46EB2E00008630 /* GlobalExecutor.h */, + 46EB2E00009CD0 /* GlobalShutdownSocketSet.cpp */, + 46EB2E00008D60 /* GlobalShutdownSocketSet.h */, + 46EB2E00009B60 /* GlobalThreadPoolList.cpp */, + 46EB2E00008640 /* GlobalThreadPoolList.h */, + 46EB2E00007D50 /* GLog.h */, + 46EB2E0000AA60 /* GlogStyleFormatter.cpp */, + 46EB2E0000A870 /* GlogStyleFormatter.h */, + 46EB2E0000A210 /* GmockHelpers.h */, + 46EB2E0000B000 /* GraphCycleDetector.h */, + 46EB2E000098D0 /* GroupVarint.cpp */, + 46EB2E00007D60 /* GroupVarint.h */, + 46EB2E00008470 /* GroupVarintDetail.h */, + 46EB2E0000A220 /* GtestHelpers.h */, + 46EB2E0000A7C0 /* GuardPageAllocator.cpp */, + 46EB2E0000A6C0 /* GuardPageAllocator.h */, + 46EB2E000096F0 /* Hardware.cpp */, + 46EB2E000097E0 /* Hardware.h */, + 46EB2E00009660 /* Hardware.h */, + 46EB2E0000A060 /* HardwareConcurrency.cpp */, + 46EB2E00009710 /* HardwareConcurrency.h */, + 46EB2E00007D70 /* Hash.h */, + 46EB2E00008CE0 /* Hash.h */, + 46EB2E0000A010 /* Hazptr.cpp */, + 46EB2E000094E0 /* Hazptr.h */, + 46EB2E000094D0 /* Hazptr-fwd.h */, + 46EB2E000094F0 /* HazptrDomain.h */, + 46EB2E00009500 /* HazptrHolder.h */, + 46EB2E00009510 /* HazptrObj.h */, + 46EB2E00009520 /* HazptrObjLinked.h */, + 46EB2E00009530 /* HazptrRec.h */, + 46EB2E0000A020 /* HazptrThreadPoolExecutor.cpp */, + 46EB2E00009540 /* HazptrThreadPoolExecutor.h */, + 46EB2E00009550 /* HazptrThrLocal.h */, + 46EB2E00009670 /* HazptrUtils.h */, + 46EB2E0000ABF0 /* Helpers.h */, + 46EB2E000082F0 /* HeterogeneousAccess.h */, + 46EB2E000082E0 /* HeterogeneousAccess-fwd.h */, + 46EB2E00009E10 /* HHWheelTimer.cpp */, + 46EB2E00008FC0 /* HHWheelTimer.h */, + 46EB2E00008FB0 /* HHWheelTimer-fwd.h */, + 46EB2E0000AA70 /* ImmediateFileWriter.cpp */, + 46EB2E0000A880 /* ImmediateFileWriter.h */, + 46EB2E00007D80 /* Indestructible.h */, + 46EB2E00007D90 /* IndexedMemPool.h */, + 46EB2E0000AA80 /* Init.cpp */, + 46EB2E00009F80 /* Init.cpp */, + 46EB2E00008D20 /* Init.h */, + 46EB2E0000A890 /* Init.h */, + 46EB2E00009360 /* Init.h */, + 46EB2E00008780 /* InitThreadFactory.h */, + 46EB2E0000AA90 /* InitWeak.cpp */, + 46EB2E00009B70 /* InlineExecutor.cpp */, + 46EB2E00008650 /* InlineExecutor.h */, + 46EB2E00009680 /* InlineFunctionRef.h */, + 46EB2E0000AC00 /* InlineTask.h */, + 46EB2E000088D0 /* Instructions.h */, + 46EB2E00007DA0 /* IntrusiveList.h */, + 46EB2E0000A230 /* Invoke.h */, + 46EB2E00008AB0 /* Invoke.h */, + 46EB2E00009CE0 /* IOBuf.cpp */, + 46EB2E00008D70 /* IOBuf.h */, + 46EB2E00009CF0 /* IOBufQueue.cpp */, + 46EB2E00008D80 /* IOBufQueue.h */, + 46EB2E00008660 /* IOExecutor.h */, + 46EB2E00008670 /* IOObjectCache.h */, + 46EB2E00009B80 /* IOThreadPoolExecutor.cpp */, + 46EB2E00008680 /* IOThreadPoolExecutor.h */, + 46EB2E0000AE20 /* IOVec.h */, + 46EB2E00009A70 /* IPAddress.cpp */, + 46EB2E000098E0 /* IPAddress.cpp */, + 46EB2E00008480 /* IPAddress.h */, + 46EB2E00007DB0 /* IPAddress.h */, + 46EB2E00007DC0 /* IPAddressException.h */, + 46EB2E00008490 /* IPAddressSource.h */, + 46EB2E000098F0 /* IPAddressV4.cpp */, + 46EB2E00007DD0 /* IPAddressV4.h */, + 46EB2E00009900 /* IPAddressV6.cpp */, + 46EB2E00007DE0 /* IPAddressV6.h */, + 46EB2E00008C50 /* IStream.h */, + 46EB2E00008300 /* Iterator.h */, + 46EB2E000084A0 /* Iterators.h */, + 46EB2E000088E0 /* JemallocHugePageAllocator.h */, + 46EB2E000088F0 /* JemallocNodumpAllocator.h */, + 46EB2E00009910 /* json.cpp */, + 46EB2E00007DF0 /* json.h */, + 46EB2E00009920 /* json_patch.cpp */, + 46EB2E00007E00 /* json_patch.h */, + 46EB2E00009930 /* json_pointer.cpp */, + 46EB2E00007E10 /* json_pointer.h */, + 46EB2E00008900 /* JSONSchema.h */, + 46EB2E00009180 /* Keep.h */, + 46EB2E00009190 /* Launder.h */, + 46EB2E00007E20 /* Lazy.h */, + 46EB2E00009560 /* LifoSem.h */, + 46EB2E00008720 /* LifoSemMPMCQueue.h */, + 46EB2E00007E30 /* Likely.h */, + 46EB2E0000A4C0 /* LineReader.cpp */, + 46EB2E0000A420 /* LineReader.h */, + 46EB2E00009570 /* Lock.h */, + 46EB2E00008910 /* LockFreeRingBuffer.h */, + 46EB2E00007E40 /* LockTraits.h */, + 46EB2E0000AAA0 /* LogCategory.cpp */, + 46EB2E0000A8A0 /* LogCategory.h */, + 46EB2E0000AAB0 /* LogCategoryConfig.cpp */, + 46EB2E0000A8B0 /* LogCategoryConfig.h */, + 46EB2E0000AAC0 /* LogConfig.cpp */, + 46EB2E0000A8C0 /* LogConfig.h */, + 46EB2E0000AAD0 /* LogConfigParser.cpp */, + 46EB2E0000A8D0 /* LogConfigParser.h */, + 46EB2E0000A8E0 /* LogFormatter.h */, + 46EB2E0000AAE0 /* Logger.cpp */, + 46EB2E0000A8F0 /* Logger.h */, + 46EB2E0000AAF0 /* LoggerDB.cpp */, + 46EB2E0000A900 /* LoggerDB.h */, + 46EB2E0000A910 /* LogHandler.h */, + 46EB2E0000AB00 /* LogHandlerConfig.cpp */, + 46EB2E0000A920 /* LogHandlerConfig.h */, + 46EB2E0000A930 /* LogHandlerFactory.h */, + 46EB2E0000AB10 /* LogLevel.cpp */, + 46EB2E0000A940 /* LogLevel.h */, + 46EB2E0000AB20 /* LogMessage.cpp */, + 46EB2E0000A950 /* LogMessage.h */, + 46EB2E0000AB30 /* LogName.cpp */, + 46EB2E0000A960 /* LogName.h */, + 46EB2E0000AB40 /* LogStream.cpp */, + 46EB2E0000A970 /* LogStream.h */, + 46EB2E0000AB50 /* LogStreamProcessor.cpp */, + 46EB2E0000A980 /* LogStreamProcessor.h */, + 46EB2E0000A990 /* LogWriter.h */, + 46EB2E0000A6D0 /* LoopController.h */, + 46EB2E00009940 /* MacAddress.cpp */, + 46EB2E00007E50 /* MacAddress.h */, + 46EB2E00009F00 /* MallctlHelper.cpp */, + 46EB2E00009270 /* MallctlHelper.h */, + 46EB2E0000AC40 /* Malloc.cpp */, + 46EB2E0000ACC0 /* Malloc.cpp */, + 46EB2E0000AC10 /* Malloc.h */, + 46EB2E00009280 /* Malloc.h */, + 46EB2E0000ACB0 /* Malloc.h */, + 46EB2E00009F50 /* MallocImpl.cpp */, + 46EB2E00009310 /* MallocImpl.h */, + 46EB2E00009B90 /* ManualExecutor.cpp */, + 46EB2E00008690 /* ManualExecutor.h */, + 46EB2E0000AC20 /* ManualLifetime.h */, + 46EB2E00009C40 /* ManualTimekeeper.cpp */, + 46EB2E00008B20 /* ManualTimekeeper.h */, + 46EB2E00007E60 /* MapUtil.h */, + 46EB2E0000A250 /* Materialize.h */, + 46EB2E0000A240 /* Materialize-inl.h */, + 46EB2E00007E70 /* Math.h */, + 46EB2E0000ACD0 /* Math.h */, + 46EB2E00007E80 /* Memory.h */, + 46EB2E00009A80 /* MemoryIdler.cpp */, + 46EB2E000084B0 /* MemoryIdler.h */, + 46EB2E0000A070 /* MemoryMapping.cpp */, + 46EB2E00009720 /* MemoryMapping.h */, + 46EB2E00009290 /* MemoryResource.h */, + 46EB2E00008310 /* Merge.h */, + 46EB2E0000A270 /* Merge.h */, + 46EB2E0000A260 /* Merge-inl.h */, + 46EB2E00009BA0 /* MeteredExecutor.cpp */, + 46EB2E000086A0 /* MeteredExecutor.h */, + 46EB2E00009950 /* MicroLock.cpp */, + 46EB2E00007E90 /* MicroLock.h */, + 46EB2E00007EA0 /* MicroSpinLock.h */, + 46EB2E00009580 /* MicroSpinLock.h */, + 46EB2E00007EB0 /* MoveWrapper.h */, + 46EB2E00007EC0 /* MPMCPipeline.h */, + 46EB2E000084C0 /* MPMCPipelineDetail.h */, + 46EB2E00007ED0 /* MPMCQueue.h */, + 46EB2E0000A290 /* Multiplex.h */, + 46EB2E0000A280 /* Multiplex-inl.h */, + 46EB2E0000A2A0 /* Mutex.h */, + 46EB2E00008790 /* NamedThreadFactory.h */, + 46EB2E00009590 /* NativeSemaphore.h */, + 46EB2E00008920 /* NestedCommandLineApp.h */, + 46EB2E00009F60 /* NetOps.cpp */, + 46EB2E00009320 /* NetOps.h */, + 46EB2E00009F70 /* NetOpsDispatcher.cpp */, + 46EB2E00009330 /* NetOpsDispatcher.h */, + 46EB2E00009340 /* NetworkSocket.h */, + 46EB2E000092B0 /* not_null.h */, + 46EB2E000092A0 /* not_null-inl.h */, + 46EB2E00008FD0 /* NotificationQueue.h */, + 46EB2E0000AB60 /* ObjectToString.cpp */, + 46EB2E0000A9A0 /* ObjectToString.h */, + 46EB2E0000AD80 /* Observable.h */, + 46EB2E0000AD70 /* Observable-inl.h */, + 46EB2E0000ADB0 /* Observer.h */, + 46EB2E0000AD90 /* Observer-inl.h */, + 46EB2E0000ADA0 /* Observer-pre.h */, + 46EB2E0000B030 /* ObserverManager.cpp */, + 46EB2E0000B010 /* ObserverManager.h */, + 46EB2E0000AD00 /* OpenSSL.cpp */, + 46EB2E0000ACF0 /* OpenSSL.h */, + 46EB2E00009F90 /* OpenSSLCertUtils.cpp */, + 46EB2E00009370 /* OpenSSLCertUtils.h */, + 46EB2E00009FA0 /* OpenSSLHash.cpp */, + 46EB2E00009380 /* OpenSSLHash.h */, + 46EB2E00009390 /* OpenSSLLockTypes.h */, + 46EB2E000093A0 /* OpenSSLPtrTypes.h */, + 46EB2E00009FC0 /* OpenSSLSession.cpp */, + 46EB2E000093E0 /* OpenSSLSession.h */, + 46EB2E00009FD0 /* OpenSSLThreading.cpp */, + 46EB2E000093F0 /* OpenSSLThreading.h */, + 46EB2E00009070 /* OpenSSLTransportCertificate.h */, + 46EB2E00009E90 /* OpenSSLUtils.cpp */, + 46EB2E00009080 /* OpenSSLUtils.h */, + 46EB2E000093B0 /* OpenSSLVersionFinder.h */, + 46EB2E00007EE0 /* Optional.h */, + 46EB2E000091A0 /* Ordering.h */, + 46EB2E00007EF0 /* Overload.h */, + 46EB2E00007F00 /* PackedSyncPtr.h */, + 46EB2E00007F10 /* Padded.h */, + 46EB2E00008C70 /* Parallel.h */, + 46EB2E00008C60 /* Parallel-inl.h */, + 46EB2E00008C90 /* ParallelMap.h */, + 46EB2E00008C80 /* ParallelMap-inl.h */, + 46EB2E0000A030 /* ParkingLot.cpp */, + 46EB2E000095A0 /* ParkingLot.h */, + 46EB2E00008AC0 /* Partial.h */, + 46EB2E00009E20 /* PasswordInFile.cpp */, + 46EB2E00008FE0 /* PasswordInFile.h */, + 46EB2E00008D30 /* Phase.h */, + 46EB2E000095B0 /* PicoSpinLock.h */, + 46EB2E0000A080 /* Pid.cpp */, + 46EB2E00009730 /* Pid.h */, + 46EB2E00007F30 /* Poly.h */, + 46EB2E00007F20 /* Poly-inl.h */, + 46EB2E000084D0 /* PolyDetail.h */, + 46EB2E00007F40 /* PolyException.h */, + 46EB2E00008B30 /* Portability.h */, + 46EB2E00007F50 /* Portability.h */, + 46EB2E00007F60 /* Preprocessor.h */, + 46EB2E000091B0 /* Pretty.h */, + 46EB2E00008930 /* PrimaryPtr.h */, + 46EB2E00008730 /* PriorityLifoSemMPMCQueue.h */, + 46EB2E000087A0 /* PriorityThreadFactory.h */, + 46EB2E00008740 /* PriorityUnboundedBlockingQueue.h */, + 46EB2E00008200 /* PriorityUnboundedQueueSet.h */, + 46EB2E00007F70 /* ProducerConsumerQueue.h */, + 46EB2E00008940 /* ProgramOptions.h */, + 46EB2E00009C50 /* Promise.cpp */, + 46EB2E0000A6F0 /* Promise.h */, + 46EB2E00008B50 /* Promise.h */, + 46EB2E0000A6E0 /* Promise-inl.h */, + 46EB2E00008B40 /* Promise-inl.h */, + 46EB2E000091C0 /* PropagateConst.h */, + 46EB2E000096A0 /* ProxyLockable.h */, + 46EB2E00009690 /* ProxyLockable-inl.h */, + 46EB2E0000AD10 /* PThread.cpp */, + 46EB2E0000AD20 /* PThread.h */, + 46EB2E00009BB0 /* QueuedImmediateExecutor.cpp */, + 46EB2E000086B0 /* QueuedImmediateExecutor.h */, + 46EB2E00009A20 /* QueueObserver.cpp */, + 46EB2E00008210 /* QueueObserver.h */, + 46EB2E00008960 /* QuotientMultiSet.h */, + 46EB2E00008950 /* QuotientMultiSet-inl.h */, + 46EB2E00009960 /* Random.cpp */, + 46EB2E00007F90 /* Random.h */, + 46EB2E00007F80 /* Random-inl.h */, + 46EB2E00007FA0 /* Range.h */, + 46EB2E00009A90 /* RangeCommon.cpp */, + 46EB2E000084E0 /* RangeCommon.h */, + 46EB2E00009AA0 /* RangeSse42.cpp */, + 46EB2E000084F0 /* RangeSse42.h */, + 46EB2E0000AB70 /* RateLimiter.cpp */, + 46EB2E0000A9B0 /* RateLimiter.h */, + 46EB2E000095D0 /* Rcu.h */, + 46EB2E000095C0 /* Rcu-inl.h */, + 46EB2E00008970 /* ReadMostlySharedPtr.h */, + 46EB2E00009D00 /* RecordIO.cpp */, + 46EB2E00008DA0 /* RecordIO.h */, + 46EB2E00008D90 /* RecordIO-inl.h */, + 46EB2E00009F10 /* ReentrantAllocator.cpp */, + 46EB2E000092C0 /* ReentrantAllocator.h */, + 46EB2E00008980 /* RelaxedConcurrentPriorityQueue.h */, + 46EB2E00007FB0 /* Replaceable.h */, + 46EB2E00009E30 /* Request.cpp */, + 46EB2E00008FF0 /* Request.h */, + 46EB2E0000A2B0 /* Result.h */, + 46EB2E0000A2C0 /* Retry.h */, + 46EB2E00008B60 /* Retrying.h */, + 46EB2E0000A2D0 /* RustAdaptors.h */, + 46EB2E000091D0 /* RValueReferenceWrapper.h */, + 46EB2E00007FC0 /* RWSpinLock.h */, + 46EB2E000095E0 /* RWSpinLock.h */, + 46EB2E00009EE0 /* SafeAssert.cpp */, + 46EB2E000091E0 /* SafeAssert.h */, + 46EB2E00009F20 /* SanitizeAddress.cpp */, + 46EB2E000092D0 /* SanitizeAddress.h */, + 46EB2E00009F30 /* SanitizeLeak.cpp */, + 46EB2E000092E0 /* SanitizeLeak.h */, + 46EB2E0000A040 /* SanitizeThread.cpp */, + 46EB2E000095F0 /* SanitizeThread.h */, + 46EB2E00009600 /* SaturatingSemaphore.h */, + 46EB2E0000AFE0 /* Sched.cpp */, + 46EB2E0000AFD0 /* Sched.h */, + 46EB2E000086C0 /* ScheduledExecutor.h */, + 46EB2E00009E40 /* ScopedEventBaseThread.cpp */, + 46EB2E00009000 /* ScopedEventBaseThread.h */, + 46EB2E00009790 /* ScopedTraceSection.h */, + 46EB2E00009970 /* ScopeGuard.cpp */, + 46EB2E00007FD0 /* ScopeGuard.h */, + 46EB2E00008990 /* Select64.h */, + 46EB2E0000A7D0 /* Semaphore.cpp */, + 46EB2E0000A700 /* Semaphore.h */, + 46EB2E0000A7E0 /* SemaphoreBase.cpp */, + 46EB2E0000A710 /* SemaphoreBase.h */, + 46EB2E000086D0 /* SequencedExecutor.h */, + 46EB2E00009BC0 /* SerialExecutor.cpp */, + 46EB2E000086E0 /* SerialExecutor.h */, + 46EB2E0000A2E0 /* SharedLock.h */, + 46EB2E00009980 /* SharedMutex.cpp */, + 46EB2E0000A2F0 /* SharedMutex.h */, + 46EB2E00007FE0 /* SharedMutex.h */, + 46EB2E00009C60 /* SharedPromise.cpp */, + 46EB2E00008B80 /* SharedPromise.h */, + 46EB2E00008B70 /* SharedPromise-inl.h */, + 46EB2E0000A090 /* Shell.cpp */, + 46EB2E00009740 /* Shell.h */, + 46EB2E00009D10 /* ShutdownSocketSet.cpp */, + 46EB2E00008DB0 /* ShutdownSocketSet.h */, + 46EB2E0000A4D0 /* SignalHandler.cpp */, + 46EB2E0000A430 /* SignalHandler.h */, + 46EB2E0000A7F0 /* SimpleLoopController.cpp */, + 46EB2E0000A720 /* SimpleLoopController.h */, + 46EB2E0000ADD0 /* SimpleObservable.h */, + 46EB2E0000ADC0 /* SimpleObservable-inl.h */, + 46EB2E00009990 /* Singleton.cpp */, + 46EB2E00008500 /* Singleton.h */, + 46EB2E00008000 /* Singleton.h */, + 46EB2E00007FF0 /* Singleton-inl.h */, + 46EB2E000089A0 /* SingletonRelaxedCounter.h */, + 46EB2E00009AB0 /* SingletonStackTrace.cpp */, + 46EB2E00008510 /* SingletonStackTrace.h */, + 46EB2E00008010 /* SingletonThreadLocal.h */, + 46EB2E000089B0 /* SingleWriterFixedHashMap.h */, + 46EB2E0000A310 /* Sleep.h */, + 46EB2E0000A300 /* Sleep-inl.h */, + 46EB2E00009700 /* Sleeper.cpp */, + 46EB2E000096B0 /* Sleeper.h */, + 46EB2E00008520 /* SlowFingerprint.h */, + 46EB2E00008020 /* small_vector.h */, + 46EB2E00009610 /* SmallLocks.h */, + 46EB2E000099A0 /* SocketAddress.cpp */, + 46EB2E00008030 /* SocketAddress.h */, + 46EB2E00009AC0 /* SocketFastOpen.cpp */, + 46EB2E00008530 /* SocketFastOpen.h */, + 46EB2E00009350 /* SocketFileDescriptorMap.h */, + 46EB2E00009D20 /* SocketOptionMap.cpp */, + 46EB2E00008DC0 /* SocketOptionMap.h */, + 46EB2E0000AEF0 /* Sockets.cpp */, + 46EB2E0000AEE0 /* Sockets.h */, + 46EB2E000086F0 /* SoftRealTimeExecutor.h */, + 46EB2E00008040 /* sorted_vector_types.h */, + 46EB2E00008320 /* SparseByteSet.h */, + 46EB2E000096C0 /* Spin.h */, + 46EB2E00008050 /* SpinLock.h */, + 46EB2E00009CA0 /* SpookyHashV1.cpp */, + 46EB2E00008CF0 /* SpookyHashV1.h */, + 46EB2E00009CB0 /* SpookyHashV2.cpp */, + 46EB2E00008D00 /* SpookyHashV2.h */, + 46EB2E00009AD0 /* Sse.cpp */, + 46EB2E00008540 /* Sse.h */, + 46EB2E00009E50 /* SSLContext.cpp */, + 46EB2E00009010 /* SSLContext.h */, + 46EB2E00009EA0 /* SSLErrors.cpp */, + 46EB2E00009090 /* SSLErrors.h */, + 46EB2E00009E60 /* SSLOptions.cpp */, + 46EB2E00009020 /* SSLOptions.h */, + 46EB2E000093C0 /* SSLSession.h */, + 46EB2E00009FB0 /* SSLSessionManager.cpp */, + 46EB2E000093D0 /* SSLSessionManager.h */, + 46EB2E0000A4E0 /* StackTrace.cpp */, + 46EB2E0000A440 /* StackTrace.h */, + 46EB2E000089C0 /* StampedPtr.h */, + 46EB2E0000AB80 /* StandardLogHandler.cpp */, + 46EB2E0000A9C0 /* StandardLogHandler.h */, + 46EB2E0000AB90 /* StandardLogHandlerFactory.cpp */, + 46EB2E0000A9D0 /* StandardLogHandlerFactory.h */, + 46EB2E000091F0 /* StaticConst.h */, + 46EB2E00009AE0 /* StaticSingletonManager.cpp */, + 46EB2E00008550 /* StaticSingletonManager.h */, + 46EB2E000097B0 /* StaticTracepoint.h */, + 46EB2E000097A0 /* StaticTracepoint-ELFx86.h */, + 46EB2E0000AFB0 /* Stdio.cpp */, + 46EB2E0000AFA0 /* Stdio.h */, + 46EB2E0000AF90 /* Stdlib.cpp */, + 46EB2E0000AF80 /* Stdlib.h */, + 46EB2E00008060 /* stop_watch.h */, + 46EB2E00009BD0 /* StrandExecutor.cpp */, + 46EB2E00008700 /* StrandExecutor.h */, + 46EB2E0000ABA0 /* StreamHandlerFactory.cpp */, + 46EB2E0000A9E0 /* StreamHandlerFactory.h */, + 46EB2E0000AF50 /* String.cpp */, + 46EB2E000099B0 /* String.cpp */, + 46EB2E00008CB0 /* String.h */, + 46EB2E0000AF40 /* String.h */, + 46EB2E00008080 /* String.h */, + 46EB2E00008CA0 /* String-inl.h */, + 46EB2E00008070 /* String-inl.h */, + 46EB2E000089D0 /* StringKeyedCommon.h */, + 46EB2E000089E0 /* StringKeyedMap.h */, + 46EB2E000089F0 /* StringKeyedSet.h */, + 46EB2E00008A00 /* StringKeyedUnorderedMap.h */, + 46EB2E00008A10 /* StringKeyedUnorderedSet.h */, + 46EB2E00008A20 /* STTimerFDTimeoutManager.h */, + 46EB2E000099C0 /* Subprocess.cpp */, + 46EB2E00008090 /* Subprocess.h */, + 46EB2E0000A4F0 /* SymbolizedFrame.cpp */, + 46EB2E0000A450 /* SymbolizedFrame.h */, + 46EB2E0000A500 /* SymbolizePrinter.cpp */, + 46EB2E0000A460 /* SymbolizePrinter.h */, + 46EB2E0000A510 /* Symbolizer.cpp */, + 46EB2E0000A470 /* Symbolizer.h */, + 46EB2E000080A0 /* Synchronized.h */, + 46EB2E000080B0 /* SynchronizedPtr.h */, + 46EB2E0000AF30 /* SysFile.cpp */, + 46EB2E0000AF20 /* SysFile.h */, + 46EB2E0000AF10 /* SysMembarrier.cpp */, + 46EB2E0000AF00 /* SysMembarrier.h */, + 46EB2E0000AED0 /* SysMman.cpp */, + 46EB2E0000AEC0 /* SysMman.h */, + 46EB2E0000AD50 /* SysResource.cpp */, + 46EB2E0000AD40 /* SysResource.h */, + 46EB2E0000AEB0 /* SysStat.cpp */, + 46EB2E0000AEA0 /* SysStat.h */, + 46EB2E0000AE50 /* SysSyscall.h */, + 46EB2E0000AE90 /* SysTime.cpp */, + 46EB2E0000AE80 /* SysTime.h */, + 46EB2E0000AE30 /* SysTypes.h */, + 46EB2E0000AE70 /* SysUio.cpp */, + 46EB2E0000AE60 /* SysUio.h */, + 46EB2E0000A320 /* Task.h */, + 46EB2E00009620 /* Tearable.h */, + 46EB2E00008A30 /* TestUtil.h */, + 46EB2E00009F40 /* ThreadCachedArena.cpp */, + 46EB2E000092F0 /* ThreadCachedArena.h */, + 46EB2E000080C0 /* ThreadCachedInt.h */, + 46EB2E000096D0 /* ThreadCachedInts.h */, + 46EB2E000096E0 /* ThreadCachedLists.h */, + 46EB2E00009BE0 /* ThreadedExecutor.cpp */, + 46EB2E00008760 /* ThreadedExecutor.h */, + 46EB2E00008A40 /* ThreadedRepeatingFunctionRunner.h */, + 46EB2E000087B0 /* ThreadFactory.h */, + 46EB2E0000A0A0 /* ThreadId.cpp */, + 46EB2E00009750 /* ThreadId.h */, + 46EB2E000080D0 /* ThreadLocal.h */, + 46EB2E00009AF0 /* ThreadLocalDetail.cpp */, + 46EB2E00008560 /* ThreadLocalDetail.h */, + 46EB2E0000A0B0 /* ThreadName.cpp */, + 46EB2E00009760 /* ThreadName.h */, + 46EB2E00009BF0 /* ThreadPoolExecutor.cpp */, + 46EB2E00008770 /* ThreadPoolExecutor.h */, + 46EB2E00009C70 /* ThreadWheelTimekeeper.cpp */, + 46EB2E00008B90 /* ThreadWheelTimekeeper.h */, + 46EB2E00008A50 /* ThreadWheelTimekeeperHighRes.h */, + 46EB2E00009200 /* Thunk.h */, + 46EB2E0000AE10 /* Time.cpp */, + 46EB2E0000AE00 /* Time.h */, + 46EB2E00009C00 /* TimedDrivableExecutor.cpp */, + 46EB2E000087C0 /* TimedDrivableExecutor.h */, + 46EB2E0000A740 /* TimedMutex.h */, + 46EB2E0000A730 /* TimedMutex-inl.h */, + 46EB2E0000A330 /* TimedWait.h */, + 46EB2E00009C10 /* TimekeeperScheduledExecutor.cpp */, + 46EB2E000087D0 /* TimekeeperScheduledExecutor.h */, + 46EB2E0000A350 /* Timeout.h */, + 46EB2E0000A340 /* Timeout-inl.h */, + 46EB2E00009E70 /* TimeoutManager.cpp */, + 46EB2E00009030 /* TimeoutManager.h */, + 46EB2E000099D0 /* TimeoutQueue.cpp */, + 46EB2E000080E0 /* TimeoutQueue.h */, + 46EB2E00008A60 /* TimerFD.h */, + 46EB2E00008A70 /* TimerFDTimeoutManager.h */, + 46EB2E00008A80 /* TLRefCount.h */, + 46EB2E000090A0 /* TLSDefinitions.h */, + 46EB2E00009EF0 /* ToAscii.cpp */, + 46EB2E00009210 /* ToAscii.h */, + 46EB2E000080F0 /* TokenBucket.h */, + 46EB2E0000AC30 /* Traits.h */, + 46EB2E0000A360 /* Traits.h */, + 46EB2E0000A750 /* traits.h */, + 46EB2E00008100 /* Traits.h */, + 46EB2E0000A380 /* Transform.h */, + 46EB2E0000A370 /* Transform-inl.h */, + 46EB2E000099E0 /* Try.cpp */, + 46EB2E00008120 /* Try.h */, + 46EB2E00008110 /* Try-inl.h */, + 46EB2E00008A90 /* TupleOps.h */, + 46EB2E00008570 /* TurnSequencer.h */, + 46EB2E00008DD0 /* TypedIOBuf.h */, + 46EB2E00009220 /* TypeInfo.h */, + 46EB2E00008580 /* TypeList.h */, + 46EB2E00008BC0 /* Types.h */, + 46EB2E00008750 /* UnboundedBlockingQueue.h */, + 46EB2E00008220 /* UnboundedQueue.h */, + 46EB2E0000A390 /* UnboundedQueue.h */, + 46EB2E00009230 /* UncaughtExceptions.h */, + 46EB2E000099F0 /* Unicode.cpp */, + 46EB2E00008130 /* Unicode.h */, + 46EB2E00009300 /* UninitializedMemoryHacks.h */, + 46EB2E00009B00 /* UniqueInstance.cpp */, + 46EB2E00008590 /* UniqueInstance.h */, + 46EB2E0000AC60 /* Unistd.cpp */, + 46EB2E0000AC50 /* Unistd.h */, + 46EB2E00008140 /* Unit.h */, + 46EB2E00009A00 /* Uri.cpp */, + 46EB2E00008160 /* Uri.h */, + 46EB2E00008150 /* Uri-inl.h */, + 46EB2E00008170 /* UTF8String.h */, + 46EB2E000083C0 /* Util.h */, + 46EB2E00009630 /* Utility.h */, + 46EB2E00008180 /* Utility.h */, + 46EB2E00008190 /* Varint.h */, + 46EB2E0000A3A0 /* ViaIfAsync.h */, + 46EB2E00008330 /* View.h */, + 46EB2E00009E80 /* VirtualEventBase.cpp */, + 46EB2E00009040 /* VirtualEventBase.h */, + 46EB2E000081A0 /* VirtualExecutor.h */, + 46EB2E0000A3B0 /* Wait.h */, + 46EB2E0000A050 /* WaitOptions.cpp */, + 46EB2E00009640 /* WaitOptions.h */, + 46EB2E0000A770 /* WhenN.h */, + 46EB2E0000A760 /* WhenN-inl.h */, + 46EB2E0000AD30 /* Windows.h */, + 46EB2E0000A3C0 /* WithAsyncStack.h */, + 46EB2E0000A3D0 /* WithCancellation.h */, + 46EB2E0000ADF0 /* WithJitter.h */, + 46EB2E0000ADE0 /* WithJitter-inl.h */, + 46EB2E00009050 /* WriteChainAsyncTransportWrapper.h */, + 46EB2E00008BA0 /* WTCallback.h */, + 46EB2E0000ABB0 /* xlog.cpp */, + 46EB2E0000A9F0 /* xlog.h */, + 46EB2E0002E7C0 /* Support Files */, ); + name = "Flipper-Folly"; path = "Flipper-Folly"; sourceTree = ""; }; 46EB2E00000260 /* Flipper-Glog */ = { isa = PBXGroup; children = ( - 46EB2E00021E90 /* Frameworks */, - 46EB2E0002E940 /* Support Files */, + 46EB2E00021D70 /* Frameworks */, + 46EB2E0002E860 /* Support Files */, ); + name = "Flipper-Glog"; path = "Flipper-Glog"; sourceTree = ""; }; 46EB2E00000270 /* Flipper-PeerTalk */ = { isa = PBXGroup; children = ( - 46EB2E0000B030 /* Peertalk.h */, - 46EB2E0000B040 /* PTChannel.h */, - 46EB2E0000B050 /* PTChannel.m */, - 46EB2E0000B060 /* PTPrivate.h */, - 46EB2E0000B070 /* PTProtocol.h */, - 46EB2E0000B080 /* PTProtocol.m */, - 46EB2E0000B090 /* PTUSBHub.h */, - 46EB2E0000B0A0 /* PTUSBHub.m */, - 46EB2E0002EA80 /* Support Files */, + 46EB2E0000B040 /* Peertalk.h */, + 46EB2E0000B050 /* PTChannel.h */, + 46EB2E0000B060 /* PTChannel.m */, + 46EB2E0000B070 /* PTPrivate.h */, + 46EB2E0000B080 /* PTProtocol.h */, + 46EB2E0000B090 /* PTProtocol.m */, + 46EB2E0000B0A0 /* PTUSBHub.h */, + 46EB2E0000B0B0 /* PTUSBHub.m */, + 46EB2E0002E9A0 /* Support Files */, ); + name = "Flipper-PeerTalk"; path = "Flipper-PeerTalk"; sourceTree = ""; }; 46EB2E00000280 /* Flipper-RSocket */ = { isa = PBXGroup; children = ( - 46EB2E0000B360 /* Allowance.h */, - 46EB2E0000B790 /* AsyncGeneratorShim.h */, - 46EB2E0000B0B0 /* BaselinesAsyncSocket.cpp */, - 46EB2E0000B0C0 /* BaselinesTcp.cpp */, - 46EB2E0000B0D0 /* Benchmarks.cpp */, - 46EB2E0000B7A0 /* CancelingSubscriber.h */, - 46EB2E0000B4D0 /* ChannelRequester.cpp */, - 46EB2E0000B4E0 /* ChannelRequester.h */, - 46EB2E0000B4F0 /* ChannelResponder.cpp */, - 46EB2E0000B500 /* ChannelResponder.h */, - 46EB2E0000B370 /* ClientResumeStatusCallback.h */, - 46EB2E0000B8C0 /* ColdResumeHandler.cpp */, - 46EB2E0000B8D0 /* ColdResumeHandler.h */, - 46EB2E0000B380 /* Common.cpp */, - 46EB2E0000B390 /* Common.h */, - 46EB2E0000B8E0 /* ConnectionAcceptor.h */, - 46EB2E0000B8F0 /* ConnectionFactory.h */, - 46EB2E0000B3A0 /* ConnectionSet.cpp */, - 46EB2E0000B3B0 /* ConnectionSet.h */, - 46EB2E0000B510 /* ConsumerBase.cpp */, - 46EB2E0000B520 /* ConsumerBase.h */, - 46EB2E0000B7B0 /* DeferFlowable.h */, - 46EB2E0000B6E0 /* DeferObservable.h */, - 46EB2E0000B900 /* DuplexConnection.h */, - 46EB2E0000B7C0 /* EmitterFlowable.h */, - 46EB2E0000B160 /* ErrorCode.cpp */, - 46EB2E0000B170 /* ErrorCode.h */, - 46EB2E0000B530 /* FireAndForgetResponder.cpp */, - 46EB2E0000B540 /* FireAndForgetResponder.h */, - 46EB2E0000B0E0 /* FireForgetThroughputTcp.cpp */, - 46EB2E0000B0F0 /* Fixture.cpp */, - 46EB2E0000B100 /* Fixture.h */, - 46EB2E0000B7D0 /* Flowable.h */, - 46EB2E0000B850 /* Flowable_FromObservable.h */, - 46EB2E0000B7E0 /* FlowableConcatOperators.h */, - 46EB2E0000B7F0 /* FlowableDoOperator.h */, - 46EB2E0000B800 /* FlowableObserveOnOperator.h */, - 46EB2E0000B810 /* FlowableOperator.h */, - 46EB2E0000B820 /* Flowables.cpp */, - 46EB2E0000B830 /* Flowables.h */, - 46EB2E0000B840 /* FlowableTimeoutOperator.h */, - 46EB2E0000B180 /* Frame.cpp */, - 46EB2E0000B190 /* Frame.h */, - 46EB2E0000B1A0 /* FramedDuplexConnection.cpp */, - 46EB2E0000B1B0 /* FramedDuplexConnection.h */, - 46EB2E0000B1C0 /* FramedReader.cpp */, - 46EB2E0000B1D0 /* FramedReader.h */, - 46EB2E0000B1E0 /* FrameFlags.cpp */, - 46EB2E0000B1F0 /* FrameFlags.h */, - 46EB2E0000B200 /* FrameHeader.cpp */, - 46EB2E0000B210 /* FrameHeader.h */, - 46EB2E0000B220 /* FrameProcessor.h */, - 46EB2E0000B230 /* Framer.cpp */, - 46EB2E0000B240 /* Framer.h */, - 46EB2E0000B250 /* FrameSerializer.cpp */, - 46EB2E0000B260 /* FrameSerializer.h */, - 46EB2E0000B270 /* FrameSerializer_v1_0.cpp */, - 46EB2E0000B280 /* FrameSerializer_v1_0.h */, - 46EB2E0000B290 /* FrameTransport.h */, - 46EB2E0000B2A0 /* FrameTransportImpl.cpp */, - 46EB2E0000B2B0 /* FrameTransportImpl.h */, - 46EB2E0000B2C0 /* FrameType.cpp */, - 46EB2E0000B2D0 /* FrameType.h */, - 46EB2E0000B3C0 /* KeepaliveTimer.cpp */, - 46EB2E0000B3D0 /* KeepaliveTimer.h */, - 46EB2E0000B110 /* Latch.h */, - 46EB2E0000B6F0 /* Observable.h */, - 46EB2E0000B700 /* ObservableConcatOperators.h */, - 46EB2E0000B710 /* ObservableDoOperator.h */, - 46EB2E0000B720 /* ObservableOperator.h */, - 46EB2E0000B730 /* Observables.cpp */, - 46EB2E0000B740 /* Observables.h */, - 46EB2E0000B750 /* Observer.h */, - 46EB2E0000B910 /* Payload.cpp */, - 46EB2E0000B920 /* Payload.h */, - 46EB2E0000B2E0 /* ProtocolVersion.cpp */, - 46EB2E0000B2F0 /* ProtocolVersion.h */, - 46EB2E0000B550 /* PublisherBase.cpp */, - 46EB2E0000B560 /* PublisherBase.h */, - 46EB2E0000B860 /* PublishProcessor.h */, - 46EB2E0000B570 /* RequestResponseRequester.cpp */, - 46EB2E0000B580 /* RequestResponseRequester.h */, - 46EB2E0000B590 /* RequestResponseResponder.cpp */, - 46EB2E0000B5A0 /* RequestResponseResponder.h */, - 46EB2E0000B120 /* RequestResponseThroughputTcp.cpp */, - 46EB2E0000B300 /* ResumeIdentificationToken.cpp */, - 46EB2E0000B310 /* ResumeIdentificationToken.h */, - 46EB2E0000B930 /* ResumeManager.h */, - 46EB2E0000B940 /* RSocket.cpp */, - 46EB2E0000B950 /* RSocket.h */, - 46EB2E0000B960 /* RSocketClient.cpp */, - 46EB2E0000B970 /* RSocketClient.h */, - 46EB2E0000B980 /* RSocketConnectionEvents.h */, - 46EB2E0000B990 /* RSocketErrors.h */, - 46EB2E0000B9A0 /* RSocketException.h */, - 46EB2E0000B9B0 /* RSocketParameters.cpp */, - 46EB2E0000B9C0 /* RSocketParameters.h */, - 46EB2E0000B9D0 /* RSocketRequester.cpp */, - 46EB2E0000B9E0 /* RSocketRequester.h */, - 46EB2E0000B9F0 /* RSocketResponder.cpp */, - 46EB2E0000BA00 /* RSocketResponder.h */, - 46EB2E0000BA10 /* RSocketServer.cpp */, - 46EB2E0000BA20 /* RSocketServer.h */, - 46EB2E0000BA30 /* RSocketServerState.h */, - 46EB2E0000BA40 /* RSocketServiceHandler.cpp */, - 46EB2E0000BA50 /* RSocketServiceHandler.h */, - 46EB2E0000B5B0 /* RSocketStateMachine.cpp */, - 46EB2E0000B5C0 /* RSocketStateMachine.h */, - 46EB2E0000BA60 /* RSocketStats.cpp */, - 46EB2E0000BA70 /* RSocketStats.h */, - 46EB2E0000B670 /* RSocketTransport.h */, - 46EB2E0000B320 /* ScheduledFrameProcessor.cpp */, - 46EB2E0000B330 /* ScheduledFrameProcessor.h */, - 46EB2E0000B340 /* ScheduledFrameTransport.cpp */, - 46EB2E0000B350 /* ScheduledFrameTransport.h */, - 46EB2E0000B3E0 /* ScheduledRSocketResponder.cpp */, - 46EB2E0000B3F0 /* ScheduledRSocketResponder.h */, - 46EB2E0000B400 /* ScheduledSingleObserver.h */, - 46EB2E0000B410 /* ScheduledSingleSubscription.cpp */, - 46EB2E0000B420 /* ScheduledSingleSubscription.h */, - 46EB2E0000B430 /* ScheduledSubscriber.h */, - 46EB2E0000B440 /* ScheduledSubscription.cpp */, - 46EB2E0000B450 /* ScheduledSubscription.h */, - 46EB2E0000B460 /* SetupResumeAcceptor.cpp */, - 46EB2E0000B470 /* SetupResumeAcceptor.h */, - 46EB2E0000B480 /* StackTraceUtils.h */, - 46EB2E0000B5D0 /* StreamFragmentAccumulator.cpp */, - 46EB2E0000B5E0 /* StreamFragmentAccumulator.h */, - 46EB2E0000B5F0 /* StreamRequester.cpp */, - 46EB2E0000B600 /* StreamRequester.h */, - 46EB2E0000B610 /* StreamResponder.cpp */, - 46EB2E0000B620 /* StreamResponder.h */, - 46EB2E0000B630 /* StreamStateMachineBase.cpp */, - 46EB2E0000B640 /* StreamStateMachineBase.h */, - 46EB2E0000B650 /* StreamsWriter.cpp */, - 46EB2E0000B660 /* StreamsWriter.h */, - 46EB2E0000B130 /* StreamThroughputMemory.cpp */, - 46EB2E0000B140 /* StreamThroughputTcp.cpp */, - 46EB2E0000B870 /* Subscriber.h */, - 46EB2E0000B880 /* Subscription.cpp */, - 46EB2E0000B760 /* Subscription.cpp */, - 46EB2E0000B890 /* Subscription.h */, - 46EB2E0000B770 /* Subscription.h */, - 46EB2E0000B490 /* SwappableEventBase.cpp */, - 46EB2E0000B4A0 /* SwappableEventBase.h */, - 46EB2E0000B680 /* TcpConnectionAcceptor.cpp */, - 46EB2E0000B690 /* TcpConnectionAcceptor.h */, - 46EB2E0000B6A0 /* TcpConnectionFactory.cpp */, - 46EB2E0000B6B0 /* TcpConnectionFactory.h */, - 46EB2E0000B6C0 /* TcpDuplexConnection.cpp */, - 46EB2E0000B6D0 /* TcpDuplexConnection.h */, - 46EB2E0000B780 /* TestObserver.h */, - 46EB2E0000B8A0 /* TestSubscriber.h */, - 46EB2E0000B8B0 /* ThriftStreamShim.h */, - 46EB2E0000B150 /* Throughput.h */, - 46EB2E0000B4B0 /* WarmResumeManager.cpp */, - 46EB2E0000B4C0 /* WarmResumeManager.h */, - 46EB2E0002F530 /* Support Files */, + 46EB2E0000B370 /* Allowance.h */, + 46EB2E0000B7A0 /* AsyncGeneratorShim.h */, + 46EB2E0000B0C0 /* BaselinesAsyncSocket.cpp */, + 46EB2E0000B0D0 /* BaselinesTcp.cpp */, + 46EB2E0000B0E0 /* Benchmarks.cpp */, + 46EB2E0000B7B0 /* CancelingSubscriber.h */, + 46EB2E0000B4E0 /* ChannelRequester.cpp */, + 46EB2E0000B4F0 /* ChannelRequester.h */, + 46EB2E0000B500 /* ChannelResponder.cpp */, + 46EB2E0000B510 /* ChannelResponder.h */, + 46EB2E0000B380 /* ClientResumeStatusCallback.h */, + 46EB2E0000B8D0 /* ColdResumeHandler.cpp */, + 46EB2E0000B8E0 /* ColdResumeHandler.h */, + 46EB2E0000B390 /* Common.cpp */, + 46EB2E0000B3A0 /* Common.h */, + 46EB2E0000B8F0 /* ConnectionAcceptor.h */, + 46EB2E0000B900 /* ConnectionFactory.h */, + 46EB2E0000B3B0 /* ConnectionSet.cpp */, + 46EB2E0000B3C0 /* ConnectionSet.h */, + 46EB2E0000B520 /* ConsumerBase.cpp */, + 46EB2E0000B530 /* ConsumerBase.h */, + 46EB2E0000B7C0 /* DeferFlowable.h */, + 46EB2E0000B6F0 /* DeferObservable.h */, + 46EB2E0000B910 /* DuplexConnection.h */, + 46EB2E0000B7D0 /* EmitterFlowable.h */, + 46EB2E0000B170 /* ErrorCode.cpp */, + 46EB2E0000B180 /* ErrorCode.h */, + 46EB2E0000B540 /* FireAndForgetResponder.cpp */, + 46EB2E0000B550 /* FireAndForgetResponder.h */, + 46EB2E0000B0F0 /* FireForgetThroughputTcp.cpp */, + 46EB2E0000B100 /* Fixture.cpp */, + 46EB2E0000B110 /* Fixture.h */, + 46EB2E0000B7E0 /* Flowable.h */, + 46EB2E0000B860 /* Flowable_FromObservable.h */, + 46EB2E0000B7F0 /* FlowableConcatOperators.h */, + 46EB2E0000B800 /* FlowableDoOperator.h */, + 46EB2E0000B810 /* FlowableObserveOnOperator.h */, + 46EB2E0000B820 /* FlowableOperator.h */, + 46EB2E0000B830 /* Flowables.cpp */, + 46EB2E0000B840 /* Flowables.h */, + 46EB2E0000B850 /* FlowableTimeoutOperator.h */, + 46EB2E0000B190 /* Frame.cpp */, + 46EB2E0000B1A0 /* Frame.h */, + 46EB2E0000B1B0 /* FramedDuplexConnection.cpp */, + 46EB2E0000B1C0 /* FramedDuplexConnection.h */, + 46EB2E0000B1D0 /* FramedReader.cpp */, + 46EB2E0000B1E0 /* FramedReader.h */, + 46EB2E0000B1F0 /* FrameFlags.cpp */, + 46EB2E0000B200 /* FrameFlags.h */, + 46EB2E0000B210 /* FrameHeader.cpp */, + 46EB2E0000B220 /* FrameHeader.h */, + 46EB2E0000B230 /* FrameProcessor.h */, + 46EB2E0000B240 /* Framer.cpp */, + 46EB2E0000B250 /* Framer.h */, + 46EB2E0000B260 /* FrameSerializer.cpp */, + 46EB2E0000B270 /* FrameSerializer.h */, + 46EB2E0000B280 /* FrameSerializer_v1_0.cpp */, + 46EB2E0000B290 /* FrameSerializer_v1_0.h */, + 46EB2E0000B2A0 /* FrameTransport.h */, + 46EB2E0000B2B0 /* FrameTransportImpl.cpp */, + 46EB2E0000B2C0 /* FrameTransportImpl.h */, + 46EB2E0000B2D0 /* FrameType.cpp */, + 46EB2E0000B2E0 /* FrameType.h */, + 46EB2E0000B3D0 /* KeepaliveTimer.cpp */, + 46EB2E0000B3E0 /* KeepaliveTimer.h */, + 46EB2E0000B120 /* Latch.h */, + 46EB2E0000B700 /* Observable.h */, + 46EB2E0000B710 /* ObservableConcatOperators.h */, + 46EB2E0000B720 /* ObservableDoOperator.h */, + 46EB2E0000B730 /* ObservableOperator.h */, + 46EB2E0000B740 /* Observables.cpp */, + 46EB2E0000B750 /* Observables.h */, + 46EB2E0000B760 /* Observer.h */, + 46EB2E0000B920 /* Payload.cpp */, + 46EB2E0000B930 /* Payload.h */, + 46EB2E0000B2F0 /* ProtocolVersion.cpp */, + 46EB2E0000B300 /* ProtocolVersion.h */, + 46EB2E0000B560 /* PublisherBase.cpp */, + 46EB2E0000B570 /* PublisherBase.h */, + 46EB2E0000B870 /* PublishProcessor.h */, + 46EB2E0000B580 /* RequestResponseRequester.cpp */, + 46EB2E0000B590 /* RequestResponseRequester.h */, + 46EB2E0000B5A0 /* RequestResponseResponder.cpp */, + 46EB2E0000B5B0 /* RequestResponseResponder.h */, + 46EB2E0000B130 /* RequestResponseThroughputTcp.cpp */, + 46EB2E0000B310 /* ResumeIdentificationToken.cpp */, + 46EB2E0000B320 /* ResumeIdentificationToken.h */, + 46EB2E0000B940 /* ResumeManager.h */, + 46EB2E0000B950 /* RSocket.cpp */, + 46EB2E0000B960 /* RSocket.h */, + 46EB2E0000B970 /* RSocketClient.cpp */, + 46EB2E0000B980 /* RSocketClient.h */, + 46EB2E0000B990 /* RSocketConnectionEvents.h */, + 46EB2E0000B9A0 /* RSocketErrors.h */, + 46EB2E0000B9B0 /* RSocketException.h */, + 46EB2E0000B9C0 /* RSocketParameters.cpp */, + 46EB2E0000B9D0 /* RSocketParameters.h */, + 46EB2E0000B9E0 /* RSocketRequester.cpp */, + 46EB2E0000B9F0 /* RSocketRequester.h */, + 46EB2E0000BA00 /* RSocketResponder.cpp */, + 46EB2E0000BA10 /* RSocketResponder.h */, + 46EB2E0000BA20 /* RSocketServer.cpp */, + 46EB2E0000BA30 /* RSocketServer.h */, + 46EB2E0000BA40 /* RSocketServerState.h */, + 46EB2E0000BA50 /* RSocketServiceHandler.cpp */, + 46EB2E0000BA60 /* RSocketServiceHandler.h */, + 46EB2E0000B5C0 /* RSocketStateMachine.cpp */, + 46EB2E0000B5D0 /* RSocketStateMachine.h */, + 46EB2E0000BA70 /* RSocketStats.cpp */, + 46EB2E0000BA80 /* RSocketStats.h */, + 46EB2E0000B680 /* RSocketTransport.h */, + 46EB2E0000B330 /* ScheduledFrameProcessor.cpp */, + 46EB2E0000B340 /* ScheduledFrameProcessor.h */, + 46EB2E0000B350 /* ScheduledFrameTransport.cpp */, + 46EB2E0000B360 /* ScheduledFrameTransport.h */, + 46EB2E0000B3F0 /* ScheduledRSocketResponder.cpp */, + 46EB2E0000B400 /* ScheduledRSocketResponder.h */, + 46EB2E0000B410 /* ScheduledSingleObserver.h */, + 46EB2E0000B420 /* ScheduledSingleSubscription.cpp */, + 46EB2E0000B430 /* ScheduledSingleSubscription.h */, + 46EB2E0000B440 /* ScheduledSubscriber.h */, + 46EB2E0000B450 /* ScheduledSubscription.cpp */, + 46EB2E0000B460 /* ScheduledSubscription.h */, + 46EB2E0000B470 /* SetupResumeAcceptor.cpp */, + 46EB2E0000B480 /* SetupResumeAcceptor.h */, + 46EB2E0000B490 /* StackTraceUtils.h */, + 46EB2E0000B5E0 /* StreamFragmentAccumulator.cpp */, + 46EB2E0000B5F0 /* StreamFragmentAccumulator.h */, + 46EB2E0000B600 /* StreamRequester.cpp */, + 46EB2E0000B610 /* StreamRequester.h */, + 46EB2E0000B620 /* StreamResponder.cpp */, + 46EB2E0000B630 /* StreamResponder.h */, + 46EB2E0000B640 /* StreamStateMachineBase.cpp */, + 46EB2E0000B650 /* StreamStateMachineBase.h */, + 46EB2E0000B660 /* StreamsWriter.cpp */, + 46EB2E0000B670 /* StreamsWriter.h */, + 46EB2E0000B140 /* StreamThroughputMemory.cpp */, + 46EB2E0000B150 /* StreamThroughputTcp.cpp */, + 46EB2E0000B880 /* Subscriber.h */, + 46EB2E0000B890 /* Subscription.cpp */, + 46EB2E0000B770 /* Subscription.cpp */, + 46EB2E0000B8A0 /* Subscription.h */, + 46EB2E0000B780 /* Subscription.h */, + 46EB2E0000B4A0 /* SwappableEventBase.cpp */, + 46EB2E0000B4B0 /* SwappableEventBase.h */, + 46EB2E0000B690 /* TcpConnectionAcceptor.cpp */, + 46EB2E0000B6A0 /* TcpConnectionAcceptor.h */, + 46EB2E0000B6B0 /* TcpConnectionFactory.cpp */, + 46EB2E0000B6C0 /* TcpConnectionFactory.h */, + 46EB2E0000B6D0 /* TcpDuplexConnection.cpp */, + 46EB2E0000B6E0 /* TcpDuplexConnection.h */, + 46EB2E0000B790 /* TestObserver.h */, + 46EB2E0000B8B0 /* TestSubscriber.h */, + 46EB2E0000B8C0 /* ThriftStreamShim.h */, + 46EB2E0000B160 /* Throughput.h */, + 46EB2E0000B4C0 /* WarmResumeManager.cpp */, + 46EB2E0000B4D0 /* WarmResumeManager.h */, + 46EB2E0002F450 /* Support Files */, ); + name = "Flipper-RSocket"; path = "Flipper-RSocket"; sourceTree = ""; }; 46EB2E00000290 /* FlipperKit */ = { isa = PBXGroup; children = ( - 46EB2E0000BA80 /* Core */, - 46EB2E0000BC20 /* CppBridge */, - 46EB2E0000BC30 /* FBCxxFollyDynamicConvert */, - 46EB2E0000BC60 /* FBDefines */, - 46EB2E0000BC80 /* FKPortForwarding */, - 46EB2E0000BCC0 /* FlipperKitHighlightOverlay */, - 46EB2E0000BCF0 /* FlipperKitLayoutHelpers */, - 46EB2E0000BEC0 /* FlipperKitLayoutIOSDescriptors */, - 46EB2E0000BF70 /* FlipperKitLayoutPlugin */, - 46EB2E0000BFC0 /* FlipperKitLayoutTextSearchable */, - 46EB2E0000BFE0 /* FlipperKitNetworkPlugin */, - 46EB2E0000C0B0 /* FlipperKitReactPlugin */, - 46EB2E0000C0E0 /* FlipperKitUserDefaultsPlugin */, - 46EB2E0000C130 /* SKIOSNetworkPlugin */, - 46EB2E0002FC90 /* Support Files */, + 46EB2E0000BA90 /* Core */, + 46EB2E0000BC30 /* CppBridge */, + 46EB2E0000BC40 /* FBCxxFollyDynamicConvert */, + 46EB2E0000BC70 /* FBDefines */, + 46EB2E0000BC90 /* FKPortForwarding */, + 46EB2E0000BCD0 /* FlipperKitHighlightOverlay */, + 46EB2E0000BD00 /* FlipperKitLayoutHelpers */, + 46EB2E0000BED0 /* FlipperKitLayoutIOSDescriptors */, + 46EB2E0000BF80 /* FlipperKitLayoutPlugin */, + 46EB2E0000BFD0 /* FlipperKitLayoutTextSearchable */, + 46EB2E0000BFF0 /* FlipperKitNetworkPlugin */, + 46EB2E0000C0C0 /* FlipperKitReactPlugin */, + 46EB2E0000C0F0 /* FlipperKitUserDefaultsPlugin */, + 46EB2E0000C140 /* SKIOSNetworkPlugin */, + 46EB2E0002FBB0 /* Support Files */, ); + name = FlipperKit; path = FlipperKit; sourceTree = ""; }; 46EB2E000002A0 /* GTMSessionFetcher */ = { isa = PBXGroup; children = ( - 46EB2E0000C1E0 /* Core */, - 46EB2E0002FE20 /* Support Files */, + 46EB2E0000C1F0 /* Core */, + 46EB2E0002FD40 /* Support Files */, ); + name = GTMSessionFetcher; path = GTMSessionFetcher; sourceTree = ""; }; 46EB2E000002B0 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( - 46EB2E00021EB0 /* AdIdSupport */, - 46EB2E0002FEB0 /* Support Files */, - 46EB2E00021EE0 /* WithoutAdIdSupport */, + 46EB2E00021D90 /* AdIdSupport */, + 46EB2E0002FDD0 /* Support Files */, + 46EB2E00021DC0 /* WithoutAdIdSupport */, ); + name = GoogleAppMeasurement; path = GoogleAppMeasurement; sourceTree = ""; }; 46EB2E000002C0 /* GoogleDataTransport */ = { isa = PBXGroup; children = ( - 46EB2E0000C5E0 /* cct.nanopb.c */, - 46EB2E0000C5F0 /* cct.nanopb.h */, - 46EB2E0000C5A0 /* GDTCCTCompressionHelper.h */, - 46EB2E0000C550 /* GDTCCTCompressionHelper.m */, - 46EB2E0000C5B0 /* GDTCCTNanopbHelpers.h */, - 46EB2E0000C560 /* GDTCCTNanopbHelpers.m */, - 46EB2E0000C5C0 /* GDTCCTUploader.h */, - 46EB2E0000C570 /* GDTCCTUploader.m */, - 46EB2E0000C5D0 /* GDTCCTUploadOperation.h */, - 46EB2E0000C580 /* GDTCCTUploadOperation.m */, - 46EB2E0000C380 /* GDTCORAssert.h */, - 46EB2E0000C270 /* GDTCORAssert.m */, - 46EB2E0000C4C0 /* GDTCORClock.h */, - 46EB2E0000C280 /* GDTCORClock.m */, - 46EB2E0000C4D0 /* GDTCORConsoleLogger.h */, - 46EB2E0000C290 /* GDTCORConsoleLogger.m */, - 46EB2E0000C390 /* GDTCORDirectorySizeTracker.h */, - 46EB2E0000C2A0 /* GDTCORDirectorySizeTracker.m */, - 46EB2E0000C4E0 /* GDTCOREndpoints.h */, - 46EB2E0000C2B0 /* GDTCOREndpoints.m */, - 46EB2E0000C410 /* GDTCOREndpoints_Private.h */, - 46EB2E0000C4F0 /* GDTCOREvent.h */, - 46EB2E0000C2C0 /* GDTCOREvent.m */, - 46EB2E0000C600 /* GDTCOREvent+GDTCCTSupport.h */, - 46EB2E0000C590 /* GDTCOREvent+GDTCCTSupport.m */, - 46EB2E0000C420 /* GDTCOREvent_Private.h */, - 46EB2E0000C500 /* GDTCOREventDataObject.h */, - 46EB2E0000C510 /* GDTCOREventTransformer.h */, - 46EB2E0000C440 /* GDTCORFlatFileStorage.h */, - 46EB2E0000C2E0 /* GDTCORFlatFileStorage.m */, - 46EB2E0000C430 /* GDTCORFlatFileStorage+Promises.h */, - 46EB2E0000C2D0 /* GDTCORFlatFileStorage+Promises.m */, - 46EB2E0000C3A0 /* GDTCORLifecycle.h */, - 46EB2E0000C2F0 /* GDTCORLifecycle.m */, - 46EB2E0000C3B0 /* GDTCORPlatform.h */, - 46EB2E0000C300 /* GDTCORPlatform.m */, - 46EB2E0000C3C0 /* GDTCORReachability.h */, - 46EB2E0000C310 /* GDTCORReachability.m */, - 46EB2E0000C450 /* GDTCORReachability_Private.h */, - 46EB2E0000C3D0 /* GDTCORRegistrar.h */, - 46EB2E0000C320 /* GDTCORRegistrar.m */, - 46EB2E0000C460 /* GDTCORRegistrar_Private.h */, - 46EB2E0000C3E0 /* GDTCORStorageEventSelector.h */, - 46EB2E0000C330 /* GDTCORStorageEventSelector.m */, - 46EB2E0000C3F0 /* GDTCORStorageProtocol.h */, - 46EB2E0000C520 /* GDTCORTargets.h */, - 46EB2E0000C470 /* GDTCORTransformer.h */, - 46EB2E0000C340 /* GDTCORTransformer.m */, - 46EB2E0000C480 /* GDTCORTransformer_Private.h */, - 46EB2E0000C530 /* GDTCORTransport.h */, - 46EB2E0000C350 /* GDTCORTransport.m */, - 46EB2E0000C490 /* GDTCORTransport_Private.h */, - 46EB2E0000C4A0 /* GDTCORUploadBatch.h */, - 46EB2E0000C360 /* GDTCORUploadBatch.m */, - 46EB2E0000C4B0 /* GDTCORUploadCoordinator.h */, - 46EB2E0000C370 /* GDTCORUploadCoordinator.m */, - 46EB2E0000C400 /* GDTCORUploader.h */, - 46EB2E0000C540 /* GoogleDataTransport.h */, - 46EB2E00030310 /* Support Files */, + 46EB2E0000C5F0 /* cct.nanopb.c */, + 46EB2E0000C600 /* cct.nanopb.h */, + 46EB2E0000C5B0 /* GDTCCTCompressionHelper.h */, + 46EB2E0000C560 /* GDTCCTCompressionHelper.m */, + 46EB2E0000C5C0 /* GDTCCTNanopbHelpers.h */, + 46EB2E0000C570 /* GDTCCTNanopbHelpers.m */, + 46EB2E0000C5D0 /* GDTCCTUploader.h */, + 46EB2E0000C580 /* GDTCCTUploader.m */, + 46EB2E0000C5E0 /* GDTCCTUploadOperation.h */, + 46EB2E0000C590 /* GDTCCTUploadOperation.m */, + 46EB2E0000C390 /* GDTCORAssert.h */, + 46EB2E0000C280 /* GDTCORAssert.m */, + 46EB2E0000C4D0 /* GDTCORClock.h */, + 46EB2E0000C290 /* GDTCORClock.m */, + 46EB2E0000C4E0 /* GDTCORConsoleLogger.h */, + 46EB2E0000C2A0 /* GDTCORConsoleLogger.m */, + 46EB2E0000C3A0 /* GDTCORDirectorySizeTracker.h */, + 46EB2E0000C2B0 /* GDTCORDirectorySizeTracker.m */, + 46EB2E0000C4F0 /* GDTCOREndpoints.h */, + 46EB2E0000C2C0 /* GDTCOREndpoints.m */, + 46EB2E0000C420 /* GDTCOREndpoints_Private.h */, + 46EB2E0000C500 /* GDTCOREvent.h */, + 46EB2E0000C2D0 /* GDTCOREvent.m */, + 46EB2E0000C610 /* GDTCOREvent+GDTCCTSupport.h */, + 46EB2E0000C5A0 /* GDTCOREvent+GDTCCTSupport.m */, + 46EB2E0000C430 /* GDTCOREvent_Private.h */, + 46EB2E0000C510 /* GDTCOREventDataObject.h */, + 46EB2E0000C520 /* GDTCOREventTransformer.h */, + 46EB2E0000C450 /* GDTCORFlatFileStorage.h */, + 46EB2E0000C2F0 /* GDTCORFlatFileStorage.m */, + 46EB2E0000C440 /* GDTCORFlatFileStorage+Promises.h */, + 46EB2E0000C2E0 /* GDTCORFlatFileStorage+Promises.m */, + 46EB2E0000C3B0 /* GDTCORLifecycle.h */, + 46EB2E0000C300 /* GDTCORLifecycle.m */, + 46EB2E0000C3C0 /* GDTCORPlatform.h */, + 46EB2E0000C310 /* GDTCORPlatform.m */, + 46EB2E0000C3D0 /* GDTCORReachability.h */, + 46EB2E0000C320 /* GDTCORReachability.m */, + 46EB2E0000C460 /* GDTCORReachability_Private.h */, + 46EB2E0000C3E0 /* GDTCORRegistrar.h */, + 46EB2E0000C330 /* GDTCORRegistrar.m */, + 46EB2E0000C470 /* GDTCORRegistrar_Private.h */, + 46EB2E0000C3F0 /* GDTCORStorageEventSelector.h */, + 46EB2E0000C340 /* GDTCORStorageEventSelector.m */, + 46EB2E0000C400 /* GDTCORStorageProtocol.h */, + 46EB2E0000C530 /* GDTCORTargets.h */, + 46EB2E0000C480 /* GDTCORTransformer.h */, + 46EB2E0000C350 /* GDTCORTransformer.m */, + 46EB2E0000C490 /* GDTCORTransformer_Private.h */, + 46EB2E0000C540 /* GDTCORTransport.h */, + 46EB2E0000C360 /* GDTCORTransport.m */, + 46EB2E0000C4A0 /* GDTCORTransport_Private.h */, + 46EB2E0000C4B0 /* GDTCORUploadBatch.h */, + 46EB2E0000C370 /* GDTCORUploadBatch.m */, + 46EB2E0000C4C0 /* GDTCORUploadCoordinator.h */, + 46EB2E0000C380 /* GDTCORUploadCoordinator.m */, + 46EB2E0000C410 /* GDTCORUploader.h */, + 46EB2E0000C550 /* GoogleDataTransport.h */, + 46EB2E00030230 /* Support Files */, ); + name = GoogleDataTransport; path = GoogleDataTransport; sourceTree = ""; }; 46EB2E000002D0 /* GoogleUtilities */ = { isa = PBXGroup; children = ( - 46EB2E0000C610 /* AppDelegateSwizzler */, - 46EB2E0000C6A0 /* Environment */, - 46EB2E0000C7C0 /* ISASwizzler */, - 46EB2E0000C820 /* Logger */, - 46EB2E0000C860 /* MethodSwizzler */, - 46EB2E0000C8D0 /* Network */, - 46EB2E0000C8A0 /* NSData+zlib */, - 46EB2E0000C990 /* Reachability */, - 46EB2E00030860 /* Support Files */, - 46EB2E0000C9E0 /* SwizzlerTestHelpers */, - 46EB2E0000CB00 /* UserDefaults */, + 46EB2E0000C620 /* AppDelegateSwizzler */, + 46EB2E0000C6B0 /* Environment */, + 46EB2E0000C7D0 /* ISASwizzler */, + 46EB2E0000C830 /* Logger */, + 46EB2E0000C870 /* MethodSwizzler */, + 46EB2E0000C8E0 /* Network */, + 46EB2E0000C8B0 /* NSData+zlib */, + 46EB2E0000C9A0 /* Reachability */, + 46EB2E00030780 /* Support Files */, + 46EB2E0000C9F0 /* SwizzlerTestHelpers */, + 46EB2E0000CB10 /* UserDefaults */, ); + name = GoogleUtilities; path = GoogleUtilities; sourceTree = ""; }; 46EB2E000002E0 /* JWT */ = { isa = PBXGroup; children = ( - 46EB2E0000D080 /* JWT.h */, - 46EB2E0000CB30 /* JWTAlgorithm.h */, - 46EB2E0000CBC0 /* JWTAlgorithmAsymmetricBase.h */, - 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.m */, - 46EB2E0000CC20 /* JWTAlgorithmDataHolder.h */, - 46EB2E0000CC30 /* JWTAlgorithmDataHolder.m */, - 46EB2E0000CC00 /* JWTAlgorithmDataHolder+FluentStyle.h */, - 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.m */, - 46EB2E0000CC40 /* JWTAlgorithmDataHolderChain.h */, - 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.m */, - 46EB2E0000CB60 /* JWTAlgorithmErrorDescription.h */, - 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.m */, - 46EB2E0000CB40 /* JWTAlgorithmErrorDescription+Subclass.h */, - 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.m */, - 46EB2E0000CBE0 /* JWTAlgorithmESBase.h */, - 46EB2E0000CBF0 /* JWTAlgorithmESBase.m */, - 46EB2E0000CB80 /* JWTAlgorithmFactory.h */, - 46EB2E0000CB90 /* JWTAlgorithmFactory.m */, - 46EB2E0000CC60 /* JWTAlgorithmHSBase.h */, - 46EB2E0000CC70 /* JWTAlgorithmHSBase.m */, - 46EB2E0000CBA0 /* JWTAlgorithmNone.h */, - 46EB2E0000CBB0 /* JWTAlgorithmNone.m */, - 46EB2E0000CC80 /* JWTAlgorithmRSBase.h */, - 46EB2E0000CC90 /* JWTAlgorithmRSBase.m */, - 46EB2E0000D090 /* JWTBase64Coder.h */, - 46EB2E0000D0A0 /* JWTBase64Coder.m */, - 46EB2E0000CFA0 /* JWTBuilder+FluentStyle.h */, - 46EB2E0000CFB0 /* JWTBuilder+FluentStyle.m */, - 46EB2E0000CD90 /* JWTClaim.h */, - 46EB2E0000CDA0 /* JWTClaim.m */, - 46EB2E0000CDB0 /* JWTClaimBase.h */, - 46EB2E0000CDC0 /* JWTClaimBase.m */, - 46EB2E0000CDD0 /* JWTClaimSerializerBase.h */, - 46EB2E0000CDE0 /* JWTClaimSerializerBase.m */, - 46EB2E0000CDF0 /* JWTClaimSerializerVariations.h */, - 46EB2E0000CE00 /* JWTClaimSerializerVariations.m */, - 46EB2E0000CE10 /* JWTClaimsProviderBase.h */, - 46EB2E0000CE20 /* JWTClaimsProviderBase.m */, - 46EB2E0000CE30 /* JWTClaimsSet.h */, - 46EB2E0000CE40 /* JWTClaimsSet.m */, - 46EB2E0000CE50 /* JWTClaimsSetBase.h */, - 46EB2E0000CE60 /* JWTClaimsSetBase.m */, - 46EB2E0000CE70 /* JWTClaimsSetCoordinatorBase.h */, - 46EB2E0000CE80 /* JWTClaimsSetCoordinatorBase.m */, - 46EB2E0000CE90 /* JWTClaimsSetDSLBase.h */, - 46EB2E0000CEA0 /* JWTClaimsSetDSLBase.m */, - 46EB2E0000CEB0 /* JWTClaimsSetSerializer.h */, - 46EB2E0000CEC0 /* JWTClaimsSetSerializer.m */, - 46EB2E0000CED0 /* JWTClaimsSetSerializerBase.h */, - 46EB2E0000CEE0 /* JWTClaimsSetSerializerBase.m */, - 46EB2E0000CEF0 /* JWTClaimsSetsProtocols.h */, - 46EB2E0000CF00 /* JWTClaimsSetVerifier.h */, - 46EB2E0000CF10 /* JWTClaimsSetVerifier.m */, - 46EB2E0000CF20 /* JWTClaimsSetVerifierBase.h */, - 46EB2E0000CF30 /* JWTClaimsSetVerifierBase.m */, - 46EB2E0000CF40 /* JWTClaimVariations.h */, - 46EB2E0000CF50 /* JWTClaimVariations.m */, - 46EB2E0000CF60 /* JWTClaimVerifierBase.h */, - 46EB2E0000CF70 /* JWTClaimVerifierBase.m */, - 46EB2E0000CF80 /* JWTClaimVerifierVariations.h */, - 46EB2E0000CF90 /* JWTClaimVerifierVariations.m */, - 46EB2E0000D040 /* JWTCoding.h */, - 46EB2E0000D050 /* JWTCoding.m */, - 46EB2E0000CFC0 /* JWTCoding+ResultTypes.h */, - 46EB2E0000CFD0 /* JWTCoding+ResultTypes.m */, - 46EB2E0000CFE0 /* JWTCoding+VersionOne.h */, - 46EB2E0000CFF0 /* JWTCoding+VersionOne.m */, - 46EB2E0000D000 /* JWTCoding+VersionThree.h */, - 46EB2E0000D010 /* JWTCoding+VersionThree.m */, - 46EB2E0000D020 /* JWTCoding+VersionTwo.h */, - 46EB2E0000D030 /* JWTCoding+VersionTwo.m */, - 46EB2E0000D060 /* JWTCodingBuilder+FluentStyle.h */, - 46EB2E0000D070 /* JWTCodingBuilder+FluentStyle.m */, - 46EB2E0000CCB0 /* JWTCryptoKey.h */, - 46EB2E0000CCC0 /* JWTCryptoKey.m */, - 46EB2E0000CCF0 /* JWTCryptoKeyExtractor.h */, - 46EB2E0000CD00 /* JWTCryptoKeyExtractor.m */, - 46EB2E0000CCD0 /* JWTCryptoKeyExtractor+FluentStyle.h */, - 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.m */, - 46EB2E0000CD70 /* JWTCryptoSecurity.h */, - 46EB2E0000CD80 /* JWTCryptoSecurity.m */, - 46EB2E0000CD10 /* JWTCryptoSecurity+ErrorHandling.h */, - 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.m */, - 46EB2E0000CD30 /* JWTCryptoSecurity+ExternalRepresentation.h */, - 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.m */, - 46EB2E0000CD50 /* JWTCryptoSecurity+Extraction.h */, - 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.m */, - 46EB2E0000D0B0 /* JWTDeprecations.h */, - 46EB2E0000D0C0 /* JWTErrorDescription.h */, - 46EB2E0000D0D0 /* JWTErrorDescription.m */, - 46EB2E0000CCA0 /* JWTRSAlgorithm.h */, - 46EB2E00030F10 /* Support Files */, + 46EB2E0000CF00 /* JWT.h */, + 46EB2E0000CB40 /* JWTAlgorithm.h */, + 46EB2E0000CBD0 /* JWTAlgorithmAsymmetricBase.h */, + 46EB2E0000CBE0 /* JWTAlgorithmAsymmetricBase.m */, + 46EB2E0000CC30 /* JWTAlgorithmDataHolder.h */, + 46EB2E0000CC40 /* JWTAlgorithmDataHolder.m */, + 46EB2E0000CC10 /* JWTAlgorithmDataHolder+FluentStyle.h */, + 46EB2E0000CC20 /* JWTAlgorithmDataHolder+FluentStyle.m */, + 46EB2E0000CC50 /* JWTAlgorithmDataHolderChain.h */, + 46EB2E0000CC60 /* JWTAlgorithmDataHolderChain.m */, + 46EB2E0000CB70 /* JWTAlgorithmErrorDescription.h */, + 46EB2E0000CB80 /* JWTAlgorithmErrorDescription.m */, + 46EB2E0000CB50 /* JWTAlgorithmErrorDescription+Subclass.h */, + 46EB2E0000CB60 /* JWTAlgorithmErrorDescription+Subclass.m */, + 46EB2E0000CBF0 /* JWTAlgorithmESBase.h */, + 46EB2E0000CC00 /* JWTAlgorithmESBase.m */, + 46EB2E0000CB90 /* JWTAlgorithmFactory.h */, + 46EB2E0000CBA0 /* JWTAlgorithmFactory.m */, + 46EB2E0000CC70 /* JWTAlgorithmHSBase.h */, + 46EB2E0000CC80 /* JWTAlgorithmHSBase.m */, + 46EB2E0000CBB0 /* JWTAlgorithmNone.h */, + 46EB2E0000CBC0 /* JWTAlgorithmNone.m */, + 46EB2E0000CC90 /* JWTAlgorithmRSBase.h */, + 46EB2E0000CCA0 /* JWTAlgorithmRSBase.m */, + 46EB2E0000CF10 /* JWTBase64Coder.h */, + 46EB2E0000CF20 /* JWTBase64Coder.m */, + 46EB2E0000CE20 /* JWTBuilder+FluentStyle.h */, + 46EB2E0000CE30 /* JWTBuilder+FluentStyle.m */, + 46EB2E0000CDA0 /* JWTClaim.h */, + 46EB2E0000CDB0 /* JWTClaim.m */, + 46EB2E0000CDC0 /* JWTClaimsSet.h */, + 46EB2E0000CDD0 /* JWTClaimsSet.m */, + 46EB2E0000CDE0 /* JWTClaimsSetSerializer.h */, + 46EB2E0000CDF0 /* JWTClaimsSetSerializer.m */, + 46EB2E0000CE00 /* JWTClaimsSetVerifier.h */, + 46EB2E0000CE10 /* JWTClaimsSetVerifier.m */, + 46EB2E0000CEC0 /* JWTCoding.h */, + 46EB2E0000CED0 /* JWTCoding.m */, + 46EB2E0000CE40 /* JWTCoding+ResultTypes.h */, + 46EB2E0000CE50 /* JWTCoding+ResultTypes.m */, + 46EB2E0000CE60 /* JWTCoding+VersionOne.h */, + 46EB2E0000CE70 /* JWTCoding+VersionOne.m */, + 46EB2E0000CE80 /* JWTCoding+VersionThree.h */, + 46EB2E0000CE90 /* JWTCoding+VersionThree.m */, + 46EB2E0000CEA0 /* JWTCoding+VersionTwo.h */, + 46EB2E0000CEB0 /* JWTCoding+VersionTwo.m */, + 46EB2E0000CEE0 /* JWTCodingBuilder+FluentStyle.h */, + 46EB2E0000CEF0 /* JWTCodingBuilder+FluentStyle.m */, + 46EB2E0000CCC0 /* JWTCryptoKey.h */, + 46EB2E0000CCD0 /* JWTCryptoKey.m */, + 46EB2E0000CD00 /* JWTCryptoKeyExtractor.h */, + 46EB2E0000CD10 /* JWTCryptoKeyExtractor.m */, + 46EB2E0000CCE0 /* JWTCryptoKeyExtractor+FluentStyle.h */, + 46EB2E0000CCF0 /* JWTCryptoKeyExtractor+FluentStyle.m */, + 46EB2E0000CD80 /* JWTCryptoSecurity.h */, + 46EB2E0000CD90 /* JWTCryptoSecurity.m */, + 46EB2E0000CD20 /* JWTCryptoSecurity+ErrorHandling.h */, + 46EB2E0000CD30 /* JWTCryptoSecurity+ErrorHandling.m */, + 46EB2E0000CD40 /* JWTCryptoSecurity+ExternalRepresentation.h */, + 46EB2E0000CD50 /* JWTCryptoSecurity+ExternalRepresentation.m */, + 46EB2E0000CD60 /* JWTCryptoSecurity+Extraction.h */, + 46EB2E0000CD70 /* JWTCryptoSecurity+Extraction.m */, + 46EB2E0000CF30 /* JWTDeprecations.h */, + 46EB2E0000CF40 /* JWTErrorDescription.h */, + 46EB2E0000CF50 /* JWTErrorDescription.m */, + 46EB2E0000CCB0 /* JWTRSAlgorithm.h */, + 46EB2E00030CA0 /* Support Files */, ); + name = JWT; path = JWT; sourceTree = ""; }; 46EB2E000002F0 /* Libuv-gRPC */ = { isa = PBXGroup; children = ( - 46EB2E0000D0E0 /* Implementation */, - 46EB2E0000D370 /* Interface */, - 46EB2E000312E0 /* Support Files */, + 46EB2E0000CF60 /* Implementation */, + 46EB2E0000D1F0 /* Interface */, + 46EB2E00031070 /* Support Files */, ); + name = "Libuv-gRPC"; path = "Libuv-gRPC"; sourceTree = ""; }; 46EB2E00000300 /* OpenSSL-Universal */ = { isa = PBXGroup; children = ( - 46EB2E00021F10 /* Frameworks */, - 46EB2E00031380 /* Support Files */, + 46EB2E00021DF0 /* Frameworks */, + 46EB2E00031110 /* Support Files */, ); + name = "OpenSSL-Universal"; path = "OpenSSL-Universal"; sourceTree = ""; }; 46EB2E00000310 /* PromisesObjC */ = { isa = PBXGroup; children = ( - 46EB2E0000D630 /* FBLPromise.h */, - 46EB2E0000D500 /* FBLPromise.m */, - 46EB2E0000D520 /* FBLPromise+All.h */, - 46EB2E0000D3F0 /* FBLPromise+All.m */, - 46EB2E0000D530 /* FBLPromise+Always.h */, - 46EB2E0000D400 /* FBLPromise+Always.m */, - 46EB2E0000D540 /* FBLPromise+Any.h */, - 46EB2E0000D410 /* FBLPromise+Any.m */, - 46EB2E0000D550 /* FBLPromise+Async.h */, - 46EB2E0000D420 /* FBLPromise+Async.m */, - 46EB2E0000D560 /* FBLPromise+Await.h */, - 46EB2E0000D430 /* FBLPromise+Await.m */, - 46EB2E0000D570 /* FBLPromise+Catch.h */, - 46EB2E0000D440 /* FBLPromise+Catch.m */, - 46EB2E0000D580 /* FBLPromise+Delay.h */, - 46EB2E0000D450 /* FBLPromise+Delay.m */, - 46EB2E0000D590 /* FBLPromise+Do.h */, - 46EB2E0000D460 /* FBLPromise+Do.m */, - 46EB2E0000D5A0 /* FBLPromise+Race.h */, - 46EB2E0000D470 /* FBLPromise+Race.m */, - 46EB2E0000D5B0 /* FBLPromise+Recover.h */, - 46EB2E0000D480 /* FBLPromise+Recover.m */, - 46EB2E0000D5C0 /* FBLPromise+Reduce.h */, - 46EB2E0000D490 /* FBLPromise+Reduce.m */, - 46EB2E0000D5D0 /* FBLPromise+Retry.h */, - 46EB2E0000D4A0 /* FBLPromise+Retry.m */, - 46EB2E0000D5E0 /* FBLPromise+Testing.h */, - 46EB2E0000D4B0 /* FBLPromise+Testing.m */, - 46EB2E0000D5F0 /* FBLPromise+Then.h */, - 46EB2E0000D4C0 /* FBLPromise+Then.m */, - 46EB2E0000D600 /* FBLPromise+Timeout.h */, - 46EB2E0000D4D0 /* FBLPromise+Timeout.m */, - 46EB2E0000D610 /* FBLPromise+Validate.h */, - 46EB2E0000D4E0 /* FBLPromise+Validate.m */, - 46EB2E0000D620 /* FBLPromise+Wrap.h */, - 46EB2E0000D4F0 /* FBLPromise+Wrap.m */, - 46EB2E0000D640 /* FBLPromiseError.h */, - 46EB2E0000D510 /* FBLPromiseError.m */, - 46EB2E0000D650 /* FBLPromisePrivate.h */, - 46EB2E0000D660 /* FBLPromises.h */, - 46EB2E000316C0 /* Support Files */, + 46EB2E0000D4B0 /* FBLPromise.h */, + 46EB2E0000D380 /* FBLPromise.m */, + 46EB2E0000D3A0 /* FBLPromise+All.h */, + 46EB2E0000D270 /* FBLPromise+All.m */, + 46EB2E0000D3B0 /* FBLPromise+Always.h */, + 46EB2E0000D280 /* FBLPromise+Always.m */, + 46EB2E0000D3C0 /* FBLPromise+Any.h */, + 46EB2E0000D290 /* FBLPromise+Any.m */, + 46EB2E0000D3D0 /* FBLPromise+Async.h */, + 46EB2E0000D2A0 /* FBLPromise+Async.m */, + 46EB2E0000D3E0 /* FBLPromise+Await.h */, + 46EB2E0000D2B0 /* FBLPromise+Await.m */, + 46EB2E0000D3F0 /* FBLPromise+Catch.h */, + 46EB2E0000D2C0 /* FBLPromise+Catch.m */, + 46EB2E0000D400 /* FBLPromise+Delay.h */, + 46EB2E0000D2D0 /* FBLPromise+Delay.m */, + 46EB2E0000D410 /* FBLPromise+Do.h */, + 46EB2E0000D2E0 /* FBLPromise+Do.m */, + 46EB2E0000D420 /* FBLPromise+Race.h */, + 46EB2E0000D2F0 /* FBLPromise+Race.m */, + 46EB2E0000D430 /* FBLPromise+Recover.h */, + 46EB2E0000D300 /* FBLPromise+Recover.m */, + 46EB2E0000D440 /* FBLPromise+Reduce.h */, + 46EB2E0000D310 /* FBLPromise+Reduce.m */, + 46EB2E0000D450 /* FBLPromise+Retry.h */, + 46EB2E0000D320 /* FBLPromise+Retry.m */, + 46EB2E0000D460 /* FBLPromise+Testing.h */, + 46EB2E0000D330 /* FBLPromise+Testing.m */, + 46EB2E0000D470 /* FBLPromise+Then.h */, + 46EB2E0000D340 /* FBLPromise+Then.m */, + 46EB2E0000D480 /* FBLPromise+Timeout.h */, + 46EB2E0000D350 /* FBLPromise+Timeout.m */, + 46EB2E0000D490 /* FBLPromise+Validate.h */, + 46EB2E0000D360 /* FBLPromise+Validate.m */, + 46EB2E0000D4A0 /* FBLPromise+Wrap.h */, + 46EB2E0000D370 /* FBLPromise+Wrap.m */, + 46EB2E0000D4C0 /* FBLPromiseError.h */, + 46EB2E0000D390 /* FBLPromiseError.m */, + 46EB2E0000D4D0 /* FBLPromisePrivate.h */, + 46EB2E0000D4E0 /* FBLPromises.h */, + 46EB2E00031450 /* Support Files */, ); + name = PromisesObjC; path = PromisesObjC; sourceTree = ""; }; 46EB2E00000320 /* RCT-Folly */ = { isa = PBXGroup; children = ( - 46EB2E0000DF30 /* Access.h */, - 46EB2E0000E320 /* Align.h */, - 46EB2E0000E330 /* Aligned.h */, - 46EB2E0000E2A0 /* ApplyTuple.h */, - 46EB2E0000E4C0 /* Arena.h */, - 46EB2E0000E4B0 /* Arena-inl.h */, - 46EB2E0000DF40 /* Array.h */, - 46EB2E0000E5F0 /* Asm.h */, - 46EB2E0000D760 /* Assume.cpp */, - 46EB2E0000E350 /* Assume.h */, - 46EB2E0000E340 /* Assume-inl.h */, - 46EB2E0000E0D0 /* AsyncTrace.h */, - 46EB2E0000E0E0 /* AtFork.h */, - 46EB2E0000E600 /* Atomic.h */, - 46EB2E0000D7F0 /* AtomicHashArray.h */, - 46EB2E0000D7E0 /* AtomicHashArray-inl.h */, - 46EB2E0000D810 /* AtomicHashMap.h */, - 46EB2E0000D800 /* AtomicHashMap-inl.h */, - 46EB2E0000E0F0 /* AtomicHashUtils.h */, - 46EB2E0000D820 /* AtomicIntrusiveLinkedList.h */, - 46EB2E0000D830 /* AtomicLinkedList.h */, - 46EB2E0000D840 /* AtomicUnorderedMap.h */, - 46EB2E0000E100 /* AtomicUnorderedMapUtils.h */, - 46EB2E0000D850 /* Benchmark.h */, - 46EB2E0000D860 /* BenchmarkUtil.h */, - 46EB2E0000DF50 /* BitIterator.h */, - 46EB2E0000E040 /* BitIteratorDetail.h */, - 46EB2E0000D870 /* Bits.h */, - 46EB2E0000E360 /* Bits.h */, - 46EB2E0000E610 /* Builtins.h */, - 46EB2E0000E370 /* Byte.h */, - 46EB2E0000D890 /* CancellationToken.h */, - 46EB2E0000D880 /* CancellationToken-inl.h */, - 46EB2E0000E380 /* CArray.h */, - 46EB2E0000E390 /* Cast.h */, - 46EB2E0000E3A0 /* CheckedMath.h */, - 46EB2E0000E2D0 /* Checksum.h */, - 46EB2E0000D8A0 /* Chrono.h */, - 46EB2E0000D8B0 /* ClockGettimeWrappers.h */, - 46EB2E0000D8C0 /* ConcurrentBitSet.h */, - 46EB2E0000D8D0 /* ConcurrentLazy.h */, - 46EB2E0000D8F0 /* ConcurrentSkipList.h */, - 46EB2E0000D8E0 /* ConcurrentSkipList-inl.h */, - 46EB2E0000E620 /* Config.h */, - 46EB2E0000E630 /* Constexpr.h */, - 46EB2E0000D900 /* ConstexprMath.h */, - 46EB2E0000D910 /* ConstructorCallback.h */, - 46EB2E0000D680 /* Conv.cpp */, - 46EB2E0000D920 /* Conv.h */, - 46EB2E0000D930 /* CPortability.h */, - 46EB2E0000D940 /* CppAttributes.h */, - 46EB2E0000D950 /* CpuId.h */, - 46EB2E0000D770 /* CString.cpp */, - 46EB2E0000E3B0 /* CString.h */, - 46EB2E0000E3C0 /* CustomizationPoint.h */, - 46EB2E0000D960 /* DefaultKeepAliveExecutor.h */, - 46EB2E0000D690 /* Demangle.cpp */, - 46EB2E0000D970 /* Demangle.h */, - 46EB2E0000E640 /* Dirent.h */, - 46EB2E0000D980 /* DiscriminatedPtr.h */, - 46EB2E0000E110 /* DiscriminatedPtrDetail.h */, - 46EB2E0000D700 /* dynamic.cpp */, - 46EB2E0000D9A0 /* dynamic.h */, - 46EB2E0000D990 /* dynamic-inl.h */, - 46EB2E0000D9B0 /* DynamicConverter.h */, - 46EB2E0000E4D0 /* EnableSharedFromThis.h */, - 46EB2E0000DF60 /* Enumerate.h */, - 46EB2E0000E650 /* Event.h */, - 46EB2E0000DF70 /* EvictingCacheMap.h */, - 46EB2E0000D780 /* Exception.cpp */, - 46EB2E0000D9C0 /* Exception.h */, - 46EB2E0000E3D0 /* Exception.h */, - 46EB2E0000D9D0 /* ExceptionString.h */, - 46EB2E0000D9F0 /* ExceptionWrapper.h */, - 46EB2E0000D9E0 /* ExceptionWrapper-inl.h */, - 46EB2E0000DA00 /* Executor.h */, - 46EB2E0000DA10 /* Expected.h */, - 46EB2E0000E3E0 /* Extern.h */, - 46EB2E0000E050 /* F14Defaults.h */, - 46EB2E0000E060 /* F14IntrinsicsAvailability.h */, - 46EB2E0000DF90 /* F14Map.h */, - 46EB2E0000DF80 /* F14Map-fwd.h */, - 46EB2E0000E070 /* F14MapFallback.h */, - 46EB2E0000E080 /* F14Mask.h */, - 46EB2E0000E090 /* F14Policy.h */, - 46EB2E0000DFB0 /* F14Set.h */, - 46EB2E0000DFA0 /* F14Set-fwd.h */, - 46EB2E0000E0A0 /* F14SetFallback.h */, - 46EB2E0000D730 /* F14Table.cpp */, - 46EB2E0000E0B0 /* F14Table.h */, - 46EB2E0000E2E0 /* FarmHash.h */, - 46EB2E0000DA20 /* FBString.h */, - 46EB2E0000DA30 /* FBVector.h */, - 46EB2E0000E660 /* Fcntl.h */, - 46EB2E0000DA40 /* File.h */, - 46EB2E0000E670 /* Filesystem.h */, - 46EB2E0000D6A0 /* FileUtil.cpp */, - 46EB2E0000DA50 /* FileUtil.h */, - 46EB2E0000E120 /* FileUtilDetail.h */, - 46EB2E0000E130 /* FileUtilVectorDetail.h */, - 46EB2E0000DA60 /* Fingerprint.h */, - 46EB2E0000E140 /* FingerprintPolynomial.h */, - 46EB2E0000DA70 /* FixedString.h */, - 46EB2E0000E680 /* FmtCompile.h */, - 46EB2E0000DA80 /* FollyMemcpy.h */, - 46EB2E0000DFD0 /* Foreach.h */, - 46EB2E0000DFC0 /* Foreach-inl.h */, - 46EB2E0000D6B0 /* Format.cpp */, - 46EB2E0000DAA0 /* Format.h */, - 46EB2E0000DA90 /* Format-inl.h */, - 46EB2E0000DAB0 /* FormatArg.h */, - 46EB2E0000DAC0 /* FormatTraits.h */, - 46EB2E0000DAD0 /* Function.h */, - 46EB2E0000E160 /* Futex.h */, - 46EB2E0000E150 /* Futex-inl.h */, - 46EB2E0000E690 /* GFlags.h */, - 46EB2E0000DAE0 /* GLog.h */, - 46EB2E0000E6A0 /* GMock.h */, - 46EB2E0000DAF0 /* GroupVarint.h */, - 46EB2E0000E170 /* GroupVarintDetail.h */, - 46EB2E0000E6B0 /* GTest.h */, - 46EB2E0000DB00 /* Hash.h */, - 46EB2E0000E2F0 /* Hash.h */, - 46EB2E0000DFF0 /* HeterogeneousAccess.h */, - 46EB2E0000DFE0 /* HeterogeneousAccess-fwd.h */, - 46EB2E0000DB10 /* Indestructible.h */, - 46EB2E0000DB20 /* IndexedMemPool.h */, - 46EB2E0000DB30 /* IntrusiveList.h */, - 46EB2E0000E2B0 /* Invoke.h */, - 46EB2E0000E6C0 /* IOVec.h */, - 46EB2E0000E180 /* IPAddress.h */, - 46EB2E0000DB40 /* IPAddress.h */, - 46EB2E0000DB50 /* IPAddressException.h */, - 46EB2E0000E190 /* IPAddressSource.h */, - 46EB2E0000DB60 /* IPAddressV4.h */, - 46EB2E0000DB70 /* IPAddressV6.h */, - 46EB2E0000E000 /* Iterator.h */, - 46EB2E0000E1A0 /* Iterators.h */, - 46EB2E0000D710 /* json.cpp */, - 46EB2E0000DB80 /* json.h */, - 46EB2E0000DB90 /* json_patch.h */, - 46EB2E0000D720 /* json_pointer.cpp */, - 46EB2E0000DBA0 /* json_pointer.h */, - 46EB2E0000E3F0 /* Keep.h */, - 46EB2E0000E400 /* Launder.h */, - 46EB2E0000DBB0 /* Lazy.h */, - 46EB2E0000E6D0 /* Libgen.h */, - 46EB2E0000E6E0 /* Libunwind.h */, - 46EB2E0000DBC0 /* Likely.h */, - 46EB2E0000DBD0 /* MacAddress.h */, - 46EB2E0000E4E0 /* MallctlHelper.h */, - 46EB2E0000E4F0 /* Malloc.h */, - 46EB2E0000E6F0 /* Malloc.h */, - 46EB2E0000D790 /* MallocImpl.cpp */, - 46EB2E0000E580 /* MallocImpl.h */, - 46EB2E0000DBE0 /* MapUtil.h */, - 46EB2E0000DBF0 /* Math.h */, - 46EB2E0000E700 /* Math.h */, - 46EB2E0000DC00 /* Memory.h */, - 46EB2E0000E710 /* Memory.h */, - 46EB2E0000E1B0 /* MemoryIdler.h */, - 46EB2E0000E500 /* MemoryResource.h */, - 46EB2E0000E010 /* Merge.h */, - 46EB2E0000DC10 /* MicroLock.h */, - 46EB2E0000DC20 /* MicroSpinLock.h */, - 46EB2E0000DC30 /* MoveWrapper.h */, - 46EB2E0000DC40 /* MPMCPipeline.h */, - 46EB2E0000E1C0 /* MPMCPipelineDetail.h */, - 46EB2E0000DC50 /* MPMCQueue.h */, - 46EB2E0000D7A0 /* NetOps.cpp */, - 46EB2E0000E590 /* NetOps.h */, - 46EB2E0000E5A0 /* NetOpsDispatcher.h */, - 46EB2E0000E5B0 /* NetworkSocket.h */, - 46EB2E0000E520 /* not_null.h */, - 46EB2E0000E510 /* not_null-inl.h */, - 46EB2E0000E720 /* OpenSSL.h */, - 46EB2E0000DC60 /* Optional.h */, - 46EB2E0000E410 /* Ordering.h */, - 46EB2E0000DC70 /* Overload.h */, - 46EB2E0000DC80 /* PackedSyncPtr.h */, - 46EB2E0000DC90 /* Padded.h */, - 46EB2E0000E2C0 /* Partial.h */, - 46EB2E0000DCB0 /* Poly.h */, - 46EB2E0000DCA0 /* Poly-inl.h */, - 46EB2E0000E1D0 /* PolyDetail.h */, - 46EB2E0000DCC0 /* PolyException.h */, - 46EB2E0000DCD0 /* Portability.h */, - 46EB2E0000DCE0 /* Preprocessor.h */, - 46EB2E0000E420 /* Pretty.h */, - 46EB2E0000DCF0 /* ProducerConsumerQueue.h */, - 46EB2E0000E430 /* PropagateConst.h */, - 46EB2E0000E730 /* PThread.h */, - 46EB2E0000DD10 /* Random.h */, - 46EB2E0000DD00 /* Random-inl.h */, - 46EB2E0000DD20 /* Range.h */, - 46EB2E0000E1E0 /* RangeCommon.h */, - 46EB2E0000E1F0 /* RangeSse42.h */, - 46EB2E0000E530 /* ReentrantAllocator.h */, - 46EB2E0000DD30 /* Replaceable.h */, - 46EB2E0000E440 /* RValueReferenceWrapper.h */, - 46EB2E0000DD40 /* RWSpinLock.h */, - 46EB2E0000D6C0 /* SafeAssert.cpp */, - 46EB2E0000E450 /* SafeAssert.h */, - 46EB2E0000E540 /* SanitizeAddress.h */, - 46EB2E0000E550 /* SanitizeLeak.h */, - 46EB2E0000E740 /* Sched.h */, - 46EB2E0000D6E0 /* ScopeGuard.cpp */, - 46EB2E0000DD50 /* ScopeGuard.h */, - 46EB2E0000DD60 /* SharedMutex.h */, - 46EB2E0000E200 /* Singleton.h */, - 46EB2E0000DD80 /* Singleton.h */, - 46EB2E0000DD70 /* Singleton-inl.h */, - 46EB2E0000E210 /* SingletonStackTrace.h */, - 46EB2E0000DD90 /* SingletonThreadLocal.h */, - 46EB2E0000E220 /* SlowFingerprint.h */, - 46EB2E0000DDA0 /* small_vector.h */, - 46EB2E0000DDB0 /* SocketAddress.h */, - 46EB2E0000E230 /* SocketFastOpen.h */, - 46EB2E0000E5E0 /* SocketFileDescriptorMap.h */, - 46EB2E0000E750 /* Sockets.h */, - 46EB2E0000DDC0 /* sorted_vector_types.h */, - 46EB2E0000E020 /* SparseByteSet.h */, - 46EB2E0000DDD0 /* SpinLock.h */, - 46EB2E0000E300 /* SpookyHashV1.h */, - 46EB2E0000D750 /* SpookyHashV2.cpp */, - 46EB2E0000E310 /* SpookyHashV2.h */, - 46EB2E0000E240 /* Sse.h */, - 46EB2E0000E460 /* StaticConst.h */, - 46EB2E0000E250 /* StaticSingletonManager.h */, - 46EB2E0000E760 /* Stdio.h */, - 46EB2E0000E770 /* Stdlib.h */, - 46EB2E0000DDE0 /* stop_watch.h */, - 46EB2E0000D670 /* String.cpp */, - 46EB2E0000E780 /* String.h */, - 46EB2E0000DE00 /* String.h */, - 46EB2E0000DDF0 /* String-inl.h */, - 46EB2E0000DE10 /* Subprocess.h */, - 46EB2E0000DE20 /* Synchronized.h */, - 46EB2E0000DE30 /* SynchronizedPtr.h */, - 46EB2E0000E790 /* SysFile.h */, - 46EB2E0000E7A0 /* Syslog.h */, - 46EB2E0000E7B0 /* SysMembarrier.h */, - 46EB2E0000E7C0 /* SysMman.h */, - 46EB2E0000E7D0 /* SysResource.h */, - 46EB2E0000E7E0 /* SysStat.h */, - 46EB2E0000E7F0 /* SysSyscall.h */, - 46EB2E0000E800 /* SysTime.h */, - 46EB2E0000E810 /* SysTypes.h */, - 46EB2E0000D7B0 /* SysUio.cpp */, - 46EB2E0000E820 /* SysUio.h */, - 46EB2E0000E5C0 /* TcpInfo.h */, - 46EB2E0000E5D0 /* TcpInfoTypes.h */, - 46EB2E0000E560 /* ThreadCachedArena.h */, - 46EB2E0000DE40 /* ThreadCachedInt.h */, - 46EB2E0000D7D0 /* ThreadId.cpp */, - 46EB2E0000D7C0 /* ThreadId.h */, - 46EB2E0000DE50 /* ThreadLocal.h */, - 46EB2E0000E260 /* ThreadLocalDetail.h */, - 46EB2E0000E470 /* Thunk.h */, - 46EB2E0000E830 /* Time.h */, - 46EB2E0000DE60 /* TimeoutQueue.h */, - 46EB2E0000D6D0 /* ToAscii.cpp */, - 46EB2E0000E480 /* ToAscii.h */, - 46EB2E0000DE70 /* TokenBucket.h */, - 46EB2E0000DE80 /* Traits.h */, - 46EB2E0000DEA0 /* Try.h */, - 46EB2E0000DE90 /* Try-inl.h */, - 46EB2E0000E270 /* TurnSequencer.h */, - 46EB2E0000E490 /* TypeInfo.h */, - 46EB2E0000E280 /* TypeList.h */, - 46EB2E0000E4A0 /* UncaughtExceptions.h */, - 46EB2E0000D6F0 /* Unicode.cpp */, - 46EB2E0000DEB0 /* Unicode.h */, - 46EB2E0000E570 /* UninitializedMemoryHacks.h */, - 46EB2E0000D740 /* UniqueInstance.cpp */, - 46EB2E0000E290 /* UniqueInstance.h */, - 46EB2E0000E840 /* Unistd.h */, - 46EB2E0000DEC0 /* Unit.h */, - 46EB2E0000DEE0 /* Uri.h */, - 46EB2E0000DED0 /* Uri-inl.h */, - 46EB2E0000DEF0 /* UTF8String.h */, - 46EB2E0000E0C0 /* Util.h */, - 46EB2E0000DF00 /* Utility.h */, - 46EB2E0000DF10 /* Varint.h */, - 46EB2E0000E030 /* View.h */, - 46EB2E0000DF20 /* VirtualExecutor.h */, - 46EB2E0000E850 /* Windows.h */, - 46EB2E0000E860 /* Futures */, - 46EB2E00034390 /* Support Files */, + 46EB2E0000DDB0 /* Access.h */, + 46EB2E0000E1A0 /* Align.h */, + 46EB2E0000E1B0 /* Aligned.h */, + 46EB2E0000E120 /* ApplyTuple.h */, + 46EB2E0000E340 /* Arena.h */, + 46EB2E0000E330 /* Arena-inl.h */, + 46EB2E0000DDC0 /* Array.h */, + 46EB2E0000E470 /* Asm.h */, + 46EB2E0000D5E0 /* Assume.cpp */, + 46EB2E0000E1D0 /* Assume.h */, + 46EB2E0000E1C0 /* Assume-inl.h */, + 46EB2E0000DF50 /* AsyncTrace.h */, + 46EB2E0000DF60 /* AtFork.h */, + 46EB2E0000E480 /* Atomic.h */, + 46EB2E0000D670 /* AtomicHashArray.h */, + 46EB2E0000D660 /* AtomicHashArray-inl.h */, + 46EB2E0000D690 /* AtomicHashMap.h */, + 46EB2E0000D680 /* AtomicHashMap-inl.h */, + 46EB2E0000DF70 /* AtomicHashUtils.h */, + 46EB2E0000D6A0 /* AtomicIntrusiveLinkedList.h */, + 46EB2E0000D6B0 /* AtomicLinkedList.h */, + 46EB2E0000D6C0 /* AtomicUnorderedMap.h */, + 46EB2E0000DF80 /* AtomicUnorderedMapUtils.h */, + 46EB2E0000D6D0 /* Benchmark.h */, + 46EB2E0000D6E0 /* BenchmarkUtil.h */, + 46EB2E0000DDD0 /* BitIterator.h */, + 46EB2E0000DEC0 /* BitIteratorDetail.h */, + 46EB2E0000D6F0 /* Bits.h */, + 46EB2E0000E1E0 /* Bits.h */, + 46EB2E0000E490 /* Builtins.h */, + 46EB2E0000E1F0 /* Byte.h */, + 46EB2E0000D710 /* CancellationToken.h */, + 46EB2E0000D700 /* CancellationToken-inl.h */, + 46EB2E0000E200 /* CArray.h */, + 46EB2E0000E210 /* Cast.h */, + 46EB2E0000E220 /* CheckedMath.h */, + 46EB2E0000E150 /* Checksum.h */, + 46EB2E0000D720 /* Chrono.h */, + 46EB2E0000D730 /* ClockGettimeWrappers.h */, + 46EB2E0000D740 /* ConcurrentBitSet.h */, + 46EB2E0000D750 /* ConcurrentLazy.h */, + 46EB2E0000D770 /* ConcurrentSkipList.h */, + 46EB2E0000D760 /* ConcurrentSkipList-inl.h */, + 46EB2E0000E4A0 /* Config.h */, + 46EB2E0000E4B0 /* Constexpr.h */, + 46EB2E0000D780 /* ConstexprMath.h */, + 46EB2E0000D790 /* ConstructorCallback.h */, + 46EB2E0000D500 /* Conv.cpp */, + 46EB2E0000D7A0 /* Conv.h */, + 46EB2E0000D7B0 /* CPortability.h */, + 46EB2E0000D7C0 /* CppAttributes.h */, + 46EB2E0000D7D0 /* CpuId.h */, + 46EB2E0000D5F0 /* CString.cpp */, + 46EB2E0000E230 /* CString.h */, + 46EB2E0000E240 /* CustomizationPoint.h */, + 46EB2E0000D7E0 /* DefaultKeepAliveExecutor.h */, + 46EB2E0000D510 /* Demangle.cpp */, + 46EB2E0000D7F0 /* Demangle.h */, + 46EB2E0000E4C0 /* Dirent.h */, + 46EB2E0000D800 /* DiscriminatedPtr.h */, + 46EB2E0000DF90 /* DiscriminatedPtrDetail.h */, + 46EB2E0000D580 /* dynamic.cpp */, + 46EB2E0000D820 /* dynamic.h */, + 46EB2E0000D810 /* dynamic-inl.h */, + 46EB2E0000D830 /* DynamicConverter.h */, + 46EB2E0000E350 /* EnableSharedFromThis.h */, + 46EB2E0000DDE0 /* Enumerate.h */, + 46EB2E0000E4D0 /* Event.h */, + 46EB2E0000DDF0 /* EvictingCacheMap.h */, + 46EB2E0000D600 /* Exception.cpp */, + 46EB2E0000D840 /* Exception.h */, + 46EB2E0000E250 /* Exception.h */, + 46EB2E0000D850 /* ExceptionString.h */, + 46EB2E0000D870 /* ExceptionWrapper.h */, + 46EB2E0000D860 /* ExceptionWrapper-inl.h */, + 46EB2E0000D880 /* Executor.h */, + 46EB2E0000D890 /* Expected.h */, + 46EB2E0000E260 /* Extern.h */, + 46EB2E0000DED0 /* F14Defaults.h */, + 46EB2E0000DEE0 /* F14IntrinsicsAvailability.h */, + 46EB2E0000DE10 /* F14Map.h */, + 46EB2E0000DE00 /* F14Map-fwd.h */, + 46EB2E0000DEF0 /* F14MapFallback.h */, + 46EB2E0000DF00 /* F14Mask.h */, + 46EB2E0000DF10 /* F14Policy.h */, + 46EB2E0000DE30 /* F14Set.h */, + 46EB2E0000DE20 /* F14Set-fwd.h */, + 46EB2E0000DF20 /* F14SetFallback.h */, + 46EB2E0000D5B0 /* F14Table.cpp */, + 46EB2E0000DF30 /* F14Table.h */, + 46EB2E0000E160 /* FarmHash.h */, + 46EB2E0000D8A0 /* FBString.h */, + 46EB2E0000D8B0 /* FBVector.h */, + 46EB2E0000E4E0 /* Fcntl.h */, + 46EB2E0000D8C0 /* File.h */, + 46EB2E0000E4F0 /* Filesystem.h */, + 46EB2E0000D520 /* FileUtil.cpp */, + 46EB2E0000D8D0 /* FileUtil.h */, + 46EB2E0000DFA0 /* FileUtilDetail.h */, + 46EB2E0000DFB0 /* FileUtilVectorDetail.h */, + 46EB2E0000D8E0 /* Fingerprint.h */, + 46EB2E0000DFC0 /* FingerprintPolynomial.h */, + 46EB2E0000D8F0 /* FixedString.h */, + 46EB2E0000E500 /* FmtCompile.h */, + 46EB2E0000D900 /* FollyMemcpy.h */, + 46EB2E0000DE50 /* Foreach.h */, + 46EB2E0000DE40 /* Foreach-inl.h */, + 46EB2E0000D530 /* Format.cpp */, + 46EB2E0000D920 /* Format.h */, + 46EB2E0000D910 /* Format-inl.h */, + 46EB2E0000D930 /* FormatArg.h */, + 46EB2E0000D940 /* FormatTraits.h */, + 46EB2E0000D950 /* Function.h */, + 46EB2E0000DFE0 /* Futex.h */, + 46EB2E0000DFD0 /* Futex-inl.h */, + 46EB2E0000E510 /* GFlags.h */, + 46EB2E0000D960 /* GLog.h */, + 46EB2E0000E520 /* GMock.h */, + 46EB2E0000D970 /* GroupVarint.h */, + 46EB2E0000DFF0 /* GroupVarintDetail.h */, + 46EB2E0000E530 /* GTest.h */, + 46EB2E0000D980 /* Hash.h */, + 46EB2E0000E170 /* Hash.h */, + 46EB2E0000DE70 /* HeterogeneousAccess.h */, + 46EB2E0000DE60 /* HeterogeneousAccess-fwd.h */, + 46EB2E0000D990 /* Indestructible.h */, + 46EB2E0000D9A0 /* IndexedMemPool.h */, + 46EB2E0000D9B0 /* IntrusiveList.h */, + 46EB2E0000E130 /* Invoke.h */, + 46EB2E0000E540 /* IOVec.h */, + 46EB2E0000E000 /* IPAddress.h */, + 46EB2E0000D9C0 /* IPAddress.h */, + 46EB2E0000D9D0 /* IPAddressException.h */, + 46EB2E0000E010 /* IPAddressSource.h */, + 46EB2E0000D9E0 /* IPAddressV4.h */, + 46EB2E0000D9F0 /* IPAddressV6.h */, + 46EB2E0000DE80 /* Iterator.h */, + 46EB2E0000E020 /* Iterators.h */, + 46EB2E0000D590 /* json.cpp */, + 46EB2E0000DA00 /* json.h */, + 46EB2E0000DA10 /* json_patch.h */, + 46EB2E0000D5A0 /* json_pointer.cpp */, + 46EB2E0000DA20 /* json_pointer.h */, + 46EB2E0000E270 /* Keep.h */, + 46EB2E0000E280 /* Launder.h */, + 46EB2E0000DA30 /* Lazy.h */, + 46EB2E0000E550 /* Libgen.h */, + 46EB2E0000E560 /* Libunwind.h */, + 46EB2E0000DA40 /* Likely.h */, + 46EB2E0000DA50 /* MacAddress.h */, + 46EB2E0000E360 /* MallctlHelper.h */, + 46EB2E0000E370 /* Malloc.h */, + 46EB2E0000E570 /* Malloc.h */, + 46EB2E0000D610 /* MallocImpl.cpp */, + 46EB2E0000E400 /* MallocImpl.h */, + 46EB2E0000DA60 /* MapUtil.h */, + 46EB2E0000DA70 /* Math.h */, + 46EB2E0000E580 /* Math.h */, + 46EB2E0000DA80 /* Memory.h */, + 46EB2E0000E590 /* Memory.h */, + 46EB2E0000E030 /* MemoryIdler.h */, + 46EB2E0000E380 /* MemoryResource.h */, + 46EB2E0000DE90 /* Merge.h */, + 46EB2E0000DA90 /* MicroLock.h */, + 46EB2E0000DAA0 /* MicroSpinLock.h */, + 46EB2E0000DAB0 /* MoveWrapper.h */, + 46EB2E0000DAC0 /* MPMCPipeline.h */, + 46EB2E0000E040 /* MPMCPipelineDetail.h */, + 46EB2E0000DAD0 /* MPMCQueue.h */, + 46EB2E0000D620 /* NetOps.cpp */, + 46EB2E0000E410 /* NetOps.h */, + 46EB2E0000E420 /* NetOpsDispatcher.h */, + 46EB2E0000E430 /* NetworkSocket.h */, + 46EB2E0000E3A0 /* not_null.h */, + 46EB2E0000E390 /* not_null-inl.h */, + 46EB2E0000E5A0 /* OpenSSL.h */, + 46EB2E0000DAE0 /* Optional.h */, + 46EB2E0000E290 /* Ordering.h */, + 46EB2E0000DAF0 /* Overload.h */, + 46EB2E0000DB00 /* PackedSyncPtr.h */, + 46EB2E0000DB10 /* Padded.h */, + 46EB2E0000E140 /* Partial.h */, + 46EB2E0000DB30 /* Poly.h */, + 46EB2E0000DB20 /* Poly-inl.h */, + 46EB2E0000E050 /* PolyDetail.h */, + 46EB2E0000DB40 /* PolyException.h */, + 46EB2E0000DB50 /* Portability.h */, + 46EB2E0000DB60 /* Preprocessor.h */, + 46EB2E0000E2A0 /* Pretty.h */, + 46EB2E0000DB70 /* ProducerConsumerQueue.h */, + 46EB2E0000E2B0 /* PropagateConst.h */, + 46EB2E0000E5B0 /* PThread.h */, + 46EB2E0000DB90 /* Random.h */, + 46EB2E0000DB80 /* Random-inl.h */, + 46EB2E0000DBA0 /* Range.h */, + 46EB2E0000E060 /* RangeCommon.h */, + 46EB2E0000E070 /* RangeSse42.h */, + 46EB2E0000E3B0 /* ReentrantAllocator.h */, + 46EB2E0000DBB0 /* Replaceable.h */, + 46EB2E0000E2C0 /* RValueReferenceWrapper.h */, + 46EB2E0000DBC0 /* RWSpinLock.h */, + 46EB2E0000D540 /* SafeAssert.cpp */, + 46EB2E0000E2D0 /* SafeAssert.h */, + 46EB2E0000E3C0 /* SanitizeAddress.h */, + 46EB2E0000E3D0 /* SanitizeLeak.h */, + 46EB2E0000E5C0 /* Sched.h */, + 46EB2E0000D560 /* ScopeGuard.cpp */, + 46EB2E0000DBD0 /* ScopeGuard.h */, + 46EB2E0000DBE0 /* SharedMutex.h */, + 46EB2E0000E080 /* Singleton.h */, + 46EB2E0000DC00 /* Singleton.h */, + 46EB2E0000DBF0 /* Singleton-inl.h */, + 46EB2E0000E090 /* SingletonStackTrace.h */, + 46EB2E0000DC10 /* SingletonThreadLocal.h */, + 46EB2E0000E0A0 /* SlowFingerprint.h */, + 46EB2E0000DC20 /* small_vector.h */, + 46EB2E0000DC30 /* SocketAddress.h */, + 46EB2E0000E0B0 /* SocketFastOpen.h */, + 46EB2E0000E460 /* SocketFileDescriptorMap.h */, + 46EB2E0000E5D0 /* Sockets.h */, + 46EB2E0000DC40 /* sorted_vector_types.h */, + 46EB2E0000DEA0 /* SparseByteSet.h */, + 46EB2E0000DC50 /* SpinLock.h */, + 46EB2E0000E180 /* SpookyHashV1.h */, + 46EB2E0000D5D0 /* SpookyHashV2.cpp */, + 46EB2E0000E190 /* SpookyHashV2.h */, + 46EB2E0000E0C0 /* Sse.h */, + 46EB2E0000E2E0 /* StaticConst.h */, + 46EB2E0000E0D0 /* StaticSingletonManager.h */, + 46EB2E0000E5E0 /* Stdio.h */, + 46EB2E0000E5F0 /* Stdlib.h */, + 46EB2E0000DC60 /* stop_watch.h */, + 46EB2E0000D4F0 /* String.cpp */, + 46EB2E0000E600 /* String.h */, + 46EB2E0000DC80 /* String.h */, + 46EB2E0000DC70 /* String-inl.h */, + 46EB2E0000DC90 /* Subprocess.h */, + 46EB2E0000DCA0 /* Synchronized.h */, + 46EB2E0000DCB0 /* SynchronizedPtr.h */, + 46EB2E0000E610 /* SysFile.h */, + 46EB2E0000E620 /* Syslog.h */, + 46EB2E0000E630 /* SysMembarrier.h */, + 46EB2E0000E640 /* SysMman.h */, + 46EB2E0000E650 /* SysResource.h */, + 46EB2E0000E660 /* SysStat.h */, + 46EB2E0000E670 /* SysSyscall.h */, + 46EB2E0000E680 /* SysTime.h */, + 46EB2E0000E690 /* SysTypes.h */, + 46EB2E0000D630 /* SysUio.cpp */, + 46EB2E0000E6A0 /* SysUio.h */, + 46EB2E0000E440 /* TcpInfo.h */, + 46EB2E0000E450 /* TcpInfoTypes.h */, + 46EB2E0000E3E0 /* ThreadCachedArena.h */, + 46EB2E0000DCC0 /* ThreadCachedInt.h */, + 46EB2E0000D650 /* ThreadId.cpp */, + 46EB2E0000D640 /* ThreadId.h */, + 46EB2E0000DCD0 /* ThreadLocal.h */, + 46EB2E0000E0E0 /* ThreadLocalDetail.h */, + 46EB2E0000E2F0 /* Thunk.h */, + 46EB2E0000E6B0 /* Time.h */, + 46EB2E0000DCE0 /* TimeoutQueue.h */, + 46EB2E0000D550 /* ToAscii.cpp */, + 46EB2E0000E300 /* ToAscii.h */, + 46EB2E0000DCF0 /* TokenBucket.h */, + 46EB2E0000DD00 /* Traits.h */, + 46EB2E0000DD20 /* Try.h */, + 46EB2E0000DD10 /* Try-inl.h */, + 46EB2E0000E0F0 /* TurnSequencer.h */, + 46EB2E0000E310 /* TypeInfo.h */, + 46EB2E0000E100 /* TypeList.h */, + 46EB2E0000E320 /* UncaughtExceptions.h */, + 46EB2E0000D570 /* Unicode.cpp */, + 46EB2E0000DD30 /* Unicode.h */, + 46EB2E0000E3F0 /* UninitializedMemoryHacks.h */, + 46EB2E0000D5C0 /* UniqueInstance.cpp */, + 46EB2E0000E110 /* UniqueInstance.h */, + 46EB2E0000E6C0 /* Unistd.h */, + 46EB2E0000DD40 /* Unit.h */, + 46EB2E0000DD60 /* Uri.h */, + 46EB2E0000DD50 /* Uri-inl.h */, + 46EB2E0000DD70 /* UTF8String.h */, + 46EB2E0000DF40 /* Util.h */, + 46EB2E0000DD80 /* Utility.h */, + 46EB2E0000DD90 /* Varint.h */, + 46EB2E0000DEB0 /* View.h */, + 46EB2E0000DDA0 /* VirtualExecutor.h */, + 46EB2E0000E6D0 /* Windows.h */, + 46EB2E0000E6E0 /* Futures */, + 46EB2E00034120 /* Support Files */, ); + name = "RCT-Folly"; path = "RCT-Folly"; sourceTree = ""; }; 46EB2E00000330 /* RCTRequired */ = { isa = PBXGroup; children = ( - 46EB2E00010250 /* RCTRequired.h */, - 46EB2E000221C0 /* Pod */, - 46EB2E00034460 /* Support Files */, + 46EB2E000100D0 /* RCTRequired.h */, + 46EB2E000220A0 /* Pod */, + 46EB2E000341F0 /* Support Files */, ); name = RCTRequired; path = "../../node_modules/react-native/Libraries/RCTRequired"; @@ -24547,12 +24538,12 @@ 46EB2E00000340 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 46EB2E00010260 /* RCTConvertHelpers.h */, - 46EB2E00010270 /* RCTConvertHelpers.mm */, - 46EB2E00010280 /* RCTTypedModuleConstants.h */, - 46EB2E00010290 /* RCTTypedModuleConstants.mm */, - 46EB2E000221E0 /* Pod */, - 46EB2E00034550 /* Support Files */, + 46EB2E000100E0 /* RCTConvertHelpers.h */, + 46EB2E000100F0 /* RCTConvertHelpers.mm */, + 46EB2E00010100 /* RCTTypedModuleConstants.h */, + 46EB2E00010110 /* RCTTypedModuleConstants.mm */, + 46EB2E000220C0 /* Pod */, + 46EB2E000342E0 /* Support Files */, ); name = RCTTypeSafety; path = "../../node_modules/react-native/Libraries/TypeSafety"; @@ -24561,11 +24552,11 @@ 46EB2E00000350 /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - 46EB2E000102A0 /* RNCAsyncStorage.h */, - 46EB2E000102B0 /* RNCAsyncStorage.m */, - 46EB2E000102C0 /* RNCAsyncStorageDelegate.h */, - 46EB2E00022200 /* Pod */, - 46EB2E00034690 /* Support Files */, + 46EB2E00010120 /* RNCAsyncStorage.h */, + 46EB2E00010130 /* RNCAsyncStorage.m */, + 46EB2E00010140 /* RNCAsyncStorageDelegate.h */, + 46EB2E000220E0 /* Pod */, + 46EB2E00034420 /* Support Files */, ); name = RNCAsyncStorage; path = "../../node_modules/@react-native-community/async-storage"; @@ -24574,12 +24565,12 @@ 46EB2E00000360 /* RNCMaskedView */ = { isa = PBXGroup; children = ( - 46EB2E000102D0 /* RNCMaskedView.h */, - 46EB2E000102E0 /* RNCMaskedView.m */, - 46EB2E000102F0 /* RNCMaskedViewManager.h */, - 46EB2E00010300 /* RNCMaskedViewManager.m */, - 46EB2E00022240 /* Pod */, - 46EB2E000347B0 /* Support Files */, + 46EB2E00010150 /* RNCMaskedView.h */, + 46EB2E00010160 /* RNCMaskedView.m */, + 46EB2E00010170 /* RNCMaskedViewManager.h */, + 46EB2E00010180 /* RNCMaskedViewManager.m */, + 46EB2E00022120 /* Pod */, + 46EB2E00034540 /* Support Files */, ); name = RNCMaskedView; path = "../../node_modules/@react-native-community/masked-view"; @@ -24588,14 +24579,14 @@ 46EB2E00000370 /* RNCPicker */ = { isa = PBXGroup; children = ( - 46EB2E00010310 /* RNCPicker.h */, - 46EB2E00010320 /* RNCPicker.m */, - 46EB2E00010330 /* RNCPickerLabel.h */, - 46EB2E00010340 /* RNCPickerLabel.m */, - 46EB2E00010350 /* RNCPickerManager.h */, - 46EB2E00010360 /* RNCPickerManager.m */, - 46EB2E00022270 /* Pod */, - 46EB2E000348F0 /* Support Files */, + 46EB2E00010190 /* RNCPicker.h */, + 46EB2E000101A0 /* RNCPicker.m */, + 46EB2E000101B0 /* RNCPickerLabel.h */, + 46EB2E000101C0 /* RNCPickerLabel.m */, + 46EB2E000101D0 /* RNCPickerManager.h */, + 46EB2E000101E0 /* RNCPickerManager.m */, + 46EB2E00022150 /* Pod */, + 46EB2E00034680 /* Support Files */, ); name = RNCPicker; path = "../../node_modules/@react-native-picker/picker"; @@ -24604,14 +24595,14 @@ 46EB2E00000380 /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 46EB2E00010370 /* DeviceUID.h */, - 46EB2E00010380 /* DeviceUID.m */, - 46EB2E00010390 /* EnvironmentUtil.h */, - 46EB2E000103A0 /* EnvironmentUtil.m */, - 46EB2E000103B0 /* RNDeviceInfo.h */, - 46EB2E000103C0 /* RNDeviceInfo.m */, - 46EB2E000222B0 /* Pod */, - 46EB2E00034A30 /* Support Files */, + 46EB2E000101F0 /* DeviceUID.h */, + 46EB2E00010200 /* DeviceUID.m */, + 46EB2E00010210 /* EnvironmentUtil.h */, + 46EB2E00010220 /* EnvironmentUtil.m */, + 46EB2E00010230 /* RNDeviceInfo.h */, + 46EB2E00010240 /* RNDeviceInfo.m */, + 46EB2E00022190 /* Pod */, + 46EB2E000347C0 /* Support Files */, ); name = RNDeviceInfo; path = "../../node_modules/react-native-device-info"; @@ -24620,10 +24611,10 @@ 46EB2E00000390 /* RNFBAnalytics */ = { isa = PBXGroup; children = ( - 46EB2E000103D0 /* RNFBAnalyticsModule.h */, - 46EB2E000103E0 /* RNFBAnalyticsModule.m */, - 46EB2E000222F0 /* Pod */, - 46EB2E00034B30 /* Support Files */, + 46EB2E00010250 /* RNFBAnalyticsModule.h */, + 46EB2E00010260 /* RNFBAnalyticsModule.m */, + 46EB2E000221D0 /* Pod */, + 46EB2E000348C0 /* Support Files */, ); name = RNFBAnalytics; path = "../../node_modules/@react-native-firebase/analytics"; @@ -24632,28 +24623,28 @@ 46EB2E000003A0 /* RNFBApp */ = { isa = PBXGroup; children = ( - 46EB2E000103F0 /* RCTConvert+FIRApp.h */, - 46EB2E00010400 /* RCTConvert+FIRApp.m */, - 46EB2E00010410 /* RCTConvert+FIROptions.h */, - 46EB2E00010420 /* RCTConvert+FIROptions.m */, - 46EB2E00010430 /* RNFBAppModule.h */, - 46EB2E00010440 /* RNFBAppModule.m */, - 46EB2E00010450 /* RNFBJSON.h */, - 46EB2E00010460 /* RNFBJSON.m */, - 46EB2E00010470 /* RNFBMeta.h */, - 46EB2E00010480 /* RNFBMeta.m */, - 46EB2E00010490 /* RNFBPreferences.h */, - 46EB2E000104A0 /* RNFBPreferences.m */, - 46EB2E000104B0 /* RNFBRCTEventEmitter.h */, - 46EB2E000104C0 /* RNFBRCTEventEmitter.m */, - 46EB2E000104D0 /* RNFBSharedUtils.h */, - 46EB2E000104E0 /* RNFBSharedUtils.m */, - 46EB2E000104F0 /* RNFBUtilsModule.h */, - 46EB2E00010500 /* RNFBUtilsModule.m */, - 46EB2E00010510 /* RNFBVersion.h */, - 46EB2E00010520 /* RNFBVersion.m */, - 46EB2E00022330 /* Pod */, - 46EB2E00034D50 /* Support Files */, + 46EB2E00010270 /* RCTConvert+FIRApp.h */, + 46EB2E00010280 /* RCTConvert+FIRApp.m */, + 46EB2E00010290 /* RCTConvert+FIROptions.h */, + 46EB2E000102A0 /* RCTConvert+FIROptions.m */, + 46EB2E000102B0 /* RNFBAppModule.h */, + 46EB2E000102C0 /* RNFBAppModule.m */, + 46EB2E000102D0 /* RNFBJSON.h */, + 46EB2E000102E0 /* RNFBJSON.m */, + 46EB2E000102F0 /* RNFBMeta.h */, + 46EB2E00010300 /* RNFBMeta.m */, + 46EB2E00010310 /* RNFBPreferences.h */, + 46EB2E00010320 /* RNFBPreferences.m */, + 46EB2E00010330 /* RNFBRCTEventEmitter.h */, + 46EB2E00010340 /* RNFBRCTEventEmitter.m */, + 46EB2E00010350 /* RNFBSharedUtils.h */, + 46EB2E00010360 /* RNFBSharedUtils.m */, + 46EB2E00010370 /* RNFBUtilsModule.h */, + 46EB2E00010380 /* RNFBUtilsModule.m */, + 46EB2E00010390 /* RNFBVersion.h */, + 46EB2E000103A0 /* RNFBVersion.m */, + 46EB2E00022210 /* Pod */, + 46EB2E00034AE0 /* Support Files */, ); name = RNFBApp; path = "../../node_modules/@react-native-firebase/app"; @@ -24662,10 +24653,10 @@ 46EB2E000003B0 /* RNFBAuth */ = { isa = PBXGroup; children = ( - 46EB2E00010530 /* RNFBAuthModule.h */, - 46EB2E00010540 /* RNFBAuthModule.m */, - 46EB2E00022370 /* Pod */, - 46EB2E00034E50 /* Support Files */, + 46EB2E000103B0 /* RNFBAuthModule.h */, + 46EB2E000103C0 /* RNFBAuthModule.m */, + 46EB2E00022250 /* Pod */, + 46EB2E00034BE0 /* Support Files */, ); name = RNFBAuth; path = "../../node_modules/@react-native-firebase/auth"; @@ -24674,14 +24665,14 @@ 46EB2E000003C0 /* RNFBCrashlytics */ = { isa = PBXGroup; children = ( - 46EB2E00010550 /* RNFBCrashlyticsInitProvider.h */, - 46EB2E00010560 /* RNFBCrashlyticsInitProvider.m */, - 46EB2E00010570 /* RNFBCrashlyticsModule.h */, - 46EB2E00010580 /* RNFBCrashlyticsModule.m */, - 46EB2E00010590 /* RNFBCrashlyticsNativeHelper.h */, - 46EB2E000105A0 /* RNFBCrashlyticsNativeHelper.m */, - 46EB2E000223B0 /* Pod */, - 46EB2E00034F90 /* Support Files */, + 46EB2E000103D0 /* RNFBCrashlyticsInitProvider.h */, + 46EB2E000103E0 /* RNFBCrashlyticsInitProvider.m */, + 46EB2E000103F0 /* RNFBCrashlyticsModule.h */, + 46EB2E00010400 /* RNFBCrashlyticsModule.m */, + 46EB2E00010410 /* RNFBCrashlyticsNativeHelper.h */, + 46EB2E00010420 /* RNFBCrashlyticsNativeHelper.m */, + 46EB2E00022290 /* Pod */, + 46EB2E00034D20 /* Support Files */, ); name = RNFBCrashlytics; path = "../../node_modules/@react-native-firebase/crashlytics"; @@ -24690,22 +24681,22 @@ 46EB2E000003D0 /* RNFBDatabase */ = { isa = PBXGroup; children = ( - 46EB2E000105B0 /* RNFBDatabaseCommon.h */, - 46EB2E000105C0 /* RNFBDatabaseCommon.m */, - 46EB2E000105D0 /* RNFBDatabaseModule.h */, - 46EB2E000105E0 /* RNFBDatabaseModule.m */, - 46EB2E000105F0 /* RNFBDatabaseOnDisconnectModule.h */, - 46EB2E00010600 /* RNFBDatabaseOnDisconnectModule.m */, - 46EB2E00010610 /* RNFBDatabaseQuery.h */, - 46EB2E00010620 /* RNFBDatabaseQuery.m */, - 46EB2E00010630 /* RNFBDatabaseQueryModule.h */, - 46EB2E00010640 /* RNFBDatabaseQueryModule.m */, - 46EB2E00010650 /* RNFBDatabaseReferenceModule.h */, - 46EB2E00010660 /* RNFBDatabaseReferenceModule.m */, - 46EB2E00010670 /* RNFBDatabaseTransactionModule.h */, - 46EB2E00010680 /* RNFBDatabaseTransactionModule.m */, - 46EB2E000223F0 /* Pod */, - 46EB2E00035150 /* Support Files */, + 46EB2E00010430 /* RNFBDatabaseCommon.h */, + 46EB2E00010440 /* RNFBDatabaseCommon.m */, + 46EB2E00010450 /* RNFBDatabaseModule.h */, + 46EB2E00010460 /* RNFBDatabaseModule.m */, + 46EB2E00010470 /* RNFBDatabaseOnDisconnectModule.h */, + 46EB2E00010480 /* RNFBDatabaseOnDisconnectModule.m */, + 46EB2E00010490 /* RNFBDatabaseQuery.h */, + 46EB2E000104A0 /* RNFBDatabaseQuery.m */, + 46EB2E000104B0 /* RNFBDatabaseQueryModule.h */, + 46EB2E000104C0 /* RNFBDatabaseQueryModule.m */, + 46EB2E000104D0 /* RNFBDatabaseReferenceModule.h */, + 46EB2E000104E0 /* RNFBDatabaseReferenceModule.m */, + 46EB2E000104F0 /* RNFBDatabaseTransactionModule.h */, + 46EB2E00010500 /* RNFBDatabaseTransactionModule.m */, + 46EB2E000222D0 /* Pod */, + 46EB2E00034EE0 /* Support Files */, ); name = RNFBDatabase; path = "../../node_modules/@react-native-firebase/database"; @@ -24714,24 +24705,24 @@ 46EB2E000003E0 /* RNFBFirestore */ = { isa = PBXGroup; children = ( - 46EB2E00010690 /* RCTConvert+FIRLoggerLevel.h */, - 46EB2E000106A0 /* RCTConvert+FIRLoggerLevel.m */, - 46EB2E000106B0 /* RNFBFirestoreCollectionModule.h */, - 46EB2E000106C0 /* RNFBFirestoreCollectionModule.m */, - 46EB2E000106D0 /* RNFBFirestoreCommon.h */, - 46EB2E000106E0 /* RNFBFirestoreCommon.m */, - 46EB2E000106F0 /* RNFBFirestoreDocumentModule.h */, - 46EB2E00010700 /* RNFBFirestoreDocumentModule.m */, - 46EB2E00010710 /* RNFBFirestoreModule.h */, - 46EB2E00010720 /* RNFBFirestoreModule.m */, - 46EB2E00010730 /* RNFBFirestoreQuery.h */, - 46EB2E00010740 /* RNFBFirestoreQuery.m */, - 46EB2E00010750 /* RNFBFirestoreSerialize.h */, - 46EB2E00010760 /* RNFBFirestoreSerialize.m */, - 46EB2E00010770 /* RNFBFirestoreTransactionModule.h */, - 46EB2E00010780 /* RNFBFirestoreTransactionModule.m */, - 46EB2E00022430 /* Pod */, - 46EB2E00035330 /* Support Files */, + 46EB2E00010510 /* RCTConvert+FIRLoggerLevel.h */, + 46EB2E00010520 /* RCTConvert+FIRLoggerLevel.m */, + 46EB2E00010530 /* RNFBFirestoreCollectionModule.h */, + 46EB2E00010540 /* RNFBFirestoreCollectionModule.m */, + 46EB2E00010550 /* RNFBFirestoreCommon.h */, + 46EB2E00010560 /* RNFBFirestoreCommon.m */, + 46EB2E00010570 /* RNFBFirestoreDocumentModule.h */, + 46EB2E00010580 /* RNFBFirestoreDocumentModule.m */, + 46EB2E00010590 /* RNFBFirestoreModule.h */, + 46EB2E000105A0 /* RNFBFirestoreModule.m */, + 46EB2E000105B0 /* RNFBFirestoreQuery.h */, + 46EB2E000105C0 /* RNFBFirestoreQuery.m */, + 46EB2E000105D0 /* RNFBFirestoreSerialize.h */, + 46EB2E000105E0 /* RNFBFirestoreSerialize.m */, + 46EB2E000105F0 /* RNFBFirestoreTransactionModule.h */, + 46EB2E00010600 /* RNFBFirestoreTransactionModule.m */, + 46EB2E00022310 /* Pod */, + 46EB2E000350C0 /* Support Files */, ); name = RNFBFirestore; path = "../../node_modules/@react-native-firebase/firestore"; @@ -24740,20 +24731,20 @@ 46EB2E000003F0 /* RNFBMessaging */ = { isa = PBXGroup; children = ( - 46EB2E00010790 /* RNFBMessaging+AppDelegate.h */, - 46EB2E000107A0 /* RNFBMessaging+AppDelegate.m */, - 46EB2E000107B0 /* RNFBMessaging+FIRMessagingDelegate.h */, - 46EB2E000107C0 /* RNFBMessaging+FIRMessagingDelegate.m */, - 46EB2E000107D0 /* RNFBMessaging+NSNotificationCenter.h */, - 46EB2E000107E0 /* RNFBMessaging+NSNotificationCenter.m */, - 46EB2E000107F0 /* RNFBMessaging+UNUserNotificationCenter.h */, - 46EB2E00010800 /* RNFBMessaging+UNUserNotificationCenter.m */, - 46EB2E00010810 /* RNFBMessagingModule.h */, - 46EB2E00010820 /* RNFBMessagingModule.m */, - 46EB2E00010830 /* RNFBMessagingSerializer.h */, - 46EB2E00010840 /* RNFBMessagingSerializer.m */, - 46EB2E00022470 /* Pod */, - 46EB2E000354D0 /* Support Files */, + 46EB2E00010610 /* RNFBMessaging+AppDelegate.h */, + 46EB2E00010620 /* RNFBMessaging+AppDelegate.m */, + 46EB2E00010630 /* RNFBMessaging+FIRMessagingDelegate.h */, + 46EB2E00010640 /* RNFBMessaging+FIRMessagingDelegate.m */, + 46EB2E00010650 /* RNFBMessaging+NSNotificationCenter.h */, + 46EB2E00010660 /* RNFBMessaging+NSNotificationCenter.m */, + 46EB2E00010670 /* RNFBMessaging+UNUserNotificationCenter.h */, + 46EB2E00010680 /* RNFBMessaging+UNUserNotificationCenter.m */, + 46EB2E00010690 /* RNFBMessagingModule.h */, + 46EB2E000106A0 /* RNFBMessagingModule.m */, + 46EB2E000106B0 /* RNFBMessagingSerializer.h */, + 46EB2E000106C0 /* RNFBMessagingSerializer.m */, + 46EB2E00022350 /* Pod */, + 46EB2E00035260 /* Support Files */, ); name = RNFBMessaging; path = "../../node_modules/@react-native-firebase/messaging"; @@ -24762,10 +24753,10 @@ 46EB2E00000400 /* RNFBRemoteConfig */ = { isa = PBXGroup; children = ( - 46EB2E00010850 /* RNFBConfigModule.h */, - 46EB2E00010860 /* RNFBConfigModule.m */, - 46EB2E000224B0 /* Pod */, - 46EB2E000355D0 /* Support Files */, + 46EB2E000106D0 /* RNFBConfigModule.h */, + 46EB2E000106E0 /* RNFBConfigModule.m */, + 46EB2E00022390 /* Pod */, + 46EB2E00035360 /* Support Files */, ); name = RNFBRemoteConfig; path = "../../node_modules/@react-native-firebase/remote-config"; @@ -24774,16 +24765,16 @@ 46EB2E00000410 /* RNFastImage */ = { isa = PBXGroup; children = ( - 46EB2E00010870 /* FFFastImageSource.h */, - 46EB2E00010880 /* FFFastImageSource.m */, - 46EB2E00010890 /* FFFastImageView.h */, - 46EB2E000108A0 /* FFFastImageView.m */, - 46EB2E000108B0 /* FFFastImageViewManager.h */, - 46EB2E000108C0 /* FFFastImageViewManager.m */, - 46EB2E000108D0 /* RCTConvert+FFFastImage.h */, - 46EB2E000108E0 /* RCTConvert+FFFastImage.m */, - 46EB2E000224F0 /* Pod */, - 46EB2E00035730 /* Support Files */, + 46EB2E000106F0 /* FFFastImageSource.h */, + 46EB2E00010700 /* FFFastImageSource.m */, + 46EB2E00010710 /* FFFastImageView.h */, + 46EB2E00010720 /* FFFastImageView.m */, + 46EB2E00010730 /* FFFastImageViewManager.h */, + 46EB2E00010740 /* FFFastImageViewManager.m */, + 46EB2E00010750 /* RCTConvert+FFFastImage.h */, + 46EB2E00010760 /* RCTConvert+FFFastImage.m */, + 46EB2E000223D0 /* Pod */, + 46EB2E000354C0 /* Support Files */, ); name = RNFastImage; path = "../../node_modules/react-native-fast-image"; @@ -24792,37 +24783,37 @@ 46EB2E00000420 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 46EB2E00010A20 /* RNGestureHandler.h */, - 46EB2E00010A30 /* RNGestureHandler.m */, - 46EB2E00010A40 /* RNGestureHandlerActionType.h */, - 46EB2E00010A50 /* RNGestureHandlerButton.h */, - 46EB2E00010A60 /* RNGestureHandlerButton.m */, - 46EB2E00010A70 /* RNGestureHandlerButtonComponentView.h */, - 46EB2E00010A80 /* RNGestureHandlerButtonComponentView.mm */, - 46EB2E00010A90 /* RNGestureHandlerButtonManager.h */, - 46EB2E00010AA0 /* RNGestureHandlerButtonManager.m */, - 46EB2E00010AB0 /* RNGestureHandlerDirection.h */, - 46EB2E00010AC0 /* RNGestureHandlerEvents.h */, - 46EB2E00010AD0 /* RNGestureHandlerEvents.m */, - 46EB2E00010AE0 /* RNGestureHandlerManager.h */, - 46EB2E00010AF0 /* RNGestureHandlerManager.mm */, - 46EB2E00010B00 /* RNGestureHandlerModule.h */, - 46EB2E00010B10 /* RNGestureHandlerModule.mm */, - 46EB2E00010B20 /* RNGestureHandlerPointerTracker.h */, - 46EB2E00010B30 /* RNGestureHandlerPointerTracker.m */, - 46EB2E00010B40 /* RNGestureHandlerRegistry.h */, - 46EB2E00010B50 /* RNGestureHandlerRegistry.m */, - 46EB2E00010B60 /* RNGestureHandlerRootViewComponentView.mm */, - 46EB2E00010B70 /* RNGestureHandlerState.h */, - 46EB2E00010B80 /* RNGestureHandlerStateManager.h */, - 46EB2E00010B90 /* RNGHTouchEventType.h */, - 46EB2E00010BA0 /* RNManualActivationRecognizer.h */, - 46EB2E00010BB0 /* RNManualActivationRecognizer.m */, - 46EB2E00010BC0 /* RNRootViewGestureRecognizer.h */, - 46EB2E00010BD0 /* RNRootViewGestureRecognizer.m */, - 46EB2E000108F0 /* Handlers */, - 46EB2E00022530 /* Pod */, - 46EB2E00035AF0 /* Support Files */, + 46EB2E000108A0 /* RNGestureHandler.h */, + 46EB2E000108B0 /* RNGestureHandler.m */, + 46EB2E000108C0 /* RNGestureHandlerActionType.h */, + 46EB2E000108D0 /* RNGestureHandlerButton.h */, + 46EB2E000108E0 /* RNGestureHandlerButton.m */, + 46EB2E000108F0 /* RNGestureHandlerButtonComponentView.h */, + 46EB2E00010900 /* RNGestureHandlerButtonComponentView.mm */, + 46EB2E00010910 /* RNGestureHandlerButtonManager.h */, + 46EB2E00010920 /* RNGestureHandlerButtonManager.m */, + 46EB2E00010930 /* RNGestureHandlerDirection.h */, + 46EB2E00010940 /* RNGestureHandlerEvents.h */, + 46EB2E00010950 /* RNGestureHandlerEvents.m */, + 46EB2E00010960 /* RNGestureHandlerManager.h */, + 46EB2E00010970 /* RNGestureHandlerManager.mm */, + 46EB2E00010980 /* RNGestureHandlerModule.h */, + 46EB2E00010990 /* RNGestureHandlerModule.mm */, + 46EB2E000109A0 /* RNGestureHandlerPointerTracker.h */, + 46EB2E000109B0 /* RNGestureHandlerPointerTracker.m */, + 46EB2E000109C0 /* RNGestureHandlerRegistry.h */, + 46EB2E000109D0 /* RNGestureHandlerRegistry.m */, + 46EB2E000109E0 /* RNGestureHandlerRootViewComponentView.mm */, + 46EB2E000109F0 /* RNGestureHandlerState.h */, + 46EB2E00010A00 /* RNGestureHandlerStateManager.h */, + 46EB2E00010A10 /* RNGHTouchEventType.h */, + 46EB2E00010A20 /* RNManualActivationRecognizer.h */, + 46EB2E00010A30 /* RNManualActivationRecognizer.m */, + 46EB2E00010A40 /* RNRootViewGestureRecognizer.h */, + 46EB2E00010A50 /* RNRootViewGestureRecognizer.m */, + 46EB2E00010770 /* Handlers */, + 46EB2E00022410 /* Pod */, + 46EB2E00035880 /* Support Files */, ); name = RNGestureHandler; path = "../../node_modules/react-native-gesture-handler"; @@ -24831,10 +24822,10 @@ 46EB2E00000430 /* RNRate */ = { isa = PBXGroup; children = ( - 46EB2E00010BE0 /* RNRate.h */, - 46EB2E00010BF0 /* RNRate.m */, - 46EB2E00022570 /* Pod */, - 46EB2E00035BF0 /* Support Files */, + 46EB2E00010A60 /* RNRate.h */, + 46EB2E00010A70 /* RNRate.m */, + 46EB2E00022450 /* Pod */, + 46EB2E00035980 /* Support Files */, ); name = RNRate; path = "../../node_modules/react-native-rate"; @@ -24843,10 +24834,10 @@ 46EB2E00000440 /* RNReanimated */ = { isa = PBXGroup; children = ( - 46EB2E00011190 /* Common */, - 46EB2E00010C00 /* ios */, - 46EB2E000225A0 /* Pod */, - 46EB2E000364B0 /* Support Files */, + 46EB2E00011010 /* Common */, + 46EB2E00010A80 /* ios */, + 46EB2E00022480 /* Pod */, + 46EB2E00036240 /* Support Files */, ); name = RNReanimated; path = "../../node_modules/react-native-reanimated"; @@ -24855,20 +24846,20 @@ 46EB2E00000450 /* RNSVG */ = { isa = PBXGroup; children = ( - 46EB2E000117D0 /* RNSVGContainer.h */, - 46EB2E000117E0 /* RNSVGNode.h */, - 46EB2E000117F0 /* RNSVGNode.m */, - 46EB2E00011800 /* RNSVGRenderable.h */, - 46EB2E00011810 /* RNSVGRenderable.m */, - 46EB2E00011820 /* RNSVGUIKit.h */, - 46EB2E00011540 /* Brushes */, - 46EB2E00011600 /* Elements */, - 46EB2E000225E0 /* Pod */, - 46EB2E00011830 /* Shapes */, - 46EB2E00036DE0 /* Support Files */, - 46EB2E000118C0 /* Text */, - 46EB2E000119D0 /* Utils */, - 46EB2E00011B00 /* ViewManagers */, + 46EB2E00011650 /* RNSVGContainer.h */, + 46EB2E00011660 /* RNSVGNode.h */, + 46EB2E00011670 /* RNSVGNode.m */, + 46EB2E00011680 /* RNSVGRenderable.h */, + 46EB2E00011690 /* RNSVGRenderable.m */, + 46EB2E000116A0 /* RNSVGUIKit.h */, + 46EB2E000113C0 /* Brushes */, + 46EB2E00011480 /* Elements */, + 46EB2E000224C0 /* Pod */, + 46EB2E000116B0 /* Shapes */, + 46EB2E00036B70 /* Support Files */, + 46EB2E00011740 /* Text */, + 46EB2E00011850 /* Utils */, + 46EB2E00011980 /* ViewManagers */, ); name = RNSVG; path = "../../node_modules/react-native-svg"; @@ -24877,38 +24868,38 @@ 46EB2E00000460 /* RNScreens */ = { isa = PBXGroup; children = ( - 46EB2E00011DF0 /* RNSConvert.h */, - 46EB2E00011E00 /* RNSConvert.mm */, - 46EB2E00011E10 /* RNSEnums.h */, - 46EB2E00011E20 /* RNSFullWindowOverlay.h */, - 46EB2E00011E30 /* RNSFullWindowOverlay.mm */, - 46EB2E00011E40 /* RNSScreen.h */, - 46EB2E00011E50 /* RNSScreen.mm */, - 46EB2E00011E60 /* RNSScreenContainer.h */, - 46EB2E00011E70 /* RNSScreenContainer.mm */, - 46EB2E00011E80 /* RNSScreenNavigationContainer.h */, - 46EB2E00011E90 /* RNSScreenNavigationContainer.mm */, - 46EB2E00011EA0 /* RNSScreenStack.h */, - 46EB2E00011EB0 /* RNSScreenStack.mm */, - 46EB2E00011EC0 /* RNSScreenStackAnimator.h */, - 46EB2E00011ED0 /* RNSScreenStackAnimator.mm */, - 46EB2E00011EE0 /* RNSScreenStackHeaderConfig.h */, - 46EB2E00011EF0 /* RNSScreenStackHeaderConfig.mm */, - 46EB2E00011F00 /* RNSScreenStackHeaderSubview.h */, - 46EB2E00011F10 /* RNSScreenStackHeaderSubview.mm */, - 46EB2E00011F20 /* RNSScreenViewEvent.h */, - 46EB2E00011F30 /* RNSScreenViewEvent.mm */, - 46EB2E00011F40 /* RNSScreenWindowTraits.h */, - 46EB2E00011F50 /* RNSScreenWindowTraits.mm */, - 46EB2E00011F60 /* RNSSearchBar.h */, - 46EB2E00011F70 /* RNSSearchBar.mm */, - 46EB2E00011F80 /* UIViewController+RNScreens.h */, - 46EB2E00011F90 /* UIViewController+RNScreens.mm */, - 46EB2E00011FA0 /* UIWindow+RNScreens.h */, - 46EB2E00011FB0 /* UIWindow+RNScreens.mm */, - 46EB2E00022620 /* Pod */, - 46EB2E000370B0 /* Support Files */, - 46EB2E00011FC0 /* utils */, + 46EB2E00011C70 /* RNSConvert.h */, + 46EB2E00011C80 /* RNSConvert.mm */, + 46EB2E00011C90 /* RNSEnums.h */, + 46EB2E00011CA0 /* RNSFullWindowOverlay.h */, + 46EB2E00011CB0 /* RNSFullWindowOverlay.mm */, + 46EB2E00011CC0 /* RNSScreen.h */, + 46EB2E00011CD0 /* RNSScreen.mm */, + 46EB2E00011CE0 /* RNSScreenContainer.h */, + 46EB2E00011CF0 /* RNSScreenContainer.mm */, + 46EB2E00011D00 /* RNSScreenNavigationContainer.h */, + 46EB2E00011D10 /* RNSScreenNavigationContainer.mm */, + 46EB2E00011D20 /* RNSScreenStack.h */, + 46EB2E00011D30 /* RNSScreenStack.mm */, + 46EB2E00011D40 /* RNSScreenStackAnimator.h */, + 46EB2E00011D50 /* RNSScreenStackAnimator.mm */, + 46EB2E00011D60 /* RNSScreenStackHeaderConfig.h */, + 46EB2E00011D70 /* RNSScreenStackHeaderConfig.mm */, + 46EB2E00011D80 /* RNSScreenStackHeaderSubview.h */, + 46EB2E00011D90 /* RNSScreenStackHeaderSubview.mm */, + 46EB2E00011DA0 /* RNSScreenViewEvent.h */, + 46EB2E00011DB0 /* RNSScreenViewEvent.mm */, + 46EB2E00011DC0 /* RNSScreenWindowTraits.h */, + 46EB2E00011DD0 /* RNSScreenWindowTraits.mm */, + 46EB2E00011DE0 /* RNSSearchBar.h */, + 46EB2E00011DF0 /* RNSSearchBar.mm */, + 46EB2E00011E00 /* UIViewController+RNScreens.h */, + 46EB2E00011E10 /* UIViewController+RNScreens.mm */, + 46EB2E00011E20 /* UIWindow+RNScreens.h */, + 46EB2E00011E30 /* UIWindow+RNScreens.mm */, + 46EB2E00022500 /* Pod */, + 46EB2E00036E40 /* Support Files */, + 46EB2E00011E40 /* utils */, ); name = RNScreens; path = "../../node_modules/react-native-screens"; @@ -24917,32 +24908,32 @@ 46EB2E00000470 /* RNShare */ = { isa = PBXGroup; children = ( - 46EB2E00011FF0 /* EmailShare.h */, - 46EB2E00012000 /* EmailShare.m */, - 46EB2E00012010 /* FacebookStories.h */, - 46EB2E00012020 /* FacebookStories.m */, - 46EB2E00012030 /* GenericShare.h */, - 46EB2E00012040 /* GenericShare.m */, - 46EB2E00012050 /* GooglePlusShare.h */, - 46EB2E00012060 /* GooglePlusShare.m */, - 46EB2E00012070 /* InstagramShare.h */, - 46EB2E00012080 /* InstagramShare.m */, - 46EB2E00012090 /* InstagramStories.h */, - 46EB2E000120A0 /* InstagramStories.m */, - 46EB2E000120B0 /* RNShare.h */, - 46EB2E000120C0 /* RNShare.m */, - 46EB2E000120D0 /* RNShareActivityItemSource.h */, - 46EB2E000120E0 /* RNShareActivityItemSource.m */, - 46EB2E000120F0 /* RNShareUtils.h */, - 46EB2E00012100 /* RNShareUtils.m */, - 46EB2E00012110 /* TelegramShare.h */, - 46EB2E00012120 /* TelegramShare.m */, - 46EB2E00012130 /* ViberShare.h */, - 46EB2E00012140 /* ViberShare.m */, - 46EB2E00012150 /* WhatsAppShare.h */, - 46EB2E00012160 /* WhatsAppShare.m */, - 46EB2E00022660 /* Pod */, - 46EB2E00037310 /* Support Files */, + 46EB2E00011E70 /* EmailShare.h */, + 46EB2E00011E80 /* EmailShare.m */, + 46EB2E00011E90 /* FacebookStories.h */, + 46EB2E00011EA0 /* FacebookStories.m */, + 46EB2E00011EB0 /* GenericShare.h */, + 46EB2E00011EC0 /* GenericShare.m */, + 46EB2E00011ED0 /* GooglePlusShare.h */, + 46EB2E00011EE0 /* GooglePlusShare.m */, + 46EB2E00011EF0 /* InstagramShare.h */, + 46EB2E00011F00 /* InstagramShare.m */, + 46EB2E00011F10 /* InstagramStories.h */, + 46EB2E00011F20 /* InstagramStories.m */, + 46EB2E00011F30 /* RNShare.h */, + 46EB2E00011F40 /* RNShare.m */, + 46EB2E00011F50 /* RNShareActivityItemSource.h */, + 46EB2E00011F60 /* RNShareActivityItemSource.m */, + 46EB2E00011F70 /* RNShareUtils.h */, + 46EB2E00011F80 /* RNShareUtils.m */, + 46EB2E00011F90 /* TelegramShare.h */, + 46EB2E00011FA0 /* TelegramShare.m */, + 46EB2E00011FB0 /* ViberShare.h */, + 46EB2E00011FC0 /* ViberShare.m */, + 46EB2E00011FD0 /* WhatsAppShare.h */, + 46EB2E00011FE0 /* WhatsAppShare.m */, + 46EB2E00022540 /* Pod */, + 46EB2E000370A0 /* Support Files */, ); name = RNShare; path = "../../node_modules/react-native-share"; @@ -24951,26 +24942,26 @@ 46EB2E00000480 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 46EB2E00021F50 /* AntDesign.ttf */, - 46EB2E00021F60 /* Entypo.ttf */, - 46EB2E00021F70 /* EvilIcons.ttf */, - 46EB2E00021F80 /* Feather.ttf */, - 46EB2E00021F90 /* FontAwesome.ttf */, - 46EB2E00021FA0 /* FontAwesome5_Brands.ttf */, - 46EB2E00021FB0 /* FontAwesome5_Regular.ttf */, - 46EB2E00021FC0 /* FontAwesome5_Solid.ttf */, - 46EB2E00021FD0 /* Fontisto.ttf */, - 46EB2E00021FE0 /* Foundation.ttf */, - 46EB2E00021FF0 /* Ionicons.ttf */, - 46EB2E00022000 /* MaterialCommunityIcons.ttf */, - 46EB2E00022010 /* MaterialIcons.ttf */, - 46EB2E00022020 /* Octicons.ttf */, - 46EB2E00012170 /* RNVectorIconsManager.h */, - 46EB2E00012180 /* RNVectorIconsManager.m */, - 46EB2E00022030 /* SimpleLineIcons.ttf */, - 46EB2E00022040 /* Zocial.ttf */, - 46EB2E000226A0 /* Pod */, - 46EB2E00037410 /* Support Files */, + 46EB2E00021E30 /* AntDesign.ttf */, + 46EB2E00021E40 /* Entypo.ttf */, + 46EB2E00021E50 /* EvilIcons.ttf */, + 46EB2E00021E60 /* Feather.ttf */, + 46EB2E00021E70 /* FontAwesome.ttf */, + 46EB2E00021E80 /* FontAwesome5_Brands.ttf */, + 46EB2E00021E90 /* FontAwesome5_Regular.ttf */, + 46EB2E00021EA0 /* FontAwesome5_Solid.ttf */, + 46EB2E00021EB0 /* Fontisto.ttf */, + 46EB2E00021EC0 /* Foundation.ttf */, + 46EB2E00021ED0 /* Ionicons.ttf */, + 46EB2E00021EE0 /* MaterialCommunityIcons.ttf */, + 46EB2E00021EF0 /* MaterialIcons.ttf */, + 46EB2E00021F00 /* Octicons.ttf */, + 46EB2E00011FF0 /* RNVectorIconsManager.h */, + 46EB2E00012000 /* RNVectorIconsManager.m */, + 46EB2E00021F10 /* SimpleLineIcons.ttf */, + 46EB2E00021F20 /* Zocial.ttf */, + 46EB2E00022580 /* Pod */, + 46EB2E000371A0 /* Support Files */, ); name = RNVectorIcons; path = "../../node_modules/react-native-vector-icons"; @@ -24979,8 +24970,8 @@ 46EB2E00000490 /* React */ = { isa = PBXGroup; children = ( - 46EB2E000226E0 /* Pod */, - 46EB2E000374B0 /* Support Files */, + 46EB2E000225C0 /* Pod */, + 46EB2E00037240 /* Support Files */, ); name = React; path = "../../node_modules/react-native"; @@ -24989,10 +24980,10 @@ 46EB2E000004A0 /* React-Codegen */ = { isa = PBXGroup; children = ( - 46EB2E000121A0 /* FBReactNativeSpec.h */, - 46EB2E00012190 /* FBReactNativeSpec-generated.mm */, - 46EB2E00022700 /* Pod */, - 46EB2E00037580 /* Support Files */, + 46EB2E00012020 /* FBReactNativeSpec.h */, + 46EB2E00012010 /* FBReactNativeSpec-generated.mm */, + 46EB2E000225E0 /* Pod */, + 46EB2E00037310 /* Support Files */, ); name = "React-Codegen"; path = ../build/generated/ios; @@ -25001,21 +24992,21 @@ 46EB2E000004B0 /* React-Core */ = { isa = PBXGroup; children = ( - 46EB2E00022050 /* en.lproj */, - 46EB2E000121B0 /* CoreModulesHeaders */, - 46EB2E00012390 /* Default */, - 46EB2E00013510 /* DevSupport */, - 46EB2E00022720 /* Pod */, - 46EB2E00013610 /* RCTAnimationHeaders */, - 46EB2E000137C0 /* RCTBlobHeaders */, - 46EB2E000137F0 /* RCTImageHeaders */, - 46EB2E00013960 /* RCTLinkingHeaders */, - 46EB2E00013990 /* RCTNetworkHeaders */, - 46EB2E00013A00 /* RCTSettingsHeaders */, - 46EB2E00013A30 /* RCTTextHeaders */, - 46EB2E00013C90 /* RCTVibrationHeaders */, - 46EB2E00013CC0 /* RCTWebSocket */, - 46EB2E00037720 /* Support Files */, + 46EB2E00021F30 /* en.lproj */, + 46EB2E00012030 /* CoreModulesHeaders */, + 46EB2E00012210 /* Default */, + 46EB2E00013390 /* DevSupport */, + 46EB2E00022600 /* Pod */, + 46EB2E00013490 /* RCTAnimationHeaders */, + 46EB2E00013640 /* RCTBlobHeaders */, + 46EB2E00013670 /* RCTImageHeaders */, + 46EB2E000137E0 /* RCTLinkingHeaders */, + 46EB2E00013810 /* RCTNetworkHeaders */, + 46EB2E00013880 /* RCTSettingsHeaders */, + 46EB2E000138B0 /* RCTTextHeaders */, + 46EB2E00013B10 /* RCTVibrationHeaders */, + 46EB2E00013B40 /* RCTWebSocket */, + 46EB2E000374B0 /* Support Files */, ); name = "React-Core"; path = "../../node_modules/react-native"; @@ -25024,37 +25015,37 @@ 46EB2E000004C0 /* React-CoreModules */ = { isa = PBXGroup; children = ( - 46EB2E00013D10 /* CoreModulesPlugins.mm */, - 46EB2E00013D20 /* RCTAccessibilityManager.mm */, - 46EB2E00013D30 /* RCTActionSheetManager.mm */, - 46EB2E00013D40 /* RCTAlertController.m */, - 46EB2E00013D50 /* RCTAlertManager.mm */, - 46EB2E00013D60 /* RCTAppearance.mm */, - 46EB2E00013D70 /* RCTAppState.mm */, - 46EB2E00013D80 /* RCTAsyncLocalStorage.mm */, - 46EB2E00013D90 /* RCTClipboard.mm */, - 46EB2E00013DA0 /* RCTDeviceInfo.mm */, - 46EB2E00013DB0 /* RCTDevLoadingView.mm */, - 46EB2E00013DC0 /* RCTDevMenu.mm */, - 46EB2E00013DD0 /* RCTDevSettings.mm */, - 46EB2E00013DE0 /* RCTDevSplitBundleLoader.mm */, - 46EB2E00013DF0 /* RCTEventDispatcher.mm */, - 46EB2E00013E00 /* RCTExceptionsManager.mm */, - 46EB2E00013E10 /* RCTFPSGraph.m */, - 46EB2E00013E20 /* RCTI18nManager.mm */, - 46EB2E00013E30 /* RCTKeyboardObserver.mm */, - 46EB2E00013E40 /* RCTLogBox.mm */, - 46EB2E00013E50 /* RCTLogBoxView.mm */, - 46EB2E00013E60 /* RCTPerfMonitor.mm */, - 46EB2E00013E70 /* RCTPlatform.mm */, - 46EB2E00013E80 /* RCTRedBox.mm */, - 46EB2E00013E90 /* RCTSourceCode.mm */, - 46EB2E00013EA0 /* RCTStatusBarManager.mm */, - 46EB2E00013EB0 /* RCTTiming.mm */, - 46EB2E00013EC0 /* RCTWebSocketExecutor.mm */, - 46EB2E00013ED0 /* RCTWebSocketModule.mm */, - 46EB2E00022740 /* Pod */, - 46EB2E00039310 /* Support Files */, + 46EB2E00013B90 /* CoreModulesPlugins.mm */, + 46EB2E00013BA0 /* RCTAccessibilityManager.mm */, + 46EB2E00013BB0 /* RCTActionSheetManager.mm */, + 46EB2E00013BC0 /* RCTAlertController.m */, + 46EB2E00013BD0 /* RCTAlertManager.mm */, + 46EB2E00013BE0 /* RCTAppearance.mm */, + 46EB2E00013BF0 /* RCTAppState.mm */, + 46EB2E00013C00 /* RCTAsyncLocalStorage.mm */, + 46EB2E00013C10 /* RCTClipboard.mm */, + 46EB2E00013C20 /* RCTDeviceInfo.mm */, + 46EB2E00013C30 /* RCTDevLoadingView.mm */, + 46EB2E00013C40 /* RCTDevMenu.mm */, + 46EB2E00013C50 /* RCTDevSettings.mm */, + 46EB2E00013C60 /* RCTDevSplitBundleLoader.mm */, + 46EB2E00013C70 /* RCTEventDispatcher.mm */, + 46EB2E00013C80 /* RCTExceptionsManager.mm */, + 46EB2E00013C90 /* RCTFPSGraph.m */, + 46EB2E00013CA0 /* RCTI18nManager.mm */, + 46EB2E00013CB0 /* RCTKeyboardObserver.mm */, + 46EB2E00013CC0 /* RCTLogBox.mm */, + 46EB2E00013CD0 /* RCTLogBoxView.mm */, + 46EB2E00013CE0 /* RCTPerfMonitor.mm */, + 46EB2E00013CF0 /* RCTPlatform.mm */, + 46EB2E00013D00 /* RCTRedBox.mm */, + 46EB2E00013D10 /* RCTSourceCode.mm */, + 46EB2E00013D20 /* RCTStatusBarManager.mm */, + 46EB2E00013D30 /* RCTTiming.mm */, + 46EB2E00013D40 /* RCTWebSocketExecutor.mm */, + 46EB2E00013D50 /* RCTWebSocketModule.mm */, + 46EB2E00022620 /* Pod */, + 46EB2E000390A0 /* Support Files */, ); name = "React-CoreModules"; path = "../../node_modules/react-native/React/CoreModules"; @@ -25063,8 +25054,8 @@ 46EB2E000004D0 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 46EB2E00022760 /* Pod */, - 46EB2E000393B0 /* Support Files */, + 46EB2E00022640 /* Pod */, + 46EB2E00039140 /* Support Files */, ); name = "React-RCTActionSheet"; path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; @@ -25073,15 +25064,15 @@ 46EB2E000004E0 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 46EB2E00014020 /* RCTAnimationPlugins.mm */, - 46EB2E00014030 /* RCTAnimationUtils.m */, - 46EB2E00014040 /* RCTNativeAnimatedModule.mm */, - 46EB2E00014050 /* RCTNativeAnimatedNodesManager.m */, - 46EB2E00014060 /* RCTNativeAnimatedTurboModule.mm */, - 46EB2E00013EE0 /* Drivers */, - 46EB2E00013F30 /* Nodes */, - 46EB2E00022780 /* Pod */, - 46EB2E00039750 /* Support Files */, + 46EB2E00013EA0 /* RCTAnimationPlugins.mm */, + 46EB2E00013EB0 /* RCTAnimationUtils.m */, + 46EB2E00013EC0 /* RCTNativeAnimatedModule.mm */, + 46EB2E00013ED0 /* RCTNativeAnimatedNodesManager.m */, + 46EB2E00013EE0 /* RCTNativeAnimatedTurboModule.mm */, + 46EB2E00013D60 /* Drivers */, + 46EB2E00013DB0 /* Nodes */, + 46EB2E00022660 /* Pod */, + 46EB2E000394E0 /* Support Files */, ); name = "React-RCTAnimation"; path = "../../node_modules/react-native/Libraries/NativeAnimation"; @@ -25090,14 +25081,14 @@ 46EB2E000004F0 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 46EB2E00014070 /* RCTBlobCollector.h */, - 46EB2E00014080 /* RCTBlobCollector.mm */, - 46EB2E00014090 /* RCTBlobManager.mm */, - 46EB2E000140A0 /* RCTBlobPlugins.h */, - 46EB2E000140B0 /* RCTBlobPlugins.mm */, - 46EB2E000140C0 /* RCTFileReaderModule.mm */, - 46EB2E000227A0 /* Pod */, - 46EB2E000398B0 /* Support Files */, + 46EB2E00013EF0 /* RCTBlobCollector.h */, + 46EB2E00013F00 /* RCTBlobCollector.mm */, + 46EB2E00013F10 /* RCTBlobManager.mm */, + 46EB2E00013F20 /* RCTBlobPlugins.h */, + 46EB2E00013F30 /* RCTBlobPlugins.mm */, + 46EB2E00013F40 /* RCTFileReaderModule.mm */, + 46EB2E00022680 /* Pod */, + 46EB2E00039640 /* Support Files */, ); name = "React-RCTBlob"; path = "../../node_modules/react-native/Libraries/Blob"; @@ -25106,25 +25097,25 @@ 46EB2E00000500 /* React-RCTImage */ = { isa = PBXGroup; children = ( - 46EB2E000140D0 /* RCTAnimatedImage.m */, - 46EB2E000140E0 /* RCTDisplayWeakRefreshable.m */, - 46EB2E000140F0 /* RCTGIFImageDecoder.mm */, - 46EB2E00014100 /* RCTImageBlurUtils.m */, - 46EB2E00014110 /* RCTImageCache.m */, - 46EB2E00014120 /* RCTImageEditingManager.mm */, - 46EB2E00014130 /* RCTImageLoader.mm */, - 46EB2E00014140 /* RCTImagePlugins.mm */, - 46EB2E00014150 /* RCTImageShadowView.m */, - 46EB2E00014160 /* RCTImageStoreManager.mm */, - 46EB2E00014170 /* RCTImageURLLoaderWithAttribution.mm */, - 46EB2E00014180 /* RCTImageUtils.m */, - 46EB2E00014190 /* RCTImageView.mm */, - 46EB2E000141A0 /* RCTImageViewManager.mm */, - 46EB2E000141B0 /* RCTLocalAssetImageLoader.mm */, - 46EB2E000141C0 /* RCTResizeMode.m */, - 46EB2E000141D0 /* RCTUIImageViewAnimated.m */, - 46EB2E000227C0 /* Pod */, - 46EB2E00039AA0 /* Support Files */, + 46EB2E00013F50 /* RCTAnimatedImage.m */, + 46EB2E00013F60 /* RCTDisplayWeakRefreshable.m */, + 46EB2E00013F70 /* RCTGIFImageDecoder.mm */, + 46EB2E00013F80 /* RCTImageBlurUtils.m */, + 46EB2E00013F90 /* RCTImageCache.m */, + 46EB2E00013FA0 /* RCTImageEditingManager.mm */, + 46EB2E00013FB0 /* RCTImageLoader.mm */, + 46EB2E00013FC0 /* RCTImagePlugins.mm */, + 46EB2E00013FD0 /* RCTImageShadowView.m */, + 46EB2E00013FE0 /* RCTImageStoreManager.mm */, + 46EB2E00013FF0 /* RCTImageURLLoaderWithAttribution.mm */, + 46EB2E00014000 /* RCTImageUtils.m */, + 46EB2E00014010 /* RCTImageView.mm */, + 46EB2E00014020 /* RCTImageViewManager.mm */, + 46EB2E00014030 /* RCTLocalAssetImageLoader.mm */, + 46EB2E00014040 /* RCTResizeMode.m */, + 46EB2E00014050 /* RCTUIImageViewAnimated.m */, + 46EB2E000226A0 /* Pod */, + 46EB2E00039830 /* Support Files */, ); name = "React-RCTImage"; path = "../../node_modules/react-native/Libraries/Image"; @@ -25133,10 +25124,10 @@ 46EB2E00000510 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 46EB2E000141E0 /* RCTLinkingManager.mm */, - 46EB2E000141F0 /* RCTLinkingPlugins.mm */, - 46EB2E000227E0 /* Pod */, - 46EB2E00039BA0 /* Support Files */, + 46EB2E00014060 /* RCTLinkingManager.mm */, + 46EB2E00014070 /* RCTLinkingPlugins.mm */, + 46EB2E000226C0 /* Pod */, + 46EB2E00039930 /* Support Files */, ); name = "React-RCTLinking"; path = "../../node_modules/react-native/Libraries/LinkingIOS"; @@ -25145,14 +25136,14 @@ 46EB2E00000520 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 46EB2E00014200 /* RCTDataRequestHandler.mm */, - 46EB2E00014210 /* RCTFileRequestHandler.mm */, - 46EB2E00014220 /* RCTHTTPRequestHandler.mm */, - 46EB2E00014230 /* RCTNetworking.mm */, - 46EB2E00014240 /* RCTNetworkPlugins.mm */, - 46EB2E00014250 /* RCTNetworkTask.mm */, - 46EB2E00022800 /* Pod */, - 46EB2E00039CE0 /* Support Files */, + 46EB2E00014080 /* RCTDataRequestHandler.mm */, + 46EB2E00014090 /* RCTFileRequestHandler.mm */, + 46EB2E000140A0 /* RCTHTTPRequestHandler.mm */, + 46EB2E000140B0 /* RCTNetworking.mm */, + 46EB2E000140C0 /* RCTNetworkPlugins.mm */, + 46EB2E000140D0 /* RCTNetworkTask.mm */, + 46EB2E000226E0 /* Pod */, + 46EB2E00039A70 /* Support Files */, ); name = "React-RCTNetwork"; path = "../../node_modules/react-native/Libraries/Network"; @@ -25161,10 +25152,10 @@ 46EB2E00000530 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 46EB2E00014260 /* RCTSettingsManager.mm */, - 46EB2E00014270 /* RCTSettingsPlugins.mm */, - 46EB2E00022820 /* Pod */, - 46EB2E00039DE0 /* Support Files */, + 46EB2E000140E0 /* RCTSettingsManager.mm */, + 46EB2E000140F0 /* RCTSettingsPlugins.mm */, + 46EB2E00022700 /* Pod */, + 46EB2E00039B70 /* Support Files */, ); name = "React-RCTSettings"; path = "../../node_modules/react-native/Libraries/Settings"; @@ -25173,15 +25164,15 @@ 46EB2E00000540 /* React-RCTText */ = { isa = PBXGroup; children = ( - 46EB2E000142E0 /* RCTConvert+Text.m */, - 46EB2E000142F0 /* RCTTextAttributes.m */, - 46EB2E00014280 /* BaseText */, - 46EB2E00022840 /* Pod */, - 46EB2E000142B0 /* RawText */, - 46EB2E0003A250 /* Support Files */, - 46EB2E00014300 /* Text */, - 46EB2E00014350 /* TextInput */, - 46EB2E00014470 /* VirtualText */, + 46EB2E00014160 /* RCTConvert+Text.m */, + 46EB2E00014170 /* RCTTextAttributes.m */, + 46EB2E00014100 /* BaseText */, + 46EB2E00022720 /* Pod */, + 46EB2E00014130 /* RawText */, + 46EB2E00039FE0 /* Support Files */, + 46EB2E00014180 /* Text */, + 46EB2E000141D0 /* TextInput */, + 46EB2E000142F0 /* VirtualText */, ); name = "React-RCTText"; path = "../../node_modules/react-native/Libraries/Text"; @@ -25190,10 +25181,10 @@ 46EB2E00000550 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 46EB2E000144A0 /* RCTVibration.mm */, - 46EB2E000144B0 /* RCTVibrationPlugins.mm */, - 46EB2E00022860 /* Pod */, - 46EB2E0003A350 /* Support Files */, + 46EB2E00014320 /* RCTVibration.mm */, + 46EB2E00014330 /* RCTVibrationPlugins.mm */, + 46EB2E00022740 /* Pod */, + 46EB2E0003A0E0 /* Support Files */, ); name = "React-RCTVibration"; path = "../../node_modules/react-native/Libraries/Vibration"; @@ -25202,24 +25193,24 @@ 46EB2E00000560 /* React-bridging */ = { isa = PBXGroup; children = ( - 46EB2E000144C0 /* Array.h */, - 46EB2E000144D0 /* AString.h */, - 46EB2E000144E0 /* Base.h */, - 46EB2E000144F0 /* Bool.h */, - 46EB2E00014500 /* Bridging.h */, - 46EB2E00014510 /* CallbackWrapper.h */, - 46EB2E00014520 /* Class.h */, - 46EB2E00014530 /* Convert.h */, - 46EB2E00014540 /* Error.h */, - 46EB2E00014550 /* Function.h */, - 46EB2E00014560 /* LongLivedObject.cpp */, - 46EB2E00014570 /* LongLivedObject.h */, - 46EB2E00014580 /* Number.h */, - 46EB2E00014590 /* Object.h */, - 46EB2E000145A0 /* Promise.h */, - 46EB2E000145B0 /* Value.h */, - 46EB2E00022880 /* Pod */, - 46EB2E0003A530 /* Support Files */, + 46EB2E00014340 /* Array.h */, + 46EB2E00014350 /* AString.h */, + 46EB2E00014360 /* Base.h */, + 46EB2E00014370 /* Bool.h */, + 46EB2E00014380 /* Bridging.h */, + 46EB2E00014390 /* CallbackWrapper.h */, + 46EB2E000143A0 /* Class.h */, + 46EB2E000143B0 /* Convert.h */, + 46EB2E000143C0 /* Error.h */, + 46EB2E000143D0 /* Function.h */, + 46EB2E000143E0 /* LongLivedObject.cpp */, + 46EB2E000143F0 /* LongLivedObject.h */, + 46EB2E00014400 /* Number.h */, + 46EB2E00014410 /* Object.h */, + 46EB2E00014420 /* Promise.h */, + 46EB2E00014430 /* Value.h */, + 46EB2E00022760 /* Pod */, + 46EB2E0003A2C0 /* Support Files */, ); name = "React-bridging"; path = "../../node_modules/react-native/ReactCommon"; @@ -25228,9 +25219,9 @@ 46EB2E00000570 /* React-callinvoker */ = { isa = PBXGroup; children = ( - 46EB2E000145C0 /* CallInvoker.h */, - 46EB2E000228A0 /* Pod */, - 46EB2E0003A5D0 /* Support Files */, + 46EB2E00014440 /* CallInvoker.h */, + 46EB2E00022780 /* Pod */, + 46EB2E0003A360 /* Support Files */, ); name = "React-callinvoker"; path = "../../node_modules/react-native/ReactCommon/callinvoker"; @@ -25239,41 +25230,41 @@ 46EB2E00000580 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 46EB2E000145D0 /* CxxModule.h */, - 46EB2E000145E0 /* CxxNativeModule.cpp */, - 46EB2E000145F0 /* CxxNativeModule.h */, - 46EB2E00014600 /* ErrorUtils.h */, - 46EB2E00014610 /* Instance.cpp */, - 46EB2E00014620 /* Instance.h */, - 46EB2E00014640 /* JsArgumentHelpers.h */, - 46EB2E00014630 /* JsArgumentHelpers-inl.h */, - 46EB2E00014650 /* JSBigString.cpp */, - 46EB2E00014660 /* JSBigString.h */, - 46EB2E00014670 /* JSBundleType.cpp */, - 46EB2E00014680 /* JSBundleType.h */, - 46EB2E00014690 /* JSExecutor.cpp */, - 46EB2E000146A0 /* JSExecutor.h */, - 46EB2E000146B0 /* JSIndexedRAMBundle.cpp */, - 46EB2E000146C0 /* JSIndexedRAMBundle.h */, - 46EB2E000146D0 /* JSModulesUnbundle.h */, - 46EB2E000146E0 /* MessageQueueThread.h */, - 46EB2E000146F0 /* MethodCall.cpp */, - 46EB2E00014700 /* MethodCall.h */, - 46EB2E00014710 /* ModuleRegistry.cpp */, - 46EB2E00014720 /* ModuleRegistry.h */, - 46EB2E00014730 /* NativeModule.h */, - 46EB2E00014740 /* NativeToJsBridge.cpp */, - 46EB2E00014750 /* NativeToJsBridge.h */, - 46EB2E00014760 /* RAMBundleRegistry.cpp */, - 46EB2E00014770 /* RAMBundleRegistry.h */, - 46EB2E00014780 /* ReactMarker.cpp */, - 46EB2E00014790 /* ReactMarker.h */, - 46EB2E000147A0 /* ReactNativeVersion.h */, - 46EB2E000147B0 /* RecoverableError.h */, - 46EB2E000147C0 /* SharedProxyCxxModule.h */, - 46EB2E000147D0 /* SystraceSection.h */, - 46EB2E000228C0 /* Pod */, - 46EB2E0003A890 /* Support Files */, + 46EB2E00014450 /* CxxModule.h */, + 46EB2E00014460 /* CxxNativeModule.cpp */, + 46EB2E00014470 /* CxxNativeModule.h */, + 46EB2E00014480 /* ErrorUtils.h */, + 46EB2E00014490 /* Instance.cpp */, + 46EB2E000144A0 /* Instance.h */, + 46EB2E000144C0 /* JsArgumentHelpers.h */, + 46EB2E000144B0 /* JsArgumentHelpers-inl.h */, + 46EB2E000144D0 /* JSBigString.cpp */, + 46EB2E000144E0 /* JSBigString.h */, + 46EB2E000144F0 /* JSBundleType.cpp */, + 46EB2E00014500 /* JSBundleType.h */, + 46EB2E00014510 /* JSExecutor.cpp */, + 46EB2E00014520 /* JSExecutor.h */, + 46EB2E00014530 /* JSIndexedRAMBundle.cpp */, + 46EB2E00014540 /* JSIndexedRAMBundle.h */, + 46EB2E00014550 /* JSModulesUnbundle.h */, + 46EB2E00014560 /* MessageQueueThread.h */, + 46EB2E00014570 /* MethodCall.cpp */, + 46EB2E00014580 /* MethodCall.h */, + 46EB2E00014590 /* ModuleRegistry.cpp */, + 46EB2E000145A0 /* ModuleRegistry.h */, + 46EB2E000145B0 /* NativeModule.h */, + 46EB2E000145C0 /* NativeToJsBridge.cpp */, + 46EB2E000145D0 /* NativeToJsBridge.h */, + 46EB2E000145E0 /* RAMBundleRegistry.cpp */, + 46EB2E000145F0 /* RAMBundleRegistry.h */, + 46EB2E00014600 /* ReactMarker.cpp */, + 46EB2E00014610 /* ReactMarker.h */, + 46EB2E00014620 /* ReactNativeVersion.h */, + 46EB2E00014630 /* RecoverableError.h */, + 46EB2E00014640 /* SharedProxyCxxModule.h */, + 46EB2E00014650 /* SystraceSection.h */, + 46EB2E000227A0 /* Pod */, + 46EB2E0003A620 /* Support Files */, ); name = "React-cxxreact"; path = "../../node_modules/react-native/ReactCommon/cxxreact"; @@ -25282,10 +25273,10 @@ 46EB2E00000590 /* React-hermes */ = { isa = PBXGroup; children = ( - 46EB2E000147E0 /* executor */, - 46EB2E00014830 /* inspector */, - 46EB2E000228E0 /* Pod */, - 46EB2E0003AB90 /* Support Files */, + 46EB2E00014660 /* executor */, + 46EB2E000146B0 /* inspector */, + 46EB2E000227C0 /* Pod */, + 46EB2E0003A920 /* Support Files */, ); name = "React-hermes"; path = "../../node_modules/react-native/ReactCommon/hermes"; @@ -25294,11 +25285,11 @@ 46EB2E000005A0 /* React-jsi */ = { isa = PBXGroup; children = ( - 46EB2E00014A40 /* JSCRuntime.cpp */, - 46EB2E00014A50 /* JSCRuntime.h */, - 46EB2E00014A60 /* jsi */, - 46EB2E00022900 /* Pod */, - 46EB2E0003AD40 /* Support Files */, + 46EB2E000148C0 /* JSCRuntime.cpp */, + 46EB2E000148D0 /* JSCRuntime.h */, + 46EB2E000148E0 /* jsi */, + 46EB2E000227E0 /* Pod */, + 46EB2E0003AAD0 /* Support Files */, ); name = "React-jsi"; path = "../../node_modules/react-native/ReactCommon/jsi"; @@ -25307,12 +25298,12 @@ 46EB2E000005B0 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 46EB2E00014B20 /* JSIExecutor.cpp */, - 46EB2E00014B30 /* JSIExecutor.h */, - 46EB2E00014B40 /* JSINativeModules.cpp */, - 46EB2E00014B50 /* JSINativeModules.h */, - 46EB2E00022920 /* Pod */, - 46EB2E0003AE60 /* Support Files */, + 46EB2E000149A0 /* JSIExecutor.cpp */, + 46EB2E000149B0 /* JSIExecutor.h */, + 46EB2E000149C0 /* JSINativeModules.cpp */, + 46EB2E000149D0 /* JSINativeModules.h */, + 46EB2E00022800 /* Pod */, + 46EB2E0003ABF0 /* Support Files */, ); name = "React-jsiexecutor"; path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; @@ -25321,10 +25312,10 @@ 46EB2E000005C0 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 46EB2E00014B60 /* InspectorInterfaces.cpp */, - 46EB2E00014B70 /* InspectorInterfaces.h */, - 46EB2E00022940 /* Pod */, - 46EB2E0003AF60 /* Support Files */, + 46EB2E000149E0 /* InspectorInterfaces.cpp */, + 46EB2E000149F0 /* InspectorInterfaces.h */, + 46EB2E00022820 /* Pod */, + 46EB2E0003ACF0 /* Support Files */, ); name = "React-jsinspector"; path = "../../node_modules/react-native/ReactCommon/jsinspector"; @@ -25333,10 +25324,10 @@ 46EB2E000005D0 /* React-logger */ = { isa = PBXGroup; children = ( - 46EB2E00014B80 /* react_native_log.cpp */, - 46EB2E00014B90 /* react_native_log.h */, - 46EB2E00022960 /* Pod */, - 46EB2E0003B060 /* Support Files */, + 46EB2E00014A00 /* react_native_log.cpp */, + 46EB2E00014A10 /* react_native_log.h */, + 46EB2E00022840 /* Pod */, + 46EB2E0003ADF0 /* Support Files */, ); name = "React-logger"; path = "../../node_modules/react-native/ReactCommon/logger"; @@ -25345,11 +25336,11 @@ 46EB2E000005E0 /* React-perflogger */ = { isa = PBXGroup; children = ( - 46EB2E00014BA0 /* BridgeNativeModulePerfLogger.cpp */, - 46EB2E00014BB0 /* BridgeNativeModulePerfLogger.h */, - 46EB2E00014BC0 /* NativeModulePerfLogger.h */, - 46EB2E00022980 /* Pod */, - 46EB2E0003B170 /* Support Files */, + 46EB2E00014A20 /* BridgeNativeModulePerfLogger.cpp */, + 46EB2E00014A30 /* BridgeNativeModulePerfLogger.h */, + 46EB2E00014A40 /* NativeModulePerfLogger.h */, + 46EB2E00022860 /* Pod */, + 46EB2E0003AF00 /* Support Files */, ); name = "React-perflogger"; path = "../../node_modules/react-native/ReactCommon/reactperflogger"; @@ -25358,9 +25349,9 @@ 46EB2E000005F0 /* React-runtimeexecutor */ = { isa = PBXGroup; children = ( - 46EB2E00014BD0 /* RuntimeExecutor.h */, - 46EB2E000229A0 /* Pod */, - 46EB2E0003B210 /* Support Files */, + 46EB2E00014A50 /* RuntimeExecutor.h */, + 46EB2E00022880 /* Pod */, + 46EB2E0003AFA0 /* Support Files */, ); name = "React-runtimeexecutor"; path = "../../node_modules/react-native/ReactCommon/runtimeexecutor"; @@ -25369,8 +25360,8 @@ 46EB2E00000600 /* ReactCommon */ = { isa = PBXGroup; children = ( - 46EB2E0003B3D0 /* Support Files */, - 46EB2E00014BE0 /* turbomodule */, + 46EB2E0003B160 /* Support Files */, + 46EB2E00014A60 /* turbomodule */, ); name = ReactCommon; path = "../../node_modules/react-native/ReactCommon"; @@ -25379,149 +25370,153 @@ 46EB2E00000610 /* SDWebImage */ = { isa = PBXGroup; children = ( - 46EB2E00014D40 /* Core */, - 46EB2E0003BDC0 /* Support Files */, + 46EB2E00014BC0 /* Core */, + 46EB2E0003BB50 /* Support Files */, ); + name = SDWebImage; path = SDWebImage; sourceTree = ""; }; 46EB2E00000620 /* SDWebImageWebPCoder */ = { isa = PBXGroup; children = ( - 46EB2E00015630 /* SDImageWebPCoder.h */, - 46EB2E00015640 /* SDImageWebPCoder.m */, - 46EB2E00015690 /* SDWebImageWebPCoder.h */, - 46EB2E00015650 /* SDWebImageWebPCoderDefine.h */, - 46EB2E00015660 /* SDWebImageWebPCoderDefine.m */, - 46EB2E00015670 /* UIImage+WebP.h */, - 46EB2E00015680 /* UIImage+WebP.m */, - 46EB2E0003BF10 /* Support Files */, + 46EB2E000154B0 /* SDImageWebPCoder.h */, + 46EB2E000154C0 /* SDImageWebPCoder.m */, + 46EB2E00015510 /* SDWebImageWebPCoder.h */, + 46EB2E000154D0 /* SDWebImageWebPCoderDefine.h */, + 46EB2E000154E0 /* SDWebImageWebPCoderDefine.m */, + 46EB2E000154F0 /* UIImage+WebP.h */, + 46EB2E00015500 /* UIImage+WebP.m */, + 46EB2E0003BCA0 /* Support Files */, ); + name = SDWebImageWebPCoder; path = SDWebImageWebPCoder; sourceTree = ""; }; 46EB2E00000630 /* SSZipArchive */ = { isa = PBXGroup; children = ( - 46EB2E000156E0 /* mz.h */, - 46EB2E000156F0 /* mz_compat.c */, - 46EB2E00015700 /* mz_compat.h */, - 46EB2E00015710 /* mz_crypt.c */, - 46EB2E00015720 /* mz_crypt.h */, - 46EB2E00015730 /* mz_crypt_apple.c */, - 46EB2E00015740 /* mz_os.c */, - 46EB2E00015750 /* mz_os.h */, - 46EB2E00015760 /* mz_os_posix.c */, - 46EB2E00015770 /* mz_strm.c */, - 46EB2E00015780 /* mz_strm.h */, - 46EB2E00015790 /* mz_strm_buf.c */, - 46EB2E000157A0 /* mz_strm_buf.h */, - 46EB2E000157B0 /* mz_strm_mem.c */, - 46EB2E000157C0 /* mz_strm_mem.h */, - 46EB2E000157D0 /* mz_strm_os.h */, - 46EB2E000157E0 /* mz_strm_os_posix.c */, - 46EB2E000157F0 /* mz_strm_pkcrypt.c */, - 46EB2E00015800 /* mz_strm_pkcrypt.h */, - 46EB2E00015810 /* mz_strm_split.c */, - 46EB2E00015820 /* mz_strm_split.h */, - 46EB2E00015830 /* mz_strm_wzaes.c */, - 46EB2E00015840 /* mz_strm_wzaes.h */, - 46EB2E00015850 /* mz_strm_zlib.c */, - 46EB2E00015860 /* mz_strm_zlib.h */, - 46EB2E00015870 /* mz_zip.c */, - 46EB2E00015880 /* mz_zip.h */, - 46EB2E00015890 /* mz_zip_rw.c */, - 46EB2E000158A0 /* mz_zip_rw.h */, - 46EB2E000156A0 /* SSZipArchive.h */, - 46EB2E000156B0 /* SSZipArchive.m */, - 46EB2E000156C0 /* SSZipCommon.h */, - 46EB2E000156D0 /* ZipArchive.h */, - 46EB2E0003C200 /* Support Files */, + 46EB2E00015560 /* mz.h */, + 46EB2E00015570 /* mz_compat.c */, + 46EB2E00015580 /* mz_compat.h */, + 46EB2E00015590 /* mz_crypt.c */, + 46EB2E000155A0 /* mz_crypt.h */, + 46EB2E000155B0 /* mz_crypt_apple.c */, + 46EB2E000155C0 /* mz_os.c */, + 46EB2E000155D0 /* mz_os.h */, + 46EB2E000155E0 /* mz_os_posix.c */, + 46EB2E000155F0 /* mz_strm.c */, + 46EB2E00015600 /* mz_strm.h */, + 46EB2E00015610 /* mz_strm_buf.c */, + 46EB2E00015620 /* mz_strm_buf.h */, + 46EB2E00015630 /* mz_strm_mem.c */, + 46EB2E00015640 /* mz_strm_mem.h */, + 46EB2E00015650 /* mz_strm_os.h */, + 46EB2E00015660 /* mz_strm_os_posix.c */, + 46EB2E00015670 /* mz_strm_pkcrypt.c */, + 46EB2E00015680 /* mz_strm_pkcrypt.h */, + 46EB2E00015690 /* mz_strm_split.c */, + 46EB2E000156A0 /* mz_strm_split.h */, + 46EB2E000156B0 /* mz_strm_wzaes.c */, + 46EB2E000156C0 /* mz_strm_wzaes.h */, + 46EB2E000156D0 /* mz_strm_zlib.c */, + 46EB2E000156E0 /* mz_strm_zlib.h */, + 46EB2E000156F0 /* mz_zip.c */, + 46EB2E00015700 /* mz_zip.h */, + 46EB2E00015710 /* mz_zip_rw.c */, + 46EB2E00015720 /* mz_zip_rw.h */, + 46EB2E00015520 /* SSZipArchive.h */, + 46EB2E00015530 /* SSZipArchive.m */, + 46EB2E00015540 /* SSZipCommon.h */, + 46EB2E00015550 /* ZipArchive.h */, + 46EB2E0003BF90 /* Support Files */, ); + name = SSZipArchive; path = SSZipArchive; sourceTree = ""; }; 46EB2E00000640 /* SocketRocket */ = { isa = PBXGroup; children = ( - 46EB2E00015AB0 /* NSRunLoop+SRWebSocket.h */, - 46EB2E00015AC0 /* NSRunLoop+SRWebSocket.m */, - 46EB2E00015910 /* NSRunLoop+SRWebSocketPrivate.h */, - 46EB2E00015AD0 /* NSURLRequest+SRWebSocket.h */, - 46EB2E00015AE0 /* NSURLRequest+SRWebSocket.m */, - 46EB2E00015920 /* NSURLRequest+SRWebSocketPrivate.h */, - 46EB2E00015AF0 /* SocketRocket.h */, - 46EB2E00015990 /* SRConstants.h */, - 46EB2E000159A0 /* SRConstants.m */, - 46EB2E000158B0 /* SRDelegateController.h */, - 46EB2E000158C0 /* SRDelegateController.m */, - 46EB2E000159B0 /* SRError.h */, - 46EB2E000159C0 /* SRError.m */, - 46EB2E000159D0 /* SRHash.h */, - 46EB2E000159E0 /* SRHash.m */, - 46EB2E000159F0 /* SRHTTPConnectMessage.h */, - 46EB2E00015A00 /* SRHTTPConnectMessage.m */, - 46EB2E000158D0 /* SRIOConsumer.h */, - 46EB2E000158E0 /* SRIOConsumer.m */, - 46EB2E000158F0 /* SRIOConsumerPool.h */, - 46EB2E00015900 /* SRIOConsumerPool.m */, - 46EB2E00015A10 /* SRLog.h */, - 46EB2E00015A20 /* SRLog.m */, - 46EB2E00015A30 /* SRMutex.h */, - 46EB2E00015A40 /* SRMutex.m */, - 46EB2E00015970 /* SRPinningSecurityPolicy.h */, - 46EB2E00015980 /* SRPinningSecurityPolicy.m */, - 46EB2E00015930 /* SRProxyConnect.h */, - 46EB2E00015940 /* SRProxyConnect.m */, - 46EB2E00015A50 /* SRRandom.h */, - 46EB2E00015A60 /* SRRandom.m */, - 46EB2E00015950 /* SRRunLoopThread.h */, - 46EB2E00015960 /* SRRunLoopThread.m */, - 46EB2E00015B00 /* SRSecurityPolicy.h */, - 46EB2E00015B10 /* SRSecurityPolicy.m */, - 46EB2E00015A70 /* SRSIMDHelpers.h */, - 46EB2E00015A80 /* SRSIMDHelpers.m */, - 46EB2E00015A90 /* SRURLUtilities.h */, - 46EB2E00015AA0 /* SRURLUtilities.m */, - 46EB2E00015B20 /* SRWebSocket.h */, - 46EB2E00015B30 /* SRWebSocket.m */, - 46EB2E0003C5A0 /* Support Files */, + 46EB2E00015930 /* NSRunLoop+SRWebSocket.h */, + 46EB2E00015940 /* NSRunLoop+SRWebSocket.m */, + 46EB2E00015790 /* NSRunLoop+SRWebSocketPrivate.h */, + 46EB2E00015950 /* NSURLRequest+SRWebSocket.h */, + 46EB2E00015960 /* NSURLRequest+SRWebSocket.m */, + 46EB2E000157A0 /* NSURLRequest+SRWebSocketPrivate.h */, + 46EB2E00015970 /* SocketRocket.h */, + 46EB2E00015810 /* SRConstants.h */, + 46EB2E00015820 /* SRConstants.m */, + 46EB2E00015730 /* SRDelegateController.h */, + 46EB2E00015740 /* SRDelegateController.m */, + 46EB2E00015830 /* SRError.h */, + 46EB2E00015840 /* SRError.m */, + 46EB2E00015850 /* SRHash.h */, + 46EB2E00015860 /* SRHash.m */, + 46EB2E00015870 /* SRHTTPConnectMessage.h */, + 46EB2E00015880 /* SRHTTPConnectMessage.m */, + 46EB2E00015750 /* SRIOConsumer.h */, + 46EB2E00015760 /* SRIOConsumer.m */, + 46EB2E00015770 /* SRIOConsumerPool.h */, + 46EB2E00015780 /* SRIOConsumerPool.m */, + 46EB2E00015890 /* SRLog.h */, + 46EB2E000158A0 /* SRLog.m */, + 46EB2E000158B0 /* SRMutex.h */, + 46EB2E000158C0 /* SRMutex.m */, + 46EB2E000157F0 /* SRPinningSecurityPolicy.h */, + 46EB2E00015800 /* SRPinningSecurityPolicy.m */, + 46EB2E000157B0 /* SRProxyConnect.h */, + 46EB2E000157C0 /* SRProxyConnect.m */, + 46EB2E000158D0 /* SRRandom.h */, + 46EB2E000158E0 /* SRRandom.m */, + 46EB2E000157D0 /* SRRunLoopThread.h */, + 46EB2E000157E0 /* SRRunLoopThread.m */, + 46EB2E00015980 /* SRSecurityPolicy.h */, + 46EB2E00015990 /* SRSecurityPolicy.m */, + 46EB2E000158F0 /* SRSIMDHelpers.h */, + 46EB2E00015900 /* SRSIMDHelpers.m */, + 46EB2E00015910 /* SRURLUtilities.h */, + 46EB2E00015920 /* SRURLUtilities.m */, + 46EB2E000159A0 /* SRWebSocket.h */, + 46EB2E000159B0 /* SRWebSocket.m */, + 46EB2E0003C330 /* Support Files */, ); + name = SocketRocket; path = SocketRocket; sourceTree = ""; }; 46EB2E00000650 /* Yoga */ = { isa = PBXGroup; children = ( - 46EB2E00015B40 /* BitUtils.h */, - 46EB2E00015B50 /* CompactValue.h */, - 46EB2E00015BD0 /* log.cpp */, - 46EB2E00015BE0 /* log.h */, - 46EB2E00015BF0 /* Utils.cpp */, - 46EB2E00015C00 /* Utils.h */, - 46EB2E00015C10 /* YGConfig.cpp */, - 46EB2E00015C20 /* YGConfig.h */, - 46EB2E00015C30 /* YGEnums.cpp */, - 46EB2E00015C40 /* YGEnums.h */, - 46EB2E00015C50 /* YGFloatOptional.h */, - 46EB2E00015C60 /* YGLayout.cpp */, - 46EB2E00015C70 /* YGLayout.h */, - 46EB2E00015C80 /* YGMacros.h */, - 46EB2E00015C90 /* YGNode.cpp */, - 46EB2E00015CA0 /* YGNode.h */, - 46EB2E00015CB0 /* YGNodePrint.cpp */, - 46EB2E00015CC0 /* YGNodePrint.h */, - 46EB2E00015CD0 /* YGStyle.cpp */, - 46EB2E00015CE0 /* YGStyle.h */, - 46EB2E00015CF0 /* YGValue.cpp */, - 46EB2E00015D00 /* YGValue.h */, - 46EB2E00015D20 /* Yoga.cpp */, - 46EB2E00015D30 /* Yoga.h */, - 46EB2E00015D10 /* Yoga-internal.h */, - 46EB2E00015B60 /* event */, - 46EB2E00015B90 /* internal */, - 46EB2E000229C0 /* Pod */, - 46EB2E0003C860 /* Support Files */, + 46EB2E000159C0 /* BitUtils.h */, + 46EB2E000159D0 /* CompactValue.h */, + 46EB2E00015A50 /* log.cpp */, + 46EB2E00015A60 /* log.h */, + 46EB2E00015A70 /* Utils.cpp */, + 46EB2E00015A80 /* Utils.h */, + 46EB2E00015A90 /* YGConfig.cpp */, + 46EB2E00015AA0 /* YGConfig.h */, + 46EB2E00015AB0 /* YGEnums.cpp */, + 46EB2E00015AC0 /* YGEnums.h */, + 46EB2E00015AD0 /* YGFloatOptional.h */, + 46EB2E00015AE0 /* YGLayout.cpp */, + 46EB2E00015AF0 /* YGLayout.h */, + 46EB2E00015B00 /* YGMacros.h */, + 46EB2E00015B10 /* YGNode.cpp */, + 46EB2E00015B20 /* YGNode.h */, + 46EB2E00015B30 /* YGNodePrint.cpp */, + 46EB2E00015B40 /* YGNodePrint.h */, + 46EB2E00015B50 /* YGStyle.cpp */, + 46EB2E00015B60 /* YGStyle.h */, + 46EB2E00015B70 /* YGValue.cpp */, + 46EB2E00015B80 /* YGValue.h */, + 46EB2E00015BA0 /* Yoga.cpp */, + 46EB2E00015BB0 /* Yoga.h */, + 46EB2E00015B90 /* Yoga-internal.h */, + 46EB2E000159E0 /* event */, + 46EB2E00015A10 /* internal */, + 46EB2E000228A0 /* Pod */, + 46EB2E0003C5F0 /* Support Files */, ); name = Yoga; path = "../../node_modules/react-native/ReactCommon/yoga"; @@ -25530,340 +25525,352 @@ 46EB2E00000660 /* YogaKit */ = { isa = PBXGroup; children = ( - 46EB2E00015D40 /* UIView+Yoga.h */, - 46EB2E00015D50 /* UIView+Yoga.m */, - 46EB2E00015D70 /* YGLayout.h */, - 46EB2E00015D80 /* YGLayout.m */, - 46EB2E00015D60 /* YGLayout+Private.h */, - 46EB2E00015D90 /* YGLayoutExtensions.swift */, - 46EB2E0003C9D0 /* Support Files */, + 46EB2E00015BC0 /* UIView+Yoga.h */, + 46EB2E00015BD0 /* UIView+Yoga.m */, + 46EB2E00015BF0 /* YGLayout.h */, + 46EB2E00015C00 /* YGLayout.m */, + 46EB2E00015BE0 /* YGLayout+Private.h */, + 46EB2E00015C10 /* YGLayoutExtensions.swift */, + 46EB2E0003C760 /* Support Files */, ); + name = YogaKit; path = YogaKit; sourceTree = ""; }; 46EB2E00000670 /* abseil */ = { isa = PBXGroup; children = ( - 46EB2E00015DA0 /* algorithm */, - 46EB2E00015DF0 /* base */, - 46EB2E00016270 /* container */, - 46EB2E00016490 /* debugging */, - 46EB2E000166A0 /* functional */, - 46EB2E00016710 /* hash */, - 46EB2E000167C0 /* memory */, - 46EB2E000167F0 /* meta */, - 46EB2E00016820 /* numeric */, - 46EB2E000168D0 /* profiling */, - 46EB2E00016930 /* random */, - 46EB2E00016D90 /* status */, - 46EB2E00016E40 /* strings */, - 46EB2E0003DF10 /* Support Files */, - 46EB2E00017400 /* synchronization */, - 46EB2E00017560 /* time */, - 46EB2E000177B0 /* types */, - 46EB2E00017930 /* utility */, + 46EB2E00015C20 /* algorithm */, + 46EB2E00015C70 /* base */, + 46EB2E000160F0 /* container */, + 46EB2E00016310 /* debugging */, + 46EB2E00016520 /* functional */, + 46EB2E00016590 /* hash */, + 46EB2E00016640 /* memory */, + 46EB2E00016670 /* meta */, + 46EB2E000166A0 /* numeric */, + 46EB2E00016750 /* profiling */, + 46EB2E000167B0 /* random */, + 46EB2E00016C10 /* status */, + 46EB2E00016CC0 /* strings */, + 46EB2E0003DCA0 /* Support Files */, + 46EB2E00017280 /* synchronization */, + 46EB2E000173E0 /* time */, + 46EB2E00017630 /* types */, + 46EB2E000177B0 /* utility */, ); + name = abseil; path = abseil; sourceTree = ""; }; 46EB2E00000680 /* boost */ = { isa = PBXGroup; children = ( - 46EB2E0003DFB0 /* Support Files */, + 46EB2E0003DD40 /* Support Files */, ); + name = boost; path = boost; sourceTree = ""; }; 46EB2E00000690 /* fmt */ = { isa = PBXGroup; children = ( - 46EB2E00017970 /* chrono.h */, - 46EB2E00017980 /* color.h */, - 46EB2E00017990 /* compile.h */, - 46EB2E000179A0 /* core.h */, - 46EB2E00017960 /* format.cc */, - 46EB2E000179C0 /* format.h */, - 46EB2E000179B0 /* format-inl.h */, - 46EB2E000179D0 /* locale.h */, - 46EB2E000179E0 /* os.h */, - 46EB2E000179F0 /* ostream.h */, - 46EB2E00017A00 /* posix.h */, - 46EB2E00017A10 /* printf.h */, - 46EB2E00017A20 /* ranges.h */, - 46EB2E0003E130 /* Support Files */, + 46EB2E000177F0 /* chrono.h */, + 46EB2E00017800 /* color.h */, + 46EB2E00017810 /* compile.h */, + 46EB2E00017820 /* core.h */, + 46EB2E000177E0 /* format.cc */, + 46EB2E00017840 /* format.h */, + 46EB2E00017830 /* format-inl.h */, + 46EB2E00017850 /* locale.h */, + 46EB2E00017860 /* os.h */, + 46EB2E00017870 /* ostream.h */, + 46EB2E00017880 /* posix.h */, + 46EB2E00017890 /* printf.h */, + 46EB2E000178A0 /* ranges.h */, + 46EB2E0003DEC0 /* Support Files */, ); + name = fmt; path = fmt; sourceTree = ""; }; 46EB2E000006A0 /* gRPC-C++ */ = { isa = PBXGroup; children = ( - 46EB2E00017A30 /* Implementation */, - 46EB2E0001A780 /* Interface */, - 46EB2E00022060 /* Resources */, - 46EB2E0003E2A0 /* Support Files */, + 46EB2E000178B0 /* Implementation */, + 46EB2E0001A600 /* Interface */, + 46EB2E00021F40 /* Resources */, + 46EB2E0003E030 /* Support Files */, ); + name = "gRPC-C++"; path = "gRPC-C++"; sourceTree = ""; }; 46EB2E000006B0 /* gRPC-Core */ = { isa = PBXGroup; children = ( - 46EB2E0001AE60 /* Implementation */, - 46EB2E000201F0 /* Interface */, - 46EB2E00046EF0 /* Support Files */, + 46EB2E0001ACE0 /* Implementation */, + 46EB2E00020070 /* Interface */, + 46EB2E00046C80 /* Support Files */, ); + name = "gRPC-Core"; path = "gRPC-Core"; sourceTree = ""; }; 46EB2E000006C0 /* glog */ = { isa = PBXGroup; children = ( - 46EB2E00020620 /* demangle.cc */, - 46EB2E000205E0 /* log_severity.h */, - 46EB2E00020630 /* logging.cc */, - 46EB2E000205D0 /* logging.h */, - 46EB2E00020640 /* raw_logging.cc */, - 46EB2E000205F0 /* raw_logging.h */, - 46EB2E00020650 /* signalhandler.cc */, - 46EB2E00020600 /* stl_logging.h */, - 46EB2E00020660 /* symbolize.cc */, - 46EB2E00020670 /* utilities.cc */, - 46EB2E00020680 /* vlog_is_on.cc */, - 46EB2E00020610 /* vlog_is_on.h */, - 46EB2E00047090 /* Support Files */, + 46EB2E000204A0 /* demangle.cc */, + 46EB2E00020460 /* log_severity.h */, + 46EB2E000204B0 /* logging.cc */, + 46EB2E00020450 /* logging.h */, + 46EB2E000204C0 /* raw_logging.cc */, + 46EB2E00020470 /* raw_logging.h */, + 46EB2E000204D0 /* signalhandler.cc */, + 46EB2E00020480 /* stl_logging.h */, + 46EB2E000204E0 /* symbolize.cc */, + 46EB2E000204F0 /* utilities.cc */, + 46EB2E00020500 /* vlog_is_on.cc */, + 46EB2E00020490 /* vlog_is_on.h */, + 46EB2E00046E20 /* Support Files */, ); + name = glog; path = glog; sourceTree = ""; }; 46EB2E000006D0 /* hermes-engine */ = { isa = PBXGroup; children = ( - 46EB2E000206D0 /* Buffer.h */, - 46EB2E00020690 /* CompileJS.h */, - 46EB2E000206E0 /* CrashManager.h */, - 46EB2E000206F0 /* CtorConfig.h */, - 46EB2E000206A0 /* DebuggerAPI.h */, - 46EB2E00020700 /* DebuggerTypes.h */, - 46EB2E00020790 /* decorator.h */, - 46EB2E00020710 /* GCConfig.h */, - 46EB2E00020720 /* GCTripwireContext.h */, - 46EB2E000206B0 /* hermes.h */, - 46EB2E000206C0 /* hermes_tracing.h */, - 46EB2E000207A0 /* instrumentation.h */, - 46EB2E000207C0 /* jsi.h */, - 46EB2E000207B0 /* jsi-inl.h */, - 46EB2E000207D0 /* JSIDynamic.h */, - 46EB2E000207E0 /* jsilib.h */, - 46EB2E00020730 /* RuntimeConfig.h */, - 46EB2E00020740 /* SynthTrace.h */, - 46EB2E00020750 /* SynthTraceParser.h */, - 46EB2E000207F0 /* threadsafe.h */, - 46EB2E00020760 /* TimerStats.h */, - 46EB2E00020770 /* TraceInterpreter.h */, - 46EB2E00020780 /* TracingRuntime.h */, - 46EB2E00021F30 /* Frameworks */, - 46EB2E00047130 /* Support Files */, + 46EB2E00020550 /* Buffer.h */, + 46EB2E00020510 /* CompileJS.h */, + 46EB2E00020560 /* CrashManager.h */, + 46EB2E00020570 /* CtorConfig.h */, + 46EB2E00020520 /* DebuggerAPI.h */, + 46EB2E00020580 /* DebuggerTypes.h */, + 46EB2E00020610 /* decorator.h */, + 46EB2E00020590 /* GCConfig.h */, + 46EB2E000205A0 /* GCTripwireContext.h */, + 46EB2E00020530 /* hermes.h */, + 46EB2E00020540 /* hermes_tracing.h */, + 46EB2E00020620 /* instrumentation.h */, + 46EB2E00020640 /* jsi.h */, + 46EB2E00020630 /* jsi-inl.h */, + 46EB2E00020650 /* JSIDynamic.h */, + 46EB2E00020660 /* jsilib.h */, + 46EB2E000205B0 /* RuntimeConfig.h */, + 46EB2E000205C0 /* SynthTrace.h */, + 46EB2E000205D0 /* SynthTraceParser.h */, + 46EB2E00020670 /* threadsafe.h */, + 46EB2E000205E0 /* TimerStats.h */, + 46EB2E000205F0 /* TraceInterpreter.h */, + 46EB2E00020600 /* TracingRuntime.h */, + 46EB2E00021E10 /* Frameworks */, + 46EB2E00046EC0 /* Support Files */, ); + name = "hermes-engine"; path = "hermes-engine"; sourceTree = ""; }; 46EB2E000006E0 /* leveldb-library */ = { isa = PBXGroup; children = ( - 46EB2E00020B20 /* arena.cc */, - 46EB2E00020B30 /* arena.h */, - 46EB2E00020A20 /* block.cc */, - 46EB2E00020A30 /* block.h */, - 46EB2E00020A40 /* block_builder.cc */, - 46EB2E00020A50 /* block_builder.h */, - 46EB2E00020B40 /* bloom.cc */, - 46EB2E00020800 /* builder.cc */, - 46EB2E00020810 /* builder.h */, - 46EB2E00020820 /* c.cc */, - 46EB2E00020D00 /* c.h */, - 46EB2E00020B50 /* cache.cc */, - 46EB2E00020D10 /* cache.h */, - 46EB2E00020B60 /* coding.cc */, - 46EB2E00020B70 /* coding.h */, - 46EB2E00020B80 /* comparator.cc */, - 46EB2E00020D20 /* comparator.h */, - 46EB2E00020B90 /* crc32c.cc */, - 46EB2E00020BA0 /* crc32c.h */, - 46EB2E00020D30 /* db.h */, - 46EB2E00020850 /* db_impl.cc */, - 46EB2E00020860 /* db_impl.h */, - 46EB2E00020870 /* db_iter.cc */, - 46EB2E00020880 /* db_iter.h */, - 46EB2E00020830 /* dbformat.cc */, - 46EB2E00020840 /* dbformat.h */, - 46EB2E00020890 /* dumpfile.cc */, - 46EB2E00020D40 /* dumpfile.h */, - 46EB2E00020BB0 /* env.cc */, - 46EB2E00020D50 /* env.h */, - 46EB2E00020BC0 /* env_posix.cc */, - 46EB2E00020BD0 /* env_posix_test_helper.h */, - 46EB2E00020BE0 /* env_windows_test_helper.h */, - 46EB2E00020D60 /* export.h */, - 46EB2E000208A0 /* filename.cc */, - 46EB2E000208B0 /* filename.h */, - 46EB2E00020A60 /* filter_block.cc */, - 46EB2E00020A70 /* filter_block.h */, - 46EB2E00020BF0 /* filter_policy.cc */, - 46EB2E00020D70 /* filter_policy.h */, - 46EB2E00020A80 /* format.cc */, - 46EB2E00020A90 /* format.h */, - 46EB2E00020C00 /* hash.cc */, - 46EB2E00020C10 /* hash.h */, - 46EB2E00020C20 /* histogram.cc */, - 46EB2E00020C30 /* histogram.h */, - 46EB2E00020AA0 /* iterator.cc */, - 46EB2E00020D80 /* iterator.h */, - 46EB2E00020AB0 /* iterator_wrapper.h */, - 46EB2E000208C0 /* log_format.h */, - 46EB2E000208D0 /* log_reader.cc */, - 46EB2E000208E0 /* log_reader.h */, - 46EB2E000208F0 /* log_writer.cc */, - 46EB2E00020900 /* log_writer.h */, - 46EB2E00020C40 /* logging.cc */, - 46EB2E00020C50 /* logging.h */, - 46EB2E00020910 /* memtable.cc */, - 46EB2E00020920 /* memtable.h */, - 46EB2E00020AC0 /* merger.cc */, - 46EB2E00020AD0 /* merger.h */, - 46EB2E00020C60 /* mutexlock.h */, - 46EB2E00020C70 /* no_destructor.h */, - 46EB2E00020C80 /* options.cc */, - 46EB2E00020D90 /* options.h */, - 46EB2E000209E0 /* port.h */, - 46EB2E000209F0 /* port_example.h */, - 46EB2E00020A00 /* port_stdcxx.h */, - 46EB2E00020C90 /* posix_logger.h */, - 46EB2E00020CA0 /* random.h */, - 46EB2E00020930 /* repair.cc */, - 46EB2E00020940 /* skiplist.h */, - 46EB2E00020DA0 /* slice.h */, - 46EB2E00020950 /* snapshot.h */, - 46EB2E00020CB0 /* status.cc */, - 46EB2E00020DB0 /* status.h */, - 46EB2E00020AE0 /* table.cc */, - 46EB2E00020DC0 /* table.h */, - 46EB2E00020AF0 /* table_builder.cc */, - 46EB2E00020DD0 /* table_builder.h */, - 46EB2E00020960 /* table_cache.cc */, - 46EB2E00020970 /* table_cache.h */, - 46EB2E00020CC0 /* testharness.cc */, - 46EB2E00020CD0 /* testharness.h */, - 46EB2E00020CE0 /* testutil.h */, - 46EB2E00020A10 /* thread_annotations.h */, - 46EB2E00020B00 /* two_level_iterator.cc */, - 46EB2E00020B10 /* two_level_iterator.h */, - 46EB2E00020980 /* version_edit.cc */, - 46EB2E00020990 /* version_edit.h */, - 46EB2E000209A0 /* version_set.cc */, - 46EB2E000209B0 /* version_set.h */, - 46EB2E00020CF0 /* windows_logger.h */, - 46EB2E000209C0 /* write_batch.cc */, - 46EB2E00020DE0 /* write_batch.h */, - 46EB2E000209D0 /* write_batch_internal.h */, - 46EB2E000477E0 /* Support Files */, + 46EB2E000209A0 /* arena.cc */, + 46EB2E000209B0 /* arena.h */, + 46EB2E000208A0 /* block.cc */, + 46EB2E000208B0 /* block.h */, + 46EB2E000208C0 /* block_builder.cc */, + 46EB2E000208D0 /* block_builder.h */, + 46EB2E000209C0 /* bloom.cc */, + 46EB2E00020680 /* builder.cc */, + 46EB2E00020690 /* builder.h */, + 46EB2E000206A0 /* c.cc */, + 46EB2E00020B80 /* c.h */, + 46EB2E000209D0 /* cache.cc */, + 46EB2E00020B90 /* cache.h */, + 46EB2E000209E0 /* coding.cc */, + 46EB2E000209F0 /* coding.h */, + 46EB2E00020A00 /* comparator.cc */, + 46EB2E00020BA0 /* comparator.h */, + 46EB2E00020A10 /* crc32c.cc */, + 46EB2E00020A20 /* crc32c.h */, + 46EB2E00020BB0 /* db.h */, + 46EB2E000206D0 /* db_impl.cc */, + 46EB2E000206E0 /* db_impl.h */, + 46EB2E000206F0 /* db_iter.cc */, + 46EB2E00020700 /* db_iter.h */, + 46EB2E000206B0 /* dbformat.cc */, + 46EB2E000206C0 /* dbformat.h */, + 46EB2E00020710 /* dumpfile.cc */, + 46EB2E00020BC0 /* dumpfile.h */, + 46EB2E00020A30 /* env.cc */, + 46EB2E00020BD0 /* env.h */, + 46EB2E00020A40 /* env_posix.cc */, + 46EB2E00020A50 /* env_posix_test_helper.h */, + 46EB2E00020A60 /* env_windows_test_helper.h */, + 46EB2E00020BE0 /* export.h */, + 46EB2E00020720 /* filename.cc */, + 46EB2E00020730 /* filename.h */, + 46EB2E000208E0 /* filter_block.cc */, + 46EB2E000208F0 /* filter_block.h */, + 46EB2E00020A70 /* filter_policy.cc */, + 46EB2E00020BF0 /* filter_policy.h */, + 46EB2E00020900 /* format.cc */, + 46EB2E00020910 /* format.h */, + 46EB2E00020A80 /* hash.cc */, + 46EB2E00020A90 /* hash.h */, + 46EB2E00020AA0 /* histogram.cc */, + 46EB2E00020AB0 /* histogram.h */, + 46EB2E00020920 /* iterator.cc */, + 46EB2E00020C00 /* iterator.h */, + 46EB2E00020930 /* iterator_wrapper.h */, + 46EB2E00020740 /* log_format.h */, + 46EB2E00020750 /* log_reader.cc */, + 46EB2E00020760 /* log_reader.h */, + 46EB2E00020770 /* log_writer.cc */, + 46EB2E00020780 /* log_writer.h */, + 46EB2E00020AC0 /* logging.cc */, + 46EB2E00020AD0 /* logging.h */, + 46EB2E00020790 /* memtable.cc */, + 46EB2E000207A0 /* memtable.h */, + 46EB2E00020940 /* merger.cc */, + 46EB2E00020950 /* merger.h */, + 46EB2E00020AE0 /* mutexlock.h */, + 46EB2E00020AF0 /* no_destructor.h */, + 46EB2E00020B00 /* options.cc */, + 46EB2E00020C10 /* options.h */, + 46EB2E00020860 /* port.h */, + 46EB2E00020870 /* port_example.h */, + 46EB2E00020880 /* port_stdcxx.h */, + 46EB2E00020B10 /* posix_logger.h */, + 46EB2E00020B20 /* random.h */, + 46EB2E000207B0 /* repair.cc */, + 46EB2E000207C0 /* skiplist.h */, + 46EB2E00020C20 /* slice.h */, + 46EB2E000207D0 /* snapshot.h */, + 46EB2E00020B30 /* status.cc */, + 46EB2E00020C30 /* status.h */, + 46EB2E00020960 /* table.cc */, + 46EB2E00020C40 /* table.h */, + 46EB2E00020970 /* table_builder.cc */, + 46EB2E00020C50 /* table_builder.h */, + 46EB2E000207E0 /* table_cache.cc */, + 46EB2E000207F0 /* table_cache.h */, + 46EB2E00020B40 /* testharness.cc */, + 46EB2E00020B50 /* testharness.h */, + 46EB2E00020B60 /* testutil.h */, + 46EB2E00020890 /* thread_annotations.h */, + 46EB2E00020980 /* two_level_iterator.cc */, + 46EB2E00020990 /* two_level_iterator.h */, + 46EB2E00020800 /* version_edit.cc */, + 46EB2E00020810 /* version_edit.h */, + 46EB2E00020820 /* version_set.cc */, + 46EB2E00020830 /* version_set.h */, + 46EB2E00020B70 /* windows_logger.h */, + 46EB2E00020840 /* write_batch.cc */, + 46EB2E00020C60 /* write_batch.h */, + 46EB2E00020850 /* write_batch_internal.h */, + 46EB2E00047570 /* Support Files */, ); + name = "leveldb-library"; path = "leveldb-library"; sourceTree = ""; }; 46EB2E000006F0 /* libevent */ = { isa = PBXGroup; children = ( - 46EB2E00020FB0 /* buffer.c */, - 46EB2E00020FC0 /* bufferevent.c */, - 46EB2E00020E40 /* bufferevent-internal.h */, - 46EB2E00020FD0 /* bufferevent_filter.c */, - 46EB2E00020FE0 /* bufferevent_pair.c */, - 46EB2E00020FF0 /* bufferevent_ratelim.c */, - 46EB2E00021000 /* bufferevent_sock.c */, - 46EB2E00020E50 /* changelist-internal.h */, - 46EB2E00020E60 /* defer-internal.h */, - 46EB2E00020E70 /* epolltable-internal.h */, - 46EB2E00020E80 /* evbuffer-internal.h */, - 46EB2E00020E90 /* evconfig-private.h */, - 46EB2E000210E0 /* evdns.c */, - 46EB2E00020DF0 /* evdns.h */, - 46EB2E00021010 /* event.c */, - 46EB2E00020E00 /* event.h */, - 46EB2E00020EA0 /* event-internal.h */, - 46EB2E000210F0 /* event_tagging.c */, - 46EB2E00020E10 /* evhttp.h */, - 46EB2E00021020 /* evmap.c */, - 46EB2E00020EB0 /* evmap-internal.h */, - 46EB2E00021100 /* evrpc.c */, - 46EB2E00020E20 /* evrpc.h */, - 46EB2E00020EC0 /* evrpc-internal.h */, - 46EB2E00020ED0 /* evsignal-internal.h */, - 46EB2E00021030 /* evthread.c */, - 46EB2E00020EE0 /* evthread-internal.h */, - 46EB2E00021040 /* evutil.c */, - 46EB2E00020E30 /* evutil.h */, - 46EB2E00021050 /* evutil_rand.c */, - 46EB2E00021060 /* evutil_time.c */, - 46EB2E00020EF0 /* ht-internal.h */, - 46EB2E00021110 /* http.c */, - 46EB2E00020F00 /* http-internal.h */, - 46EB2E00020F10 /* iocp-internal.h */, - 46EB2E00020F20 /* ipv6-internal.h */, - 46EB2E00021070 /* kqueue.c */, - 46EB2E00020F30 /* kqueue-internal.h */, - 46EB2E00021080 /* listener.c */, - 46EB2E00021090 /* log.c */, - 46EB2E00020F40 /* log-internal.h */, - 46EB2E00020F50 /* minheap-internal.h */, - 46EB2E00020F60 /* mm-internal.h */, - 46EB2E000210A0 /* poll.c */, - 46EB2E00020F70 /* ratelim-internal.h */, - 46EB2E000210B0 /* select.c */, - 46EB2E000210C0 /* signal.c */, - 46EB2E000210D0 /* strlcpy.c */, - 46EB2E00020F80 /* strlcpy-internal.h */, - 46EB2E00020F90 /* time-internal.h */, - 46EB2E00020FA0 /* util-internal.h */, - 46EB2E00047BF0 /* Support Files */, + 46EB2E00020E30 /* buffer.c */, + 46EB2E00020E40 /* bufferevent.c */, + 46EB2E00020CC0 /* bufferevent-internal.h */, + 46EB2E00020E50 /* bufferevent_filter.c */, + 46EB2E00020E60 /* bufferevent_pair.c */, + 46EB2E00020E70 /* bufferevent_ratelim.c */, + 46EB2E00020E80 /* bufferevent_sock.c */, + 46EB2E00020CD0 /* changelist-internal.h */, + 46EB2E00020CE0 /* defer-internal.h */, + 46EB2E00020CF0 /* epolltable-internal.h */, + 46EB2E00020D00 /* evbuffer-internal.h */, + 46EB2E00020D10 /* evconfig-private.h */, + 46EB2E00020F60 /* evdns.c */, + 46EB2E00020C70 /* evdns.h */, + 46EB2E00020E90 /* event.c */, + 46EB2E00020C80 /* event.h */, + 46EB2E00020D20 /* event-internal.h */, + 46EB2E00020F70 /* event_tagging.c */, + 46EB2E00020C90 /* evhttp.h */, + 46EB2E00020EA0 /* evmap.c */, + 46EB2E00020D30 /* evmap-internal.h */, + 46EB2E00020F80 /* evrpc.c */, + 46EB2E00020CA0 /* evrpc.h */, + 46EB2E00020D40 /* evrpc-internal.h */, + 46EB2E00020D50 /* evsignal-internal.h */, + 46EB2E00020EB0 /* evthread.c */, + 46EB2E00020D60 /* evthread-internal.h */, + 46EB2E00020EC0 /* evutil.c */, + 46EB2E00020CB0 /* evutil.h */, + 46EB2E00020ED0 /* evutil_rand.c */, + 46EB2E00020EE0 /* evutil_time.c */, + 46EB2E00020D70 /* ht-internal.h */, + 46EB2E00020F90 /* http.c */, + 46EB2E00020D80 /* http-internal.h */, + 46EB2E00020D90 /* iocp-internal.h */, + 46EB2E00020DA0 /* ipv6-internal.h */, + 46EB2E00020EF0 /* kqueue.c */, + 46EB2E00020DB0 /* kqueue-internal.h */, + 46EB2E00020F00 /* listener.c */, + 46EB2E00020F10 /* log.c */, + 46EB2E00020DC0 /* log-internal.h */, + 46EB2E00020DD0 /* minheap-internal.h */, + 46EB2E00020DE0 /* mm-internal.h */, + 46EB2E00020F20 /* poll.c */, + 46EB2E00020DF0 /* ratelim-internal.h */, + 46EB2E00020F30 /* select.c */, + 46EB2E00020F40 /* signal.c */, + 46EB2E00020F50 /* strlcpy.c */, + 46EB2E00020E00 /* strlcpy-internal.h */, + 46EB2E00020E10 /* time-internal.h */, + 46EB2E00020E20 /* util-internal.h */, + 46EB2E00047980 /* Support Files */, ); + name = libevent; path = libevent; sourceTree = ""; }; 46EB2E00000700 /* libwebp */ = { isa = PBXGroup; children = ( - 46EB2E00021120 /* demux */, - 46EB2E00021160 /* mux */, - 46EB2E000486C0 /* Support Files */, - 46EB2E000211E0 /* webp */, + 46EB2E00020FA0 /* demux */, + 46EB2E00020FE0 /* mux */, + 46EB2E00048450 /* Support Files */, + 46EB2E00021060 /* webp */, ); + name = libwebp; path = libwebp; sourceTree = ""; }; 46EB2E00000710 /* nanopb */ = { isa = PBXGroup; children = ( - 46EB2E00021B40 /* pb.h */, - 46EB2E00021B50 /* pb_common.c */, - 46EB2E00021B60 /* pb_common.h */, - 46EB2E00021B70 /* pb_decode.c */, - 46EB2E00021B80 /* pb_decode.h */, - 46EB2E00021B90 /* pb_encode.c */, - 46EB2E00021BA0 /* pb_encode.h */, - 46EB2E00021BB0 /* decode */, - 46EB2E00021BC0 /* encode */, - 46EB2E00048810 /* Support Files */, + 46EB2E000219C0 /* pb.h */, + 46EB2E000219D0 /* pb_common.c */, + 46EB2E000219E0 /* pb_common.h */, + 46EB2E000219F0 /* pb_decode.c */, + 46EB2E00021A00 /* pb_decode.h */, + 46EB2E00021A10 /* pb_encode.c */, + 46EB2E00021A20 /* pb_encode.h */, + 46EB2E00021A30 /* decode */, + 46EB2E00021A40 /* encode */, + 46EB2E000485A0 /* Support Files */, ); + name = nanopb; path = nanopb; sourceTree = ""; }; 46EB2E00000720 /* react-native-config */ = { isa = PBXGroup; children = ( - 46EB2E00021BD0 /* App */, - 46EB2E000229E0 /* Pod */, - 46EB2E00048930 /* Support Files */, + 46EB2E00021A50 /* App */, + 46EB2E000228C0 /* Pod */, + 46EB2E000486C0 /* Support Files */, ); name = "react-native-config"; path = "../../node_modules/react-native-config"; @@ -25872,14 +25879,14 @@ 46EB2E00000730 /* react-native-flipper */ = { isa = PBXGroup; children = ( - 46EB2E00021C20 /* FlipperModule.h */, - 46EB2E00021C30 /* FlipperModule.m */, - 46EB2E00021C40 /* FlipperReactNativeJavaScriptPlugin.h */, - 46EB2E00021C50 /* FlipperReactNativeJavaScriptPlugin.m */, - 46EB2E00021C60 /* FlipperReactNativeJavaScriptPluginManager.h */, - 46EB2E00021C70 /* FlipperReactNativeJavaScriptPluginManager.m */, - 46EB2E00022A20 /* Pod */, - 46EB2E00048A70 /* Support Files */, + 46EB2E00021AA0 /* FlipperModule.h */, + 46EB2E00021AB0 /* FlipperModule.m */, + 46EB2E00021AC0 /* FlipperReactNativeJavaScriptPlugin.h */, + 46EB2E00021AD0 /* FlipperReactNativeJavaScriptPlugin.m */, + 46EB2E00021AE0 /* FlipperReactNativeJavaScriptPluginManager.h */, + 46EB2E00021AF0 /* FlipperReactNativeJavaScriptPluginManager.m */, + 46EB2E00022900 /* Pod */, + 46EB2E00048800 /* Support Files */, ); name = "react-native-flipper"; path = "../../node_modules/react-native-flipper"; @@ -25888,18 +25895,18 @@ 46EB2E00000740 /* react-native-pdf */ = { isa = PBXGroup; children = ( - 46EB2E00021C80 /* PdfManager.h */, - 46EB2E00021C90 /* PdfManager.m */, - 46EB2E00021CA0 /* RCTPdfPageView.h */, - 46EB2E00021CB0 /* RCTPdfPageView.m */, - 46EB2E00021CC0 /* RCTPdfPageViewManager.h */, - 46EB2E00021CD0 /* RCTPdfPageViewManager.m */, - 46EB2E00021CE0 /* RCTPdfView.h */, - 46EB2E00021CF0 /* RCTPdfView.m */, - 46EB2E00021D00 /* RCTPdfViewManager.h */, - 46EB2E00021D10 /* RCTPdfViewManager.m */, - 46EB2E00022A60 /* Pod */, - 46EB2E00048BF0 /* Support Files */, + 46EB2E00021B00 /* PdfManager.h */, + 46EB2E00021B10 /* PdfManager.m */, + 46EB2E00021B20 /* RCTPdfPageView.h */, + 46EB2E00021B30 /* RCTPdfPageView.m */, + 46EB2E00021B40 /* RCTPdfPageViewManager.h */, + 46EB2E00021B50 /* RCTPdfPageViewManager.m */, + 46EB2E00021B60 /* RCTPdfView.h */, + 46EB2E00021B70 /* RCTPdfView.m */, + 46EB2E00021B80 /* RCTPdfViewManager.h */, + 46EB2E00021B90 /* RCTPdfViewManager.m */, + 46EB2E00022940 /* Pod */, + 46EB2E00048980 /* Support Files */, ); name = "react-native-pdf"; path = "../../node_modules/react-native-pdf"; @@ -25908,8611 +25915,8693 @@ 46EB2E00000750 /* react-native-safe-area-context */ = { isa = PBXGroup; children = ( - 46EB2E00021D20 /* RNCSafeAreaContext.h */, - 46EB2E00021D30 /* RNCSafeAreaContext.mm */, - 46EB2E00021D40 /* RNCSafeAreaProvider.h */, - 46EB2E00021D50 /* RNCSafeAreaProvider.m */, - 46EB2E00021D60 /* RNCSafeAreaProviderManager.h */, - 46EB2E00021D70 /* RNCSafeAreaProviderManager.m */, - 46EB2E00021D80 /* RNCSafeAreaShadowView.h */, - 46EB2E00021D90 /* RNCSafeAreaShadowView.m */, - 46EB2E00021DA0 /* RNCSafeAreaUtils.h */, - 46EB2E00021DB0 /* RNCSafeAreaUtils.m */, - 46EB2E00021DC0 /* RNCSafeAreaView.h */, - 46EB2E00021DD0 /* RNCSafeAreaView.m */, - 46EB2E00021DE0 /* RNCSafeAreaViewEdges.h */, - 46EB2E00021DF0 /* RNCSafeAreaViewEdges.m */, - 46EB2E00021E00 /* RNCSafeAreaViewLocalData.h */, - 46EB2E00021E10 /* RNCSafeAreaViewLocalData.m */, - 46EB2E00021E20 /* RNCSafeAreaViewManager.h */, - 46EB2E00021E30 /* RNCSafeAreaViewManager.m */, - 46EB2E00021E40 /* RNCSafeAreaViewMode.h */, - 46EB2E00021E50 /* RNCSafeAreaViewMode.m */, - 46EB2E00022AA0 /* Pod */, - 46EB2E00048E10 /* Support Files */, + 46EB2E00021BA0 /* RNCSafeAreaContext.h */, + 46EB2E00021BB0 /* RNCSafeAreaContext.mm */, + 46EB2E00021BC0 /* RNCSafeAreaProvider.h */, + 46EB2E00021BD0 /* RNCSafeAreaProvider.m */, + 46EB2E00021BE0 /* RNCSafeAreaProviderManager.h */, + 46EB2E00021BF0 /* RNCSafeAreaProviderManager.m */, + 46EB2E00021C00 /* RNCSafeAreaShadowView.h */, + 46EB2E00021C10 /* RNCSafeAreaShadowView.m */, + 46EB2E00021C20 /* RNCSafeAreaUtils.h */, + 46EB2E00021C30 /* RNCSafeAreaUtils.m */, + 46EB2E00021C40 /* RNCSafeAreaView.h */, + 46EB2E00021C50 /* RNCSafeAreaView.m */, + 46EB2E00021C60 /* RNCSafeAreaViewEdges.h */, + 46EB2E00021C70 /* RNCSafeAreaViewEdges.m */, + 46EB2E00021C80 /* RNCSafeAreaViewLocalData.h */, + 46EB2E00021C90 /* RNCSafeAreaViewLocalData.m */, + 46EB2E00021CA0 /* RNCSafeAreaViewManager.h */, + 46EB2E00021CB0 /* RNCSafeAreaViewManager.m */, + 46EB2E00021CC0 /* RNCSafeAreaViewMode.h */, + 46EB2E00021CD0 /* RNCSafeAreaViewMode.m */, + 46EB2E00022980 /* Pod */, + 46EB2E00048BA0 /* Support Files */, ); name = "react-native-safe-area-context"; path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; - 46EB2E000007F0 /* Implementation */ = { - isa = PBXGroup; - children = ( - 46EB2E00000BB0 /* a_bitstr.c */, - 46EB2E00000BC0 /* a_bool.c */, - 46EB2E00000BD0 /* a_d2i_fp.c */, - 46EB2E00001B40 /* a_digest.c */, - 46EB2E00000BE0 /* a_dup.c */, - 46EB2E00000BF0 /* a_enum.c */, - 46EB2E00000C00 /* a_gentm.c */, - 46EB2E00000C10 /* a_i2d_fp.c */, - 46EB2E00000C20 /* a_int.c */, - 46EB2E00000C30 /* a_mbstr.c */, - 46EB2E00000C40 /* a_object.c */, - 46EB2E00000C50 /* a_octet.c */, - 46EB2E00000C60 /* a_print.c */, - 46EB2E00001B50 /* a_sign.c */, - 46EB2E00000C70 /* a_strex.c */, - 46EB2E00000C80 /* a_strnid.c */, - 46EB2E00000C90 /* a_time.c */, - 46EB2E00000CA0 /* a_type.c */, - 46EB2E00000CB0 /* a_utctm.c */, - 46EB2E00000CC0 /* a_utf8.c */, - 46EB2E00001B60 /* a_verify.c */, - 46EB2E000012A0 /* add.c */, - 46EB2E00001410 /* aead.c */, - 46EB2E00001250 /* aes.c */, - 46EB2E00001260 /* aes_nohw.c */, - 46EB2E00001B20 /* algorithm.c */, - 46EB2E00000E80 /* asn1_compat.c */, - 46EB2E00001B30 /* asn1_gen.c */, - 46EB2E00000B80 /* asn1_lib.c */, - 46EB2E00000B90 /* asn1_par.c */, - 46EB2E00000BA0 /* asn_pack.c */, - 46EB2E00000D80 /* base64.c */, - 46EB2E00000E90 /* ber.c */, - 46EB2E00000D90 /* bio.c */, - 46EB2E00000DA0 /* bio_mem.c */, - 46EB2E00000800 /* bio_ssl.cc */, - 46EB2E00000E40 /* blake2.c */, - 46EB2E00001770 /* blinding.c */, - 46EB2E000012C0 /* bn.c */, - 46EB2E00000E50 /* bn_asn1.c */, - 46EB2E00000E70 /* buf.c */, - 46EB2E00001B70 /* by_dir.c */, - 46EB2E00001B80 /* by_file.c */, - 46EB2E000012D0 /* bytes.c */, - 46EB2E00000EA0 /* cbb.c */, - 46EB2E00001680 /* cbc.c */, - 46EB2E00000EB0 /* cbs.c */, - 46EB2E00001690 /* cfb.c */, - 46EB2E00000EE0 /* chacha.c */, - 46EB2E00000CD0 /* charmap.h */, - 46EB2E00001490 /* check.c */, - 46EB2E00001420 /* cipher.c */, - 46EB2E00000F00 /* cipher_extra.c */, - 46EB2E00000FC0 /* cmac.c */, - 46EB2E000012E0 /* cmp.c */, - 46EB2E00000FD0 /* conf.c */, - 46EB2E00000FE0 /* conf_def.h */, - 46EB2E00000DB0 /* connect.c */, - 46EB2E00000E60 /* convert.c */, - 46EB2E00000A60 /* cpu-aarch64-fuchsia.c */, - 46EB2E00000A70 /* cpu-aarch64-linux.c */, - 46EB2E00000A80 /* cpu-aarch64-win.c */, - 46EB2E00000AB0 /* cpu-arm.c */, - 46EB2E00000A90 /* cpu-arm-linux.c */, - 46EB2E00000AA0 /* cpu-arm-linux.h */, - 46EB2E00000AC0 /* cpu-intel.c */, - 46EB2E00000AD0 /* cpu-ppc64le.c */, - 46EB2E00000AE0 /* crypto.c */, - 46EB2E000016A0 /* ctr.c */, - 46EB2E00001700 /* ctrdrbg.c */, - 46EB2E000012F0 /* ctx.c */, - 46EB2E00001000 /* curve25519.c */, - 46EB2E00002040 /* curve25519_32.h */, - 46EB2E00002050 /* curve25519_64.h */, - 46EB2E00001010 /* curve25519_tables.h */, - 46EB2E00000810 /* d1_both.cc */, - 46EB2E00000820 /* d1_lib.cc */, - 46EB2E00000830 /* d1_pkt.cc */, - 46EB2E00000840 /* d1_srtp.cc */, - 46EB2E00001460 /* delocate.h */, - 46EB2E00000F10 /* derive_key.c */, - 46EB2E00001470 /* des.c */, - 46EB2E00001A30 /* deterministic.c */, - 46EB2E000014A0 /* dh.c */, - 46EB2E00001040 /* dh_asn1.c */, - 46EB2E000014B0 /* digest.c */, - 46EB2E00001060 /* digest_extra.c */, - 46EB2E000014C0 /* digests.c */, - 46EB2E00001130 /* digestsign.c */, - 46EB2E00001300 /* div.c */, - 46EB2E00001310 /* div_extra.c */, - 46EB2E00001070 /* dsa.c */, - 46EB2E00001080 /* dsa_asn1.c */, - 46EB2E00000850 /* dtls_method.cc */, - 46EB2E00000860 /* dtls_record.cc */, - 46EB2E00001430 /* e_aes.c */, - 46EB2E00000F20 /* e_aesccm.c */, - 46EB2E00000F30 /* e_aesctrhmac.c */, - 46EB2E00000F40 /* e_aesgcmsiv.c */, - 46EB2E00000F50 /* e_chacha20poly1305.c */, - 46EB2E00001440 /* e_des.c */, - 46EB2E00000F60 /* e_null.c */, - 46EB2E00000F70 /* e_rc2.c */, - 46EB2E00000F80 /* e_rc4.c */, - 46EB2E00000F90 /* e_tls.c */, - 46EB2E000014F0 /* ec.c */, - 46EB2E000010C0 /* ec_asn1.c */, - 46EB2E000010D0 /* ec_derive.c */, - 46EB2E00001500 /* ec_key.c */, - 46EB2E00001510 /* ec_montgomery.c */, - 46EB2E00001600 /* ecdh.c */, - 46EB2E000010A0 /* ecdh_extra.c */, - 46EB2E00001610 /* ecdsa.c */, - 46EB2E000010B0 /* ecdsa_asn1.c */, - 46EB2E00000870 /* encrypted_client_hello.cc */, - 46EB2E00001100 /* engine.c */, - 46EB2E00001110 /* err.c */, - 46EB2E00002080 /* err_data.c */, - 46EB2E00001140 /* evp.c */, - 46EB2E00001150 /* evp_asn1.c */, - 46EB2E00001160 /* evp_ctx.c */, - 46EB2E00000AF0 /* ex_data.c */, - 46EB2E00001320 /* exponentiation.c */, - 46EB2E00001E30 /* ext_dat.h */, - 46EB2E00000880 /* extensions.cc */, - 46EB2E00000CE0 /* f_int.c */, - 46EB2E00000CF0 /* f_string.c */, - 46EB2E00000DC0 /* fd.c */, - 46EB2E00001520 /* felem.c */, - 46EB2E00000DD0 /* file.c */, - 46EB2E000017C0 /* fips.c */, - 46EB2E00001630 /* fips_shared_support.c */, - 46EB2E00001710 /* fork_detect.c */, - 46EB2E00001720 /* fork_detect.h */, - 46EB2E00001A40 /* forkunsafe.c */, - 46EB2E00001A50 /* fuchsia.c */, - 46EB2E00001330 /* gcd.c */, - 46EB2E00001340 /* gcd_extra.c */, - 46EB2E000016B0 /* gcm.c */, - 46EB2E000016C0 /* gcm_nohw.c */, - 46EB2E00001350 /* generic.c */, - 46EB2E00001730 /* getrandom_fillin.h */, - 46EB2E00000890 /* handoff.cc */, - 46EB2E000008A0 /* handshake.cc */, - 46EB2E000008B0 /* handshake_client.cc */, - 46EB2E000008C0 /* handshake_server.cc */, - 46EB2E000010E0 /* hash_to_curve.c */, - 46EB2E00000DE0 /* hexdump.c */, - 46EB2E00001850 /* hkdf.c */, - 46EB2E00001640 /* hmac.c */, - 46EB2E00001860 /* hpke.c */, - 46EB2E00001870 /* hrss.c */, - 46EB2E00001B90 /* i2d_pr.c */, - 46EB2E00000D00 /* internal.h */, - 46EB2E00000DF0 /* internal.h */, - 46EB2E00000EC0 /* internal.h */, - 46EB2E00000EF0 /* internal.h */, - 46EB2E00000FA0 /* internal.h */, - 46EB2E00000FF0 /* internal.h */, - 46EB2E00001020 /* internal.h */, - 46EB2E00001090 /* internal.h */, - 46EB2E000010F0 /* internal.h */, - 46EB2E00001120 /* internal.h */, - 46EB2E00001170 /* internal.h */, - 46EB2E00001270 /* internal.h */, - 46EB2E00001360 /* internal.h */, - 46EB2E00001450 /* internal.h */, - 46EB2E00001480 /* internal.h */, - 46EB2E000014D0 /* internal.h */, - 46EB2E00001530 /* internal.h */, - 46EB2E00001620 /* internal.h */, - 46EB2E00001660 /* internal.h */, - 46EB2E000016D0 /* internal.h */, - 46EB2E00001740 /* internal.h */, - 46EB2E00001780 /* internal.h */, - 46EB2E000017E0 /* internal.h */, - 46EB2E00001830 /* internal.h */, - 46EB2E00001880 /* internal.h */, - 46EB2E00000B00 /* internal.h */, + 46EB2E00000760 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 46EB2E00021CE0 /* RNCWebView.h */, + 46EB2E00021CF0 /* RNCWebView.m */, + 46EB2E00021D00 /* RNCWebViewManager.h */, + 46EB2E00021D10 /* RNCWebViewManager.m */, + 46EB2E00021D20 /* RNCWKProcessPoolManager.h */, + 46EB2E00021D30 /* RNCWKProcessPoolManager.m */, + 46EB2E000229C0 /* Pod */, + 46EB2E00048CE0 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 46EB2E00000800 /* Implementation */ = { + isa = PBXGroup; + children = ( + 46EB2E00000BC0 /* a_bitstr.c */, + 46EB2E00000BD0 /* a_bool.c */, + 46EB2E00000BE0 /* a_d2i_fp.c */, + 46EB2E00001B50 /* a_digest.c */, + 46EB2E00000BF0 /* a_dup.c */, + 46EB2E00000C00 /* a_enum.c */, + 46EB2E00000C10 /* a_gentm.c */, + 46EB2E00000C20 /* a_i2d_fp.c */, + 46EB2E00000C30 /* a_int.c */, + 46EB2E00000C40 /* a_mbstr.c */, + 46EB2E00000C50 /* a_object.c */, + 46EB2E00000C60 /* a_octet.c */, + 46EB2E00000C70 /* a_print.c */, + 46EB2E00001B60 /* a_sign.c */, + 46EB2E00000C80 /* a_strex.c */, + 46EB2E00000C90 /* a_strnid.c */, + 46EB2E00000CA0 /* a_time.c */, + 46EB2E00000CB0 /* a_type.c */, + 46EB2E00000CC0 /* a_utctm.c */, + 46EB2E00000CD0 /* a_utf8.c */, + 46EB2E00001B70 /* a_verify.c */, + 46EB2E000012B0 /* add.c */, + 46EB2E00001420 /* aead.c */, + 46EB2E00001260 /* aes.c */, + 46EB2E00001270 /* aes_nohw.c */, + 46EB2E00001B30 /* algorithm.c */, + 46EB2E00000E90 /* asn1_compat.c */, + 46EB2E00001B40 /* asn1_gen.c */, + 46EB2E00000B90 /* asn1_lib.c */, + 46EB2E00000BA0 /* asn1_par.c */, + 46EB2E00000BB0 /* asn_pack.c */, + 46EB2E00000D90 /* base64.c */, + 46EB2E00000EA0 /* ber.c */, + 46EB2E00000DA0 /* bio.c */, + 46EB2E00000DB0 /* bio_mem.c */, + 46EB2E00000810 /* bio_ssl.cc */, + 46EB2E00000E50 /* blake2.c */, + 46EB2E00001780 /* blinding.c */, + 46EB2E000012D0 /* bn.c */, + 46EB2E00000E60 /* bn_asn1.c */, + 46EB2E00000E80 /* buf.c */, + 46EB2E00001B80 /* by_dir.c */, + 46EB2E00001B90 /* by_file.c */, + 46EB2E000012E0 /* bytes.c */, + 46EB2E00000EB0 /* cbb.c */, + 46EB2E00001690 /* cbc.c */, + 46EB2E00000EC0 /* cbs.c */, + 46EB2E000016A0 /* cfb.c */, + 46EB2E00000EF0 /* chacha.c */, + 46EB2E00000CE0 /* charmap.h */, + 46EB2E000014A0 /* check.c */, + 46EB2E00001430 /* cipher.c */, + 46EB2E00000F10 /* cipher_extra.c */, + 46EB2E00000FD0 /* cmac.c */, + 46EB2E000012F0 /* cmp.c */, + 46EB2E00000FE0 /* conf.c */, + 46EB2E00000FF0 /* conf_def.h */, + 46EB2E00000DC0 /* connect.c */, + 46EB2E00000E70 /* convert.c */, + 46EB2E00000A70 /* cpu-aarch64-fuchsia.c */, + 46EB2E00000A80 /* cpu-aarch64-linux.c */, + 46EB2E00000A90 /* cpu-aarch64-win.c */, + 46EB2E00000AC0 /* cpu-arm.c */, + 46EB2E00000AA0 /* cpu-arm-linux.c */, + 46EB2E00000AB0 /* cpu-arm-linux.h */, + 46EB2E00000AD0 /* cpu-intel.c */, + 46EB2E00000AE0 /* cpu-ppc64le.c */, + 46EB2E00000AF0 /* crypto.c */, + 46EB2E000016B0 /* ctr.c */, + 46EB2E00001710 /* ctrdrbg.c */, + 46EB2E00001300 /* ctx.c */, + 46EB2E00001010 /* curve25519.c */, + 46EB2E00002050 /* curve25519_32.h */, + 46EB2E00002060 /* curve25519_64.h */, + 46EB2E00001020 /* curve25519_tables.h */, + 46EB2E00000820 /* d1_both.cc */, + 46EB2E00000830 /* d1_lib.cc */, + 46EB2E00000840 /* d1_pkt.cc */, + 46EB2E00000850 /* d1_srtp.cc */, + 46EB2E00001470 /* delocate.h */, + 46EB2E00000F20 /* derive_key.c */, + 46EB2E00001480 /* des.c */, + 46EB2E00001A40 /* deterministic.c */, + 46EB2E000014B0 /* dh.c */, + 46EB2E00001050 /* dh_asn1.c */, + 46EB2E000014C0 /* digest.c */, + 46EB2E00001070 /* digest_extra.c */, + 46EB2E000014D0 /* digests.c */, + 46EB2E00001140 /* digestsign.c */, + 46EB2E00001310 /* div.c */, + 46EB2E00001320 /* div_extra.c */, + 46EB2E00001080 /* dsa.c */, + 46EB2E00001090 /* dsa_asn1.c */, + 46EB2E00000860 /* dtls_method.cc */, + 46EB2E00000870 /* dtls_record.cc */, + 46EB2E00001440 /* e_aes.c */, + 46EB2E00000F30 /* e_aesccm.c */, + 46EB2E00000F40 /* e_aesctrhmac.c */, + 46EB2E00000F50 /* e_aesgcmsiv.c */, + 46EB2E00000F60 /* e_chacha20poly1305.c */, + 46EB2E00001450 /* e_des.c */, + 46EB2E00000F70 /* e_null.c */, + 46EB2E00000F80 /* e_rc2.c */, + 46EB2E00000F90 /* e_rc4.c */, + 46EB2E00000FA0 /* e_tls.c */, + 46EB2E00001500 /* ec.c */, + 46EB2E000010D0 /* ec_asn1.c */, + 46EB2E000010E0 /* ec_derive.c */, + 46EB2E00001510 /* ec_key.c */, + 46EB2E00001520 /* ec_montgomery.c */, + 46EB2E00001610 /* ecdh.c */, + 46EB2E000010B0 /* ecdh_extra.c */, + 46EB2E00001620 /* ecdsa.c */, + 46EB2E000010C0 /* ecdsa_asn1.c */, + 46EB2E00000880 /* encrypted_client_hello.cc */, + 46EB2E00001110 /* engine.c */, + 46EB2E00001120 /* err.c */, + 46EB2E00002090 /* err_data.c */, + 46EB2E00001150 /* evp.c */, + 46EB2E00001160 /* evp_asn1.c */, + 46EB2E00001170 /* evp_ctx.c */, + 46EB2E00000B00 /* ex_data.c */, + 46EB2E00001330 /* exponentiation.c */, + 46EB2E00001E40 /* ext_dat.h */, + 46EB2E00000890 /* extensions.cc */, + 46EB2E00000CF0 /* f_int.c */, + 46EB2E00000D00 /* f_string.c */, + 46EB2E00000DD0 /* fd.c */, + 46EB2E00001530 /* felem.c */, + 46EB2E00000DE0 /* file.c */, + 46EB2E000017D0 /* fips.c */, + 46EB2E00001640 /* fips_shared_support.c */, + 46EB2E00001720 /* fork_detect.c */, + 46EB2E00001730 /* fork_detect.h */, + 46EB2E00001A50 /* forkunsafe.c */, + 46EB2E00001A60 /* fuchsia.c */, + 46EB2E00001340 /* gcd.c */, + 46EB2E00001350 /* gcd_extra.c */, + 46EB2E000016C0 /* gcm.c */, + 46EB2E000016D0 /* gcm_nohw.c */, + 46EB2E00001360 /* generic.c */, + 46EB2E00001740 /* getrandom_fillin.h */, + 46EB2E000008A0 /* handoff.cc */, + 46EB2E000008B0 /* handshake.cc */, + 46EB2E000008C0 /* handshake_client.cc */, + 46EB2E000008D0 /* handshake_server.cc */, + 46EB2E000010F0 /* hash_to_curve.c */, + 46EB2E00000DF0 /* hexdump.c */, + 46EB2E00001860 /* hkdf.c */, + 46EB2E00001650 /* hmac.c */, + 46EB2E00001870 /* hpke.c */, + 46EB2E00001880 /* hrss.c */, + 46EB2E00001BA0 /* i2d_pr.c */, + 46EB2E00000D10 /* internal.h */, + 46EB2E00000E00 /* internal.h */, + 46EB2E00000ED0 /* internal.h */, + 46EB2E00000F00 /* internal.h */, + 46EB2E00000FB0 /* internal.h */, + 46EB2E00001000 /* internal.h */, + 46EB2E00001030 /* internal.h */, + 46EB2E000010A0 /* internal.h */, + 46EB2E00001100 /* internal.h */, + 46EB2E00001130 /* internal.h */, + 46EB2E00001180 /* internal.h */, + 46EB2E00001280 /* internal.h */, + 46EB2E00001370 /* internal.h */, + 46EB2E00001460 /* internal.h */, + 46EB2E00001490 /* internal.h */, + 46EB2E000014E0 /* internal.h */, + 46EB2E00001540 /* internal.h */, + 46EB2E00001630 /* internal.h */, + 46EB2E00001670 /* internal.h */, + 46EB2E000016E0 /* internal.h */, + 46EB2E00001750 /* internal.h */, + 46EB2E00001790 /* internal.h */, + 46EB2E000017F0 /* internal.h */, + 46EB2E00001840 /* internal.h */, 46EB2E00001890 /* internal.h */, - 46EB2E00001960 /* internal.h */, - 46EB2E00001990 /* internal.h */, - 46EB2E000019D0 /* internal.h */, - 46EB2E00001A10 /* internal.h */, - 46EB2E00001AE0 /* internal.h */, - 46EB2E00001BA0 /* internal.h */, - 46EB2E00001E40 /* internal.h */, - 46EB2E000008D0 /* internal.h */, - 46EB2E00001370 /* jacobi.c */, - 46EB2E00001840 /* kdf.c */, - 46EB2E00001280 /* key_wrap.c */, - 46EB2E000018A0 /* lhash.c */, - 46EB2E000014E0 /* md32_common.h */, - 46EB2E00001650 /* md4.c */, - 46EB2E00001670 /* md5.c */, - 46EB2E00000B10 /* mem.c */, - 46EB2E00001290 /* mode_wrappers.c */, - 46EB2E00001380 /* montgomery.c */, - 46EB2E00001390 /* montgomery_inv.c */, - 46EB2E000013A0 /* mul.c */, - 46EB2E00001BB0 /* name_print.c */, - 46EB2E000018B0 /* obj.c */, - 46EB2E000018C0 /* obj_dat.h */, - 46EB2E000018D0 /* obj_xref.c */, - 46EB2E00001540 /* oct.c */, - 46EB2E000016E0 /* ofb.c */, - 46EB2E00001550 /* p224-64.c */, - 46EB2E00001590 /* p256.c */, - 46EB2E00001570 /* p256-x86_64.c */, - 46EB2E00001580 /* p256-x86_64.h */, - 46EB2E00001560 /* p256-x86_64-table.h */, - 46EB2E00002060 /* p256_32.h */, - 46EB2E00002070 /* p256_64.h */, - 46EB2E000015A0 /* p256_table.h */, - 46EB2E000019A0 /* p5_pbev2.c */, - 46EB2E000011A0 /* p_dsa_asn1.c */, - 46EB2E000011B0 /* p_ec.c */, - 46EB2E000011C0 /* p_ec_asn1.c */, - 46EB2E000011D0 /* p_ed25519.c */, - 46EB2E000011E0 /* p_ed25519_asn1.c */, - 46EB2E000011F0 /* p_rsa.c */, - 46EB2E00001200 /* p_rsa_asn1.c */, - 46EB2E00001210 /* p_x25519.c */, - 46EB2E00001220 /* p_x25519_asn1.c */, - 46EB2E00001790 /* padding.c */, - 46EB2E00000E00 /* pair.c */, - 46EB2E00001050 /* params.c */, - 46EB2E00001A60 /* passive.c */, - 46EB2E00001180 /* pbkdf.c */, - 46EB2E00001E50 /* pcy_cache.c */, - 46EB2E00001E60 /* pcy_data.c */, - 46EB2E00001E70 /* pcy_lib.c */, - 46EB2E00001E80 /* pcy_map.c */, - 46EB2E00001E90 /* pcy_node.c */, - 46EB2E00001EA0 /* pcy_tree.c */, - 46EB2E000018E0 /* pem_all.c */, - 46EB2E000018F0 /* pem_info.c */, - 46EB2E00001900 /* pem_lib.c */, - 46EB2E00001910 /* pem_oth.c */, - 46EB2E00001920 /* pem_pk8.c */, - 46EB2E00001930 /* pem_pkey.c */, - 46EB2E00001940 /* pem_x509.c */, - 46EB2E00001950 /* pem_xaux.c */, - 46EB2E00001970 /* pkcs7.c */, - 46EB2E00001980 /* pkcs7_x509.c */, - 46EB2E000019B0 /* pkcs8.c */, - 46EB2E000019C0 /* pkcs8_x509.c */, - 46EB2E00001AF0 /* pmbtoken.c */, - 46EB2E000019E0 /* poly1305.c */, - 46EB2E000019F0 /* poly1305_arm.c */, - 46EB2E00001A00 /* poly1305_vec.c */, - 46EB2E000016F0 /* polyval.c */, - 46EB2E00001A20 /* pool.c */, - 46EB2E000013B0 /* prime.c */, - 46EB2E00001190 /* print.c */, - 46EB2E00000E10 /* printf.c */, - 46EB2E00001750 /* rand.c */, - 46EB2E00001A70 /* rand_extra.c */, - 46EB2E000013C0 /* random.c */, - 46EB2E00001A90 /* rc4.c */, - 46EB2E00000B20 /* refcount_c11.c */, - 46EB2E00000B30 /* refcount_lock.c */, - 46EB2E000017A0 /* rsa.c */, - 46EB2E00001AA0 /* rsa_asn1.c */, - 46EB2E000017B0 /* rsa_impl.c */, - 46EB2E00001AB0 /* rsa_print.c */, - 46EB2E00001BC0 /* rsa_pss.c */, - 46EB2E000013D0 /* rsaz_exp.c */, - 46EB2E000013E0 /* rsaz_exp.h */, - 46EB2E000008E0 /* s3_both.cc */, - 46EB2E000008F0 /* s3_lib.cc */, - 46EB2E00000900 /* s3_pkt.cc */, - 46EB2E000015B0 /* scalar.c */, - 46EB2E00001230 /* scrypt.c */, - 46EB2E000017D0 /* self_check.c */, - 46EB2E00001800 /* sha1.c */, - 46EB2E000017F0 /* sha1-altivec.c */, - 46EB2E00001810 /* sha256.c */, - 46EB2E00001820 /* sha512.c */, - 46EB2E000013F0 /* shift.c */, - 46EB2E00001240 /* sign.c */, - 46EB2E000015C0 /* simple.c */, - 46EB2E000015D0 /* simple_mul.c */, - 46EB2E00001AC0 /* siphash.c */, - 46EB2E00000E20 /* socket.c */, - 46EB2E00000E30 /* socket_helper.c */, - 46EB2E00001030 /* spake25519.c */, - 46EB2E00001400 /* sqrt.c */, - 46EB2E00000910 /* ssl_aead_ctx.cc */, - 46EB2E00000920 /* ssl_asn1.cc */, - 46EB2E00000930 /* ssl_buffer.cc */, - 46EB2E00000940 /* ssl_cert.cc */, - 46EB2E00000950 /* ssl_cipher.cc */, - 46EB2E00000960 /* ssl_file.cc */, - 46EB2E00000970 /* ssl_key_share.cc */, - 46EB2E00000980 /* ssl_lib.cc */, - 46EB2E00000990 /* ssl_privkey.cc */, - 46EB2E000009A0 /* ssl_session.cc */, - 46EB2E000009B0 /* ssl_stat.cc */, - 46EB2E000009C0 /* ssl_transcript.cc */, - 46EB2E000009D0 /* ssl_versions.cc */, - 46EB2E000009E0 /* ssl_x509.cc */, - 46EB2E00001AD0 /* stack.c */, - 46EB2E000009F0 /* t1_enc.cc */, - 46EB2E00001BD0 /* t_crl.c */, - 46EB2E00001BE0 /* t_req.c */, - 46EB2E00001BF0 /* t_x509.c */, - 46EB2E00001C00 /* t_x509a.c */, - 46EB2E00000D10 /* tasn_dec.c */, - 46EB2E00000D20 /* tasn_enc.c */, - 46EB2E00000D30 /* tasn_fre.c */, - 46EB2E00000D40 /* tasn_new.c */, - 46EB2E00000D50 /* tasn_typ.c */, - 46EB2E00000D60 /* tasn_utl.c */, - 46EB2E00000B40 /* thread.c */, - 46EB2E00000B50 /* thread_none.c */, - 46EB2E00000B60 /* thread_pthread.c */, - 46EB2E00000B70 /* thread_win.c */, - 46EB2E00000D70 /* time_support.c */, - 46EB2E00000A00 /* tls13_both.cc */, - 46EB2E00000A10 /* tls13_client.cc */, - 46EB2E00000A20 /* tls13_enc.cc */, - 46EB2E00000A30 /* tls13_server.cc */, - 46EB2E00000FB0 /* tls_cbc.c */, - 46EB2E00000A40 /* tls_method.cc */, - 46EB2E00000A50 /* tls_record.cc */, - 46EB2E00001B00 /* trust_token.c */, - 46EB2E00000ED0 /* unicode.c */, - 46EB2E00001760 /* urandom.c */, - 46EB2E000015E0 /* util.c */, - 46EB2E00001EB0 /* v3_akey.c */, - 46EB2E00001EC0 /* v3_akeya.c */, - 46EB2E00001ED0 /* v3_alt.c */, - 46EB2E00001EE0 /* v3_bcons.c */, - 46EB2E00001EF0 /* v3_bitst.c */, - 46EB2E00001F00 /* v3_conf.c */, - 46EB2E00001F10 /* v3_cpols.c */, - 46EB2E00001F20 /* v3_crld.c */, - 46EB2E00001F30 /* v3_enum.c */, - 46EB2E00001F40 /* v3_extku.c */, - 46EB2E00001F50 /* v3_genn.c */, - 46EB2E00001F60 /* v3_ia5.c */, - 46EB2E00001F70 /* v3_info.c */, - 46EB2E00001F80 /* v3_int.c */, - 46EB2E00001F90 /* v3_lib.c */, - 46EB2E00001FA0 /* v3_ncons.c */, - 46EB2E00001FB0 /* v3_ocsp.c */, - 46EB2E00001FC0 /* v3_pci.c */, - 46EB2E00001FD0 /* v3_pcia.c */, - 46EB2E00001FE0 /* v3_pcons.c */, - 46EB2E00001FF0 /* v3_pmaps.c */, - 46EB2E00002000 /* v3_prn.c */, - 46EB2E00002010 /* v3_purp.c */, - 46EB2E00002020 /* v3_skey.c */, - 46EB2E00002030 /* v3_utl.c */, - 46EB2E00001B10 /* voprf.c */, - 46EB2E00001A80 /* windows.c */, - 46EB2E000015F0 /* wnaf.c */, - 46EB2E00001C10 /* x509.c */, - 46EB2E00001C60 /* x509_att.c */, - 46EB2E00001C70 /* x509_cmp.c */, - 46EB2E00001C80 /* x509_d2.c */, - 46EB2E00001C90 /* x509_def.c */, - 46EB2E00001CA0 /* x509_ext.c */, - 46EB2E00001CB0 /* x509_lu.c */, - 46EB2E00001CC0 /* x509_obj.c */, - 46EB2E00001CD0 /* x509_req.c */, - 46EB2E00001CE0 /* x509_set.c */, - 46EB2E00001CF0 /* x509_trs.c */, - 46EB2E00001D00 /* x509_txt.c */, - 46EB2E00001D10 /* x509_v3.c */, - 46EB2E00001D20 /* x509_vfy.c */, - 46EB2E00001D30 /* x509_vpm.c */, - 46EB2E00001C20 /* x509cset.c */, - 46EB2E00001C30 /* x509name.c */, - 46EB2E00001C40 /* x509rset.c */, - 46EB2E00001C50 /* x509spki.c */, - 46EB2E000012B0 /* x86_64-gcc.c */, - 46EB2E00001D40 /* x_algor.c */, - 46EB2E00001D50 /* x_all.c */, - 46EB2E00001D60 /* x_attrib.c */, - 46EB2E00001D70 /* x_crl.c */, - 46EB2E00001D80 /* x_exten.c */, - 46EB2E00001D90 /* x_info.c */, - 46EB2E00001DA0 /* x_name.c */, - 46EB2E00001DB0 /* x_pkey.c */, - 46EB2E00001DC0 /* x_pubkey.c */, - 46EB2E00001DD0 /* x_req.c */, - 46EB2E00001DE0 /* x_sig.c */, - 46EB2E00001DF0 /* x_spki.c */, - 46EB2E00001E00 /* x_val.c */, - 46EB2E00001E10 /* x_x509.c */, - 46EB2E00001E20 /* x_x509a.c */, + 46EB2E00000B10 /* internal.h */, + 46EB2E000018A0 /* internal.h */, + 46EB2E00001970 /* internal.h */, + 46EB2E000019A0 /* internal.h */, + 46EB2E000019E0 /* internal.h */, + 46EB2E00001A20 /* internal.h */, + 46EB2E00001AF0 /* internal.h */, + 46EB2E00001BB0 /* internal.h */, + 46EB2E00001E50 /* internal.h */, + 46EB2E000008E0 /* internal.h */, + 46EB2E00001380 /* jacobi.c */, + 46EB2E00001850 /* kdf.c */, + 46EB2E00001290 /* key_wrap.c */, + 46EB2E000018B0 /* lhash.c */, + 46EB2E000014F0 /* md32_common.h */, + 46EB2E00001660 /* md4.c */, + 46EB2E00001680 /* md5.c */, + 46EB2E00000B20 /* mem.c */, + 46EB2E000012A0 /* mode_wrappers.c */, + 46EB2E00001390 /* montgomery.c */, + 46EB2E000013A0 /* montgomery_inv.c */, + 46EB2E000013B0 /* mul.c */, + 46EB2E00001BC0 /* name_print.c */, + 46EB2E000018C0 /* obj.c */, + 46EB2E000018D0 /* obj_dat.h */, + 46EB2E000018E0 /* obj_xref.c */, + 46EB2E00001550 /* oct.c */, + 46EB2E000016F0 /* ofb.c */, + 46EB2E00001560 /* p224-64.c */, + 46EB2E000015A0 /* p256.c */, + 46EB2E00001580 /* p256-x86_64.c */, + 46EB2E00001590 /* p256-x86_64.h */, + 46EB2E00001570 /* p256-x86_64-table.h */, + 46EB2E00002070 /* p256_32.h */, + 46EB2E00002080 /* p256_64.h */, + 46EB2E000015B0 /* p256_table.h */, + 46EB2E000019B0 /* p5_pbev2.c */, + 46EB2E000011B0 /* p_dsa_asn1.c */, + 46EB2E000011C0 /* p_ec.c */, + 46EB2E000011D0 /* p_ec_asn1.c */, + 46EB2E000011E0 /* p_ed25519.c */, + 46EB2E000011F0 /* p_ed25519_asn1.c */, + 46EB2E00001200 /* p_rsa.c */, + 46EB2E00001210 /* p_rsa_asn1.c */, + 46EB2E00001220 /* p_x25519.c */, + 46EB2E00001230 /* p_x25519_asn1.c */, + 46EB2E000017A0 /* padding.c */, + 46EB2E00000E10 /* pair.c */, + 46EB2E00001060 /* params.c */, + 46EB2E00001A70 /* passive.c */, + 46EB2E00001190 /* pbkdf.c */, + 46EB2E00001E60 /* pcy_cache.c */, + 46EB2E00001E70 /* pcy_data.c */, + 46EB2E00001E80 /* pcy_lib.c */, + 46EB2E00001E90 /* pcy_map.c */, + 46EB2E00001EA0 /* pcy_node.c */, + 46EB2E00001EB0 /* pcy_tree.c */, + 46EB2E000018F0 /* pem_all.c */, + 46EB2E00001900 /* pem_info.c */, + 46EB2E00001910 /* pem_lib.c */, + 46EB2E00001920 /* pem_oth.c */, + 46EB2E00001930 /* pem_pk8.c */, + 46EB2E00001940 /* pem_pkey.c */, + 46EB2E00001950 /* pem_x509.c */, + 46EB2E00001960 /* pem_xaux.c */, + 46EB2E00001980 /* pkcs7.c */, + 46EB2E00001990 /* pkcs7_x509.c */, + 46EB2E000019C0 /* pkcs8.c */, + 46EB2E000019D0 /* pkcs8_x509.c */, + 46EB2E00001B00 /* pmbtoken.c */, + 46EB2E000019F0 /* poly1305.c */, + 46EB2E00001A00 /* poly1305_arm.c */, + 46EB2E00001A10 /* poly1305_vec.c */, + 46EB2E00001700 /* polyval.c */, + 46EB2E00001A30 /* pool.c */, + 46EB2E000013C0 /* prime.c */, + 46EB2E000011A0 /* print.c */, + 46EB2E00000E20 /* printf.c */, + 46EB2E00001760 /* rand.c */, + 46EB2E00001A80 /* rand_extra.c */, + 46EB2E000013D0 /* random.c */, + 46EB2E00001AA0 /* rc4.c */, + 46EB2E00000B30 /* refcount_c11.c */, + 46EB2E00000B40 /* refcount_lock.c */, + 46EB2E000017B0 /* rsa.c */, + 46EB2E00001AB0 /* rsa_asn1.c */, + 46EB2E000017C0 /* rsa_impl.c */, + 46EB2E00001AC0 /* rsa_print.c */, + 46EB2E00001BD0 /* rsa_pss.c */, + 46EB2E000013E0 /* rsaz_exp.c */, + 46EB2E000013F0 /* rsaz_exp.h */, + 46EB2E000008F0 /* s3_both.cc */, + 46EB2E00000900 /* s3_lib.cc */, + 46EB2E00000910 /* s3_pkt.cc */, + 46EB2E000015C0 /* scalar.c */, + 46EB2E00001240 /* scrypt.c */, + 46EB2E000017E0 /* self_check.c */, + 46EB2E00001810 /* sha1.c */, + 46EB2E00001800 /* sha1-altivec.c */, + 46EB2E00001820 /* sha256.c */, + 46EB2E00001830 /* sha512.c */, + 46EB2E00001400 /* shift.c */, + 46EB2E00001250 /* sign.c */, + 46EB2E000015D0 /* simple.c */, + 46EB2E000015E0 /* simple_mul.c */, + 46EB2E00001AD0 /* siphash.c */, + 46EB2E00000E30 /* socket.c */, + 46EB2E00000E40 /* socket_helper.c */, + 46EB2E00001040 /* spake25519.c */, + 46EB2E00001410 /* sqrt.c */, + 46EB2E00000920 /* ssl_aead_ctx.cc */, + 46EB2E00000930 /* ssl_asn1.cc */, + 46EB2E00000940 /* ssl_buffer.cc */, + 46EB2E00000950 /* ssl_cert.cc */, + 46EB2E00000960 /* ssl_cipher.cc */, + 46EB2E00000970 /* ssl_file.cc */, + 46EB2E00000980 /* ssl_key_share.cc */, + 46EB2E00000990 /* ssl_lib.cc */, + 46EB2E000009A0 /* ssl_privkey.cc */, + 46EB2E000009B0 /* ssl_session.cc */, + 46EB2E000009C0 /* ssl_stat.cc */, + 46EB2E000009D0 /* ssl_transcript.cc */, + 46EB2E000009E0 /* ssl_versions.cc */, + 46EB2E000009F0 /* ssl_x509.cc */, + 46EB2E00001AE0 /* stack.c */, + 46EB2E00000A00 /* t1_enc.cc */, + 46EB2E00001BE0 /* t_crl.c */, + 46EB2E00001BF0 /* t_req.c */, + 46EB2E00001C00 /* t_x509.c */, + 46EB2E00001C10 /* t_x509a.c */, + 46EB2E00000D20 /* tasn_dec.c */, + 46EB2E00000D30 /* tasn_enc.c */, + 46EB2E00000D40 /* tasn_fre.c */, + 46EB2E00000D50 /* tasn_new.c */, + 46EB2E00000D60 /* tasn_typ.c */, + 46EB2E00000D70 /* tasn_utl.c */, + 46EB2E00000B50 /* thread.c */, + 46EB2E00000B60 /* thread_none.c */, + 46EB2E00000B70 /* thread_pthread.c */, + 46EB2E00000B80 /* thread_win.c */, + 46EB2E00000D80 /* time_support.c */, + 46EB2E00000A10 /* tls13_both.cc */, + 46EB2E00000A20 /* tls13_client.cc */, + 46EB2E00000A30 /* tls13_enc.cc */, + 46EB2E00000A40 /* tls13_server.cc */, + 46EB2E00000FC0 /* tls_cbc.c */, + 46EB2E00000A50 /* tls_method.cc */, + 46EB2E00000A60 /* tls_record.cc */, + 46EB2E00001B10 /* trust_token.c */, + 46EB2E00000EE0 /* unicode.c */, + 46EB2E00001770 /* urandom.c */, + 46EB2E000015F0 /* util.c */, + 46EB2E00001EC0 /* v3_akey.c */, + 46EB2E00001ED0 /* v3_akeya.c */, + 46EB2E00001EE0 /* v3_alt.c */, + 46EB2E00001EF0 /* v3_bcons.c */, + 46EB2E00001F00 /* v3_bitst.c */, + 46EB2E00001F10 /* v3_conf.c */, + 46EB2E00001F20 /* v3_cpols.c */, + 46EB2E00001F30 /* v3_crld.c */, + 46EB2E00001F40 /* v3_enum.c */, + 46EB2E00001F50 /* v3_extku.c */, + 46EB2E00001F60 /* v3_genn.c */, + 46EB2E00001F70 /* v3_ia5.c */, + 46EB2E00001F80 /* v3_info.c */, + 46EB2E00001F90 /* v3_int.c */, + 46EB2E00001FA0 /* v3_lib.c */, + 46EB2E00001FB0 /* v3_ncons.c */, + 46EB2E00001FC0 /* v3_ocsp.c */, + 46EB2E00001FD0 /* v3_pci.c */, + 46EB2E00001FE0 /* v3_pcia.c */, + 46EB2E00001FF0 /* v3_pcons.c */, + 46EB2E00002000 /* v3_pmaps.c */, + 46EB2E00002010 /* v3_prn.c */, + 46EB2E00002020 /* v3_purp.c */, + 46EB2E00002030 /* v3_skey.c */, + 46EB2E00002040 /* v3_utl.c */, + 46EB2E00001B20 /* voprf.c */, + 46EB2E00001A90 /* windows.c */, + 46EB2E00001600 /* wnaf.c */, + 46EB2E00001C20 /* x509.c */, + 46EB2E00001C70 /* x509_att.c */, + 46EB2E00001C80 /* x509_cmp.c */, + 46EB2E00001C90 /* x509_d2.c */, + 46EB2E00001CA0 /* x509_def.c */, + 46EB2E00001CB0 /* x509_ext.c */, + 46EB2E00001CC0 /* x509_lu.c */, + 46EB2E00001CD0 /* x509_obj.c */, + 46EB2E00001CE0 /* x509_req.c */, + 46EB2E00001CF0 /* x509_set.c */, + 46EB2E00001D00 /* x509_trs.c */, + 46EB2E00001D10 /* x509_txt.c */, + 46EB2E00001D20 /* x509_v3.c */, + 46EB2E00001D30 /* x509_vfy.c */, + 46EB2E00001D40 /* x509_vpm.c */, + 46EB2E00001C30 /* x509cset.c */, + 46EB2E00001C40 /* x509name.c */, + 46EB2E00001C50 /* x509rset.c */, + 46EB2E00001C60 /* x509spki.c */, + 46EB2E000012C0 /* x86_64-gcc.c */, + 46EB2E00001D50 /* x_algor.c */, + 46EB2E00001D60 /* x_all.c */, + 46EB2E00001D70 /* x_attrib.c */, + 46EB2E00001D80 /* x_crl.c */, + 46EB2E00001D90 /* x_exten.c */, + 46EB2E00001DA0 /* x_info.c */, + 46EB2E00001DB0 /* x_name.c */, + 46EB2E00001DC0 /* x_pkey.c */, + 46EB2E00001DD0 /* x_pubkey.c */, + 46EB2E00001DE0 /* x_req.c */, + 46EB2E00001DF0 /* x_sig.c */, + 46EB2E00001E00 /* x_spki.c */, + 46EB2E00001E10 /* x_val.c */, + 46EB2E00001E20 /* x_x509.c */, + 46EB2E00001E30 /* x_x509a.c */, ); name = Implementation; sourceTree = ""; }; - 46EB2E00002090 /* Interface */ = { - isa = PBXGroup; - children = ( - 46EB2E000020A0 /* aead.h */, - 46EB2E000020B0 /* aes.h */, - 46EB2E000020C0 /* arm_arch.h */, - 46EB2E000020D0 /* asn1.h */, - 46EB2E000020F0 /* asn1_mac.h */, - 46EB2E000020E0 /* asn1t.h */, - 46EB2E00002100 /* base.h */, - 46EB2E00002110 /* base64.h */, - 46EB2E00002120 /* bio.h */, - 46EB2E00002130 /* blake2.h */, - 46EB2E00002140 /* blowfish.h */, - 46EB2E00002150 /* bn.h */, - 46EB2E00002160 /* boringssl_prefix_symbols.h */, - 46EB2E00002170 /* buf.h */, - 46EB2E00002180 /* buffer.h */, - 46EB2E00002190 /* bytestring.h */, - 46EB2E000021A0 /* cast.h */, - 46EB2E000021B0 /* chacha.h */, - 46EB2E000021C0 /* cipher.h */, - 46EB2E000021D0 /* cmac.h */, - 46EB2E000021E0 /* conf.h */, - 46EB2E000021F0 /* cpu.h */, - 46EB2E00002200 /* crypto.h */, - 46EB2E00002210 /* curve25519.h */, - 46EB2E00002220 /* des.h */, - 46EB2E00002230 /* dh.h */, - 46EB2E00002240 /* digest.h */, - 46EB2E00002250 /* dsa.h */, - 46EB2E00002260 /* dtls1.h */, - 46EB2E00002300 /* e_os2.h */, - 46EB2E00002270 /* ec.h */, - 46EB2E000022A0 /* ec_key.h */, - 46EB2E00002280 /* ecdh.h */, - 46EB2E00002290 /* ecdsa.h */, - 46EB2E000022B0 /* engine.h */, - 46EB2E000022C0 /* err.h */, - 46EB2E000022D0 /* evp.h */, - 46EB2E000022E0 /* evp_errors.h */, - 46EB2E000022F0 /* ex_data.h */, - 46EB2E00002310 /* hkdf.h */, - 46EB2E00002320 /* hmac.h */, - 46EB2E00002330 /* hpke.h */, - 46EB2E00002340 /* hrss.h */, - 46EB2E00002350 /* is_boringssl.h */, - 46EB2E00002360 /* lhash.h */, - 46EB2E00002370 /* md4.h */, - 46EB2E00002380 /* md5.h */, - 46EB2E00002390 /* mem.h */, - 46EB2E000023A0 /* nid.h */, - 46EB2E000023B0 /* obj.h */, - 46EB2E000023D0 /* obj_mac.h */, - 46EB2E000023C0 /* objects.h */, - 46EB2E000023E0 /* opensslconf.h */, - 46EB2E000023F0 /* opensslv.h */, - 46EB2E00002400 /* ossl_typ.h */, - 46EB2E00002410 /* pem.h */, - 46EB2E00002420 /* pkcs12.h */, - 46EB2E00002430 /* pkcs7.h */, - 46EB2E00002440 /* pkcs8.h */, - 46EB2E00002450 /* poly1305.h */, - 46EB2E00002460 /* pool.h */, - 46EB2E00002470 /* rand.h */, - 46EB2E00002480 /* rc4.h */, - 46EB2E00002490 /* ripemd.h */, - 46EB2E000024A0 /* rsa.h */, - 46EB2E000024B0 /* safestack.h */, - 46EB2E000024C0 /* sha.h */, - 46EB2E000024D0 /* siphash.h */, - 46EB2E000024E0 /* span.h */, - 46EB2E000024F0 /* srtp.h */, - 46EB2E00002500 /* ssl.h */, - 46EB2E00002510 /* ssl3.h */, - 46EB2E00002520 /* stack.h */, - 46EB2E00002530 /* thread.h */, - 46EB2E00002540 /* tls1.h */, - 46EB2E00002550 /* trust_token.h */, - 46EB2E00002560 /* type_check.h */, - 46EB2E00002570 /* umbrella.h */, - 46EB2E00002580 /* x509.h */, - 46EB2E000025A0 /* x509_vfy.h */, - 46EB2E00002590 /* x509v3.h */, + 46EB2E000020A0 /* Interface */ = { + isa = PBXGroup; + children = ( + 46EB2E000020B0 /* aead.h */, + 46EB2E000020C0 /* aes.h */, + 46EB2E000020D0 /* arm_arch.h */, + 46EB2E000020E0 /* asn1.h */, + 46EB2E00002100 /* asn1_mac.h */, + 46EB2E000020F0 /* asn1t.h */, + 46EB2E00002110 /* base.h */, + 46EB2E00002120 /* base64.h */, + 46EB2E00002130 /* bio.h */, + 46EB2E00002140 /* blake2.h */, + 46EB2E00002150 /* blowfish.h */, + 46EB2E00002160 /* bn.h */, + 46EB2E00002170 /* boringssl_prefix_symbols.h */, + 46EB2E00002180 /* buf.h */, + 46EB2E00002190 /* buffer.h */, + 46EB2E000021A0 /* bytestring.h */, + 46EB2E000021B0 /* cast.h */, + 46EB2E000021C0 /* chacha.h */, + 46EB2E000021D0 /* cipher.h */, + 46EB2E000021E0 /* cmac.h */, + 46EB2E000021F0 /* conf.h */, + 46EB2E00002200 /* cpu.h */, + 46EB2E00002210 /* crypto.h */, + 46EB2E00002220 /* curve25519.h */, + 46EB2E00002230 /* des.h */, + 46EB2E00002240 /* dh.h */, + 46EB2E00002250 /* digest.h */, + 46EB2E00002260 /* dsa.h */, + 46EB2E00002270 /* dtls1.h */, + 46EB2E00002310 /* e_os2.h */, + 46EB2E00002280 /* ec.h */, + 46EB2E000022B0 /* ec_key.h */, + 46EB2E00002290 /* ecdh.h */, + 46EB2E000022A0 /* ecdsa.h */, + 46EB2E000022C0 /* engine.h */, + 46EB2E000022D0 /* err.h */, + 46EB2E000022E0 /* evp.h */, + 46EB2E000022F0 /* evp_errors.h */, + 46EB2E00002300 /* ex_data.h */, + 46EB2E00002320 /* hkdf.h */, + 46EB2E00002330 /* hmac.h */, + 46EB2E00002340 /* hpke.h */, + 46EB2E00002350 /* hrss.h */, + 46EB2E00002360 /* is_boringssl.h */, + 46EB2E00002370 /* lhash.h */, + 46EB2E00002380 /* md4.h */, + 46EB2E00002390 /* md5.h */, + 46EB2E000023A0 /* mem.h */, + 46EB2E000023B0 /* nid.h */, + 46EB2E000023C0 /* obj.h */, + 46EB2E000023E0 /* obj_mac.h */, + 46EB2E000023D0 /* objects.h */, + 46EB2E000023F0 /* opensslconf.h */, + 46EB2E00002400 /* opensslv.h */, + 46EB2E00002410 /* ossl_typ.h */, + 46EB2E00002420 /* pem.h */, + 46EB2E00002430 /* pkcs12.h */, + 46EB2E00002440 /* pkcs7.h */, + 46EB2E00002450 /* pkcs8.h */, + 46EB2E00002460 /* poly1305.h */, + 46EB2E00002470 /* pool.h */, + 46EB2E00002480 /* rand.h */, + 46EB2E00002490 /* rc4.h */, + 46EB2E000024A0 /* ripemd.h */, + 46EB2E000024B0 /* rsa.h */, + 46EB2E000024C0 /* safestack.h */, + 46EB2E000024D0 /* sha.h */, + 46EB2E000024E0 /* siphash.h */, + 46EB2E000024F0 /* span.h */, + 46EB2E00002500 /* srtp.h */, + 46EB2E00002510 /* ssl.h */, + 46EB2E00002520 /* ssl3.h */, + 46EB2E00002530 /* stack.h */, + 46EB2E00002540 /* thread.h */, + 46EB2E00002550 /* tls1.h */, + 46EB2E00002560 /* trust_token.h */, + 46EB2E00002570 /* type_check.h */, + 46EB2E00002580 /* umbrella.h */, + 46EB2E00002590 /* x509.h */, + 46EB2E000025B0 /* x509_vfy.h */, + 46EB2E000025A0 /* x509v3.h */, ); name = Interface; sourceTree = ""; }; - 46EB2E000027E0 /* CoreOnly */ = { + 46EB2E000027F0 /* CoreOnly */ = { isa = PBXGroup; children = ( - 46EB2E000027F0 /* Firebase.h */, + 46EB2E00002800 /* Firebase.h */, ); name = CoreOnly; sourceTree = ""; }; - 46EB2E0000BA80 /* Core */ = { - isa = PBXGroup; - children = ( - 46EB2E0000BAA0 /* FlipperClient.h */, - 46EB2E0000BAB0 /* FlipperClient.mm */, - 46EB2E0000BA90 /* FlipperClient+Testing.h */, - 46EB2E0000BAC0 /* FlipperConnection.h */, - 46EB2E0000BBD0 /* FlipperCppBridgingConnection.h */, - 46EB2E0000BBE0 /* FlipperCppBridgingConnection.mm */, - 46EB2E0000BBF0 /* FlipperCppBridgingResponder.h */, - 46EB2E0000BC00 /* FlipperCppBridgingResponder.mm */, - 46EB2E0000BC10 /* FlipperCppWrapperPlugin.h */, - 46EB2E0000BAD0 /* FlipperDiagnosticsViewController.h */, - 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.m */, - 46EB2E0000BAF0 /* FlipperKitCertificateProvider.h */, - 46EB2E0000BB00 /* FlipperPlatformWebSocket.h */, - 46EB2E0000BB10 /* FlipperPlatformWebSocket.mm */, - 46EB2E0000BB20 /* FlipperPlugin.h */, - 46EB2E0000BB30 /* FlipperResponder.h */, - 46EB2E0000BB40 /* FlipperStateUpdateListener.h */, - 46EB2E0000BB50 /* FlipperUtil.m */, - 46EB2E0000BB60 /* FlipperWebSocket.h */, - 46EB2E0000BB70 /* FlipperWebSocket.mm */, - 46EB2E0000BB80 /* SKEnvironmentVariables.h */, - 46EB2E0000BB90 /* SKEnvironmentVariables.m */, - 46EB2E0000BBA0 /* SKMacros.h */, - 46EB2E0000BBB0 /* SKStateUpdateCPPWrapper.h */, - 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.mm */, + 46EB2E0000BA90 /* Core */ = { + isa = PBXGroup; + children = ( + 46EB2E0000BAB0 /* FlipperClient.h */, + 46EB2E0000BAC0 /* FlipperClient.mm */, + 46EB2E0000BAA0 /* FlipperClient+Testing.h */, + 46EB2E0000BAD0 /* FlipperConnection.h */, + 46EB2E0000BBE0 /* FlipperCppBridgingConnection.h */, + 46EB2E0000BBF0 /* FlipperCppBridgingConnection.mm */, + 46EB2E0000BC00 /* FlipperCppBridgingResponder.h */, + 46EB2E0000BC10 /* FlipperCppBridgingResponder.mm */, + 46EB2E0000BC20 /* FlipperCppWrapperPlugin.h */, + 46EB2E0000BAE0 /* FlipperDiagnosticsViewController.h */, + 46EB2E0000BAF0 /* FlipperDiagnosticsViewController.m */, + 46EB2E0000BB00 /* FlipperKitCertificateProvider.h */, + 46EB2E0000BB10 /* FlipperPlatformWebSocket.h */, + 46EB2E0000BB20 /* FlipperPlatformWebSocket.mm */, + 46EB2E0000BB30 /* FlipperPlugin.h */, + 46EB2E0000BB40 /* FlipperResponder.h */, + 46EB2E0000BB50 /* FlipperStateUpdateListener.h */, + 46EB2E0000BB60 /* FlipperUtil.m */, + 46EB2E0000BB70 /* FlipperWebSocket.h */, + 46EB2E0000BB80 /* FlipperWebSocket.mm */, + 46EB2E0000BB90 /* SKEnvironmentVariables.h */, + 46EB2E0000BBA0 /* SKEnvironmentVariables.m */, + 46EB2E0000BBB0 /* SKMacros.h */, + 46EB2E0000BBC0 /* SKStateUpdateCPPWrapper.h */, + 46EB2E0000BBD0 /* SKStateUpdateCPPWrapper.mm */, ); name = Core; sourceTree = ""; }; - 46EB2E0000BC20 /* CppBridge */ = { + 46EB2E0000BC30 /* CppBridge */ = { isa = PBXGroup; children = ( ); name = CppBridge; sourceTree = ""; }; - 46EB2E0000BC30 /* FBCxxFollyDynamicConvert */ = { + 46EB2E0000BC40 /* FBCxxFollyDynamicConvert */ = { isa = PBXGroup; children = ( - 46EB2E0000BC40 /* FBCxxFollyDynamicConvert.h */, - 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.mm */, + 46EB2E0000BC50 /* FBCxxFollyDynamicConvert.h */, + 46EB2E0000BC60 /* FBCxxFollyDynamicConvert.mm */, ); name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 46EB2E0000BC60 /* FBDefines */ = { + 46EB2E0000BC70 /* FBDefines */ = { isa = PBXGroup; children = ( - 46EB2E0000BC70 /* FBDefines.h */, + 46EB2E0000BC80 /* FBDefines.h */, ); name = FBDefines; sourceTree = ""; }; - 46EB2E0000BC80 /* FKPortForwarding */ = { + 46EB2E0000BC90 /* FKPortForwarding */ = { isa = PBXGroup; children = ( - 46EB2E0000BC90 /* FKPortForwardingCommon.h */, - 46EB2E0000BCA0 /* FKPortForwardingServer.h */, - 46EB2E0000BCB0 /* FKPortForwardingServer.m */, + 46EB2E0000BCA0 /* FKPortForwardingCommon.h */, + 46EB2E0000BCB0 /* FKPortForwardingServer.h */, + 46EB2E0000BCC0 /* FKPortForwardingServer.m */, ); name = FKPortForwarding; sourceTree = ""; }; - 46EB2E0000BCC0 /* FlipperKitHighlightOverlay */ = { + 46EB2E0000BCD0 /* FlipperKitHighlightOverlay */ = { isa = PBXGroup; children = ( - 46EB2E0000BCD0 /* SKHighlightOverlay.h */, - 46EB2E0000BCE0 /* SKHighlightOverlay.mm */, + 46EB2E0000BCE0 /* SKHighlightOverlay.h */, + 46EB2E0000BCF0 /* SKHighlightOverlay.mm */, ); name = FlipperKitHighlightOverlay; sourceTree = ""; }; - 46EB2E0000BCF0 /* FlipperKitLayoutHelpers */ = { - isa = PBXGroup; - children = ( - 46EB2E0000BD00 /* FlipperKitLayoutDescriptorMapperProtocol.h */, - 46EB2E0000BD10 /* SKHiddenWindow.h */, - 46EB2E0000BD20 /* SKHiddenWindow.m */, - 46EB2E0000BD30 /* SKInvalidation.h */, - 46EB2E0000BD40 /* SKInvalidation.m */, - 46EB2E0000BD50 /* SKNamed.h */, - 46EB2E0000BD60 /* SKNamed.mm */, - 46EB2E0000BD70 /* SKNodeDescriptor.h */, - 46EB2E0000BD80 /* SKNodeDescriptor.mm */, - 46EB2E0000BD90 /* SKObject.h */, - 46EB2E0000BDA0 /* SKObject.mm */, - 46EB2E0000BDB0 /* SKObjectHash.h */, - 46EB2E0000BDC0 /* SKSearchResultNode.h */, - 46EB2E0000BDD0 /* SKSearchResultNode.m */, - 46EB2E0000BDE0 /* SKSwizzle.h */, - 46EB2E0000BDF0 /* SKSwizzle.mm */, - 46EB2E0000BE00 /* SKTapListener.h */, - 46EB2E0000BE10 /* SKTapListenerImpl.h */, - 46EB2E0000BE20 /* SKTapListenerImpl.m */, - 46EB2E0000BE30 /* SKTouch.h */, - 46EB2E0000BE40 /* SKTouch.m */, - 46EB2E0000BE50 /* SKYogaKitHelper.h */, - 46EB2E0000BE60 /* UICollectionView+SKInvalidation.h */, - 46EB2E0000BE70 /* UICollectionView+SKInvalidation.mm */, - 46EB2E0000BE80 /* UIColor+SKSonarValueCoder.h */, - 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.mm */, - 46EB2E0000BEA0 /* UIView+SKInvalidation.h */, - 46EB2E0000BEB0 /* UIView+SKInvalidation.mm */, + 46EB2E0000BD00 /* FlipperKitLayoutHelpers */ = { + isa = PBXGroup; + children = ( + 46EB2E0000BD10 /* FlipperKitLayoutDescriptorMapperProtocol.h */, + 46EB2E0000BD20 /* SKHiddenWindow.h */, + 46EB2E0000BD30 /* SKHiddenWindow.m */, + 46EB2E0000BD40 /* SKInvalidation.h */, + 46EB2E0000BD50 /* SKInvalidation.m */, + 46EB2E0000BD60 /* SKNamed.h */, + 46EB2E0000BD70 /* SKNamed.mm */, + 46EB2E0000BD80 /* SKNodeDescriptor.h */, + 46EB2E0000BD90 /* SKNodeDescriptor.mm */, + 46EB2E0000BDA0 /* SKObject.h */, + 46EB2E0000BDB0 /* SKObject.mm */, + 46EB2E0000BDC0 /* SKObjectHash.h */, + 46EB2E0000BDD0 /* SKSearchResultNode.h */, + 46EB2E0000BDE0 /* SKSearchResultNode.m */, + 46EB2E0000BDF0 /* SKSwizzle.h */, + 46EB2E0000BE00 /* SKSwizzle.mm */, + 46EB2E0000BE10 /* SKTapListener.h */, + 46EB2E0000BE20 /* SKTapListenerImpl.h */, + 46EB2E0000BE30 /* SKTapListenerImpl.m */, + 46EB2E0000BE40 /* SKTouch.h */, + 46EB2E0000BE50 /* SKTouch.m */, + 46EB2E0000BE60 /* SKYogaKitHelper.h */, + 46EB2E0000BE70 /* UICollectionView+SKInvalidation.h */, + 46EB2E0000BE80 /* UICollectionView+SKInvalidation.mm */, + 46EB2E0000BE90 /* UIColor+SKSonarValueCoder.h */, + 46EB2E0000BEA0 /* UIColor+SKSonarValueCoder.mm */, + 46EB2E0000BEB0 /* UIView+SKInvalidation.h */, + 46EB2E0000BEC0 /* UIView+SKInvalidation.mm */, ); name = FlipperKitLayoutHelpers; sourceTree = ""; }; - 46EB2E0000BEC0 /* FlipperKitLayoutIOSDescriptors */ = { + 46EB2E0000BED0 /* FlipperKitLayoutIOSDescriptors */ = { isa = PBXGroup; children = ( - 46EB2E0000BED0 /* SKApplicationDescriptor.h */, - 46EB2E0000BEE0 /* SKApplicationDescriptor.m */, - 46EB2E0000BEF0 /* SKButtonDescriptor.h */, - 46EB2E0000BF00 /* SKButtonDescriptor.mm */, - 46EB2E0000BF10 /* SKScrollViewDescriptor.h */, - 46EB2E0000BF20 /* SKScrollViewDescriptor.m */, - 46EB2E0000BF30 /* SKViewControllerDescriptor.h */, - 46EB2E0000BF40 /* SKViewControllerDescriptor.m */, - 46EB2E0000BF50 /* SKViewDescriptor.h */, - 46EB2E0000BF60 /* SKViewDescriptor.mm */, + 46EB2E0000BEE0 /* SKApplicationDescriptor.h */, + 46EB2E0000BEF0 /* SKApplicationDescriptor.m */, + 46EB2E0000BF00 /* SKButtonDescriptor.h */, + 46EB2E0000BF10 /* SKButtonDescriptor.mm */, + 46EB2E0000BF20 /* SKScrollViewDescriptor.h */, + 46EB2E0000BF30 /* SKScrollViewDescriptor.m */, + 46EB2E0000BF40 /* SKViewControllerDescriptor.h */, + 46EB2E0000BF50 /* SKViewControllerDescriptor.m */, + 46EB2E0000BF60 /* SKViewDescriptor.h */, + 46EB2E0000BF70 /* SKViewDescriptor.mm */, ); name = FlipperKitLayoutIOSDescriptors; sourceTree = ""; }; - 46EB2E0000BF70 /* FlipperKitLayoutPlugin */ = { + 46EB2E0000BF80 /* FlipperKitLayoutPlugin */ = { isa = PBXGroup; children = ( - 46EB2E0000BF80 /* FlipperKitLayoutPlugin.h */, - 46EB2E0000BF90 /* FlipperKitLayoutPlugin.mm */, - 46EB2E0000BFA0 /* SKDescriptorMapper.h */, - 46EB2E0000BFB0 /* SKDescriptorMapper.mm */, + 46EB2E0000BF90 /* FlipperKitLayoutPlugin.h */, + 46EB2E0000BFA0 /* FlipperKitLayoutPlugin.mm */, + 46EB2E0000BFB0 /* SKDescriptorMapper.h */, + 46EB2E0000BFC0 /* SKDescriptorMapper.mm */, ); name = FlipperKitLayoutPlugin; sourceTree = ""; }; - 46EB2E0000BFC0 /* FlipperKitLayoutTextSearchable */ = { + 46EB2E0000BFD0 /* FlipperKitLayoutTextSearchable */ = { isa = PBXGroup; children = ( - 46EB2E0000BFD0 /* FKTextSearchable.h */, + 46EB2E0000BFE0 /* FKTextSearchable.h */, ); name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 46EB2E0000BFE0 /* FlipperKitNetworkPlugin */ = { + 46EB2E0000BFF0 /* FlipperKitNetworkPlugin */ = { isa = PBXGroup; children = ( - 46EB2E0000BFF0 /* FlipperKitNetworkPlugin.h */, - 46EB2E0000C000 /* FlipperKitNetworkPlugin.mm */, - 46EB2E0000C020 /* SKBufferingPlugin.h */, - 46EB2E0000C030 /* SKBufferingPlugin.mm */, - 46EB2E0000C010 /* SKBufferingPlugin+CPPInitialization.h */, - 46EB2E0000C040 /* SKDispatchQueue.h */, - 46EB2E0000C050 /* SKNetworkReporter.h */, - 46EB2E0000C060 /* SKRequestInfo.h */, - 46EB2E0000C070 /* SKRequestInfo.m */, - 46EB2E0000C080 /* SKResponseInfo.h */, - 46EB2E0000C090 /* SKResponseInfo.m */, - 46EB2E0000C0A0 /* SonarKitNetworkPlugin+CPPInitialization.h */, + 46EB2E0000C000 /* FlipperKitNetworkPlugin.h */, + 46EB2E0000C010 /* FlipperKitNetworkPlugin.mm */, + 46EB2E0000C030 /* SKBufferingPlugin.h */, + 46EB2E0000C040 /* SKBufferingPlugin.mm */, + 46EB2E0000C020 /* SKBufferingPlugin+CPPInitialization.h */, + 46EB2E0000C050 /* SKDispatchQueue.h */, + 46EB2E0000C060 /* SKNetworkReporter.h */, + 46EB2E0000C070 /* SKRequestInfo.h */, + 46EB2E0000C080 /* SKRequestInfo.m */, + 46EB2E0000C090 /* SKResponseInfo.h */, + 46EB2E0000C0A0 /* SKResponseInfo.m */, + 46EB2E0000C0B0 /* SonarKitNetworkPlugin+CPPInitialization.h */, ); name = FlipperKitNetworkPlugin; sourceTree = ""; }; - 46EB2E0000C0B0 /* FlipperKitReactPlugin */ = { + 46EB2E0000C0C0 /* FlipperKitReactPlugin */ = { isa = PBXGroup; children = ( - 46EB2E0000C0C0 /* FlipperKitReactPlugin.h */, - 46EB2E0000C0D0 /* FlipperKitReactPlugin.m */, + 46EB2E0000C0D0 /* FlipperKitReactPlugin.h */, + 46EB2E0000C0E0 /* FlipperKitReactPlugin.m */, ); name = FlipperKitReactPlugin; sourceTree = ""; }; - 46EB2E0000C0E0 /* FlipperKitUserDefaultsPlugin */ = { + 46EB2E0000C0F0 /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( - 46EB2E0000C0F0 /* FKUserDefaultsPlugin.h */, - 46EB2E0000C100 /* FKUserDefaultsPlugin.m */, - 46EB2E0000C110 /* FKUserDefaultsSwizzleUtility.h */, - 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.m */, + 46EB2E0000C100 /* FKUserDefaultsPlugin.h */, + 46EB2E0000C110 /* FKUserDefaultsPlugin.m */, + 46EB2E0000C120 /* FKUserDefaultsSwizzleUtility.h */, + 46EB2E0000C130 /* FKUserDefaultsSwizzleUtility.m */, ); name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - 46EB2E0000C130 /* SKIOSNetworkPlugin */ = { + 46EB2E0000C140 /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( - 46EB2E0000C140 /* FLEXNetworkObserver.h */, - 46EB2E0000C150 /* FLEXNetworkObserver.mm */, - 46EB2E0000C160 /* FLEXNetworkRecorder.h */, - 46EB2E0000C170 /* FLEXNetworkRecorder.mm */, - 46EB2E0000C180 /* FLEXNetworkTransaction.h */, - 46EB2E0000C190 /* FLEXNetworkTransaction.m */, - 46EB2E0000C1A0 /* FLEXUtility.h */, - 46EB2E0000C1B0 /* FLEXUtility.mm */, - 46EB2E0000C1C0 /* SKIOSNetworkAdapter.h */, - 46EB2E0000C1D0 /* SKIOSNetworkAdapter.mm */, + 46EB2E0000C150 /* FLEXNetworkObserver.h */, + 46EB2E0000C160 /* FLEXNetworkObserver.mm */, + 46EB2E0000C170 /* FLEXNetworkRecorder.h */, + 46EB2E0000C180 /* FLEXNetworkRecorder.mm */, + 46EB2E0000C190 /* FLEXNetworkTransaction.h */, + 46EB2E0000C1A0 /* FLEXNetworkTransaction.m */, + 46EB2E0000C1B0 /* FLEXUtility.h */, + 46EB2E0000C1C0 /* FLEXUtility.mm */, + 46EB2E0000C1D0 /* SKIOSNetworkAdapter.h */, + 46EB2E0000C1E0 /* SKIOSNetworkAdapter.mm */, ); name = SKIOSNetworkPlugin; sourceTree = ""; }; - 46EB2E0000C1E0 /* Core */ = { + 46EB2E0000C1F0 /* Core */ = { isa = PBXGroup; children = ( - 46EB2E0000C230 /* GTMSessionFetcher.h */, - 46EB2E0000C1F0 /* GTMSessionFetcher.m */, - 46EB2E0000C240 /* GTMSessionFetcherLogging.h */, - 46EB2E0000C200 /* GTMSessionFetcherLogging.m */, - 46EB2E0000C250 /* GTMSessionFetcherService.h */, - 46EB2E0000C210 /* GTMSessionFetcherService.m */, - 46EB2E0000C260 /* GTMSessionUploadFetcher.h */, - 46EB2E0000C220 /* GTMSessionUploadFetcher.m */, + 46EB2E0000C240 /* GTMSessionFetcher.h */, + 46EB2E0000C200 /* GTMSessionFetcher.m */, + 46EB2E0000C250 /* GTMSessionFetcherLogging.h */, + 46EB2E0000C210 /* GTMSessionFetcherLogging.m */, + 46EB2E0000C260 /* GTMSessionFetcherService.h */, + 46EB2E0000C220 /* GTMSessionFetcherService.m */, + 46EB2E0000C270 /* GTMSessionUploadFetcher.h */, + 46EB2E0000C230 /* GTMSessionUploadFetcher.m */, ); name = Core; sourceTree = ""; }; - 46EB2E0000C610 /* AppDelegateSwizzler */ = { + 46EB2E0000C620 /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( - 46EB2E0000C640 /* GULAppDelegateSwizzler.h */, - 46EB2E0000C670 /* GULAppDelegateSwizzler.m */, - 46EB2E0000C620 /* GULAppDelegateSwizzler_Private.h */, - 46EB2E0000C650 /* GULApplication.h */, - 46EB2E0000C690 /* GULLoggerCodes.h */, - 46EB2E0000C660 /* GULSceneDelegateSwizzler.h */, - 46EB2E0000C680 /* GULSceneDelegateSwizzler.m */, - 46EB2E0000C630 /* GULSceneDelegateSwizzler_Private.h */, + 46EB2E0000C650 /* GULAppDelegateSwizzler.h */, + 46EB2E0000C680 /* GULAppDelegateSwizzler.m */, + 46EB2E0000C630 /* GULAppDelegateSwizzler_Private.h */, + 46EB2E0000C660 /* GULApplication.h */, + 46EB2E0000C6A0 /* GULLoggerCodes.h */, + 46EB2E0000C670 /* GULSceneDelegateSwizzler.h */, + 46EB2E0000C690 /* GULSceneDelegateSwizzler.m */, + 46EB2E0000C640 /* GULSceneDelegateSwizzler_Private.h */, ); name = AppDelegateSwizzler; sourceTree = ""; }; - 46EB2E0000C6A0 /* Environment */ = { + 46EB2E0000C6B0 /* Environment */ = { isa = PBXGroup; children = ( - 46EB2E0000C6E0 /* GULAppEnvironmentUtil.h */, - 46EB2E0000C790 /* GULAppEnvironmentUtil.m */, - 46EB2E0000C6F0 /* GULHeartbeatDateStorable.h */, - 46EB2E0000C700 /* GULHeartbeatDateStorage.h */, - 46EB2E0000C6B0 /* GULHeartbeatDateStorage.m */, - 46EB2E0000C710 /* GULHeartbeatDateStorageUserDefaults.h */, - 46EB2E0000C6C0 /* GULHeartbeatDateStorageUserDefaults.m */, - 46EB2E0000C720 /* GULKeychainStorage.h */, - 46EB2E0000C770 /* GULKeychainStorage.m */, - 46EB2E0000C730 /* GULKeychainUtils.h */, - 46EB2E0000C780 /* GULKeychainUtils.m */, - 46EB2E0000C740 /* GULSecureCoding.h */, - 46EB2E0000C6D0 /* GULSecureCoding.m */, - 46EB2E0000C750 /* GULURLSessionDataResponse.h */, - 46EB2E0000C7A0 /* GULURLSessionDataResponse.m */, - 46EB2E0000C760 /* NSURLSession+GULPromises.h */, - 46EB2E0000C7B0 /* NSURLSession+GULPromises.m */, + 46EB2E0000C6F0 /* GULAppEnvironmentUtil.h */, + 46EB2E0000C7A0 /* GULAppEnvironmentUtil.m */, + 46EB2E0000C700 /* GULHeartbeatDateStorable.h */, + 46EB2E0000C710 /* GULHeartbeatDateStorage.h */, + 46EB2E0000C6C0 /* GULHeartbeatDateStorage.m */, + 46EB2E0000C720 /* GULHeartbeatDateStorageUserDefaults.h */, + 46EB2E0000C6D0 /* GULHeartbeatDateStorageUserDefaults.m */, + 46EB2E0000C730 /* GULKeychainStorage.h */, + 46EB2E0000C780 /* GULKeychainStorage.m */, + 46EB2E0000C740 /* GULKeychainUtils.h */, + 46EB2E0000C790 /* GULKeychainUtils.m */, + 46EB2E0000C750 /* GULSecureCoding.h */, + 46EB2E0000C6E0 /* GULSecureCoding.m */, + 46EB2E0000C760 /* GULURLSessionDataResponse.h */, + 46EB2E0000C7B0 /* GULURLSessionDataResponse.m */, + 46EB2E0000C770 /* NSURLSession+GULPromises.h */, + 46EB2E0000C7C0 /* NSURLSession+GULPromises.m */, ); name = Environment; sourceTree = ""; }; - 46EB2E0000C7C0 /* ISASwizzler */ = { + 46EB2E0000C7D0 /* ISASwizzler */ = { isa = PBXGroup; children = ( - 46EB2E0000C800 /* GULObjectSwizzler.h */, - 46EB2E0000C7E0 /* GULObjectSwizzler.m */, - 46EB2E0000C7D0 /* GULObjectSwizzler+Internal.h */, - 46EB2E0000C810 /* GULSwizzledObject.h */, - 46EB2E0000C7F0 /* GULSwizzledObject.m */, + 46EB2E0000C810 /* GULObjectSwizzler.h */, + 46EB2E0000C7F0 /* GULObjectSwizzler.m */, + 46EB2E0000C7E0 /* GULObjectSwizzler+Internal.h */, + 46EB2E0000C820 /* GULSwizzledObject.h */, + 46EB2E0000C800 /* GULSwizzledObject.m */, ); name = ISASwizzler; sourceTree = ""; }; - 46EB2E0000C820 /* Logger */ = { + 46EB2E0000C830 /* Logger */ = { isa = PBXGroup; children = ( - 46EB2E0000C840 /* GULLogger.h */, - 46EB2E0000C830 /* GULLogger.m */, - 46EB2E0000C850 /* GULLoggerLevel.h */, + 46EB2E0000C850 /* GULLogger.h */, + 46EB2E0000C840 /* GULLogger.m */, + 46EB2E0000C860 /* GULLoggerLevel.h */, ); name = Logger; sourceTree = ""; }; - 46EB2E0000C860 /* MethodSwizzler */ = { + 46EB2E0000C870 /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 46EB2E0000C880 /* GULOriginalIMPConvenienceMacros.h */, - 46EB2E0000C890 /* GULSwizzler.h */, - 46EB2E0000C870 /* GULSwizzler.m */, + 46EB2E0000C890 /* GULOriginalIMPConvenienceMacros.h */, + 46EB2E0000C8A0 /* GULSwizzler.h */, + 46EB2E0000C880 /* GULSwizzler.m */, ); name = MethodSwizzler; sourceTree = ""; }; - 46EB2E0000C8A0 /* NSData+zlib */ = { + 46EB2E0000C8B0 /* NSData+zlib */ = { isa = PBXGroup; children = ( - 46EB2E0000C8C0 /* GULNSData+zlib.h */, - 46EB2E0000C8B0 /* GULNSData+zlib.m */, + 46EB2E0000C8D0 /* GULNSData+zlib.h */, + 46EB2E0000C8C0 /* GULNSData+zlib.m */, ); name = "NSData+zlib"; sourceTree = ""; }; - 46EB2E0000C8D0 /* Network */ = { + 46EB2E0000C8E0 /* Network */ = { isa = PBXGroup; children = ( - 46EB2E0000C930 /* GULMutableDictionary.h */, - 46EB2E0000C8E0 /* GULMutableDictionary.m */, - 46EB2E0000C940 /* GULNetwork.h */, - 46EB2E0000C8F0 /* GULNetwork.m */, - 46EB2E0000C950 /* GULNetworkConstants.h */, - 46EB2E0000C900 /* GULNetworkConstants.m */, - 46EB2E0000C910 /* GULNetworkInternal.h */, - 46EB2E0000C960 /* GULNetworkLoggerProtocol.h */, - 46EB2E0000C970 /* GULNetworkMessageCode.h */, - 46EB2E0000C980 /* GULNetworkURLSession.h */, - 46EB2E0000C920 /* GULNetworkURLSession.m */, + 46EB2E0000C940 /* GULMutableDictionary.h */, + 46EB2E0000C8F0 /* GULMutableDictionary.m */, + 46EB2E0000C950 /* GULNetwork.h */, + 46EB2E0000C900 /* GULNetwork.m */, + 46EB2E0000C960 /* GULNetworkConstants.h */, + 46EB2E0000C910 /* GULNetworkConstants.m */, + 46EB2E0000C920 /* GULNetworkInternal.h */, + 46EB2E0000C970 /* GULNetworkLoggerProtocol.h */, + 46EB2E0000C980 /* GULNetworkMessageCode.h */, + 46EB2E0000C990 /* GULNetworkURLSession.h */, + 46EB2E0000C930 /* GULNetworkURLSession.m */, ); name = Network; sourceTree = ""; }; - 46EB2E0000C990 /* Reachability */ = { + 46EB2E0000C9A0 /* Reachability */ = { isa = PBXGroup; children = ( - 46EB2E0000C9D0 /* GULReachabilityChecker.h */, - 46EB2E0000C9B0 /* GULReachabilityChecker.m */, - 46EB2E0000C9A0 /* GULReachabilityChecker+Internal.h */, - 46EB2E0000C9C0 /* GULReachabilityMessageCode.h */, + 46EB2E0000C9E0 /* GULReachabilityChecker.h */, + 46EB2E0000C9C0 /* GULReachabilityChecker.m */, + 46EB2E0000C9B0 /* GULReachabilityChecker+Internal.h */, + 46EB2E0000C9D0 /* GULReachabilityMessageCode.h */, ); name = Reachability; sourceTree = ""; }; - 46EB2E0000C9E0 /* SwizzlerTestHelpers */ = { + 46EB2E0000C9F0 /* SwizzlerTestHelpers */ = { isa = PBXGroup; children = ( - 46EB2E0000C9F0 /* GULProxy.h */, - 46EB2E0000CA00 /* GULProxy.m */, - 46EB2E0000CA10 /* GULRuntimeClassDiff.h */, - 46EB2E0000CA20 /* GULRuntimeClassDiff.m */, - 46EB2E0000CA30 /* GULRuntimeClassSnapshot.h */, - 46EB2E0000CA40 /* GULRuntimeClassSnapshot.m */, - 46EB2E0000CA50 /* GULRuntimeDiff.h */, - 46EB2E0000CA60 /* GULRuntimeDiff.m */, - 46EB2E0000CA70 /* GULRuntimeSnapshot.h */, - 46EB2E0000CA80 /* GULRuntimeSnapshot.m */, - 46EB2E0000CA90 /* GULRuntimeStateHelper.h */, - 46EB2E0000CAA0 /* GULRuntimeStateHelper.m */, - 46EB2E0000CAF0 /* GULSwizzler+Unswizzle.h */, - 46EB2E0000CAB0 /* GULSwizzler+Unswizzle.m */, - 46EB2E0000CAC0 /* GULSwizzlingCache.h */, - 46EB2E0000CAD0 /* GULSwizzlingCache.m */, - 46EB2E0000CAE0 /* GULSwizzlingCache_Private.h */, + 46EB2E0000CA00 /* GULProxy.h */, + 46EB2E0000CA10 /* GULProxy.m */, + 46EB2E0000CA20 /* GULRuntimeClassDiff.h */, + 46EB2E0000CA30 /* GULRuntimeClassDiff.m */, + 46EB2E0000CA40 /* GULRuntimeClassSnapshot.h */, + 46EB2E0000CA50 /* GULRuntimeClassSnapshot.m */, + 46EB2E0000CA60 /* GULRuntimeDiff.h */, + 46EB2E0000CA70 /* GULRuntimeDiff.m */, + 46EB2E0000CA80 /* GULRuntimeSnapshot.h */, + 46EB2E0000CA90 /* GULRuntimeSnapshot.m */, + 46EB2E0000CAA0 /* GULRuntimeStateHelper.h */, + 46EB2E0000CAB0 /* GULRuntimeStateHelper.m */, + 46EB2E0000CB00 /* GULSwizzler+Unswizzle.h */, + 46EB2E0000CAC0 /* GULSwizzler+Unswizzle.m */, + 46EB2E0000CAD0 /* GULSwizzlingCache.h */, + 46EB2E0000CAE0 /* GULSwizzlingCache.m */, + 46EB2E0000CAF0 /* GULSwizzlingCache_Private.h */, ); name = SwizzlerTestHelpers; sourceTree = ""; }; - 46EB2E0000CB00 /* UserDefaults */ = { + 46EB2E0000CB10 /* UserDefaults */ = { isa = PBXGroup; children = ( - 46EB2E0000CB20 /* GULUserDefaults.h */, - 46EB2E0000CB10 /* GULUserDefaults.m */, + 46EB2E0000CB30 /* GULUserDefaults.h */, + 46EB2E0000CB20 /* GULUserDefaults.m */, ); name = UserDefaults; sourceTree = ""; }; - 46EB2E0000D0E0 /* Implementation */ = { - isa = PBXGroup; - children = ( - 46EB2E0000D180 /* async.c */, - 46EB2E0000D340 /* atomic-ops.h */, - 46EB2E0000D290 /* bsd-ifaddrs.c */, - 46EB2E0000D190 /* core.c */, - 46EB2E0000D2A0 /* darwin.c */, - 46EB2E0000D2D0 /* darwin-proctitle.c */, - 46EB2E0000D1A0 /* dl.c */, - 46EB2E0000D1B0 /* fs.c */, - 46EB2E0000D0F0 /* fs-poll.c */, - 46EB2E0000D2B0 /* fsevents.c */, - 46EB2E0000D1C0 /* getaddrinfo.c */, - 46EB2E0000D1D0 /* getnameinfo.c */, - 46EB2E0000D2F0 /* heap-inl.h */, - 46EB2E0000D100 /* idna.c */, - 46EB2E0000D300 /* idna.h */, - 46EB2E0000D110 /* inet.c */, - 46EB2E0000D350 /* internal.h */, - 46EB2E0000D2C0 /* kqueue.c */, - 46EB2E0000D1E0 /* loop.c */, - 46EB2E0000D1F0 /* loop-watcher.c */, - 46EB2E0000D200 /* pipe.c */, - 46EB2E0000D210 /* poll.c */, - 46EB2E0000D220 /* process.c */, - 46EB2E0000D2E0 /* proctitle.c */, - 46EB2E0000D310 /* queue.h */, - 46EB2E0000D230 /* signal.c */, - 46EB2E0000D360 /* spinlock.h */, - 46EB2E0000D240 /* stream.c */, - 46EB2E0000D120 /* strscpy.c */, - 46EB2E0000D320 /* strscpy.h */, - 46EB2E0000D250 /* tcp.c */, - 46EB2E0000D260 /* thread.c */, - 46EB2E0000D130 /* threadpool.c */, - 46EB2E0000D140 /* timer.c */, - 46EB2E0000D270 /* tty.c */, - 46EB2E0000D280 /* udp.c */, - 46EB2E0000D160 /* uv-common.c */, - 46EB2E0000D330 /* uv-common.h */, - 46EB2E0000D150 /* uv-data-getter-setters.c */, - 46EB2E0000D170 /* version.c */, + 46EB2E0000CF60 /* Implementation */ = { + isa = PBXGroup; + children = ( + 46EB2E0000D000 /* async.c */, + 46EB2E0000D1C0 /* atomic-ops.h */, + 46EB2E0000D110 /* bsd-ifaddrs.c */, + 46EB2E0000D010 /* core.c */, + 46EB2E0000D120 /* darwin.c */, + 46EB2E0000D150 /* darwin-proctitle.c */, + 46EB2E0000D020 /* dl.c */, + 46EB2E0000D030 /* fs.c */, + 46EB2E0000CF70 /* fs-poll.c */, + 46EB2E0000D130 /* fsevents.c */, + 46EB2E0000D040 /* getaddrinfo.c */, + 46EB2E0000D050 /* getnameinfo.c */, + 46EB2E0000D170 /* heap-inl.h */, + 46EB2E0000CF80 /* idna.c */, + 46EB2E0000D180 /* idna.h */, + 46EB2E0000CF90 /* inet.c */, + 46EB2E0000D1D0 /* internal.h */, + 46EB2E0000D140 /* kqueue.c */, + 46EB2E0000D060 /* loop.c */, + 46EB2E0000D070 /* loop-watcher.c */, + 46EB2E0000D080 /* pipe.c */, + 46EB2E0000D090 /* poll.c */, + 46EB2E0000D0A0 /* process.c */, + 46EB2E0000D160 /* proctitle.c */, + 46EB2E0000D190 /* queue.h */, + 46EB2E0000D0B0 /* signal.c */, + 46EB2E0000D1E0 /* spinlock.h */, + 46EB2E0000D0C0 /* stream.c */, + 46EB2E0000CFA0 /* strscpy.c */, + 46EB2E0000D1A0 /* strscpy.h */, + 46EB2E0000D0D0 /* tcp.c */, + 46EB2E0000D0E0 /* thread.c */, + 46EB2E0000CFB0 /* threadpool.c */, + 46EB2E0000CFC0 /* timer.c */, + 46EB2E0000D0F0 /* tty.c */, + 46EB2E0000D100 /* udp.c */, + 46EB2E0000CFE0 /* uv-common.c */, + 46EB2E0000D1B0 /* uv-common.h */, + 46EB2E0000CFD0 /* uv-data-getter-setters.c */, + 46EB2E0000CFF0 /* version.c */, ); name = Implementation; sourceTree = ""; }; - 46EB2E0000D370 /* Interface */ = { + 46EB2E0000D1F0 /* Interface */ = { isa = PBXGroup; children = ( - 46EB2E0000D3E0 /* darwin.h */, - 46EB2E0000D390 /* errno.h */, - 46EB2E0000D3A0 /* threadpool.h */, - 46EB2E0000D3C0 /* tree.h */, - 46EB2E0000D3D0 /* unix.h */, - 46EB2E0000D380 /* uv.h */, - 46EB2E0000D3B0 /* version.h */, + 46EB2E0000D260 /* darwin.h */, + 46EB2E0000D210 /* errno.h */, + 46EB2E0000D220 /* threadpool.h */, + 46EB2E0000D240 /* tree.h */, + 46EB2E0000D250 /* unix.h */, + 46EB2E0000D200 /* uv.h */, + 46EB2E0000D230 /* version.h */, ); name = Interface; sourceTree = ""; }; - 46EB2E0000E860 /* Futures */ = { - isa = PBXGroup; - children = ( - 46EB2E00010040 /* a.h */, - 46EB2E0000F930 /* Accumulate.h */, - 46EB2E0000F920 /* Accumulate-inl.h */, - 46EB2E0000F5C0 /* AddTasks.h */, - 46EB2E0000F5B0 /* AddTasks-inl.h */, - 46EB2E0000EE30 /* AsymmetricMemoryBarrier.cpp */, - 46EB2E0000EE40 /* AsymmetricMemoryBarrier.h */, - 46EB2E0000E9E0 /* Async.h */, - 46EB2E0000FE10 /* AsyncBase.h */, - 46EB2E0000FE80 /* AsyncBaseTestLib.h */, - 46EB2E0000F940 /* AsyncGenerator.h */, - 46EB2E0000FE20 /* AsyncIO.h */, - 46EB2E0000F950 /* AsyncPipe.h */, - 46EB2E0000F960 /* AsyncScope.h */, - 46EB2E0000F480 /* AsyncStack.cpp */, - 46EB2E0000F970 /* AsyncStack.h */, - 46EB2E0000F490 /* AsyncStack.h */, - 46EB2E0000F4A0 /* AsyncStack-inl.h */, - 46EB2E0000F230 /* AsyncTimeout.cpp */, - 46EB2E0000F240 /* AsyncTimeout.h */, - 46EB2E0000F500 /* AsyncTrace.cpp */, - 46EB2E0000F510 /* AtFork.cpp */, - 46EB2E0000F5E0 /* AtomicBatchDispatcher.h */, - 46EB2E0000F5D0 /* AtomicBatchDispatcher-inl.h */, - 46EB2E0000EE60 /* AtomicNotification.cpp */, - 46EB2E0000EE70 /* AtomicNotification.h */, - 46EB2E0000EE50 /* AtomicNotification-inl.h */, - 46EB2E0000F260 /* AtomicNotificationQueue.h */, - 46EB2E0000F250 /* AtomicNotificationQueue-inl.h */, - 46EB2E0000F8F0 /* AtomicQueue.h */, - 46EB2E0000F8A0 /* AtomicReadMostlyMainPtr.h */, - 46EB2E0000EE80 /* AtomicRef.h */, - 46EB2E0000ED30 /* AtomicSharedPtr.h */, - 46EB2E0000EE90 /* AtomicStruct.h */, - 46EB2E0000EEB0 /* AtomicUtil.h */, - 46EB2E0000EEA0 /* AtomicUtil-inl.h */, - 46EB2E0000F120 /* AtomicUtils.h */, - 46EB2E0000F8B0 /* AutoTimer.h */, - 46EB2E00010050 /* b.h */, - 46EB2E0000E870 /* Barrier.cpp */, - 46EB2E0000FA20 /* Barrier.h */, - 46EB2E0000E880 /* Barrier.h */, - 46EB2E0000FA30 /* BarrierTask.h */, - 46EB2E0000F5F0 /* BatchDispatcher.h */, - 46EB2E0000F600 /* BatchSemaphore.cpp */, - 46EB2E0000F610 /* BatchSemaphore.h */, - 46EB2E0000F630 /* Baton.cpp */, - 46EB2E0000F980 /* Baton.h */, - 46EB2E0000F640 /* Baton.h */, - 46EB2E0000EEC0 /* Baton.h */, - 46EB2E0000F620 /* Baton-inl.h */, - 46EB2E0000F8C0 /* Bits.h */, - 46EB2E0000F8D0 /* BitVectorCoding.h */, - 46EB2E0000FCB0 /* Blake2xb.h */, - 46EB2E0000ECE0 /* BlockingQueue.h */, - 46EB2E0000F990 /* BlockingWait.h */, - 46EB2E0000F650 /* BoostContextCompatibility.h */, - 46EB2E0000F8E0 /* Bser.h */, - 46EB2E0000ED40 /* CacheLocality.cpp */, - 46EB2E0000ED50 /* CacheLocality.h */, - 46EB2E0000F660 /* CallOnce.h */, - 46EB2E0000EED0 /* CallOnce.h */, - 46EB2E0000F900 /* Cleanup.h */, - 46EB2E0000E9F0 /* Codel.cpp */, - 46EB2E0000EA00 /* Codel.h */, - 46EB2E0000F910 /* CodingDetail.h */, - 46EB2E000101C0 /* CodingTestUtils.h */, - 46EB2E0000F9B0 /* Collect.h */, - 46EB2E0000F9A0 /* Collect-inl.h */, - 46EB2E0000F9D0 /* Concat.h */, - 46EB2E0000F9C0 /* Concat-inl.h */, - 46EB2E0000ED60 /* ConcurrentHashMap.h */, - 46EB2E0000E9B0 /* Core.cpp */, - 46EB2E0000FEF0 /* Core.h */, - 46EB2E0000E9C0 /* Core.h */, - 46EB2E0000ED70 /* CoreCachedSharedPtr.h */, - 46EB2E0000F890 /* Coroutine.h */, - 46EB2E0000EA10 /* CPUThreadPoolExecutor.cpp */, - 46EB2E0000EA20 /* CPUThreadPoolExecutor.h */, - 46EB2E0000FA40 /* CurrentAsyncFrame.h */, - 46EB2E0000F9E0 /* CurrentExecutor.h */, - 46EB2E0000F410 /* Cursor.cpp */, - 46EB2E0000F420 /* Cursor.h */, - 46EB2E0000F400 /* Cursor-inl.h */, - 46EB2E0000ED80 /* DeadlockDetector.cpp */, - 46EB2E0000ED90 /* DeadlockDetector.h */, - 46EB2E000100E0 /* Debug.h */, - 46EB2E0000F270 /* DelayedDestruction.h */, - 46EB2E0000F280 /* DelayedDestructionBase.h */, - 46EB2E0000EEE0 /* DelayedInit.h */, - 46EB2E0000FA00 /* Dematerialize.h */, - 46EB2E0000F9F0 /* Dematerialize-inl.h */, - 46EB2E0000FA10 /* DetachOnCancel.h */, - 46EB2E0000EF00 /* DistributedMutex.cpp */, - 46EB2E0000EF10 /* DistributedMutex.h */, - 46EB2E0000EEF0 /* DistributedMutex-inl.h */, - 46EB2E0000EF20 /* DistributedMutexSpecializations.h */, - 46EB2E0000EA30 /* DrivableExecutor.h */, - 46EB2E000100F0 /* Dwarf.h */, - 46EB2E0000EDA0 /* DynamicBoundedQueue.h */, - 46EB2E0000FD00 /* DynamicParser.h */, - 46EB2E0000FCF0 /* DynamicParser-inl.h */, - 46EB2E0000EA40 /* EDFThreadPoolExecutor.cpp */, - 46EB2E0000EA50 /* EDFThreadPoolExecutor.h */, - 46EB2E00010110 /* Elf.h */, - 46EB2E00010100 /* Elf-inl.h */, - 46EB2E00010120 /* ElfCache.h */, - 46EB2E0000FD10 /* EliasFanoCoding.h */, - 46EB2E0000FD20 /* EnvUtil.h */, - 46EB2E0000F290 /* EventBase.cpp */, - 46EB2E0000F2A0 /* EventBase.h */, - 46EB2E0000F2C0 /* EventBaseAtomicNotificationQueue.h */, - 46EB2E0000F2B0 /* EventBaseAtomicNotificationQueue-inl.h */, - 46EB2E0000F2D0 /* EventBaseBackendBase.cpp */, - 46EB2E0000F2E0 /* EventBaseBackendBase.h */, - 46EB2E0000F2F0 /* EventBaseLocal.cpp */, - 46EB2E0000F300 /* EventBaseLocal.h */, - 46EB2E0000F680 /* EventBaseLoopController.h */, - 46EB2E0000F670 /* EventBaseLoopController-inl.h */, - 46EB2E0000F310 /* EventBaseManager.cpp */, - 46EB2E0000F320 /* EventBaseManager.h */, - 46EB2E0000FD30 /* EventCount.h */, - 46EB2E0000F330 /* EventHandler.cpp */, - 46EB2E0000F340 /* EventHandler.h */, - 46EB2E0000F350 /* EventUtil.h */, - 46EB2E0000FD40 /* ExceptionAbi.h */, - 46EB2E0000FD50 /* ExceptionCounterLib.h */, - 46EB2E0000F4B0 /* ExceptionString.cpp */, - 46EB2E0000FD60 /* ExceptionTracer.h */, - 46EB2E0000FD70 /* ExceptionTracerLib.h */, - 46EB2E0000F4C0 /* ExceptionWrapper.cpp */, - 46EB2E0000F1F0 /* ExecutionObserver.h */, - 46EB2E0000F4D0 /* Executor.cpp */, - 46EB2E0000F690 /* ExecutorBasedLoopController.h */, - 46EB2E0000F6B0 /* ExecutorLoopController.h */, - 46EB2E0000F6A0 /* ExecutorLoopController-inl.h */, - 46EB2E0000EA70 /* ExecutorWithPriority.cpp */, - 46EB2E0000EA80 /* ExecutorWithPriority.h */, - 46EB2E0000EA60 /* ExecutorWithPriority-inl.h */, - 46EB2E0000F6D0 /* Fiber.cpp */, - 46EB2E0000F6E0 /* Fiber.h */, - 46EB2E0000F6C0 /* Fiber-inl.h */, - 46EB2E0000EA90 /* FiberIOExecutor.h */, - 46EB2E0000F700 /* FiberManager.cpp */, - 46EB2E0000F710 /* FiberManager.h */, - 46EB2E0000F6F0 /* FiberManager-inl.h */, - 46EB2E0000F730 /* FiberManagerInternal.h */, - 46EB2E0000F720 /* FiberManagerInternal-inl.h */, - 46EB2E0000F750 /* FiberManagerMap.h */, - 46EB2E0000F740 /* FiberManagerMap-inl.h */, - 46EB2E0000FAB0 /* Filter.h */, - 46EB2E0000FAA0 /* Filter-inl.h */, - 46EB2E0000FDB0 /* FlatCombining.h */, - 46EB2E0000FDC0 /* FlatCombiningExamples.h */, - 46EB2E0000FDA0 /* FlatCombiningPriorityQueue.h */, - 46EB2E0000FDD0 /* FlatCombiningTestHelpers.h */, - 46EB2E0000F770 /* ForEach.h */, - 46EB2E0000F760 /* ForEach-inl.h */, - 46EB2E0000FE30 /* FsUtil.h */, - 46EB2E0000FDE0 /* FunctionScheduler.h */, - 46EB2E0000F520 /* Futex.cpp */, - 46EB2E0000E8B0 /* Future.cpp */, - 46EB2E0000E8C0 /* Future.h */, - 46EB2E0000E890 /* Future-inl.h */, - 46EB2E0000E8A0 /* Future-pre.h */, - 46EB2E0000FDF0 /* FutureDAG.h */, - 46EB2E0000EAA0 /* FutureExecutor.h */, - 46EB2E0000E8D0 /* FutureSplitter.h */, - 46EB2E0000FAC0 /* FutureUtil.h */, - 46EB2E0000FAD0 /* Generator.h */, - 46EB2E0000F780 /* GenericBaton.h */, - 46EB2E0000EAB0 /* GlobalExecutor.cpp */, - 46EB2E0000EAC0 /* GlobalExecutor.h */, - 46EB2E0000EAD0 /* GlobalThreadPoolList.cpp */, - 46EB2E0000EAE0 /* GlobalThreadPoolList.h */, - 46EB2E0000FAE0 /* GmockHelpers.h */, - 46EB2E0000FF00 /* GraphCycleDetector.h */, - 46EB2E0000FAF0 /* GtestHelpers.h */, - 46EB2E0000F790 /* GuardPageAllocator.cpp */, - 46EB2E0000F7A0 /* GuardPageAllocator.h */, - 46EB2E0000F130 /* Hardware.cpp */, - 46EB2E0000F590 /* Hardware.h */, - 46EB2E0000F140 /* Hardware.h */, - 46EB2E0000EDF0 /* HardwareConcurrency.cpp */, - 46EB2E0000EE00 /* HardwareConcurrency.h */, - 46EB2E0000EF40 /* Hazptr.cpp */, - 46EB2E0000EF50 /* Hazptr.h */, - 46EB2E0000EF30 /* Hazptr-fwd.h */, - 46EB2E0000EF60 /* HazptrDomain.h */, - 46EB2E0000EF70 /* HazptrHolder.h */, - 46EB2E0000EF80 /* HazptrObj.h */, - 46EB2E0000EF90 /* HazptrObjLinked.h */, - 46EB2E0000EFA0 /* HazptrRec.h */, - 46EB2E0000EFB0 /* HazptrThreadPoolExecutor.cpp */, - 46EB2E0000EFC0 /* HazptrThreadPoolExecutor.h */, - 46EB2E0000EFD0 /* HazptrThrLocal.h */, - 46EB2E0000F150 /* HazptrUtils.h */, - 46EB2E0000FA50 /* Helpers.h */, - 46EB2E0000F370 /* HHWheelTimer.cpp */, - 46EB2E0000F380 /* HHWheelTimer.h */, - 46EB2E0000F360 /* HHWheelTimer-fwd.h */, - 46EB2E0000FE40 /* HugePages.h */, - 46EB2E0000EAF0 /* InlineExecutor.cpp */, - 46EB2E0000EB00 /* InlineExecutor.h */, - 46EB2E0000F160 /* InlineFunctionRef.h */, - 46EB2E0000FA60 /* InlineTask.h */, - 46EB2E0000FE00 /* Instructions.h */, - 46EB2E0000FB00 /* Invoke.h */, - 46EB2E0000F430 /* IOBuf.cpp */, - 46EB2E0000F440 /* IOBuf.h */, - 46EB2E0000F450 /* IOBufQueue.cpp */, - 46EB2E0000F460 /* IOBufQueue.h */, - 46EB2E0000EB10 /* IOExecutor.h */, - 46EB2E0000EB20 /* IOObjectCache.h */, - 46EB2E0000FE90 /* IoTestTempFileUtil.h */, - 46EB2E0000EB30 /* IOThreadPoolDeadlockDetectorObserver.cpp */, - 46EB2E0000EB40 /* IOThreadPoolDeadlockDetectorObserver.h */, - 46EB2E0000EB50 /* IOThreadPoolExecutor.cpp */, - 46EB2E0000EB60 /* IOThreadPoolExecutor.h */, - 46EB2E0000FE50 /* IoUring.h */, - 46EB2E0000FE60 /* IoUringBackend.h */, - 46EB2E0000FEA0 /* JemallocHugePageAllocator.h */, - 46EB2E0000FEB0 /* JemallocNodumpAllocator.h */, - 46EB2E0000FEC0 /* JSONSchema.h */, - 46EB2E0000EFE0 /* Latch.h */, - 46EB2E0000EFF0 /* LifoSem.h */, - 46EB2E0000ECF0 /* LifoSemMPMCQueue.h */, - 46EB2E00010130 /* LineReader.h */, - 46EB2E0000F000 /* Lock.h */, - 46EB2E0000FED0 /* LockFreeRingBuffer.h */, - 46EB2E0000F7B0 /* LoopController.h */, - 46EB2E0000FCE0 /* LtHash.h */, - 46EB2E0000FCD0 /* LtHash-inl.h */, - 46EB2E0000FCC0 /* LtHashInternal.h */, - 46EB2E0000F570 /* MallctlHelper.cpp */, - 46EB2E0000FA70 /* Malloc.h */, - 46EB2E0000EB70 /* ManualExecutor.cpp */, - 46EB2E0000EB80 /* ManualExecutor.h */, - 46EB2E0000FA80 /* ManualLifetime.h */, - 46EB2E0000E8E0 /* ManualTimekeeper.cpp */, - 46EB2E0000E8F0 /* ManualTimekeeper.h */, - 46EB2E0000FB20 /* Materialize.h */, - 46EB2E0000FB10 /* Materialize-inl.h */, - 46EB2E0000F530 /* MemoryIdler.cpp */, - 46EB2E0000FB40 /* Merge.h */, - 46EB2E0000FB30 /* Merge-inl.h */, - 46EB2E0000EB90 /* MeteredExecutor.cpp */, - 46EB2E0000EBA0 /* MeteredExecutor.h */, - 46EB2E0000F010 /* MicroSpinLock.h */, - 46EB2E0000FB60 /* Multiplex.h */, - 46EB2E0000FB50 /* Multiplex-inl.h */, - 46EB2E0000FB70 /* Mutex.h */, - 46EB2E0000ECC0 /* NamedThreadFactory.h */, - 46EB2E0000F020 /* NativeSemaphore.h */, - 46EB2E0000FEE0 /* NestedCommandLineApp.h */, - 46EB2E0000F390 /* NotificationQueue.h */, - 46EB2E0000FF30 /* Observable.h */, - 46EB2E0000FF20 /* Observable-inl.h */, - 46EB2E0000FF60 /* Observer.h */, - 46EB2E0000FF40 /* Observer-inl.h */, - 46EB2E0000FF50 /* Observer-pre.h */, - 46EB2E0000FF10 /* ObserverManager.h */, - 46EB2E0000F030 /* ParkingLot.cpp */, - 46EB2E0000F040 /* ParkingLot.h */, - 46EB2E0000F050 /* PicoSpinLock.h */, - 46EB2E00010230 /* Pid.cpp */, - 46EB2E00010240 /* Pid.h */, - 46EB2E0000E900 /* Portability.h */, - 46EB2E0000FFB0 /* PrimaryPtr.h */, - 46EB2E0000ED00 /* PriorityLifoSemMPMCQueue.h */, - 46EB2E0000ED10 /* PriorityUnboundedBlockingQueue.h */, - 46EB2E0000EDB0 /* PriorityUnboundedQueueSet.h */, - 46EB2E0000FFC0 /* ProgramOptions.h */, - 46EB2E0000E920 /* Promise.cpp */, - 46EB2E0000F7D0 /* Promise.h */, - 46EB2E0000E930 /* Promise.h */, - 46EB2E0000F7C0 /* Promise-inl.h */, - 46EB2E0000E910 /* Promise-inl.h */, - 46EB2E0000F180 /* ProxyLockable.h */, - 46EB2E0000F170 /* ProxyLockable-inl.h */, - 46EB2E0000EBB0 /* QueuedImmediateExecutor.cpp */, - 46EB2E0000EBC0 /* QueuedImmediateExecutor.h */, - 46EB2E0000EDC0 /* QueueObserver.cpp */, - 46EB2E0000EDD0 /* QueueObserver.h */, - 46EB2E0000FFE0 /* QuotientMultiSet.h */, - 46EB2E0000FFD0 /* QuotientMultiSet-inl.h */, - 46EB2E0000F070 /* Rcu.cpp */, - 46EB2E0000F080 /* Rcu.h */, - 46EB2E0000F060 /* Rcu-inl.h */, - 46EB2E0000F200 /* ReadMostlySharedPtr.h */, - 46EB2E0000FFF0 /* RelaxedConcurrentPriorityQueue.h */, - 46EB2E0000F3A0 /* Request.cpp */, - 46EB2E0000F3B0 /* Request.h */, - 46EB2E0000FB80 /* Result.h */, - 46EB2E0000FB90 /* Retry.h */, - 46EB2E0000E940 /* Retrying.h */, - 46EB2E0000FBA0 /* RustAdaptors.h */, - 46EB2E0000F090 /* RWSpinLock.h */, - 46EB2E0000F0A0 /* SanitizeThread.cpp */, - 46EB2E0000F0B0 /* SanitizeThread.h */, - 46EB2E0000F0C0 /* SaturatingSemaphore.h */, - 46EB2E0000EBD0 /* ScheduledExecutor.h */, - 46EB2E00010000 /* Select64.h */, - 46EB2E0000F7E0 /* Semaphore.cpp */, - 46EB2E0000F7F0 /* Semaphore.h */, - 46EB2E0000F800 /* SemaphoreBase.cpp */, - 46EB2E0000F810 /* SemaphoreBase.h */, - 46EB2E0000EBE0 /* SequencedExecutor.h */, - 46EB2E0000EBF0 /* SerialExecutor.cpp */, - 46EB2E0000EC00 /* SerialExecutor.h */, - 46EB2E00010020 /* Settings.h */, - 46EB2E00010010 /* SettingsImpl.h */, - 46EB2E00010030 /* SettingsMetadata.h */, - 46EB2E0000FBB0 /* SharedLock.h */, - 46EB2E0000F4E0 /* SharedMutex.cpp */, - 46EB2E0000FBC0 /* SharedMutex.h */, - 46EB2E0000E960 /* SharedPromise.cpp */, - 46EB2E0000E970 /* SharedPromise.h */, - 46EB2E0000E950 /* SharedPromise-inl.h */, - 46EB2E00010140 /* SignalHandler.h */, - 46EB2E00010190 /* SignalHandlerTest.h */, - 46EB2E0000FE70 /* SimpleAsyncIO.h */, - 46EB2E0000F820 /* SimpleLoopController.cpp */, - 46EB2E0000F830 /* SimpleLoopController.h */, - 46EB2E0000FF80 /* SimpleObservable.h */, - 46EB2E0000FF70 /* SimpleObservable-inl.h */, - 46EB2E0000F4F0 /* Singleton.cpp */, - 46EB2E00010060 /* SingletonRelaxedCounter.h */, - 46EB2E0000F540 /* SingletonStackTrace.cpp */, - 46EB2E0000F210 /* SingleWriterFixedHashMap.h */, - 46EB2E0000FBE0 /* Sleep.h */, - 46EB2E0000FBD0 /* Sleep-inl.h */, - 46EB2E0000F190 /* Sleeper.cpp */, - 46EB2E0000F1A0 /* Sleeper.h */, - 46EB2E0000F0D0 /* SmallLocks.h */, - 46EB2E0000FBF0 /* SmallUnboundedQueue.h */, - 46EB2E0000FD80 /* SmartExceptionTracer.h */, - 46EB2E0000EC10 /* SoftRealTimeExecutor.h */, - 46EB2E0000F1B0 /* Spin.h */, - 46EB2E0000FD90 /* StackTrace.h */, - 46EB2E00010150 /* StackTrace.h */, - 46EB2E00010070 /* StampedPtr.h */, - 46EB2E0000F550 /* StaticSingletonManager.cpp */, - 46EB2E0000F470 /* StaticTracepoint.h */, - 46EB2E0000EC20 /* StrandExecutor.cpp */, - 46EB2E0000EC30 /* StrandExecutor.h */, - 46EB2E00010080 /* StringKeyedCommon.h */, - 46EB2E00010090 /* StringKeyedMap.h */, - 46EB2E000100A0 /* StringKeyedSet.h */, - 46EB2E000100B0 /* StringKeyedUnorderedMap.h */, - 46EB2E000100C0 /* StringKeyedUnorderedSet.h */, - 46EB2E000100D0 /* STTimerFDTimeoutManager.h */, - 46EB2E00010160 /* SymbolizedFrame.h */, - 46EB2E00010170 /* SymbolizePrinter.h */, - 46EB2E00010180 /* Symbolizer.h */, - 46EB2E000101B0 /* SymbolizerTestUtils.h */, - 46EB2E000101A0 /* SymbolizerTestUtils-inl.h */, - 46EB2E0000F580 /* SysMembarrier.cpp */, - 46EB2E0000FC00 /* Task.h */, - 46EB2E0000F0E0 /* Tearable.h */, - 46EB2E000101D0 /* TestUtil.h */, - 46EB2E0000F1C0 /* ThreadCachedInts.h */, - 46EB2E0000F1D0 /* ThreadCachedLists.h */, - 46EB2E0000EC40 /* ThreadedExecutor.cpp */, - 46EB2E0000EC50 /* ThreadedExecutor.h */, - 46EB2E000101E0 /* ThreadedRepeatingFunctionRunner.h */, - 46EB2E0000ECD0 /* ThreadFactory.h */, - 46EB2E0000F560 /* ThreadLocalDetail.cpp */, - 46EB2E0000EE10 /* ThreadName.cpp */, - 46EB2E0000EE20 /* ThreadName.h */, - 46EB2E0000EC60 /* ThreadPoolExecutor.cpp */, - 46EB2E0000EC70 /* ThreadPoolExecutor.h */, - 46EB2E0000E980 /* ThreadWheelTimekeeper.cpp */, - 46EB2E0000E990 /* ThreadWheelTimekeeper.h */, - 46EB2E000101F0 /* ThreadWheelTimekeeperHighRes.h */, - 46EB2E0000EC80 /* TimedDrivableExecutor.cpp */, - 46EB2E0000EC90 /* TimedDrivableExecutor.h */, - 46EB2E0000F850 /* TimedMutex.h */, - 46EB2E0000F840 /* TimedMutex-inl.h */, - 46EB2E0000FC10 /* TimedWait.h */, - 46EB2E0000ECA0 /* TimekeeperScheduledExecutor.cpp */, - 46EB2E0000ECB0 /* TimekeeperScheduledExecutor.h */, - 46EB2E0000FC30 /* Timeout.h */, - 46EB2E0000FC20 /* Timeout-inl.h */, - 46EB2E0000F3C0 /* TimeoutManager.cpp */, - 46EB2E0000F3D0 /* TimeoutManager.h */, - 46EB2E00010200 /* TimerFD.h */, - 46EB2E00010210 /* TimerFDTimeoutManager.h */, - 46EB2E0000F220 /* TLRefCount.h */, - 46EB2E0000FA90 /* Traits.h */, - 46EB2E0000F5A0 /* Traits.h */, - 46EB2E0000F860 /* traits.h */, - 46EB2E0000FC50 /* Transform.h */, - 46EB2E0000FC40 /* Transform-inl.h */, - 46EB2E0000F1E0 /* Try.cpp */, - 46EB2E00010220 /* TupleOps.h */, - 46EB2E0000E9D0 /* Types.h */, - 46EB2E0000ED20 /* UnboundedBlockingQueue.h */, - 46EB2E0000EDE0 /* UnboundedQueue.h */, - 46EB2E0000FC60 /* UnboundedQueue.h */, - 46EB2E0000F0F0 /* Utility.h */, - 46EB2E0000FC70 /* ViaIfAsync.h */, - 46EB2E0000F3E0 /* VirtualEventBase.cpp */, - 46EB2E0000F3F0 /* VirtualEventBase.h */, - 46EB2E0000FC80 /* Wait.h */, - 46EB2E0000F100 /* WaitOptions.cpp */, - 46EB2E0000F110 /* WaitOptions.h */, - 46EB2E0000F880 /* WhenN.h */, - 46EB2E0000F870 /* WhenN-inl.h */, - 46EB2E0000FC90 /* WithAsyncStack.h */, - 46EB2E0000FCA0 /* WithCancellation.h */, - 46EB2E0000FFA0 /* WithJitter.h */, - 46EB2E0000FF90 /* WithJitter-inl.h */, - 46EB2E0000E9A0 /* WTCallback.h */, + 46EB2E0000E6E0 /* Futures */ = { + isa = PBXGroup; + children = ( + 46EB2E0000FEC0 /* a.h */, + 46EB2E0000F7B0 /* Accumulate.h */, + 46EB2E0000F7A0 /* Accumulate-inl.h */, + 46EB2E0000F440 /* AddTasks.h */, + 46EB2E0000F430 /* AddTasks-inl.h */, + 46EB2E0000ECB0 /* AsymmetricMemoryBarrier.cpp */, + 46EB2E0000ECC0 /* AsymmetricMemoryBarrier.h */, + 46EB2E0000E860 /* Async.h */, + 46EB2E0000FC90 /* AsyncBase.h */, + 46EB2E0000FD00 /* AsyncBaseTestLib.h */, + 46EB2E0000F7C0 /* AsyncGenerator.h */, + 46EB2E0000FCA0 /* AsyncIO.h */, + 46EB2E0000F7D0 /* AsyncPipe.h */, + 46EB2E0000F7E0 /* AsyncScope.h */, + 46EB2E0000F300 /* AsyncStack.cpp */, + 46EB2E0000F7F0 /* AsyncStack.h */, + 46EB2E0000F310 /* AsyncStack.h */, + 46EB2E0000F320 /* AsyncStack-inl.h */, + 46EB2E0000F0B0 /* AsyncTimeout.cpp */, + 46EB2E0000F0C0 /* AsyncTimeout.h */, + 46EB2E0000F380 /* AsyncTrace.cpp */, + 46EB2E0000F390 /* AtFork.cpp */, + 46EB2E0000F460 /* AtomicBatchDispatcher.h */, + 46EB2E0000F450 /* AtomicBatchDispatcher-inl.h */, + 46EB2E0000ECE0 /* AtomicNotification.cpp */, + 46EB2E0000ECF0 /* AtomicNotification.h */, + 46EB2E0000ECD0 /* AtomicNotification-inl.h */, + 46EB2E0000F0E0 /* AtomicNotificationQueue.h */, + 46EB2E0000F0D0 /* AtomicNotificationQueue-inl.h */, + 46EB2E0000F770 /* AtomicQueue.h */, + 46EB2E0000F720 /* AtomicReadMostlyMainPtr.h */, + 46EB2E0000ED00 /* AtomicRef.h */, + 46EB2E0000EBB0 /* AtomicSharedPtr.h */, + 46EB2E0000ED10 /* AtomicStruct.h */, + 46EB2E0000ED30 /* AtomicUtil.h */, + 46EB2E0000ED20 /* AtomicUtil-inl.h */, + 46EB2E0000EFA0 /* AtomicUtils.h */, + 46EB2E0000F730 /* AutoTimer.h */, + 46EB2E0000FED0 /* b.h */, + 46EB2E0000E6F0 /* Barrier.cpp */, + 46EB2E0000F8A0 /* Barrier.h */, + 46EB2E0000E700 /* Barrier.h */, + 46EB2E0000F8B0 /* BarrierTask.h */, + 46EB2E0000F470 /* BatchDispatcher.h */, + 46EB2E0000F480 /* BatchSemaphore.cpp */, + 46EB2E0000F490 /* BatchSemaphore.h */, + 46EB2E0000F4B0 /* Baton.cpp */, + 46EB2E0000F800 /* Baton.h */, + 46EB2E0000F4C0 /* Baton.h */, + 46EB2E0000ED40 /* Baton.h */, + 46EB2E0000F4A0 /* Baton-inl.h */, + 46EB2E0000F740 /* Bits.h */, + 46EB2E0000F750 /* BitVectorCoding.h */, + 46EB2E0000FB30 /* Blake2xb.h */, + 46EB2E0000EB60 /* BlockingQueue.h */, + 46EB2E0000F810 /* BlockingWait.h */, + 46EB2E0000F4D0 /* BoostContextCompatibility.h */, + 46EB2E0000F760 /* Bser.h */, + 46EB2E0000EBC0 /* CacheLocality.cpp */, + 46EB2E0000EBD0 /* CacheLocality.h */, + 46EB2E0000F4E0 /* CallOnce.h */, + 46EB2E0000ED50 /* CallOnce.h */, + 46EB2E0000F780 /* Cleanup.h */, + 46EB2E0000E870 /* Codel.cpp */, + 46EB2E0000E880 /* Codel.h */, + 46EB2E0000F790 /* CodingDetail.h */, + 46EB2E00010040 /* CodingTestUtils.h */, + 46EB2E0000F830 /* Collect.h */, + 46EB2E0000F820 /* Collect-inl.h */, + 46EB2E0000F850 /* Concat.h */, + 46EB2E0000F840 /* Concat-inl.h */, + 46EB2E0000EBE0 /* ConcurrentHashMap.h */, + 46EB2E0000E830 /* Core.cpp */, + 46EB2E0000FD70 /* Core.h */, + 46EB2E0000E840 /* Core.h */, + 46EB2E0000EBF0 /* CoreCachedSharedPtr.h */, + 46EB2E0000F710 /* Coroutine.h */, + 46EB2E0000E890 /* CPUThreadPoolExecutor.cpp */, + 46EB2E0000E8A0 /* CPUThreadPoolExecutor.h */, + 46EB2E0000F8C0 /* CurrentAsyncFrame.h */, + 46EB2E0000F860 /* CurrentExecutor.h */, + 46EB2E0000F290 /* Cursor.cpp */, + 46EB2E0000F2A0 /* Cursor.h */, + 46EB2E0000F280 /* Cursor-inl.h */, + 46EB2E0000EC00 /* DeadlockDetector.cpp */, + 46EB2E0000EC10 /* DeadlockDetector.h */, + 46EB2E0000FF60 /* Debug.h */, + 46EB2E0000F0F0 /* DelayedDestruction.h */, + 46EB2E0000F100 /* DelayedDestructionBase.h */, + 46EB2E0000ED60 /* DelayedInit.h */, + 46EB2E0000F880 /* Dematerialize.h */, + 46EB2E0000F870 /* Dematerialize-inl.h */, + 46EB2E0000F890 /* DetachOnCancel.h */, + 46EB2E0000ED80 /* DistributedMutex.cpp */, + 46EB2E0000ED90 /* DistributedMutex.h */, + 46EB2E0000ED70 /* DistributedMutex-inl.h */, + 46EB2E0000EDA0 /* DistributedMutexSpecializations.h */, + 46EB2E0000E8B0 /* DrivableExecutor.h */, + 46EB2E0000FF70 /* Dwarf.h */, + 46EB2E0000EC20 /* DynamicBoundedQueue.h */, + 46EB2E0000FB80 /* DynamicParser.h */, + 46EB2E0000FB70 /* DynamicParser-inl.h */, + 46EB2E0000E8C0 /* EDFThreadPoolExecutor.cpp */, + 46EB2E0000E8D0 /* EDFThreadPoolExecutor.h */, + 46EB2E0000FF90 /* Elf.h */, + 46EB2E0000FF80 /* Elf-inl.h */, + 46EB2E0000FFA0 /* ElfCache.h */, + 46EB2E0000FB90 /* EliasFanoCoding.h */, + 46EB2E0000FBA0 /* EnvUtil.h */, + 46EB2E0000F110 /* EventBase.cpp */, + 46EB2E0000F120 /* EventBase.h */, + 46EB2E0000F140 /* EventBaseAtomicNotificationQueue.h */, + 46EB2E0000F130 /* EventBaseAtomicNotificationQueue-inl.h */, + 46EB2E0000F150 /* EventBaseBackendBase.cpp */, + 46EB2E0000F160 /* EventBaseBackendBase.h */, + 46EB2E0000F170 /* EventBaseLocal.cpp */, + 46EB2E0000F180 /* EventBaseLocal.h */, + 46EB2E0000F500 /* EventBaseLoopController.h */, + 46EB2E0000F4F0 /* EventBaseLoopController-inl.h */, + 46EB2E0000F190 /* EventBaseManager.cpp */, + 46EB2E0000F1A0 /* EventBaseManager.h */, + 46EB2E0000FBB0 /* EventCount.h */, + 46EB2E0000F1B0 /* EventHandler.cpp */, + 46EB2E0000F1C0 /* EventHandler.h */, + 46EB2E0000F1D0 /* EventUtil.h */, + 46EB2E0000FBC0 /* ExceptionAbi.h */, + 46EB2E0000FBD0 /* ExceptionCounterLib.h */, + 46EB2E0000F330 /* ExceptionString.cpp */, + 46EB2E0000FBE0 /* ExceptionTracer.h */, + 46EB2E0000FBF0 /* ExceptionTracerLib.h */, + 46EB2E0000F340 /* ExceptionWrapper.cpp */, + 46EB2E0000F070 /* ExecutionObserver.h */, + 46EB2E0000F350 /* Executor.cpp */, + 46EB2E0000F510 /* ExecutorBasedLoopController.h */, + 46EB2E0000F530 /* ExecutorLoopController.h */, + 46EB2E0000F520 /* ExecutorLoopController-inl.h */, + 46EB2E0000E8F0 /* ExecutorWithPriority.cpp */, + 46EB2E0000E900 /* ExecutorWithPriority.h */, + 46EB2E0000E8E0 /* ExecutorWithPriority-inl.h */, + 46EB2E0000F550 /* Fiber.cpp */, + 46EB2E0000F560 /* Fiber.h */, + 46EB2E0000F540 /* Fiber-inl.h */, + 46EB2E0000E910 /* FiberIOExecutor.h */, + 46EB2E0000F580 /* FiberManager.cpp */, + 46EB2E0000F590 /* FiberManager.h */, + 46EB2E0000F570 /* FiberManager-inl.h */, + 46EB2E0000F5B0 /* FiberManagerInternal.h */, + 46EB2E0000F5A0 /* FiberManagerInternal-inl.h */, + 46EB2E0000F5D0 /* FiberManagerMap.h */, + 46EB2E0000F5C0 /* FiberManagerMap-inl.h */, + 46EB2E0000F930 /* Filter.h */, + 46EB2E0000F920 /* Filter-inl.h */, + 46EB2E0000FC30 /* FlatCombining.h */, + 46EB2E0000FC40 /* FlatCombiningExamples.h */, + 46EB2E0000FC20 /* FlatCombiningPriorityQueue.h */, + 46EB2E0000FC50 /* FlatCombiningTestHelpers.h */, + 46EB2E0000F5F0 /* ForEach.h */, + 46EB2E0000F5E0 /* ForEach-inl.h */, + 46EB2E0000FCB0 /* FsUtil.h */, + 46EB2E0000FC60 /* FunctionScheduler.h */, + 46EB2E0000F3A0 /* Futex.cpp */, + 46EB2E0000E730 /* Future.cpp */, + 46EB2E0000E740 /* Future.h */, + 46EB2E0000E710 /* Future-inl.h */, + 46EB2E0000E720 /* Future-pre.h */, + 46EB2E0000FC70 /* FutureDAG.h */, + 46EB2E0000E920 /* FutureExecutor.h */, + 46EB2E0000E750 /* FutureSplitter.h */, + 46EB2E0000F940 /* FutureUtil.h */, + 46EB2E0000F950 /* Generator.h */, + 46EB2E0000F600 /* GenericBaton.h */, + 46EB2E0000E930 /* GlobalExecutor.cpp */, + 46EB2E0000E940 /* GlobalExecutor.h */, + 46EB2E0000E950 /* GlobalThreadPoolList.cpp */, + 46EB2E0000E960 /* GlobalThreadPoolList.h */, + 46EB2E0000F960 /* GmockHelpers.h */, + 46EB2E0000FD80 /* GraphCycleDetector.h */, + 46EB2E0000F970 /* GtestHelpers.h */, + 46EB2E0000F610 /* GuardPageAllocator.cpp */, + 46EB2E0000F620 /* GuardPageAllocator.h */, + 46EB2E0000EFB0 /* Hardware.cpp */, + 46EB2E0000F410 /* Hardware.h */, + 46EB2E0000EFC0 /* Hardware.h */, + 46EB2E0000EC70 /* HardwareConcurrency.cpp */, + 46EB2E0000EC80 /* HardwareConcurrency.h */, + 46EB2E0000EDC0 /* Hazptr.cpp */, + 46EB2E0000EDD0 /* Hazptr.h */, + 46EB2E0000EDB0 /* Hazptr-fwd.h */, + 46EB2E0000EDE0 /* HazptrDomain.h */, + 46EB2E0000EDF0 /* HazptrHolder.h */, + 46EB2E0000EE00 /* HazptrObj.h */, + 46EB2E0000EE10 /* HazptrObjLinked.h */, + 46EB2E0000EE20 /* HazptrRec.h */, + 46EB2E0000EE30 /* HazptrThreadPoolExecutor.cpp */, + 46EB2E0000EE40 /* HazptrThreadPoolExecutor.h */, + 46EB2E0000EE50 /* HazptrThrLocal.h */, + 46EB2E0000EFD0 /* HazptrUtils.h */, + 46EB2E0000F8D0 /* Helpers.h */, + 46EB2E0000F1F0 /* HHWheelTimer.cpp */, + 46EB2E0000F200 /* HHWheelTimer.h */, + 46EB2E0000F1E0 /* HHWheelTimer-fwd.h */, + 46EB2E0000FCC0 /* HugePages.h */, + 46EB2E0000E970 /* InlineExecutor.cpp */, + 46EB2E0000E980 /* InlineExecutor.h */, + 46EB2E0000EFE0 /* InlineFunctionRef.h */, + 46EB2E0000F8E0 /* InlineTask.h */, + 46EB2E0000FC80 /* Instructions.h */, + 46EB2E0000F980 /* Invoke.h */, + 46EB2E0000F2B0 /* IOBuf.cpp */, + 46EB2E0000F2C0 /* IOBuf.h */, + 46EB2E0000F2D0 /* IOBufQueue.cpp */, + 46EB2E0000F2E0 /* IOBufQueue.h */, + 46EB2E0000E990 /* IOExecutor.h */, + 46EB2E0000E9A0 /* IOObjectCache.h */, + 46EB2E0000FD10 /* IoTestTempFileUtil.h */, + 46EB2E0000E9B0 /* IOThreadPoolDeadlockDetectorObserver.cpp */, + 46EB2E0000E9C0 /* IOThreadPoolDeadlockDetectorObserver.h */, + 46EB2E0000E9D0 /* IOThreadPoolExecutor.cpp */, + 46EB2E0000E9E0 /* IOThreadPoolExecutor.h */, + 46EB2E0000FCD0 /* IoUring.h */, + 46EB2E0000FCE0 /* IoUringBackend.h */, + 46EB2E0000FD20 /* JemallocHugePageAllocator.h */, + 46EB2E0000FD30 /* JemallocNodumpAllocator.h */, + 46EB2E0000FD40 /* JSONSchema.h */, + 46EB2E0000EE60 /* Latch.h */, + 46EB2E0000EE70 /* LifoSem.h */, + 46EB2E0000EB70 /* LifoSemMPMCQueue.h */, + 46EB2E0000FFB0 /* LineReader.h */, + 46EB2E0000EE80 /* Lock.h */, + 46EB2E0000FD50 /* LockFreeRingBuffer.h */, + 46EB2E0000F630 /* LoopController.h */, + 46EB2E0000FB60 /* LtHash.h */, + 46EB2E0000FB50 /* LtHash-inl.h */, + 46EB2E0000FB40 /* LtHashInternal.h */, + 46EB2E0000F3F0 /* MallctlHelper.cpp */, + 46EB2E0000F8F0 /* Malloc.h */, + 46EB2E0000E9F0 /* ManualExecutor.cpp */, + 46EB2E0000EA00 /* ManualExecutor.h */, + 46EB2E0000F900 /* ManualLifetime.h */, + 46EB2E0000E760 /* ManualTimekeeper.cpp */, + 46EB2E0000E770 /* ManualTimekeeper.h */, + 46EB2E0000F9A0 /* Materialize.h */, + 46EB2E0000F990 /* Materialize-inl.h */, + 46EB2E0000F3B0 /* MemoryIdler.cpp */, + 46EB2E0000F9C0 /* Merge.h */, + 46EB2E0000F9B0 /* Merge-inl.h */, + 46EB2E0000EA10 /* MeteredExecutor.cpp */, + 46EB2E0000EA20 /* MeteredExecutor.h */, + 46EB2E0000EE90 /* MicroSpinLock.h */, + 46EB2E0000F9E0 /* Multiplex.h */, + 46EB2E0000F9D0 /* Multiplex-inl.h */, + 46EB2E0000F9F0 /* Mutex.h */, + 46EB2E0000EB40 /* NamedThreadFactory.h */, + 46EB2E0000EEA0 /* NativeSemaphore.h */, + 46EB2E0000FD60 /* NestedCommandLineApp.h */, + 46EB2E0000F210 /* NotificationQueue.h */, + 46EB2E0000FDB0 /* Observable.h */, + 46EB2E0000FDA0 /* Observable-inl.h */, + 46EB2E0000FDE0 /* Observer.h */, + 46EB2E0000FDC0 /* Observer-inl.h */, + 46EB2E0000FDD0 /* Observer-pre.h */, + 46EB2E0000FD90 /* ObserverManager.h */, + 46EB2E0000EEB0 /* ParkingLot.cpp */, + 46EB2E0000EEC0 /* ParkingLot.h */, + 46EB2E0000EED0 /* PicoSpinLock.h */, + 46EB2E000100B0 /* Pid.cpp */, + 46EB2E000100C0 /* Pid.h */, + 46EB2E0000E780 /* Portability.h */, + 46EB2E0000FE30 /* PrimaryPtr.h */, + 46EB2E0000EB80 /* PriorityLifoSemMPMCQueue.h */, + 46EB2E0000EB90 /* PriorityUnboundedBlockingQueue.h */, + 46EB2E0000EC30 /* PriorityUnboundedQueueSet.h */, + 46EB2E0000FE40 /* ProgramOptions.h */, + 46EB2E0000E7A0 /* Promise.cpp */, + 46EB2E0000F650 /* Promise.h */, + 46EB2E0000E7B0 /* Promise.h */, + 46EB2E0000F640 /* Promise-inl.h */, + 46EB2E0000E790 /* Promise-inl.h */, + 46EB2E0000F000 /* ProxyLockable.h */, + 46EB2E0000EFF0 /* ProxyLockable-inl.h */, + 46EB2E0000EA30 /* QueuedImmediateExecutor.cpp */, + 46EB2E0000EA40 /* QueuedImmediateExecutor.h */, + 46EB2E0000EC40 /* QueueObserver.cpp */, + 46EB2E0000EC50 /* QueueObserver.h */, + 46EB2E0000FE60 /* QuotientMultiSet.h */, + 46EB2E0000FE50 /* QuotientMultiSet-inl.h */, + 46EB2E0000EEF0 /* Rcu.cpp */, + 46EB2E0000EF00 /* Rcu.h */, + 46EB2E0000EEE0 /* Rcu-inl.h */, + 46EB2E0000F080 /* ReadMostlySharedPtr.h */, + 46EB2E0000FE70 /* RelaxedConcurrentPriorityQueue.h */, + 46EB2E0000F220 /* Request.cpp */, + 46EB2E0000F230 /* Request.h */, + 46EB2E0000FA00 /* Result.h */, + 46EB2E0000FA10 /* Retry.h */, + 46EB2E0000E7C0 /* Retrying.h */, + 46EB2E0000FA20 /* RustAdaptors.h */, + 46EB2E0000EF10 /* RWSpinLock.h */, + 46EB2E0000EF20 /* SanitizeThread.cpp */, + 46EB2E0000EF30 /* SanitizeThread.h */, + 46EB2E0000EF40 /* SaturatingSemaphore.h */, + 46EB2E0000EA50 /* ScheduledExecutor.h */, + 46EB2E0000FE80 /* Select64.h */, + 46EB2E0000F660 /* Semaphore.cpp */, + 46EB2E0000F670 /* Semaphore.h */, + 46EB2E0000F680 /* SemaphoreBase.cpp */, + 46EB2E0000F690 /* SemaphoreBase.h */, + 46EB2E0000EA60 /* SequencedExecutor.h */, + 46EB2E0000EA70 /* SerialExecutor.cpp */, + 46EB2E0000EA80 /* SerialExecutor.h */, + 46EB2E0000FEA0 /* Settings.h */, + 46EB2E0000FE90 /* SettingsImpl.h */, + 46EB2E0000FEB0 /* SettingsMetadata.h */, + 46EB2E0000FA30 /* SharedLock.h */, + 46EB2E0000F360 /* SharedMutex.cpp */, + 46EB2E0000FA40 /* SharedMutex.h */, + 46EB2E0000E7E0 /* SharedPromise.cpp */, + 46EB2E0000E7F0 /* SharedPromise.h */, + 46EB2E0000E7D0 /* SharedPromise-inl.h */, + 46EB2E0000FFC0 /* SignalHandler.h */, + 46EB2E00010010 /* SignalHandlerTest.h */, + 46EB2E0000FCF0 /* SimpleAsyncIO.h */, + 46EB2E0000F6A0 /* SimpleLoopController.cpp */, + 46EB2E0000F6B0 /* SimpleLoopController.h */, + 46EB2E0000FE00 /* SimpleObservable.h */, + 46EB2E0000FDF0 /* SimpleObservable-inl.h */, + 46EB2E0000F370 /* Singleton.cpp */, + 46EB2E0000FEE0 /* SingletonRelaxedCounter.h */, + 46EB2E0000F3C0 /* SingletonStackTrace.cpp */, + 46EB2E0000F090 /* SingleWriterFixedHashMap.h */, + 46EB2E0000FA60 /* Sleep.h */, + 46EB2E0000FA50 /* Sleep-inl.h */, + 46EB2E0000F010 /* Sleeper.cpp */, + 46EB2E0000F020 /* Sleeper.h */, + 46EB2E0000EF50 /* SmallLocks.h */, + 46EB2E0000FA70 /* SmallUnboundedQueue.h */, + 46EB2E0000FC00 /* SmartExceptionTracer.h */, + 46EB2E0000EA90 /* SoftRealTimeExecutor.h */, + 46EB2E0000F030 /* Spin.h */, + 46EB2E0000FC10 /* StackTrace.h */, + 46EB2E0000FFD0 /* StackTrace.h */, + 46EB2E0000FEF0 /* StampedPtr.h */, + 46EB2E0000F3D0 /* StaticSingletonManager.cpp */, + 46EB2E0000F2F0 /* StaticTracepoint.h */, + 46EB2E0000EAA0 /* StrandExecutor.cpp */, + 46EB2E0000EAB0 /* StrandExecutor.h */, + 46EB2E0000FF00 /* StringKeyedCommon.h */, + 46EB2E0000FF10 /* StringKeyedMap.h */, + 46EB2E0000FF20 /* StringKeyedSet.h */, + 46EB2E0000FF30 /* StringKeyedUnorderedMap.h */, + 46EB2E0000FF40 /* StringKeyedUnorderedSet.h */, + 46EB2E0000FF50 /* STTimerFDTimeoutManager.h */, + 46EB2E0000FFE0 /* SymbolizedFrame.h */, + 46EB2E0000FFF0 /* SymbolizePrinter.h */, + 46EB2E00010000 /* Symbolizer.h */, + 46EB2E00010030 /* SymbolizerTestUtils.h */, + 46EB2E00010020 /* SymbolizerTestUtils-inl.h */, + 46EB2E0000F400 /* SysMembarrier.cpp */, + 46EB2E0000FA80 /* Task.h */, + 46EB2E0000EF60 /* Tearable.h */, + 46EB2E00010050 /* TestUtil.h */, + 46EB2E0000F040 /* ThreadCachedInts.h */, + 46EB2E0000F050 /* ThreadCachedLists.h */, + 46EB2E0000EAC0 /* ThreadedExecutor.cpp */, + 46EB2E0000EAD0 /* ThreadedExecutor.h */, + 46EB2E00010060 /* ThreadedRepeatingFunctionRunner.h */, + 46EB2E0000EB50 /* ThreadFactory.h */, + 46EB2E0000F3E0 /* ThreadLocalDetail.cpp */, + 46EB2E0000EC90 /* ThreadName.cpp */, + 46EB2E0000ECA0 /* ThreadName.h */, + 46EB2E0000EAE0 /* ThreadPoolExecutor.cpp */, + 46EB2E0000EAF0 /* ThreadPoolExecutor.h */, + 46EB2E0000E800 /* ThreadWheelTimekeeper.cpp */, + 46EB2E0000E810 /* ThreadWheelTimekeeper.h */, + 46EB2E00010070 /* ThreadWheelTimekeeperHighRes.h */, + 46EB2E0000EB00 /* TimedDrivableExecutor.cpp */, + 46EB2E0000EB10 /* TimedDrivableExecutor.h */, + 46EB2E0000F6D0 /* TimedMutex.h */, + 46EB2E0000F6C0 /* TimedMutex-inl.h */, + 46EB2E0000FA90 /* TimedWait.h */, + 46EB2E0000EB20 /* TimekeeperScheduledExecutor.cpp */, + 46EB2E0000EB30 /* TimekeeperScheduledExecutor.h */, + 46EB2E0000FAB0 /* Timeout.h */, + 46EB2E0000FAA0 /* Timeout-inl.h */, + 46EB2E0000F240 /* TimeoutManager.cpp */, + 46EB2E0000F250 /* TimeoutManager.h */, + 46EB2E00010080 /* TimerFD.h */, + 46EB2E00010090 /* TimerFDTimeoutManager.h */, + 46EB2E0000F0A0 /* TLRefCount.h */, + 46EB2E0000F910 /* Traits.h */, + 46EB2E0000F420 /* Traits.h */, + 46EB2E0000F6E0 /* traits.h */, + 46EB2E0000FAD0 /* Transform.h */, + 46EB2E0000FAC0 /* Transform-inl.h */, + 46EB2E0000F060 /* Try.cpp */, + 46EB2E000100A0 /* TupleOps.h */, + 46EB2E0000E850 /* Types.h */, + 46EB2E0000EBA0 /* UnboundedBlockingQueue.h */, + 46EB2E0000EC60 /* UnboundedQueue.h */, + 46EB2E0000FAE0 /* UnboundedQueue.h */, + 46EB2E0000EF70 /* Utility.h */, + 46EB2E0000FAF0 /* ViaIfAsync.h */, + 46EB2E0000F260 /* VirtualEventBase.cpp */, + 46EB2E0000F270 /* VirtualEventBase.h */, + 46EB2E0000FB00 /* Wait.h */, + 46EB2E0000EF80 /* WaitOptions.cpp */, + 46EB2E0000EF90 /* WaitOptions.h */, + 46EB2E0000F700 /* WhenN.h */, + 46EB2E0000F6F0 /* WhenN-inl.h */, + 46EB2E0000FB10 /* WithAsyncStack.h */, + 46EB2E0000FB20 /* WithCancellation.h */, + 46EB2E0000FE20 /* WithJitter.h */, + 46EB2E0000FE10 /* WithJitter-inl.h */, + 46EB2E0000E820 /* WTCallback.h */, ); name = Futures; sourceTree = ""; }; - 46EB2E000108F0 /* Handlers */ = { - isa = PBXGroup; - children = ( - 46EB2E00010900 /* RNFlingHandler.h */, - 46EB2E00010910 /* RNFlingHandler.m */, - 46EB2E00010920 /* RNForceTouchHandler.h */, - 46EB2E00010930 /* RNForceTouchHandler.m */, - 46EB2E00010940 /* RNLongPressHandler.h */, - 46EB2E00010950 /* RNLongPressHandler.m */, - 46EB2E00010960 /* RNManualHandler.h */, - 46EB2E00010970 /* RNManualHandler.m */, - 46EB2E00010980 /* RNNativeViewHandler.h */, - 46EB2E00010990 /* RNNativeViewHandler.mm */, - 46EB2E000109A0 /* RNPanHandler.h */, - 46EB2E000109B0 /* RNPanHandler.m */, - 46EB2E000109C0 /* RNPinchHandler.h */, - 46EB2E000109D0 /* RNPinchHandler.m */, - 46EB2E000109E0 /* RNRotationHandler.h */, - 46EB2E000109F0 /* RNRotationHandler.m */, - 46EB2E00010A00 /* RNTapHandler.h */, - 46EB2E00010A10 /* RNTapHandler.m */, + 46EB2E00010770 /* Handlers */ = { + isa = PBXGroup; + children = ( + 46EB2E00010780 /* RNFlingHandler.h */, + 46EB2E00010790 /* RNFlingHandler.m */, + 46EB2E000107A0 /* RNForceTouchHandler.h */, + 46EB2E000107B0 /* RNForceTouchHandler.m */, + 46EB2E000107C0 /* RNLongPressHandler.h */, + 46EB2E000107D0 /* RNLongPressHandler.m */, + 46EB2E000107E0 /* RNManualHandler.h */, + 46EB2E000107F0 /* RNManualHandler.m */, + 46EB2E00010800 /* RNNativeViewHandler.h */, + 46EB2E00010810 /* RNNativeViewHandler.mm */, + 46EB2E00010820 /* RNPanHandler.h */, + 46EB2E00010830 /* RNPanHandler.m */, + 46EB2E00010840 /* RNPinchHandler.h */, + 46EB2E00010850 /* RNPinchHandler.m */, + 46EB2E00010860 /* RNRotationHandler.h */, + 46EB2E00010870 /* RNRotationHandler.m */, + 46EB2E00010880 /* RNTapHandler.h */, + 46EB2E00010890 /* RNTapHandler.m */, ); name = Handlers; path = ios/Handlers; sourceTree = ""; }; - 46EB2E00010C00 /* ios */ = { + 46EB2E00010A80 /* ios */ = { isa = PBXGroup; children = ( - 46EB2E00010FE0 /* REAEventDispatcher.h */, - 46EB2E00010FF0 /* REAEventDispatcher.m */, - 46EB2E00011000 /* REAModule.h */, - 46EB2E00011010 /* REAModule.m */, - 46EB2E00011020 /* REANodesManager.h */, - 46EB2E00011030 /* REANodesManager.m */, - 46EB2E00011040 /* REAUtils.h */, - 46EB2E00011050 /* RNGestureHandlerStateManager.h */, - 46EB2E00010C10 /* LayoutReanimation */, - 46EB2E00010C80 /* native */, - 46EB2E00010D70 /* Nodes */, - 46EB2E00011060 /* sensor */, - 46EB2E000110C0 /* Transitioning */, + 46EB2E00010E60 /* REAEventDispatcher.h */, + 46EB2E00010E70 /* REAEventDispatcher.m */, + 46EB2E00010E80 /* REAModule.h */, + 46EB2E00010E90 /* REAModule.m */, + 46EB2E00010EA0 /* REANodesManager.h */, + 46EB2E00010EB0 /* REANodesManager.m */, + 46EB2E00010EC0 /* REAUtils.h */, + 46EB2E00010ED0 /* RNGestureHandlerStateManager.h */, + 46EB2E00010A90 /* LayoutReanimation */, + 46EB2E00010B00 /* native */, + 46EB2E00010BF0 /* Nodes */, + 46EB2E00010EE0 /* sensor */, + 46EB2E00010F40 /* Transitioning */, ); + name = ios; path = ios; sourceTree = ""; }; - 46EB2E00010C10 /* LayoutReanimation */ = { + 46EB2E00010A90 /* LayoutReanimation */ = { isa = PBXGroup; children = ( - 46EB2E00010C20 /* REAAnimationsManager.h */, - 46EB2E00010C30 /* REAAnimationsManager.m */, - 46EB2E00010C40 /* REASnapshot.h */, - 46EB2E00010C50 /* REASnapshot.m */, - 46EB2E00010C60 /* REAUIManager.h */, - 46EB2E00010C70 /* REAUIManager.mm */, + 46EB2E00010AA0 /* REAAnimationsManager.h */, + 46EB2E00010AB0 /* REAAnimationsManager.m */, + 46EB2E00010AC0 /* REASnapshot.h */, + 46EB2E00010AD0 /* REASnapshot.m */, + 46EB2E00010AE0 /* REAUIManager.h */, + 46EB2E00010AF0 /* REAUIManager.mm */, ); + name = LayoutReanimation; path = LayoutReanimation; sourceTree = ""; }; - 46EB2E00010C80 /* native */ = { + 46EB2E00010B00 /* native */ = { isa = PBXGroup; children = ( - 46EB2E00010C90 /* NativeMethods.h */, - 46EB2E00010CA0 /* NativeMethods.mm */, - 46EB2E00010CB0 /* NativeProxy.h */, - 46EB2E00010CC0 /* NativeProxy.mm */, - 46EB2E00010CD0 /* REAInitializer.h */, - 46EB2E00010CE0 /* REAInitializer.mm */, - 46EB2E00010CF0 /* REAIOSErrorHandler.h */, - 46EB2E00010D00 /* REAIOSErrorHandler.mm */, - 46EB2E00010D10 /* REAIOSLogger.h */, - 46EB2E00010D20 /* REAIOSLogger.mm */, - 46EB2E00010D30 /* REAIOSScheduler.h */, - 46EB2E00010D40 /* REAIOSScheduler.mm */, - 46EB2E00010D50 /* UIResponder+Reanimated.h */, - 46EB2E00010D60 /* UIResponder+Reanimated.mm */, + 46EB2E00010B10 /* NativeMethods.h */, + 46EB2E00010B20 /* NativeMethods.mm */, + 46EB2E00010B30 /* NativeProxy.h */, + 46EB2E00010B40 /* NativeProxy.mm */, + 46EB2E00010B50 /* REAInitializer.h */, + 46EB2E00010B60 /* REAInitializer.mm */, + 46EB2E00010B70 /* REAIOSErrorHandler.h */, + 46EB2E00010B80 /* REAIOSErrorHandler.mm */, + 46EB2E00010B90 /* REAIOSLogger.h */, + 46EB2E00010BA0 /* REAIOSLogger.mm */, + 46EB2E00010BB0 /* REAIOSScheduler.h */, + 46EB2E00010BC0 /* REAIOSScheduler.mm */, + 46EB2E00010BD0 /* UIResponder+Reanimated.h */, + 46EB2E00010BE0 /* UIResponder+Reanimated.mm */, ); + name = native; path = native; sourceTree = ""; }; - 46EB2E00010D70 /* Nodes */ = { - isa = PBXGroup; - children = ( - 46EB2E00010D80 /* REAAlwaysNode.h */, - 46EB2E00010D90 /* REAAlwaysNode.m */, - 46EB2E00010DA0 /* REABezierNode.h */, - 46EB2E00010DB0 /* REABezierNode.m */, - 46EB2E00010DC0 /* REABlockNode.h */, - 46EB2E00010DD0 /* REABlockNode.m */, - 46EB2E00010DE0 /* REACallFuncNode.h */, - 46EB2E00010DF0 /* REACallFuncNode.m */, - 46EB2E00010E00 /* REAClockNodes.h */, - 46EB2E00010E10 /* REAClockNodes.m */, - 46EB2E00010E20 /* REAConcatNode.h */, - 46EB2E00010E30 /* REAConcatNode.m */, - 46EB2E00010E40 /* REACondNode.h */, - 46EB2E00010E50 /* REACondNode.m */, - 46EB2E00010E60 /* READebugNode.h */, - 46EB2E00010E70 /* READebugNode.m */, - 46EB2E00010E80 /* REAEventNode.h */, - 46EB2E00010E90 /* REAEventNode.m */, - 46EB2E00010EA0 /* REAFunctionNode.h */, - 46EB2E00010EB0 /* REAFunctionNode.m */, - 46EB2E00010EC0 /* REAJSCallNode.h */, - 46EB2E00010ED0 /* REAJSCallNode.m */, - 46EB2E00010EE0 /* REANode.h */, - 46EB2E00010EF0 /* REANode.m */, - 46EB2E00010F00 /* REAOperatorNode.h */, - 46EB2E00010F10 /* REAOperatorNode.m */, - 46EB2E00010F20 /* REAParamNode.h */, - 46EB2E00010F30 /* REAParamNode.m */, - 46EB2E00010F40 /* REAPropsNode.h */, - 46EB2E00010F50 /* REAPropsNode.m */, - 46EB2E00010F60 /* REASetNode.h */, - 46EB2E00010F70 /* REASetNode.m */, - 46EB2E00010F80 /* REAStyleNode.h */, - 46EB2E00010F90 /* REAStyleNode.m */, - 46EB2E00010FA0 /* REATransformNode.h */, - 46EB2E00010FB0 /* REATransformNode.m */, - 46EB2E00010FC0 /* REAValueNode.h */, - 46EB2E00010FD0 /* REAValueNode.m */, + 46EB2E00010BF0 /* Nodes */ = { + isa = PBXGroup; + children = ( + 46EB2E00010C00 /* REAAlwaysNode.h */, + 46EB2E00010C10 /* REAAlwaysNode.m */, + 46EB2E00010C20 /* REABezierNode.h */, + 46EB2E00010C30 /* REABezierNode.m */, + 46EB2E00010C40 /* REABlockNode.h */, + 46EB2E00010C50 /* REABlockNode.m */, + 46EB2E00010C60 /* REACallFuncNode.h */, + 46EB2E00010C70 /* REACallFuncNode.m */, + 46EB2E00010C80 /* REAClockNodes.h */, + 46EB2E00010C90 /* REAClockNodes.m */, + 46EB2E00010CA0 /* REAConcatNode.h */, + 46EB2E00010CB0 /* REAConcatNode.m */, + 46EB2E00010CC0 /* REACondNode.h */, + 46EB2E00010CD0 /* REACondNode.m */, + 46EB2E00010CE0 /* READebugNode.h */, + 46EB2E00010CF0 /* READebugNode.m */, + 46EB2E00010D00 /* REAEventNode.h */, + 46EB2E00010D10 /* REAEventNode.m */, + 46EB2E00010D20 /* REAFunctionNode.h */, + 46EB2E00010D30 /* REAFunctionNode.m */, + 46EB2E00010D40 /* REAJSCallNode.h */, + 46EB2E00010D50 /* REAJSCallNode.m */, + 46EB2E00010D60 /* REANode.h */, + 46EB2E00010D70 /* REANode.m */, + 46EB2E00010D80 /* REAOperatorNode.h */, + 46EB2E00010D90 /* REAOperatorNode.m */, + 46EB2E00010DA0 /* REAParamNode.h */, + 46EB2E00010DB0 /* REAParamNode.m */, + 46EB2E00010DC0 /* REAPropsNode.h */, + 46EB2E00010DD0 /* REAPropsNode.m */, + 46EB2E00010DE0 /* REASetNode.h */, + 46EB2E00010DF0 /* REASetNode.m */, + 46EB2E00010E00 /* REAStyleNode.h */, + 46EB2E00010E10 /* REAStyleNode.m */, + 46EB2E00010E20 /* REATransformNode.h */, + 46EB2E00010E30 /* REATransformNode.m */, + 46EB2E00010E40 /* REAValueNode.h */, + 46EB2E00010E50 /* REAValueNode.m */, ); + name = Nodes; path = Nodes; sourceTree = ""; }; - 46EB2E00011060 /* sensor */ = { + 46EB2E00010EE0 /* sensor */ = { isa = PBXGroup; children = ( - 46EB2E00011070 /* ReanimatedSensor.h */, - 46EB2E00011080 /* ReanimatedSensor.m */, - 46EB2E00011090 /* ReanimatedSensorContainer.h */, - 46EB2E000110A0 /* ReanimatedSensorContainer.m */, - 46EB2E000110B0 /* ReanimatedSensorType.h */, + 46EB2E00010EF0 /* ReanimatedSensor.h */, + 46EB2E00010F00 /* ReanimatedSensor.m */, + 46EB2E00010F10 /* ReanimatedSensorContainer.h */, + 46EB2E00010F20 /* ReanimatedSensorContainer.m */, + 46EB2E00010F30 /* ReanimatedSensorType.h */, ); + name = sensor; path = sensor; sourceTree = ""; }; - 46EB2E000110C0 /* Transitioning */ = { + 46EB2E00010F40 /* Transitioning */ = { isa = PBXGroup; children = ( - 46EB2E000110D0 /* RCTConvert+REATransition.h */, - 46EB2E000110E0 /* RCTConvert+REATransition.m */, - 46EB2E000110F0 /* REAAllTransitions.h */, - 46EB2E00011100 /* REAAllTransitions.m */, - 46EB2E00011110 /* REATransition.h */, - 46EB2E00011120 /* REATransition.m */, - 46EB2E00011130 /* REATransitionAnimation.h */, - 46EB2E00011140 /* REATransitionAnimation.m */, - 46EB2E00011150 /* REATransitionManager.h */, - 46EB2E00011160 /* REATransitionManager.m */, - 46EB2E00011170 /* REATransitionValues.h */, - 46EB2E00011180 /* REATransitionValues.m */, + 46EB2E00010F50 /* RCTConvert+REATransition.h */, + 46EB2E00010F60 /* RCTConvert+REATransition.m */, + 46EB2E00010F70 /* REAAllTransitions.h */, + 46EB2E00010F80 /* REAAllTransitions.m */, + 46EB2E00010F90 /* REATransition.h */, + 46EB2E00010FA0 /* REATransition.m */, + 46EB2E00010FB0 /* REATransitionAnimation.h */, + 46EB2E00010FC0 /* REATransitionAnimation.m */, + 46EB2E00010FD0 /* REATransitionManager.h */, + 46EB2E00010FE0 /* REATransitionManager.m */, + 46EB2E00010FF0 /* REATransitionValues.h */, + 46EB2E00011000 /* REATransitionValues.m */, ); + name = Transitioning; path = Transitioning; sourceTree = ""; }; - 46EB2E00011190 /* Common */ = { + 46EB2E00011010 /* Common */ = { isa = PBXGroup; children = ( - 46EB2E000111A0 /* cpp */, + 46EB2E00011020 /* cpp */, ); + name = Common; path = Common; sourceTree = ""; }; - 46EB2E000111A0 /* cpp */ = { + 46EB2E00011020 /* cpp */ = { isa = PBXGroup; children = ( - 46EB2E000111B0 /* AnimatedSensor */, - 46EB2E00011330 /* headers */, - 46EB2E000111D0 /* LayoutAnimations */, - 46EB2E000111F0 /* NativeModules */, - 46EB2E00011220 /* Registries */, - 46EB2E00011260 /* SharedItems */, - 46EB2E000112C0 /* Tools */, + 46EB2E00011030 /* AnimatedSensor */, + 46EB2E000111B0 /* headers */, + 46EB2E00011050 /* LayoutAnimations */, + 46EB2E00011070 /* NativeModules */, + 46EB2E000110A0 /* Registries */, + 46EB2E000110E0 /* SharedItems */, + 46EB2E00011140 /* Tools */, ); + name = cpp; path = cpp; sourceTree = ""; }; - 46EB2E000111B0 /* AnimatedSensor */ = { + 46EB2E00011030 /* AnimatedSensor */ = { isa = PBXGroup; children = ( - 46EB2E000111C0 /* AnimatedSensorModule.cpp */, + 46EB2E00011040 /* AnimatedSensorModule.cpp */, ); + name = AnimatedSensor; path = AnimatedSensor; sourceTree = ""; }; - 46EB2E000111D0 /* LayoutAnimations */ = { + 46EB2E00011050 /* LayoutAnimations */ = { isa = PBXGroup; children = ( - 46EB2E000111E0 /* LayoutAnimationsProxy.cpp */, + 46EB2E00011060 /* LayoutAnimationsProxy.cpp */, ); + name = LayoutAnimations; path = LayoutAnimations; sourceTree = ""; }; - 46EB2E000111F0 /* NativeModules */ = { + 46EB2E00011070 /* NativeModules */ = { isa = PBXGroup; children = ( - 46EB2E00011200 /* NativeReanimatedModule.cpp */, - 46EB2E00011210 /* NativeReanimatedModuleSpec.cpp */, + 46EB2E00011080 /* NativeReanimatedModule.cpp */, + 46EB2E00011090 /* NativeReanimatedModuleSpec.cpp */, ); + name = NativeModules; path = NativeModules; sourceTree = ""; }; - 46EB2E00011220 /* Registries */ = { + 46EB2E000110A0 /* Registries */ = { isa = PBXGroup; children = ( - 46EB2E00011230 /* EventHandlerRegistry.cpp */, - 46EB2E00011240 /* MapperRegistry.cpp */, - 46EB2E00011250 /* WorkletsCache.cpp */, + 46EB2E000110B0 /* EventHandlerRegistry.cpp */, + 46EB2E000110C0 /* MapperRegistry.cpp */, + 46EB2E000110D0 /* WorkletsCache.cpp */, ); + name = Registries; path = Registries; sourceTree = ""; }; - 46EB2E00011260 /* SharedItems */ = { + 46EB2E000110E0 /* SharedItems */ = { isa = PBXGroup; children = ( - 46EB2E00011270 /* FrozenObject.cpp */, - 46EB2E00011280 /* MutableValue.cpp */, - 46EB2E00011290 /* MutableValueSetterProxy.cpp */, - 46EB2E000112A0 /* RemoteObject.cpp */, - 46EB2E000112B0 /* ShareableValue.cpp */, + 46EB2E000110F0 /* FrozenObject.cpp */, + 46EB2E00011100 /* MutableValue.cpp */, + 46EB2E00011110 /* MutableValueSetterProxy.cpp */, + 46EB2E00011120 /* RemoteObject.cpp */, + 46EB2E00011130 /* ShareableValue.cpp */, ); + name = SharedItems; path = SharedItems; sourceTree = ""; }; - 46EB2E000112C0 /* Tools */ = { + 46EB2E00011140 /* Tools */ = { isa = PBXGroup; children = ( - 46EB2E000112D0 /* FeaturesConfig.cpp */, - 46EB2E000112E0 /* JSIStoreValueUser.cpp */, - 46EB2E000112F0 /* Mapper.cpp */, - 46EB2E00011300 /* RuntimeDecorator.cpp */, - 46EB2E00011310 /* Scheduler.cpp */, - 46EB2E00011320 /* WorkletEventHandler.cpp */, + 46EB2E00011150 /* FeaturesConfig.cpp */, + 46EB2E00011160 /* JSIStoreValueUser.cpp */, + 46EB2E00011170 /* Mapper.cpp */, + 46EB2E00011180 /* RuntimeDecorator.cpp */, + 46EB2E00011190 /* Scheduler.cpp */, + 46EB2E000111A0 /* WorkletEventHandler.cpp */, ); + name = Tools; path = Tools; sourceTree = ""; }; - 46EB2E00011330 /* headers */ = { + 46EB2E000111B0 /* headers */ = { isa = PBXGroup; children = ( - 46EB2E00011340 /* AnimatedSensor */, - 46EB2E00011360 /* LayoutAnimations */, - 46EB2E00011380 /* NativeModules */, - 46EB2E000113B0 /* Registries */, - 46EB2E000113F0 /* SharedItems */, - 46EB2E00011490 /* SpecTools */, - 46EB2E000114B0 /* Tools */, + 46EB2E000111C0 /* AnimatedSensor */, + 46EB2E000111E0 /* LayoutAnimations */, + 46EB2E00011200 /* NativeModules */, + 46EB2E00011230 /* Registries */, + 46EB2E00011270 /* SharedItems */, + 46EB2E00011310 /* SpecTools */, + 46EB2E00011330 /* Tools */, ); + name = headers; path = headers; sourceTree = ""; }; - 46EB2E00011340 /* AnimatedSensor */ = { + 46EB2E000111C0 /* AnimatedSensor */ = { isa = PBXGroup; children = ( - 46EB2E00011350 /* AnimatedSensorModule.h */, + 46EB2E000111D0 /* AnimatedSensorModule.h */, ); + name = AnimatedSensor; path = AnimatedSensor; sourceTree = ""; }; - 46EB2E00011360 /* LayoutAnimations */ = { + 46EB2E000111E0 /* LayoutAnimations */ = { isa = PBXGroup; children = ( - 46EB2E00011370 /* LayoutAnimationsProxy.h */, + 46EB2E000111F0 /* LayoutAnimationsProxy.h */, ); + name = LayoutAnimations; path = LayoutAnimations; sourceTree = ""; }; - 46EB2E00011380 /* NativeModules */ = { + 46EB2E00011200 /* NativeModules */ = { isa = PBXGroup; children = ( - 46EB2E00011390 /* NativeReanimatedModule.h */, - 46EB2E000113A0 /* NativeReanimatedModuleSpec.h */, + 46EB2E00011210 /* NativeReanimatedModule.h */, + 46EB2E00011220 /* NativeReanimatedModuleSpec.h */, ); + name = NativeModules; path = NativeModules; sourceTree = ""; }; - 46EB2E000113B0 /* Registries */ = { + 46EB2E00011230 /* Registries */ = { isa = PBXGroup; children = ( - 46EB2E000113C0 /* EventHandlerRegistry.h */, - 46EB2E000113D0 /* MapperRegistry.h */, - 46EB2E000113E0 /* WorkletsCache.h */, + 46EB2E00011240 /* EventHandlerRegistry.h */, + 46EB2E00011250 /* MapperRegistry.h */, + 46EB2E00011260 /* WorkletsCache.h */, ); + name = Registries; path = Registries; sourceTree = ""; }; - 46EB2E000113F0 /* SharedItems */ = { + 46EB2E00011270 /* SharedItems */ = { isa = PBXGroup; children = ( - 46EB2E00011400 /* FrozenObject.h */, - 46EB2E00011410 /* HostFunctionHandler.h */, - 46EB2E00011420 /* MutableValue.h */, - 46EB2E00011430 /* MutableValueSetterProxy.h */, - 46EB2E00011440 /* RemoteObject.h */, - 46EB2E00011450 /* RuntimeManager.h */, - 46EB2E00011460 /* ShareableValue.h */, - 46EB2E00011470 /* SharedParent.h */, - 46EB2E00011480 /* ValueWrapper.h */, + 46EB2E00011280 /* FrozenObject.h */, + 46EB2E00011290 /* HostFunctionHandler.h */, + 46EB2E000112A0 /* MutableValue.h */, + 46EB2E000112B0 /* MutableValueSetterProxy.h */, + 46EB2E000112C0 /* RemoteObject.h */, + 46EB2E000112D0 /* RuntimeManager.h */, + 46EB2E000112E0 /* ShareableValue.h */, + 46EB2E000112F0 /* SharedParent.h */, + 46EB2E00011300 /* ValueWrapper.h */, ); + name = SharedItems; path = SharedItems; sourceTree = ""; }; - 46EB2E00011490 /* SpecTools */ = { + 46EB2E00011310 /* SpecTools */ = { isa = PBXGroup; children = ( - 46EB2E000114A0 /* ErrorHandler.h */, + 46EB2E00011320 /* ErrorHandler.h */, ); + name = SpecTools; path = SpecTools; sourceTree = ""; }; - 46EB2E000114B0 /* Tools */ = { + 46EB2E00011330 /* Tools */ = { isa = PBXGroup; children = ( - 46EB2E000114C0 /* FeaturesConfig.h */, - 46EB2E000114D0 /* JSIStoreValueUser.h */, - 46EB2E000114E0 /* Mapper.h */, - 46EB2E000114F0 /* PlatformDepMethodsHolder.h */, - 46EB2E00011500 /* ReanimatedHiddenHeaders.h */, - 46EB2E00011510 /* RuntimeDecorator.h */, - 46EB2E00011520 /* Scheduler.h */, - 46EB2E00011530 /* WorkletEventHandler.h */, + 46EB2E00011340 /* FeaturesConfig.h */, + 46EB2E00011350 /* JSIStoreValueUser.h */, + 46EB2E00011360 /* Mapper.h */, + 46EB2E00011370 /* PlatformDepMethodsHolder.h */, + 46EB2E00011380 /* ReanimatedHiddenHeaders.h */, + 46EB2E00011390 /* RuntimeDecorator.h */, + 46EB2E000113A0 /* Scheduler.h */, + 46EB2E000113B0 /* WorkletEventHandler.h */, ); + name = Tools; path = Tools; sourceTree = ""; }; - 46EB2E00011540 /* Brushes */ = { + 46EB2E000113C0 /* Brushes */ = { isa = PBXGroup; children = ( - 46EB2E00011550 /* RNSVGBrush.h */, - 46EB2E00011560 /* RNSVGBrush.m */, - 46EB2E00011570 /* RNSVGBrushType.h */, - 46EB2E00011580 /* RNSVGContextBrush.h */, - 46EB2E00011590 /* RNSVGContextBrush.m */, - 46EB2E000115A0 /* RNSVGPainter.h */, - 46EB2E000115B0 /* RNSVGPainter.m */, - 46EB2E000115C0 /* RNSVGPainterBrush.h */, - 46EB2E000115D0 /* RNSVGPainterBrush.m */, - 46EB2E000115E0 /* RNSVGSolidColorBrush.h */, - 46EB2E000115F0 /* RNSVGSolidColorBrush.m */, + 46EB2E000113D0 /* RNSVGBrush.h */, + 46EB2E000113E0 /* RNSVGBrush.m */, + 46EB2E000113F0 /* RNSVGBrushType.h */, + 46EB2E00011400 /* RNSVGContextBrush.h */, + 46EB2E00011410 /* RNSVGContextBrush.m */, + 46EB2E00011420 /* RNSVGPainter.h */, + 46EB2E00011430 /* RNSVGPainter.m */, + 46EB2E00011440 /* RNSVGPainterBrush.h */, + 46EB2E00011450 /* RNSVGPainterBrush.m */, + 46EB2E00011460 /* RNSVGSolidColorBrush.h */, + 46EB2E00011470 /* RNSVGSolidColorBrush.m */, ); name = Brushes; path = apple/Brushes; sourceTree = ""; }; - 46EB2E00011600 /* Elements */ = { - isa = PBXGroup; - children = ( - 46EB2E00011610 /* RNSVGClipPath.h */, - 46EB2E00011620 /* RNSVGClipPath.m */, - 46EB2E00011630 /* RNSVGDefs.h */, - 46EB2E00011640 /* RNSVGDefs.m */, - 46EB2E00011650 /* RNSVGForeignObject.h */, - 46EB2E00011660 /* RNSVGForeignObject.m */, - 46EB2E00011670 /* RNSVGGroup.h */, - 46EB2E00011680 /* RNSVGGroup.m */, - 46EB2E00011690 /* RNSVGImage.h */, - 46EB2E000116A0 /* RNSVGImage.m */, - 46EB2E000116B0 /* RNSVGLinearGradient.h */, - 46EB2E000116C0 /* RNSVGLinearGradient.m */, - 46EB2E000116D0 /* RNSVGMarker.h */, - 46EB2E000116E0 /* RNSVGMarker.m */, - 46EB2E000116F0 /* RNSVGMask.h */, - 46EB2E00011700 /* RNSVGMask.m */, - 46EB2E00011710 /* RNSVGPath.h */, - 46EB2E00011720 /* RNSVGPath.m */, - 46EB2E00011730 /* RNSVGPattern.h */, - 46EB2E00011740 /* RNSVGPattern.m */, - 46EB2E00011750 /* RNSVGRadialGradient.h */, - 46EB2E00011760 /* RNSVGRadialGradient.m */, - 46EB2E00011770 /* RNSVGSvgView.h */, - 46EB2E00011780 /* RNSVGSvgView.m */, - 46EB2E00011790 /* RNSVGSymbol.h */, - 46EB2E000117A0 /* RNSVGSymbol.m */, - 46EB2E000117B0 /* RNSVGUse.h */, - 46EB2E000117C0 /* RNSVGUse.m */, + 46EB2E00011480 /* Elements */ = { + isa = PBXGroup; + children = ( + 46EB2E00011490 /* RNSVGClipPath.h */, + 46EB2E000114A0 /* RNSVGClipPath.m */, + 46EB2E000114B0 /* RNSVGDefs.h */, + 46EB2E000114C0 /* RNSVGDefs.m */, + 46EB2E000114D0 /* RNSVGForeignObject.h */, + 46EB2E000114E0 /* RNSVGForeignObject.m */, + 46EB2E000114F0 /* RNSVGGroup.h */, + 46EB2E00011500 /* RNSVGGroup.m */, + 46EB2E00011510 /* RNSVGImage.h */, + 46EB2E00011520 /* RNSVGImage.m */, + 46EB2E00011530 /* RNSVGLinearGradient.h */, + 46EB2E00011540 /* RNSVGLinearGradient.m */, + 46EB2E00011550 /* RNSVGMarker.h */, + 46EB2E00011560 /* RNSVGMarker.m */, + 46EB2E00011570 /* RNSVGMask.h */, + 46EB2E00011580 /* RNSVGMask.m */, + 46EB2E00011590 /* RNSVGPath.h */, + 46EB2E000115A0 /* RNSVGPath.m */, + 46EB2E000115B0 /* RNSVGPattern.h */, + 46EB2E000115C0 /* RNSVGPattern.m */, + 46EB2E000115D0 /* RNSVGRadialGradient.h */, + 46EB2E000115E0 /* RNSVGRadialGradient.m */, + 46EB2E000115F0 /* RNSVGSvgView.h */, + 46EB2E00011600 /* RNSVGSvgView.m */, + 46EB2E00011610 /* RNSVGSymbol.h */, + 46EB2E00011620 /* RNSVGSymbol.m */, + 46EB2E00011630 /* RNSVGUse.h */, + 46EB2E00011640 /* RNSVGUse.m */, ); name = Elements; path = apple/Elements; sourceTree = ""; }; - 46EB2E00011830 /* Shapes */ = { + 46EB2E000116B0 /* Shapes */ = { isa = PBXGroup; children = ( - 46EB2E00011840 /* RNSVGCircle.h */, - 46EB2E00011850 /* RNSVGCircle.m */, - 46EB2E00011860 /* RNSVGEllipse.h */, - 46EB2E00011870 /* RNSVGEllipse.m */, - 46EB2E00011880 /* RNSVGLine.h */, - 46EB2E00011890 /* RNSVGLine.m */, - 46EB2E000118A0 /* RNSVGRect.h */, - 46EB2E000118B0 /* RNSVGRect.m */, + 46EB2E000116C0 /* RNSVGCircle.h */, + 46EB2E000116D0 /* RNSVGCircle.m */, + 46EB2E000116E0 /* RNSVGEllipse.h */, + 46EB2E000116F0 /* RNSVGEllipse.m */, + 46EB2E00011700 /* RNSVGLine.h */, + 46EB2E00011710 /* RNSVGLine.m */, + 46EB2E00011720 /* RNSVGRect.h */, + 46EB2E00011730 /* RNSVGRect.m */, ); name = Shapes; path = apple/Shapes; sourceTree = ""; }; - 46EB2E000118C0 /* Text */ = { + 46EB2E00011740 /* Text */ = { isa = PBXGroup; children = ( - 46EB2E000118D0 /* RNSVGFontData.h */, - 46EB2E000118E0 /* RNSVGFontData.m */, - 46EB2E000118F0 /* RNSVGGlyphContext.h */, - 46EB2E00011900 /* RNSVGGlyphContext.m */, - 46EB2E00011910 /* RNSVGPropHelper.h */, - 46EB2E00011920 /* RNSVGPropHelper.m */, - 46EB2E00011930 /* RNSVGText.h */, - 46EB2E00011940 /* RNSVGText.m */, - 46EB2E00011950 /* RNSVGTextPath.h */, - 46EB2E00011960 /* RNSVGTextPath.m */, - 46EB2E00011970 /* RNSVGTextProperties.h */, - 46EB2E00011980 /* RNSVGTextProperties.m */, - 46EB2E00011990 /* RNSVGTopAlignedLabel.h */, - 46EB2E000119A0 /* RNSVGTopAlignedLabel.ios.m */, - 46EB2E000119B0 /* RNSVGTSpan.h */, - 46EB2E000119C0 /* RNSVGTSpan.m */, + 46EB2E00011750 /* RNSVGFontData.h */, + 46EB2E00011760 /* RNSVGFontData.m */, + 46EB2E00011770 /* RNSVGGlyphContext.h */, + 46EB2E00011780 /* RNSVGGlyphContext.m */, + 46EB2E00011790 /* RNSVGPropHelper.h */, + 46EB2E000117A0 /* RNSVGPropHelper.m */, + 46EB2E000117B0 /* RNSVGText.h */, + 46EB2E000117C0 /* RNSVGText.m */, + 46EB2E000117D0 /* RNSVGTextPath.h */, + 46EB2E000117E0 /* RNSVGTextPath.m */, + 46EB2E000117F0 /* RNSVGTextProperties.h */, + 46EB2E00011800 /* RNSVGTextProperties.m */, + 46EB2E00011810 /* RNSVGTopAlignedLabel.h */, + 46EB2E00011820 /* RNSVGTopAlignedLabel.ios.m */, + 46EB2E00011830 /* RNSVGTSpan.h */, + 46EB2E00011840 /* RNSVGTSpan.m */, ); name = Text; path = apple/Text; sourceTree = ""; }; - 46EB2E000119D0 /* Utils */ = { - isa = PBXGroup; - children = ( - 46EB2E000119E0 /* RCTConvert+RNSVG.h */, - 46EB2E000119F0 /* RCTConvert+RNSVG.m */, - 46EB2E00011A00 /* RNSVGBezierElement.h */, - 46EB2E00011A10 /* RNSVGBezierElement.m */, - 46EB2E00011A20 /* RNSVGCGFCRule.h */, - 46EB2E00011A30 /* RNSVGLength.h */, - 46EB2E00011A40 /* RNSVGLength.m */, - 46EB2E00011A50 /* RNSVGMarkerPosition.h */, - 46EB2E00011A60 /* RNSVGMarkerPosition.m */, - 46EB2E00011A70 /* RNSVGPathMeasure.h */, - 46EB2E00011A80 /* RNSVGPathMeasure.m */, - 46EB2E00011A90 /* RNSVGPathParser.h */, - 46EB2E00011AA0 /* RNSVGPathParser.m */, - 46EB2E00011AB0 /* RNSVGUnits.h */, - 46EB2E00011AC0 /* RNSVGVBMOS.h */, - 46EB2E00011AD0 /* RNSVGVectorEffect.h */, - 46EB2E00011AE0 /* RNSVGViewBox.h */, - 46EB2E00011AF0 /* RNSVGViewBox.m */, + 46EB2E00011850 /* Utils */ = { + isa = PBXGroup; + children = ( + 46EB2E00011860 /* RCTConvert+RNSVG.h */, + 46EB2E00011870 /* RCTConvert+RNSVG.m */, + 46EB2E00011880 /* RNSVGBezierElement.h */, + 46EB2E00011890 /* RNSVGBezierElement.m */, + 46EB2E000118A0 /* RNSVGCGFCRule.h */, + 46EB2E000118B0 /* RNSVGLength.h */, + 46EB2E000118C0 /* RNSVGLength.m */, + 46EB2E000118D0 /* RNSVGMarkerPosition.h */, + 46EB2E000118E0 /* RNSVGMarkerPosition.m */, + 46EB2E000118F0 /* RNSVGPathMeasure.h */, + 46EB2E00011900 /* RNSVGPathMeasure.m */, + 46EB2E00011910 /* RNSVGPathParser.h */, + 46EB2E00011920 /* RNSVGPathParser.m */, + 46EB2E00011930 /* RNSVGUnits.h */, + 46EB2E00011940 /* RNSVGVBMOS.h */, + 46EB2E00011950 /* RNSVGVectorEffect.h */, + 46EB2E00011960 /* RNSVGViewBox.h */, + 46EB2E00011970 /* RNSVGViewBox.m */, ); name = Utils; path = apple/Utils; sourceTree = ""; }; - 46EB2E00011B00 /* ViewManagers */ = { - isa = PBXGroup; - children = ( - 46EB2E00011B10 /* RNSVGCircleManager.h */, - 46EB2E00011B20 /* RNSVGCircleManager.m */, - 46EB2E00011B30 /* RNSVGClipPathManager.h */, - 46EB2E00011B40 /* RNSVGClipPathManager.m */, - 46EB2E00011B50 /* RNSVGDefsManager.h */, - 46EB2E00011B60 /* RNSVGDefsManager.m */, - 46EB2E00011B70 /* RNSVGEllipseManager.h */, - 46EB2E00011B80 /* RNSVGEllipseManager.m */, - 46EB2E00011B90 /* RNSVGForeignObjectManager.h */, - 46EB2E00011BA0 /* RNSVGForeignObjectManager.m */, - 46EB2E00011BB0 /* RNSVGGroupManager.h */, - 46EB2E00011BC0 /* RNSVGGroupManager.m */, - 46EB2E00011BD0 /* RNSVGImageManager.h */, - 46EB2E00011BE0 /* RNSVGImageManager.m */, - 46EB2E00011BF0 /* RNSVGLinearGradientManager.h */, - 46EB2E00011C00 /* RNSVGLinearGradientManager.m */, - 46EB2E00011C10 /* RNSVGLineManager.h */, - 46EB2E00011C20 /* RNSVGLineManager.m */, - 46EB2E00011C30 /* RNSVGMarkerManager.h */, - 46EB2E00011C40 /* RNSVGMarkerManager.m */, - 46EB2E00011C50 /* RNSVGMaskManager.h */, - 46EB2E00011C60 /* RNSVGMaskManager.m */, - 46EB2E00011C70 /* RNSVGNodeManager.h */, - 46EB2E00011C80 /* RNSVGNodeManager.m */, - 46EB2E00011C90 /* RNSVGPathManager.h */, - 46EB2E00011CA0 /* RNSVGPathManager.m */, - 46EB2E00011CB0 /* RNSVGPatternManager.h */, - 46EB2E00011CC0 /* RNSVGPatternManager.m */, - 46EB2E00011CD0 /* RNSVGRadialGradientManager.h */, - 46EB2E00011CE0 /* RNSVGRadialGradientManager.m */, - 46EB2E00011CF0 /* RNSVGRectManager.h */, - 46EB2E00011D00 /* RNSVGRectManager.m */, - 46EB2E00011D10 /* RNSVGRenderableManager.h */, - 46EB2E00011D20 /* RNSVGRenderableManager.m */, - 46EB2E00011D30 /* RNSVGSvgViewManager.h */, - 46EB2E00011D40 /* RNSVGSvgViewManager.m */, - 46EB2E00011D50 /* RNSVGSymbolManager.h */, - 46EB2E00011D60 /* RNSVGSymbolManager.m */, - 46EB2E00011D70 /* RNSVGTextManager.h */, - 46EB2E00011D80 /* RNSVGTextManager.m */, - 46EB2E00011D90 /* RNSVGTextPathManager.h */, - 46EB2E00011DA0 /* RNSVGTextPathManager.m */, - 46EB2E00011DB0 /* RNSVGTSpanManager.h */, - 46EB2E00011DC0 /* RNSVGTSpanManager.m */, - 46EB2E00011DD0 /* RNSVGUseManager.h */, - 46EB2E00011DE0 /* RNSVGUseManager.m */, + 46EB2E00011980 /* ViewManagers */ = { + isa = PBXGroup; + children = ( + 46EB2E00011990 /* RNSVGCircleManager.h */, + 46EB2E000119A0 /* RNSVGCircleManager.m */, + 46EB2E000119B0 /* RNSVGClipPathManager.h */, + 46EB2E000119C0 /* RNSVGClipPathManager.m */, + 46EB2E000119D0 /* RNSVGDefsManager.h */, + 46EB2E000119E0 /* RNSVGDefsManager.m */, + 46EB2E000119F0 /* RNSVGEllipseManager.h */, + 46EB2E00011A00 /* RNSVGEllipseManager.m */, + 46EB2E00011A10 /* RNSVGForeignObjectManager.h */, + 46EB2E00011A20 /* RNSVGForeignObjectManager.m */, + 46EB2E00011A30 /* RNSVGGroupManager.h */, + 46EB2E00011A40 /* RNSVGGroupManager.m */, + 46EB2E00011A50 /* RNSVGImageManager.h */, + 46EB2E00011A60 /* RNSVGImageManager.m */, + 46EB2E00011A70 /* RNSVGLinearGradientManager.h */, + 46EB2E00011A80 /* RNSVGLinearGradientManager.m */, + 46EB2E00011A90 /* RNSVGLineManager.h */, + 46EB2E00011AA0 /* RNSVGLineManager.m */, + 46EB2E00011AB0 /* RNSVGMarkerManager.h */, + 46EB2E00011AC0 /* RNSVGMarkerManager.m */, + 46EB2E00011AD0 /* RNSVGMaskManager.h */, + 46EB2E00011AE0 /* RNSVGMaskManager.m */, + 46EB2E00011AF0 /* RNSVGNodeManager.h */, + 46EB2E00011B00 /* RNSVGNodeManager.m */, + 46EB2E00011B10 /* RNSVGPathManager.h */, + 46EB2E00011B20 /* RNSVGPathManager.m */, + 46EB2E00011B30 /* RNSVGPatternManager.h */, + 46EB2E00011B40 /* RNSVGPatternManager.m */, + 46EB2E00011B50 /* RNSVGRadialGradientManager.h */, + 46EB2E00011B60 /* RNSVGRadialGradientManager.m */, + 46EB2E00011B70 /* RNSVGRectManager.h */, + 46EB2E00011B80 /* RNSVGRectManager.m */, + 46EB2E00011B90 /* RNSVGRenderableManager.h */, + 46EB2E00011BA0 /* RNSVGRenderableManager.m */, + 46EB2E00011BB0 /* RNSVGSvgViewManager.h */, + 46EB2E00011BC0 /* RNSVGSvgViewManager.m */, + 46EB2E00011BD0 /* RNSVGSymbolManager.h */, + 46EB2E00011BE0 /* RNSVGSymbolManager.m */, + 46EB2E00011BF0 /* RNSVGTextManager.h */, + 46EB2E00011C00 /* RNSVGTextManager.m */, + 46EB2E00011C10 /* RNSVGTextPathManager.h */, + 46EB2E00011C20 /* RNSVGTextPathManager.m */, + 46EB2E00011C30 /* RNSVGTSpanManager.h */, + 46EB2E00011C40 /* RNSVGTSpanManager.m */, + 46EB2E00011C50 /* RNSVGUseManager.h */, + 46EB2E00011C60 /* RNSVGUseManager.m */, ); name = ViewManagers; path = apple/ViewManagers; sourceTree = ""; }; - 46EB2E00011FC0 /* utils */ = { + 46EB2E00011E40 /* utils */ = { isa = PBXGroup; children = ( - 46EB2E00011FD0 /* RNSUIBarButtonItem.h */, - 46EB2E00011FE0 /* RNSUIBarButtonItem.mm */, + 46EB2E00011E50 /* RNSUIBarButtonItem.h */, + 46EB2E00011E60 /* RNSUIBarButtonItem.mm */, ); name = utils; path = ios/utils; sourceTree = ""; }; - 46EB2E000121B0 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 46EB2E000121C0 /* CoreModulesPlugins.h */, - 46EB2E000121E0 /* RCTAccessibilityManager.h */, - 46EB2E000121D0 /* RCTAccessibilityManager+Internal.h */, - 46EB2E000121F0 /* RCTActionSheetManager.h */, - 46EB2E00012200 /* RCTAlertController.h */, - 46EB2E00012210 /* RCTAlertManager.h */, - 46EB2E00012220 /* RCTAppearance.h */, - 46EB2E00012230 /* RCTAppState.h */, - 46EB2E00012240 /* RCTAsyncLocalStorage.h */, - 46EB2E00012250 /* RCTClipboard.h */, - 46EB2E00012260 /* RCTDeviceInfo.h */, - 46EB2E00012270 /* RCTDevLoadingView.h */, - 46EB2E00012280 /* RCTDevMenu.h */, - 46EB2E00012290 /* RCTDevSettings.h */, - 46EB2E000122A0 /* RCTDevSplitBundleLoader.h */, - 46EB2E000122B0 /* RCTEventDispatcher.h */, - 46EB2E000122C0 /* RCTExceptionsManager.h */, - 46EB2E000122D0 /* RCTFPSGraph.h */, - 46EB2E000122E0 /* RCTI18nManager.h */, - 46EB2E000122F0 /* RCTKeyboardObserver.h */, - 46EB2E00012300 /* RCTLogBox.h */, - 46EB2E00012310 /* RCTLogBoxView.h */, - 46EB2E00012320 /* RCTPlatform.h */, - 46EB2E00012330 /* RCTRedBox.h */, - 46EB2E00012340 /* RCTSourceCode.h */, - 46EB2E00012350 /* RCTStatusBarManager.h */, - 46EB2E00012360 /* RCTTiming.h */, - 46EB2E00012370 /* RCTWebSocketExecutor.h */, - 46EB2E00012380 /* RCTWebSocketModule.h */, + 46EB2E00012030 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 46EB2E00012040 /* CoreModulesPlugins.h */, + 46EB2E00012060 /* RCTAccessibilityManager.h */, + 46EB2E00012050 /* RCTAccessibilityManager+Internal.h */, + 46EB2E00012070 /* RCTActionSheetManager.h */, + 46EB2E00012080 /* RCTAlertController.h */, + 46EB2E00012090 /* RCTAlertManager.h */, + 46EB2E000120A0 /* RCTAppearance.h */, + 46EB2E000120B0 /* RCTAppState.h */, + 46EB2E000120C0 /* RCTAsyncLocalStorage.h */, + 46EB2E000120D0 /* RCTClipboard.h */, + 46EB2E000120E0 /* RCTDeviceInfo.h */, + 46EB2E000120F0 /* RCTDevLoadingView.h */, + 46EB2E00012100 /* RCTDevMenu.h */, + 46EB2E00012110 /* RCTDevSettings.h */, + 46EB2E00012120 /* RCTDevSplitBundleLoader.h */, + 46EB2E00012130 /* RCTEventDispatcher.h */, + 46EB2E00012140 /* RCTExceptionsManager.h */, + 46EB2E00012150 /* RCTFPSGraph.h */, + 46EB2E00012160 /* RCTI18nManager.h */, + 46EB2E00012170 /* RCTKeyboardObserver.h */, + 46EB2E00012180 /* RCTLogBox.h */, + 46EB2E00012190 /* RCTLogBoxView.h */, + 46EB2E000121A0 /* RCTPlatform.h */, + 46EB2E000121B0 /* RCTRedBox.h */, + 46EB2E000121C0 /* RCTSourceCode.h */, + 46EB2E000121D0 /* RCTStatusBarManager.h */, + 46EB2E000121E0 /* RCTTiming.h */, + 46EB2E000121F0 /* RCTWebSocketExecutor.h */, + 46EB2E00012200 /* RCTWebSocketModule.h */, ); name = CoreModulesHeaders; sourceTree = ""; }; - 46EB2E00012390 /* Default */ = { + 46EB2E00012210 /* Default */ = { isa = PBXGroup; children = ( - 46EB2E000123A0 /* AppSetup */, - 46EB2E000123D0 /* Base */, - 46EB2E00012B10 /* CxxBridge */, - 46EB2E00012BE0 /* CxxLogUtils */, - 46EB2E00012C10 /* CxxModule */, - 46EB2E00012CB0 /* CxxUtils */, - 46EB2E00012CE0 /* Modules */, - 46EB2E00012E10 /* Profiler */, - 46EB2E00012E90 /* UIUtils */, - 46EB2E00012EC0 /* Views */, + 46EB2E00012220 /* AppSetup */, + 46EB2E00012250 /* Base */, + 46EB2E00012990 /* CxxBridge */, + 46EB2E00012A60 /* CxxLogUtils */, + 46EB2E00012A90 /* CxxModule */, + 46EB2E00012B30 /* CxxUtils */, + 46EB2E00012B60 /* Modules */, + 46EB2E00012C90 /* Profiler */, + 46EB2E00012D10 /* UIUtils */, + 46EB2E00012D40 /* Views */, ); name = Default; sourceTree = ""; }; - 46EB2E000123A0 /* AppSetup */ = { + 46EB2E00012220 /* AppSetup */ = { isa = PBXGroup; children = ( - 46EB2E000123B0 /* RCTAppSetupUtils.h */, - 46EB2E000123C0 /* RCTAppSetupUtils.mm */, + 46EB2E00012230 /* RCTAppSetupUtils.h */, + 46EB2E00012240 /* RCTAppSetupUtils.mm */, ); name = AppSetup; path = React/AppSetup; sourceTree = ""; }; - 46EB2E000123D0 /* Base */ = { - isa = PBXGroup; - children = ( - 46EB2E000123E0 /* RCTAssert.h */, - 46EB2E000123F0 /* RCTAssert.m */, - 46EB2E00012410 /* RCTBridge.h */, - 46EB2E00012420 /* RCTBridge.m */, - 46EB2E00012400 /* RCTBridge+Private.h */, - 46EB2E00012430 /* RCTBridgeDelegate.h */, - 46EB2E00012440 /* RCTBridgeMethod.h */, - 46EB2E00012450 /* RCTBridgeModule.h */, - 46EB2E00012460 /* RCTBridgeModuleDecorator.h */, - 46EB2E00012470 /* RCTBridgeModuleDecorator.m */, - 46EB2E00012480 /* RCTBundleManager.m */, - 46EB2E00012490 /* RCTBundleURLProvider.h */, - 46EB2E000124A0 /* RCTBundleURLProvider.mm */, - 46EB2E000124B0 /* RCTCallableJSModules.m */, - 46EB2E000124C0 /* RCTComponentEvent.h */, - 46EB2E000124D0 /* RCTComponentEvent.m */, - 46EB2E000124E0 /* RCTConstants.h */, - 46EB2E000124F0 /* RCTConstants.m */, - 46EB2E00012500 /* RCTConvert.h */, - 46EB2E00012510 /* RCTConvert.m */, - 46EB2E00012520 /* RCTCxxConvert.h */, - 46EB2E00012530 /* RCTCxxConvert.m */, - 46EB2E00012540 /* RCTDefines.h */, - 46EB2E00012550 /* RCTDisplayLink.h */, - 46EB2E00012560 /* RCTDisplayLink.m */, - 46EB2E00012570 /* RCTErrorCustomizer.h */, - 46EB2E00012580 /* RCTErrorInfo.h */, - 46EB2E00012590 /* RCTErrorInfo.m */, - 46EB2E000125A0 /* RCTEventDispatcher.m */, - 46EB2E000125B0 /* RCTEventDispatcherProtocol.h */, - 46EB2E000125C0 /* RCTFrameUpdate.h */, - 46EB2E000125D0 /* RCTFrameUpdate.m */, - 46EB2E000125E0 /* RCTImageSource.h */, - 46EB2E000125F0 /* RCTImageSource.m */, - 46EB2E00012600 /* RCTInitializing.h */, - 46EB2E00012610 /* RCTInvalidating.h */, - 46EB2E00012620 /* RCTJavaScriptExecutor.h */, - 46EB2E00012630 /* RCTJavaScriptLoader.h */, - 46EB2E00012640 /* RCTJavaScriptLoader.mm */, - 46EB2E00012650 /* RCTJSScriptLoaderModule.h */, - 46EB2E00012660 /* RCTJSStackFrame.h */, - 46EB2E00012670 /* RCTJSStackFrame.m */, - 46EB2E00012680 /* RCTJSThread.h */, - 46EB2E00012690 /* RCTJSThread.m */, - 46EB2E000126A0 /* RCTKeyCommands.h */, - 46EB2E000126B0 /* RCTKeyCommands.m */, - 46EB2E000126C0 /* RCTLog.h */, - 46EB2E000126D0 /* RCTLog.mm */, - 46EB2E000126E0 /* RCTManagedPointer.h */, - 46EB2E000126F0 /* RCTManagedPointer.mm */, - 46EB2E00012700 /* RCTMockDef.h */, - 46EB2E00012710 /* RCTModuleData.h */, - 46EB2E00012720 /* RCTModuleData.mm */, - 46EB2E00012730 /* RCTModuleMethod.h */, - 46EB2E00012740 /* RCTModuleMethod.mm */, - 46EB2E00012750 /* RCTModuleRegistry.m */, - 46EB2E00012760 /* RCTMultipartDataTask.h */, - 46EB2E00012770 /* RCTMultipartDataTask.m */, - 46EB2E00012780 /* RCTMultipartStreamReader.h */, - 46EB2E00012790 /* RCTMultipartStreamReader.m */, - 46EB2E000127A0 /* RCTNullability.h */, - 46EB2E000127B0 /* RCTParserUtils.h */, - 46EB2E000127C0 /* RCTParserUtils.m */, - 46EB2E000127D0 /* RCTPerformanceLogger.h */, - 46EB2E000127E0 /* RCTPerformanceLogger.m */, - 46EB2E000127F0 /* RCTPerformanceLoggerLabels.h */, - 46EB2E00012800 /* RCTPerformanceLoggerLabels.m */, - 46EB2E00012810 /* RCTPLTag.h */, - 46EB2E00012820 /* RCTRedBoxSetEnabled.h */, - 46EB2E00012830 /* RCTRedBoxSetEnabled.m */, - 46EB2E00012840 /* RCTReloadCommand.h */, - 46EB2E00012850 /* RCTReloadCommand.m */, - 46EB2E00012860 /* RCTRootContentView.h */, - 46EB2E00012870 /* RCTRootContentView.m */, - 46EB2E00012880 /* RCTRootView.h */, - 46EB2E00012890 /* RCTRootView.m */, - 46EB2E000128A0 /* RCTRootViewDelegate.h */, - 46EB2E000128B0 /* RCTRootViewInternal.h */, - 46EB2E000128C0 /* RCTTouchEvent.h */, - 46EB2E000128D0 /* RCTTouchEvent.m */, - 46EB2E000128E0 /* RCTTouchHandler.h */, - 46EB2E000128F0 /* RCTTouchHandler.m */, - 46EB2E00012900 /* RCTURLRequestDelegate.h */, - 46EB2E00012910 /* RCTURLRequestHandler.h */, - 46EB2E00012920 /* RCTUtils.h */, - 46EB2E00012930 /* RCTUtils.m */, - 46EB2E00012940 /* RCTUtilsUIOverride.h */, - 46EB2E00012950 /* RCTUtilsUIOverride.m */, - 46EB2E00012960 /* RCTVersion.h */, - 46EB2E00012970 /* RCTVersion.m */, - 46EB2E00012980 /* RCTViewRegistry.m */, - 46EB2E00012990 /* RCTWeakProxy.h */, - 46EB2E000129A0 /* RCTWeakProxy.m */, - 46EB2E000129B0 /* Surface */, + 46EB2E00012250 /* Base */ = { + isa = PBXGroup; + children = ( + 46EB2E00012260 /* RCTAssert.h */, + 46EB2E00012270 /* RCTAssert.m */, + 46EB2E00012290 /* RCTBridge.h */, + 46EB2E000122A0 /* RCTBridge.m */, + 46EB2E00012280 /* RCTBridge+Private.h */, + 46EB2E000122B0 /* RCTBridgeDelegate.h */, + 46EB2E000122C0 /* RCTBridgeMethod.h */, + 46EB2E000122D0 /* RCTBridgeModule.h */, + 46EB2E000122E0 /* RCTBridgeModuleDecorator.h */, + 46EB2E000122F0 /* RCTBridgeModuleDecorator.m */, + 46EB2E00012300 /* RCTBundleManager.m */, + 46EB2E00012310 /* RCTBundleURLProvider.h */, + 46EB2E00012320 /* RCTBundleURLProvider.mm */, + 46EB2E00012330 /* RCTCallableJSModules.m */, + 46EB2E00012340 /* RCTComponentEvent.h */, + 46EB2E00012350 /* RCTComponentEvent.m */, + 46EB2E00012360 /* RCTConstants.h */, + 46EB2E00012370 /* RCTConstants.m */, + 46EB2E00012380 /* RCTConvert.h */, + 46EB2E00012390 /* RCTConvert.m */, + 46EB2E000123A0 /* RCTCxxConvert.h */, + 46EB2E000123B0 /* RCTCxxConvert.m */, + 46EB2E000123C0 /* RCTDefines.h */, + 46EB2E000123D0 /* RCTDisplayLink.h */, + 46EB2E000123E0 /* RCTDisplayLink.m */, + 46EB2E000123F0 /* RCTErrorCustomizer.h */, + 46EB2E00012400 /* RCTErrorInfo.h */, + 46EB2E00012410 /* RCTErrorInfo.m */, + 46EB2E00012420 /* RCTEventDispatcher.m */, + 46EB2E00012430 /* RCTEventDispatcherProtocol.h */, + 46EB2E00012440 /* RCTFrameUpdate.h */, + 46EB2E00012450 /* RCTFrameUpdate.m */, + 46EB2E00012460 /* RCTImageSource.h */, + 46EB2E00012470 /* RCTImageSource.m */, + 46EB2E00012480 /* RCTInitializing.h */, + 46EB2E00012490 /* RCTInvalidating.h */, + 46EB2E000124A0 /* RCTJavaScriptExecutor.h */, + 46EB2E000124B0 /* RCTJavaScriptLoader.h */, + 46EB2E000124C0 /* RCTJavaScriptLoader.mm */, + 46EB2E000124D0 /* RCTJSScriptLoaderModule.h */, + 46EB2E000124E0 /* RCTJSStackFrame.h */, + 46EB2E000124F0 /* RCTJSStackFrame.m */, + 46EB2E00012500 /* RCTJSThread.h */, + 46EB2E00012510 /* RCTJSThread.m */, + 46EB2E00012520 /* RCTKeyCommands.h */, + 46EB2E00012530 /* RCTKeyCommands.m */, + 46EB2E00012540 /* RCTLog.h */, + 46EB2E00012550 /* RCTLog.mm */, + 46EB2E00012560 /* RCTManagedPointer.h */, + 46EB2E00012570 /* RCTManagedPointer.mm */, + 46EB2E00012580 /* RCTMockDef.h */, + 46EB2E00012590 /* RCTModuleData.h */, + 46EB2E000125A0 /* RCTModuleData.mm */, + 46EB2E000125B0 /* RCTModuleMethod.h */, + 46EB2E000125C0 /* RCTModuleMethod.mm */, + 46EB2E000125D0 /* RCTModuleRegistry.m */, + 46EB2E000125E0 /* RCTMultipartDataTask.h */, + 46EB2E000125F0 /* RCTMultipartDataTask.m */, + 46EB2E00012600 /* RCTMultipartStreamReader.h */, + 46EB2E00012610 /* RCTMultipartStreamReader.m */, + 46EB2E00012620 /* RCTNullability.h */, + 46EB2E00012630 /* RCTParserUtils.h */, + 46EB2E00012640 /* RCTParserUtils.m */, + 46EB2E00012650 /* RCTPerformanceLogger.h */, + 46EB2E00012660 /* RCTPerformanceLogger.m */, + 46EB2E00012670 /* RCTPerformanceLoggerLabels.h */, + 46EB2E00012680 /* RCTPerformanceLoggerLabels.m */, + 46EB2E00012690 /* RCTPLTag.h */, + 46EB2E000126A0 /* RCTRedBoxSetEnabled.h */, + 46EB2E000126B0 /* RCTRedBoxSetEnabled.m */, + 46EB2E000126C0 /* RCTReloadCommand.h */, + 46EB2E000126D0 /* RCTReloadCommand.m */, + 46EB2E000126E0 /* RCTRootContentView.h */, + 46EB2E000126F0 /* RCTRootContentView.m */, + 46EB2E00012700 /* RCTRootView.h */, + 46EB2E00012710 /* RCTRootView.m */, + 46EB2E00012720 /* RCTRootViewDelegate.h */, + 46EB2E00012730 /* RCTRootViewInternal.h */, + 46EB2E00012740 /* RCTTouchEvent.h */, + 46EB2E00012750 /* RCTTouchEvent.m */, + 46EB2E00012760 /* RCTTouchHandler.h */, + 46EB2E00012770 /* RCTTouchHandler.m */, + 46EB2E00012780 /* RCTURLRequestDelegate.h */, + 46EB2E00012790 /* RCTURLRequestHandler.h */, + 46EB2E000127A0 /* RCTUtils.h */, + 46EB2E000127B0 /* RCTUtils.m */, + 46EB2E000127C0 /* RCTUtilsUIOverride.h */, + 46EB2E000127D0 /* RCTUtilsUIOverride.m */, + 46EB2E000127E0 /* RCTVersion.h */, + 46EB2E000127F0 /* RCTVersion.m */, + 46EB2E00012800 /* RCTViewRegistry.m */, + 46EB2E00012810 /* RCTWeakProxy.h */, + 46EB2E00012820 /* RCTWeakProxy.m */, + 46EB2E00012830 /* Surface */, ); name = Base; path = React/Base; sourceTree = ""; }; - 46EB2E000129B0 /* Surface */ = { + 46EB2E00012830 /* Surface */ = { isa = PBXGroup; children = ( - 46EB2E000129C0 /* RCTSurface.h */, - 46EB2E000129D0 /* RCTSurface.mm */, - 46EB2E000129E0 /* RCTSurfaceDelegate.h */, - 46EB2E000129F0 /* RCTSurfaceProtocol.h */, - 46EB2E00012A00 /* RCTSurfaceRootShadowView.h */, - 46EB2E00012A10 /* RCTSurfaceRootShadowView.m */, - 46EB2E00012A20 /* RCTSurfaceRootShadowViewDelegate.h */, - 46EB2E00012A30 /* RCTSurfaceRootView.h */, - 46EB2E00012A40 /* RCTSurfaceRootView.mm */, - 46EB2E00012A50 /* RCTSurfaceStage.h */, - 46EB2E00012A60 /* RCTSurfaceStage.m */, - 46EB2E00012A80 /* RCTSurfaceView.h */, - 46EB2E00012A90 /* RCTSurfaceView.mm */, - 46EB2E00012A70 /* RCTSurfaceView+Internal.h */, - 46EB2E00012AA0 /* SurfaceHostingView */, + 46EB2E00012840 /* RCTSurface.h */, + 46EB2E00012850 /* RCTSurface.mm */, + 46EB2E00012860 /* RCTSurfaceDelegate.h */, + 46EB2E00012870 /* RCTSurfaceProtocol.h */, + 46EB2E00012880 /* RCTSurfaceRootShadowView.h */, + 46EB2E00012890 /* RCTSurfaceRootShadowView.m */, + 46EB2E000128A0 /* RCTSurfaceRootShadowViewDelegate.h */, + 46EB2E000128B0 /* RCTSurfaceRootView.h */, + 46EB2E000128C0 /* RCTSurfaceRootView.mm */, + 46EB2E000128D0 /* RCTSurfaceStage.h */, + 46EB2E000128E0 /* RCTSurfaceStage.m */, + 46EB2E00012900 /* RCTSurfaceView.h */, + 46EB2E00012910 /* RCTSurfaceView.mm */, + 46EB2E000128F0 /* RCTSurfaceView+Internal.h */, + 46EB2E00012920 /* SurfaceHostingView */, ); + name = Surface; path = Surface; sourceTree = ""; }; - 46EB2E00012AA0 /* SurfaceHostingView */ = { + 46EB2E00012920 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 46EB2E00012AB0 /* RCTSurfaceHostingProxyRootView.h */, - 46EB2E00012AC0 /* RCTSurfaceHostingProxyRootView.mm */, - 46EB2E00012AD0 /* RCTSurfaceHostingView.h */, - 46EB2E00012AE0 /* RCTSurfaceHostingView.mm */, - 46EB2E00012AF0 /* RCTSurfaceSizeMeasureMode.h */, - 46EB2E00012B00 /* RCTSurfaceSizeMeasureMode.mm */, + 46EB2E00012930 /* RCTSurfaceHostingProxyRootView.h */, + 46EB2E00012940 /* RCTSurfaceHostingProxyRootView.mm */, + 46EB2E00012950 /* RCTSurfaceHostingView.h */, + 46EB2E00012960 /* RCTSurfaceHostingView.mm */, + 46EB2E00012970 /* RCTSurfaceSizeMeasureMode.h */, + 46EB2E00012980 /* RCTSurfaceSizeMeasureMode.mm */, ); + name = SurfaceHostingView; path = SurfaceHostingView; sourceTree = ""; }; - 46EB2E00012B10 /* CxxBridge */ = { + 46EB2E00012990 /* CxxBridge */ = { isa = PBXGroup; children = ( - 46EB2E00012B20 /* JSCExecutorFactory.h */, - 46EB2E00012B30 /* JSCExecutorFactory.mm */, - 46EB2E00012B40 /* NSDataBigString.h */, - 46EB2E00012B50 /* NSDataBigString.mm */, - 46EB2E00012B60 /* RCTCxxBridge.mm */, - 46EB2E00012B70 /* RCTCxxBridgeDelegate.h */, - 46EB2E00012B80 /* RCTJSIExecutorRuntimeInstaller.h */, - 46EB2E00012B90 /* RCTJSIExecutorRuntimeInstaller.mm */, - 46EB2E00012BA0 /* RCTMessageThread.h */, - 46EB2E00012BB0 /* RCTMessageThread.mm */, - 46EB2E00012BC0 /* RCTObjcExecutor.h */, - 46EB2E00012BD0 /* RCTObjcExecutor.mm */, + 46EB2E000129A0 /* JSCExecutorFactory.h */, + 46EB2E000129B0 /* JSCExecutorFactory.mm */, + 46EB2E000129C0 /* NSDataBigString.h */, + 46EB2E000129D0 /* NSDataBigString.mm */, + 46EB2E000129E0 /* RCTCxxBridge.mm */, + 46EB2E000129F0 /* RCTCxxBridgeDelegate.h */, + 46EB2E00012A00 /* RCTJSIExecutorRuntimeInstaller.h */, + 46EB2E00012A10 /* RCTJSIExecutorRuntimeInstaller.mm */, + 46EB2E00012A20 /* RCTMessageThread.h */, + 46EB2E00012A30 /* RCTMessageThread.mm */, + 46EB2E00012A40 /* RCTObjcExecutor.h */, + 46EB2E00012A50 /* RCTObjcExecutor.mm */, ); name = CxxBridge; path = React/CxxBridge; sourceTree = ""; }; - 46EB2E00012BE0 /* CxxLogUtils */ = { + 46EB2E00012A60 /* CxxLogUtils */ = { isa = PBXGroup; children = ( - 46EB2E00012BF0 /* RCTDefaultCxxLogFunction.h */, - 46EB2E00012C00 /* RCTDefaultCxxLogFunction.mm */, + 46EB2E00012A70 /* RCTDefaultCxxLogFunction.h */, + 46EB2E00012A80 /* RCTDefaultCxxLogFunction.mm */, ); name = CxxLogUtils; path = React/CxxLogUtils; sourceTree = ""; }; - 46EB2E00012C10 /* CxxModule */ = { + 46EB2E00012A90 /* CxxModule */ = { isa = PBXGroup; children = ( - 46EB2E00012C20 /* DispatchMessageQueueThread.h */, - 46EB2E00012C30 /* RCTCxxMethod.h */, - 46EB2E00012C40 /* RCTCxxMethod.mm */, - 46EB2E00012C50 /* RCTCxxModule.h */, - 46EB2E00012C60 /* RCTCxxModule.mm */, - 46EB2E00012C70 /* RCTCxxUtils.h */, - 46EB2E00012C80 /* RCTCxxUtils.mm */, - 46EB2E00012C90 /* RCTNativeModule.h */, - 46EB2E00012CA0 /* RCTNativeModule.mm */, + 46EB2E00012AA0 /* DispatchMessageQueueThread.h */, + 46EB2E00012AB0 /* RCTCxxMethod.h */, + 46EB2E00012AC0 /* RCTCxxMethod.mm */, + 46EB2E00012AD0 /* RCTCxxModule.h */, + 46EB2E00012AE0 /* RCTCxxModule.mm */, + 46EB2E00012AF0 /* RCTCxxUtils.h */, + 46EB2E00012B00 /* RCTCxxUtils.mm */, + 46EB2E00012B10 /* RCTNativeModule.h */, + 46EB2E00012B20 /* RCTNativeModule.mm */, ); name = CxxModule; path = React/CxxModule; sourceTree = ""; }; - 46EB2E00012CB0 /* CxxUtils */ = { + 46EB2E00012B30 /* CxxUtils */ = { isa = PBXGroup; children = ( - 46EB2E00012CC0 /* RCTFollyConvert.h */, - 46EB2E00012CD0 /* RCTFollyConvert.mm */, + 46EB2E00012B40 /* RCTFollyConvert.h */, + 46EB2E00012B50 /* RCTFollyConvert.mm */, ); name = CxxUtils; path = React/CxxUtils; sourceTree = ""; }; - 46EB2E00012CE0 /* Modules */ = { - isa = PBXGroup; - children = ( - 46EB2E00012CF0 /* RCTEventEmitter.h */, - 46EB2E00012D00 /* RCTEventEmitter.m */, - 46EB2E00012D10 /* RCTI18nUtil.h */, - 46EB2E00012D20 /* RCTI18nUtil.m */, - 46EB2E00012D30 /* RCTLayoutAnimation.h */, - 46EB2E00012D40 /* RCTLayoutAnimation.m */, - 46EB2E00012D50 /* RCTLayoutAnimationGroup.h */, - 46EB2E00012D60 /* RCTLayoutAnimationGroup.m */, - 46EB2E00012D70 /* RCTRedBoxExtraDataViewController.h */, - 46EB2E00012D80 /* RCTRedBoxExtraDataViewController.m */, - 46EB2E00012D90 /* RCTSurfacePresenterStub.h */, - 46EB2E00012DA0 /* RCTSurfacePresenterStub.m */, - 46EB2E00012DB0 /* RCTUIManager.h */, - 46EB2E00012DC0 /* RCTUIManager.m */, - 46EB2E00012DD0 /* RCTUIManagerObserverCoordinator.h */, - 46EB2E00012DE0 /* RCTUIManagerObserverCoordinator.mm */, - 46EB2E00012DF0 /* RCTUIManagerUtils.h */, - 46EB2E00012E00 /* RCTUIManagerUtils.m */, + 46EB2E00012B60 /* Modules */ = { + isa = PBXGroup; + children = ( + 46EB2E00012B70 /* RCTEventEmitter.h */, + 46EB2E00012B80 /* RCTEventEmitter.m */, + 46EB2E00012B90 /* RCTI18nUtil.h */, + 46EB2E00012BA0 /* RCTI18nUtil.m */, + 46EB2E00012BB0 /* RCTLayoutAnimation.h */, + 46EB2E00012BC0 /* RCTLayoutAnimation.m */, + 46EB2E00012BD0 /* RCTLayoutAnimationGroup.h */, + 46EB2E00012BE0 /* RCTLayoutAnimationGroup.m */, + 46EB2E00012BF0 /* RCTRedBoxExtraDataViewController.h */, + 46EB2E00012C00 /* RCTRedBoxExtraDataViewController.m */, + 46EB2E00012C10 /* RCTSurfacePresenterStub.h */, + 46EB2E00012C20 /* RCTSurfacePresenterStub.m */, + 46EB2E00012C30 /* RCTUIManager.h */, + 46EB2E00012C40 /* RCTUIManager.m */, + 46EB2E00012C50 /* RCTUIManagerObserverCoordinator.h */, + 46EB2E00012C60 /* RCTUIManagerObserverCoordinator.mm */, + 46EB2E00012C70 /* RCTUIManagerUtils.h */, + 46EB2E00012C80 /* RCTUIManagerUtils.m */, ); name = Modules; path = React/Modules; sourceTree = ""; }; - 46EB2E00012E10 /* Profiler */ = { + 46EB2E00012C90 /* Profiler */ = { isa = PBXGroup; children = ( - 46EB2E00012E20 /* RCTMacros.h */, - 46EB2E00012E30 /* RCTProfile.h */, - 46EB2E00012E40 /* RCTProfile.m */, - 46EB2E00012E50 /* RCTProfileTrampoline-arm.S */, - 46EB2E00012E60 /* RCTProfileTrampoline-arm64.S */, - 46EB2E00012E70 /* RCTProfileTrampoline-i386.S */, - 46EB2E00012E80 /* RCTProfileTrampoline-x86_64.S */, + 46EB2E00012CA0 /* RCTMacros.h */, + 46EB2E00012CB0 /* RCTProfile.h */, + 46EB2E00012CC0 /* RCTProfile.m */, + 46EB2E00012CD0 /* RCTProfileTrampoline-arm.S */, + 46EB2E00012CE0 /* RCTProfileTrampoline-arm64.S */, + 46EB2E00012CF0 /* RCTProfileTrampoline-i386.S */, + 46EB2E00012D00 /* RCTProfileTrampoline-x86_64.S */, ); name = Profiler; path = React/Profiler; sourceTree = ""; }; - 46EB2E00012E90 /* UIUtils */ = { + 46EB2E00012D10 /* UIUtils */ = { isa = PBXGroup; children = ( - 46EB2E00012EA0 /* RCTUIUtils.h */, - 46EB2E00012EB0 /* RCTUIUtils.m */, + 46EB2E00012D20 /* RCTUIUtils.h */, + 46EB2E00012D30 /* RCTUIUtils.m */, ); name = UIUtils; path = React/UIUtils; sourceTree = ""; }; - 46EB2E00012EC0 /* Views */ = { - isa = PBXGroup; - children = ( - 46EB2E00012ED0 /* RCTActivityIndicatorView.h */, - 46EB2E00012EE0 /* RCTActivityIndicatorView.m */, - 46EB2E00012EF0 /* RCTActivityIndicatorViewManager.h */, - 46EB2E00012F00 /* RCTActivityIndicatorViewManager.m */, - 46EB2E00012F10 /* RCTAnimationType.h */, - 46EB2E00012F20 /* RCTAutoInsetsProtocol.h */, - 46EB2E00012F30 /* RCTBorderDrawing.h */, - 46EB2E00012F40 /* RCTBorderDrawing.m */, - 46EB2E00012F50 /* RCTBorderStyle.h */, - 46EB2E00012F60 /* RCTComponent.h */, - 46EB2E00012F70 /* RCTComponentData.h */, - 46EB2E00012F80 /* RCTComponentData.m */, - 46EB2E00012F90 /* RCTConvert+CoreLocation.h */, - 46EB2E00012FA0 /* RCTConvert+CoreLocation.m */, - 46EB2E00012FB0 /* RCTConvert+Transform.h */, - 46EB2E00012FC0 /* RCTConvert+Transform.m */, - 46EB2E00012FD0 /* RCTDatePicker.h */, - 46EB2E00012FE0 /* RCTDatePicker.m */, - 46EB2E00012FF0 /* RCTDatePickerManager.h */, - 46EB2E00013000 /* RCTDatePickerManager.m */, - 46EB2E00013010 /* RCTFont.h */, - 46EB2E00013020 /* RCTFont.mm */, - 46EB2E00013030 /* RCTLayout.h */, - 46EB2E00013040 /* RCTLayout.m */, - 46EB2E00013050 /* RCTMaskedView.h */, - 46EB2E00013060 /* RCTMaskedView.m */, - 46EB2E00013070 /* RCTMaskedViewManager.h */, - 46EB2E00013080 /* RCTMaskedViewManager.m */, - 46EB2E00013090 /* RCTModalHostView.h */, - 46EB2E000130A0 /* RCTModalHostView.m */, - 46EB2E000130B0 /* RCTModalHostViewController.h */, - 46EB2E000130C0 /* RCTModalHostViewController.m */, - 46EB2E000130D0 /* RCTModalHostViewManager.h */, - 46EB2E000130E0 /* RCTModalHostViewManager.m */, - 46EB2E000130F0 /* RCTModalManager.h */, - 46EB2E00013100 /* RCTModalManager.m */, - 46EB2E00013110 /* RCTPointerEvents.h */, - 46EB2E00013120 /* RCTProgressViewManager.h */, - 46EB2E00013130 /* RCTProgressViewManager.m */, - 46EB2E00013140 /* RCTRootShadowView.h */, - 46EB2E00013150 /* RCTRootShadowView.m */, - 46EB2E00013160 /* RCTSegmentedControl.h */, - 46EB2E00013170 /* RCTSegmentedControl.m */, - 46EB2E00013180 /* RCTSegmentedControlManager.h */, - 46EB2E00013190 /* RCTSegmentedControlManager.m */, - 46EB2E000131E0 /* RCTShadowView.h */, - 46EB2E000131F0 /* RCTShadowView.m */, - 46EB2E000131A0 /* RCTShadowView+Internal.h */, - 46EB2E000131B0 /* RCTShadowView+Internal.m */, - 46EB2E000131C0 /* RCTShadowView+Layout.h */, - 46EB2E000131D0 /* RCTShadowView+Layout.m */, - 46EB2E00013200 /* RCTSlider.h */, - 46EB2E00013210 /* RCTSlider.m */, - 46EB2E00013220 /* RCTSliderManager.h */, - 46EB2E00013230 /* RCTSliderManager.m */, - 46EB2E00013240 /* RCTSwitch.h */, - 46EB2E00013250 /* RCTSwitch.m */, - 46EB2E00013260 /* RCTSwitchManager.h */, - 46EB2E00013270 /* RCTSwitchManager.m */, - 46EB2E00013280 /* RCTTextDecorationLineType.h */, - 46EB2E00013290 /* RCTView.h */, - 46EB2E000132A0 /* RCTView.m */, - 46EB2E000132B0 /* RCTViewManager.h */, - 46EB2E000132C0 /* RCTViewManager.m */, - 46EB2E000132D0 /* RCTViewUtils.h */, - 46EB2E000132E0 /* RCTViewUtils.m */, - 46EB2E000132F0 /* RCTWrapperViewController.h */, - 46EB2E00013300 /* RCTWrapperViewController.m */, - 46EB2E000134E0 /* UIView+Private.h */, - 46EB2E000134F0 /* UIView+React.h */, - 46EB2E00013500 /* UIView+React.m */, - 46EB2E00013310 /* RefreshControl */, - 46EB2E00013370 /* SafeAreaView */, - 46EB2E00013400 /* ScrollView */, + 46EB2E00012D40 /* Views */ = { + isa = PBXGroup; + children = ( + 46EB2E00012D50 /* RCTActivityIndicatorView.h */, + 46EB2E00012D60 /* RCTActivityIndicatorView.m */, + 46EB2E00012D70 /* RCTActivityIndicatorViewManager.h */, + 46EB2E00012D80 /* RCTActivityIndicatorViewManager.m */, + 46EB2E00012D90 /* RCTAnimationType.h */, + 46EB2E00012DA0 /* RCTAutoInsetsProtocol.h */, + 46EB2E00012DB0 /* RCTBorderDrawing.h */, + 46EB2E00012DC0 /* RCTBorderDrawing.m */, + 46EB2E00012DD0 /* RCTBorderStyle.h */, + 46EB2E00012DE0 /* RCTComponent.h */, + 46EB2E00012DF0 /* RCTComponentData.h */, + 46EB2E00012E00 /* RCTComponentData.m */, + 46EB2E00012E10 /* RCTConvert+CoreLocation.h */, + 46EB2E00012E20 /* RCTConvert+CoreLocation.m */, + 46EB2E00012E30 /* RCTConvert+Transform.h */, + 46EB2E00012E40 /* RCTConvert+Transform.m */, + 46EB2E00012E50 /* RCTDatePicker.h */, + 46EB2E00012E60 /* RCTDatePicker.m */, + 46EB2E00012E70 /* RCTDatePickerManager.h */, + 46EB2E00012E80 /* RCTDatePickerManager.m */, + 46EB2E00012E90 /* RCTFont.h */, + 46EB2E00012EA0 /* RCTFont.mm */, + 46EB2E00012EB0 /* RCTLayout.h */, + 46EB2E00012EC0 /* RCTLayout.m */, + 46EB2E00012ED0 /* RCTMaskedView.h */, + 46EB2E00012EE0 /* RCTMaskedView.m */, + 46EB2E00012EF0 /* RCTMaskedViewManager.h */, + 46EB2E00012F00 /* RCTMaskedViewManager.m */, + 46EB2E00012F10 /* RCTModalHostView.h */, + 46EB2E00012F20 /* RCTModalHostView.m */, + 46EB2E00012F30 /* RCTModalHostViewController.h */, + 46EB2E00012F40 /* RCTModalHostViewController.m */, + 46EB2E00012F50 /* RCTModalHostViewManager.h */, + 46EB2E00012F60 /* RCTModalHostViewManager.m */, + 46EB2E00012F70 /* RCTModalManager.h */, + 46EB2E00012F80 /* RCTModalManager.m */, + 46EB2E00012F90 /* RCTPointerEvents.h */, + 46EB2E00012FA0 /* RCTProgressViewManager.h */, + 46EB2E00012FB0 /* RCTProgressViewManager.m */, + 46EB2E00012FC0 /* RCTRootShadowView.h */, + 46EB2E00012FD0 /* RCTRootShadowView.m */, + 46EB2E00012FE0 /* RCTSegmentedControl.h */, + 46EB2E00012FF0 /* RCTSegmentedControl.m */, + 46EB2E00013000 /* RCTSegmentedControlManager.h */, + 46EB2E00013010 /* RCTSegmentedControlManager.m */, + 46EB2E00013060 /* RCTShadowView.h */, + 46EB2E00013070 /* RCTShadowView.m */, + 46EB2E00013020 /* RCTShadowView+Internal.h */, + 46EB2E00013030 /* RCTShadowView+Internal.m */, + 46EB2E00013040 /* RCTShadowView+Layout.h */, + 46EB2E00013050 /* RCTShadowView+Layout.m */, + 46EB2E00013080 /* RCTSlider.h */, + 46EB2E00013090 /* RCTSlider.m */, + 46EB2E000130A0 /* RCTSliderManager.h */, + 46EB2E000130B0 /* RCTSliderManager.m */, + 46EB2E000130C0 /* RCTSwitch.h */, + 46EB2E000130D0 /* RCTSwitch.m */, + 46EB2E000130E0 /* RCTSwitchManager.h */, + 46EB2E000130F0 /* RCTSwitchManager.m */, + 46EB2E00013100 /* RCTTextDecorationLineType.h */, + 46EB2E00013110 /* RCTView.h */, + 46EB2E00013120 /* RCTView.m */, + 46EB2E00013130 /* RCTViewManager.h */, + 46EB2E00013140 /* RCTViewManager.m */, + 46EB2E00013150 /* RCTViewUtils.h */, + 46EB2E00013160 /* RCTViewUtils.m */, + 46EB2E00013170 /* RCTWrapperViewController.h */, + 46EB2E00013180 /* RCTWrapperViewController.m */, + 46EB2E00013360 /* UIView+Private.h */, + 46EB2E00013370 /* UIView+React.h */, + 46EB2E00013380 /* UIView+React.m */, + 46EB2E00013190 /* RefreshControl */, + 46EB2E000131F0 /* SafeAreaView */, + 46EB2E00013280 /* ScrollView */, ); name = Views; path = React/Views; sourceTree = ""; }; - 46EB2E00013310 /* RefreshControl */ = { + 46EB2E00013190 /* RefreshControl */ = { isa = PBXGroup; children = ( - 46EB2E00013320 /* RCTRefreshableProtocol.h */, - 46EB2E00013330 /* RCTRefreshControl.h */, - 46EB2E00013340 /* RCTRefreshControl.m */, - 46EB2E00013350 /* RCTRefreshControlManager.h */, - 46EB2E00013360 /* RCTRefreshControlManager.m */, + 46EB2E000131A0 /* RCTRefreshableProtocol.h */, + 46EB2E000131B0 /* RCTRefreshControl.h */, + 46EB2E000131C0 /* RCTRefreshControl.m */, + 46EB2E000131D0 /* RCTRefreshControlManager.h */, + 46EB2E000131E0 /* RCTRefreshControlManager.m */, ); + name = RefreshControl; path = RefreshControl; sourceTree = ""; }; - 46EB2E00013370 /* SafeAreaView */ = { + 46EB2E000131F0 /* SafeAreaView */ = { isa = PBXGroup; children = ( - 46EB2E00013380 /* RCTSafeAreaShadowView.h */, - 46EB2E00013390 /* RCTSafeAreaShadowView.m */, - 46EB2E000133A0 /* RCTSafeAreaView.h */, - 46EB2E000133B0 /* RCTSafeAreaView.m */, - 46EB2E000133C0 /* RCTSafeAreaViewLocalData.h */, - 46EB2E000133D0 /* RCTSafeAreaViewLocalData.m */, - 46EB2E000133E0 /* RCTSafeAreaViewManager.h */, - 46EB2E000133F0 /* RCTSafeAreaViewManager.m */, + 46EB2E00013200 /* RCTSafeAreaShadowView.h */, + 46EB2E00013210 /* RCTSafeAreaShadowView.m */, + 46EB2E00013220 /* RCTSafeAreaView.h */, + 46EB2E00013230 /* RCTSafeAreaView.m */, + 46EB2E00013240 /* RCTSafeAreaViewLocalData.h */, + 46EB2E00013250 /* RCTSafeAreaViewLocalData.m */, + 46EB2E00013260 /* RCTSafeAreaViewManager.h */, + 46EB2E00013270 /* RCTSafeAreaViewManager.m */, ); + name = SafeAreaView; path = SafeAreaView; sourceTree = ""; }; - 46EB2E00013400 /* ScrollView */ = { + 46EB2E00013280 /* ScrollView */ = { isa = PBXGroup; children = ( - 46EB2E00013410 /* RCTScrollableProtocol.h */, - 46EB2E00013420 /* RCTScrollContentShadowView.h */, - 46EB2E00013430 /* RCTScrollContentShadowView.m */, - 46EB2E00013440 /* RCTScrollContentView.h */, - 46EB2E00013450 /* RCTScrollContentView.m */, - 46EB2E00013460 /* RCTScrollContentViewManager.h */, - 46EB2E00013470 /* RCTScrollContentViewManager.m */, - 46EB2E00013480 /* RCTScrollEvent.h */, - 46EB2E00013490 /* RCTScrollEvent.m */, - 46EB2E000134A0 /* RCTScrollView.h */, - 46EB2E000134B0 /* RCTScrollView.m */, - 46EB2E000134C0 /* RCTScrollViewManager.h */, - 46EB2E000134D0 /* RCTScrollViewManager.m */, + 46EB2E00013290 /* RCTScrollableProtocol.h */, + 46EB2E000132A0 /* RCTScrollContentShadowView.h */, + 46EB2E000132B0 /* RCTScrollContentShadowView.m */, + 46EB2E000132C0 /* RCTScrollContentView.h */, + 46EB2E000132D0 /* RCTScrollContentView.m */, + 46EB2E000132E0 /* RCTScrollContentViewManager.h */, + 46EB2E000132F0 /* RCTScrollContentViewManager.m */, + 46EB2E00013300 /* RCTScrollEvent.h */, + 46EB2E00013310 /* RCTScrollEvent.m */, + 46EB2E00013320 /* RCTScrollView.h */, + 46EB2E00013330 /* RCTScrollView.m */, + 46EB2E00013340 /* RCTScrollViewManager.h */, + 46EB2E00013350 /* RCTScrollViewManager.m */, ); + name = ScrollView; path = ScrollView; sourceTree = ""; }; - 46EB2E00013510 /* DevSupport */ = { + 46EB2E00013390 /* DevSupport */ = { isa = PBXGroup; children = ( - 46EB2E00013520 /* DevSupport */, - 46EB2E000135C0 /* Inspector */, + 46EB2E000133A0 /* DevSupport */, + 46EB2E00013440 /* Inspector */, ); name = DevSupport; sourceTree = ""; }; - 46EB2E00013520 /* DevSupport */ = { + 46EB2E000133A0 /* DevSupport */ = { isa = PBXGroup; children = ( - 46EB2E00013530 /* RCTDevLoadingViewProtocol.h */, - 46EB2E00013540 /* RCTDevLoadingViewSetEnabled.h */, - 46EB2E00013550 /* RCTDevLoadingViewSetEnabled.m */, - 46EB2E00013560 /* RCTInspectorDevServerHelper.h */, - 46EB2E00013570 /* RCTInspectorDevServerHelper.mm */, - 46EB2E00013580 /* RCTPackagerClient.h */, - 46EB2E00013590 /* RCTPackagerClient.m */, - 46EB2E000135A0 /* RCTPackagerConnection.h */, - 46EB2E000135B0 /* RCTPackagerConnection.mm */, + 46EB2E000133B0 /* RCTDevLoadingViewProtocol.h */, + 46EB2E000133C0 /* RCTDevLoadingViewSetEnabled.h */, + 46EB2E000133D0 /* RCTDevLoadingViewSetEnabled.m */, + 46EB2E000133E0 /* RCTInspectorDevServerHelper.h */, + 46EB2E000133F0 /* RCTInspectorDevServerHelper.mm */, + 46EB2E00013400 /* RCTPackagerClient.h */, + 46EB2E00013410 /* RCTPackagerClient.m */, + 46EB2E00013420 /* RCTPackagerConnection.h */, + 46EB2E00013430 /* RCTPackagerConnection.mm */, ); name = DevSupport; path = React/DevSupport; sourceTree = ""; }; - 46EB2E000135C0 /* Inspector */ = { + 46EB2E00013440 /* Inspector */ = { isa = PBXGroup; children = ( - 46EB2E000135D0 /* RCTInspector.h */, - 46EB2E000135E0 /* RCTInspector.mm */, - 46EB2E000135F0 /* RCTInspectorPackagerConnection.h */, - 46EB2E00013600 /* RCTInspectorPackagerConnection.m */, + 46EB2E00013450 /* RCTInspector.h */, + 46EB2E00013460 /* RCTInspector.mm */, + 46EB2E00013470 /* RCTInspectorPackagerConnection.h */, + 46EB2E00013480 /* RCTInspectorPackagerConnection.m */, ); name = Inspector; path = React/Inspector; sourceTree = ""; }; - 46EB2E00013610 /* RCTAnimationHeaders */ = { + 46EB2E00013490 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 46EB2E00013770 /* RCTAnimationPlugins.h */, - 46EB2E00013780 /* RCTAnimationUtils.h */, - 46EB2E00013790 /* RCTNativeAnimatedModule.h */, - 46EB2E000137A0 /* RCTNativeAnimatedNodesManager.h */, - 46EB2E000137B0 /* RCTNativeAnimatedTurboModule.h */, - 46EB2E00013620 /* Drivers */, - 46EB2E00013680 /* Nodes */, + 46EB2E000135F0 /* RCTAnimationPlugins.h */, + 46EB2E00013600 /* RCTAnimationUtils.h */, + 46EB2E00013610 /* RCTNativeAnimatedModule.h */, + 46EB2E00013620 /* RCTNativeAnimatedNodesManager.h */, + 46EB2E00013630 /* RCTNativeAnimatedTurboModule.h */, + 46EB2E000134A0 /* Drivers */, + 46EB2E00013500 /* Nodes */, ); name = RCTAnimationHeaders; sourceTree = ""; }; - 46EB2E00013620 /* Drivers */ = { + 46EB2E000134A0 /* Drivers */ = { isa = PBXGroup; children = ( - 46EB2E00013630 /* RCTAnimationDriver.h */, - 46EB2E00013640 /* RCTDecayAnimation.h */, - 46EB2E00013650 /* RCTEventAnimation.h */, - 46EB2E00013660 /* RCTFrameAnimation.h */, - 46EB2E00013670 /* RCTSpringAnimation.h */, + 46EB2E000134B0 /* RCTAnimationDriver.h */, + 46EB2E000134C0 /* RCTDecayAnimation.h */, + 46EB2E000134D0 /* RCTEventAnimation.h */, + 46EB2E000134E0 /* RCTFrameAnimation.h */, + 46EB2E000134F0 /* RCTSpringAnimation.h */, ); name = Drivers; path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - 46EB2E00013680 /* Nodes */ = { + 46EB2E00013500 /* Nodes */ = { isa = PBXGroup; children = ( - 46EB2E00013690 /* RCTAdditionAnimatedNode.h */, - 46EB2E000136A0 /* RCTAnimatedNode.h */, - 46EB2E000136B0 /* RCTColorAnimatedNode.h */, - 46EB2E000136C0 /* RCTDiffClampAnimatedNode.h */, - 46EB2E000136D0 /* RCTDivisionAnimatedNode.h */, - 46EB2E000136E0 /* RCTInterpolationAnimatedNode.h */, - 46EB2E000136F0 /* RCTModuloAnimatedNode.h */, - 46EB2E00013700 /* RCTMultiplicationAnimatedNode.h */, - 46EB2E00013710 /* RCTPropsAnimatedNode.h */, - 46EB2E00013720 /* RCTStyleAnimatedNode.h */, - 46EB2E00013730 /* RCTSubtractionAnimatedNode.h */, - 46EB2E00013740 /* RCTTrackingAnimatedNode.h */, - 46EB2E00013750 /* RCTTransformAnimatedNode.h */, - 46EB2E00013760 /* RCTValueAnimatedNode.h */, + 46EB2E00013510 /* RCTAdditionAnimatedNode.h */, + 46EB2E00013520 /* RCTAnimatedNode.h */, + 46EB2E00013530 /* RCTColorAnimatedNode.h */, + 46EB2E00013540 /* RCTDiffClampAnimatedNode.h */, + 46EB2E00013550 /* RCTDivisionAnimatedNode.h */, + 46EB2E00013560 /* RCTInterpolationAnimatedNode.h */, + 46EB2E00013570 /* RCTModuloAnimatedNode.h */, + 46EB2E00013580 /* RCTMultiplicationAnimatedNode.h */, + 46EB2E00013590 /* RCTPropsAnimatedNode.h */, + 46EB2E000135A0 /* RCTStyleAnimatedNode.h */, + 46EB2E000135B0 /* RCTSubtractionAnimatedNode.h */, + 46EB2E000135C0 /* RCTTrackingAnimatedNode.h */, + 46EB2E000135D0 /* RCTTransformAnimatedNode.h */, + 46EB2E000135E0 /* RCTValueAnimatedNode.h */, ); name = Nodes; path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 46EB2E000137C0 /* RCTBlobHeaders */ = { + 46EB2E00013640 /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 46EB2E000137D0 /* RCTBlobManager.h */, - 46EB2E000137E0 /* RCTFileReaderModule.h */, + 46EB2E00013650 /* RCTBlobManager.h */, + 46EB2E00013660 /* RCTFileReaderModule.h */, ); name = RCTBlobHeaders; sourceTree = ""; }; - 46EB2E000137F0 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - 46EB2E00013800 /* RCTAnimatedImage.h */, - 46EB2E00013810 /* RCTDisplayWeakRefreshable.h */, - 46EB2E00013820 /* RCTGIFImageDecoder.h */, - 46EB2E00013830 /* RCTImageBlurUtils.h */, - 46EB2E00013840 /* RCTImageCache.h */, - 46EB2E00013850 /* RCTImageDataDecoder.h */, - 46EB2E00013860 /* RCTImageEditingManager.h */, - 46EB2E00013870 /* RCTImageLoader.h */, - 46EB2E00013880 /* RCTImageLoaderLoggable.h */, - 46EB2E00013890 /* RCTImageLoaderProtocol.h */, - 46EB2E000138A0 /* RCTImageLoaderWithAttributionProtocol.h */, - 46EB2E000138B0 /* RCTImagePlugins.h */, - 46EB2E000138C0 /* RCTImageShadowView.h */, - 46EB2E000138D0 /* RCTImageStoreManager.h */, - 46EB2E000138E0 /* RCTImageURLLoader.h */, - 46EB2E000138F0 /* RCTImageURLLoaderWithAttribution.h */, - 46EB2E00013900 /* RCTImageUtils.h */, - 46EB2E00013910 /* RCTImageView.h */, - 46EB2E00013920 /* RCTImageViewManager.h */, - 46EB2E00013930 /* RCTLocalAssetImageLoader.h */, - 46EB2E00013940 /* RCTResizeMode.h */, - 46EB2E00013950 /* RCTUIImageViewAnimated.h */, + 46EB2E00013670 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 46EB2E00013680 /* RCTAnimatedImage.h */, + 46EB2E00013690 /* RCTDisplayWeakRefreshable.h */, + 46EB2E000136A0 /* RCTGIFImageDecoder.h */, + 46EB2E000136B0 /* RCTImageBlurUtils.h */, + 46EB2E000136C0 /* RCTImageCache.h */, + 46EB2E000136D0 /* RCTImageDataDecoder.h */, + 46EB2E000136E0 /* RCTImageEditingManager.h */, + 46EB2E000136F0 /* RCTImageLoader.h */, + 46EB2E00013700 /* RCTImageLoaderLoggable.h */, + 46EB2E00013710 /* RCTImageLoaderProtocol.h */, + 46EB2E00013720 /* RCTImageLoaderWithAttributionProtocol.h */, + 46EB2E00013730 /* RCTImagePlugins.h */, + 46EB2E00013740 /* RCTImageShadowView.h */, + 46EB2E00013750 /* RCTImageStoreManager.h */, + 46EB2E00013760 /* RCTImageURLLoader.h */, + 46EB2E00013770 /* RCTImageURLLoaderWithAttribution.h */, + 46EB2E00013780 /* RCTImageUtils.h */, + 46EB2E00013790 /* RCTImageView.h */, + 46EB2E000137A0 /* RCTImageViewManager.h */, + 46EB2E000137B0 /* RCTLocalAssetImageLoader.h */, + 46EB2E000137C0 /* RCTResizeMode.h */, + 46EB2E000137D0 /* RCTUIImageViewAnimated.h */, ); name = RCTImageHeaders; sourceTree = ""; }; - 46EB2E00013960 /* RCTLinkingHeaders */ = { + 46EB2E000137E0 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 46EB2E00013970 /* RCTLinkingManager.h */, - 46EB2E00013980 /* RCTLinkingPlugins.h */, + 46EB2E000137F0 /* RCTLinkingManager.h */, + 46EB2E00013800 /* RCTLinkingPlugins.h */, ); name = RCTLinkingHeaders; sourceTree = ""; }; - 46EB2E00013990 /* RCTNetworkHeaders */ = { + 46EB2E00013810 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 46EB2E000139A0 /* RCTDataRequestHandler.h */, - 46EB2E000139B0 /* RCTFileRequestHandler.h */, - 46EB2E000139C0 /* RCTHTTPRequestHandler.h */, - 46EB2E000139D0 /* RCTNetworking.h */, - 46EB2E000139E0 /* RCTNetworkPlugins.h */, - 46EB2E000139F0 /* RCTNetworkTask.h */, + 46EB2E00013820 /* RCTDataRequestHandler.h */, + 46EB2E00013830 /* RCTFileRequestHandler.h */, + 46EB2E00013840 /* RCTHTTPRequestHandler.h */, + 46EB2E00013850 /* RCTNetworking.h */, + 46EB2E00013860 /* RCTNetworkPlugins.h */, + 46EB2E00013870 /* RCTNetworkTask.h */, ); name = RCTNetworkHeaders; sourceTree = ""; }; - 46EB2E00013A00 /* RCTSettingsHeaders */ = { + 46EB2E00013880 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 46EB2E00013A10 /* RCTSettingsManager.h */, - 46EB2E00013A20 /* RCTSettingsPlugins.h */, + 46EB2E00013890 /* RCTSettingsManager.h */, + 46EB2E000138A0 /* RCTSettingsPlugins.h */, ); name = RCTSettingsHeaders; sourceTree = ""; }; - 46EB2E00013A30 /* RCTTextHeaders */ = { + 46EB2E000138B0 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 46EB2E00013AA0 /* RCTConvert+Text.h */, - 46EB2E00013AB0 /* RCTTextAttributes.h */, - 46EB2E00013AC0 /* RCTTextTransform.h */, - 46EB2E00013A40 /* BaseText */, - 46EB2E00013A70 /* RawText */, - 46EB2E00013AD0 /* Text */, - 46EB2E00013B20 /* TextInput */, - 46EB2E00013C60 /* VirtualText */, + 46EB2E00013920 /* RCTConvert+Text.h */, + 46EB2E00013930 /* RCTTextAttributes.h */, + 46EB2E00013940 /* RCTTextTransform.h */, + 46EB2E000138C0 /* BaseText */, + 46EB2E000138F0 /* RawText */, + 46EB2E00013950 /* Text */, + 46EB2E000139A0 /* TextInput */, + 46EB2E00013AE0 /* VirtualText */, ); name = RCTTextHeaders; sourceTree = ""; }; - 46EB2E00013A40 /* BaseText */ = { + 46EB2E000138C0 /* BaseText */ = { isa = PBXGroup; children = ( - 46EB2E00013A50 /* RCTBaseTextShadowView.h */, - 46EB2E00013A60 /* RCTBaseTextViewManager.h */, + 46EB2E000138D0 /* RCTBaseTextShadowView.h */, + 46EB2E000138E0 /* RCTBaseTextViewManager.h */, ); name = BaseText; path = Libraries/Text/BaseText; sourceTree = ""; }; - 46EB2E00013A70 /* RawText */ = { + 46EB2E000138F0 /* RawText */ = { isa = PBXGroup; children = ( - 46EB2E00013A80 /* RCTRawTextShadowView.h */, - 46EB2E00013A90 /* RCTRawTextViewManager.h */, + 46EB2E00013900 /* RCTRawTextShadowView.h */, + 46EB2E00013910 /* RCTRawTextViewManager.h */, ); name = RawText; path = Libraries/Text/RawText; sourceTree = ""; }; - 46EB2E00013AD0 /* Text */ = { + 46EB2E00013950 /* Text */ = { isa = PBXGroup; children = ( - 46EB2E00013AE0 /* NSTextStorage+FontScaling.h */, - 46EB2E00013AF0 /* RCTTextShadowView.h */, - 46EB2E00013B00 /* RCTTextView.h */, - 46EB2E00013B10 /* RCTTextViewManager.h */, + 46EB2E00013960 /* NSTextStorage+FontScaling.h */, + 46EB2E00013970 /* RCTTextShadowView.h */, + 46EB2E00013980 /* RCTTextView.h */, + 46EB2E00013990 /* RCTTextViewManager.h */, ); name = Text; path = Libraries/Text/Text; sourceTree = ""; }; - 46EB2E00013B20 /* TextInput */ = { + 46EB2E000139A0 /* TextInput */ = { isa = PBXGroup; children = ( - 46EB2E00013B70 /* RCTBackedTextInputDelegate.h */, - 46EB2E00013B80 /* RCTBackedTextInputDelegateAdapter.h */, - 46EB2E00013B90 /* RCTBackedTextInputViewProtocol.h */, - 46EB2E00013BA0 /* RCTBaseTextInputShadowView.h */, - 46EB2E00013BB0 /* RCTBaseTextInputView.h */, - 46EB2E00013BC0 /* RCTBaseTextInputViewManager.h */, - 46EB2E00013BD0 /* RCTInputAccessoryShadowView.h */, - 46EB2E00013BE0 /* RCTInputAccessoryView.h */, - 46EB2E00013BF0 /* RCTInputAccessoryViewContent.h */, - 46EB2E00013C00 /* RCTInputAccessoryViewManager.h */, - 46EB2E00013C10 /* RCTTextSelection.h */, - 46EB2E00013B30 /* Multiline */, - 46EB2E00013C20 /* Singleline */, + 46EB2E000139F0 /* RCTBackedTextInputDelegate.h */, + 46EB2E00013A00 /* RCTBackedTextInputDelegateAdapter.h */, + 46EB2E00013A10 /* RCTBackedTextInputViewProtocol.h */, + 46EB2E00013A20 /* RCTBaseTextInputShadowView.h */, + 46EB2E00013A30 /* RCTBaseTextInputView.h */, + 46EB2E00013A40 /* RCTBaseTextInputViewManager.h */, + 46EB2E00013A50 /* RCTInputAccessoryShadowView.h */, + 46EB2E00013A60 /* RCTInputAccessoryView.h */, + 46EB2E00013A70 /* RCTInputAccessoryViewContent.h */, + 46EB2E00013A80 /* RCTInputAccessoryViewManager.h */, + 46EB2E00013A90 /* RCTTextSelection.h */, + 46EB2E000139B0 /* Multiline */, + 46EB2E00013AA0 /* Singleline */, ); name = TextInput; path = Libraries/Text/TextInput; sourceTree = ""; }; - 46EB2E00013B30 /* Multiline */ = { + 46EB2E000139B0 /* Multiline */ = { isa = PBXGroup; children = ( - 46EB2E00013B40 /* RCTMultilineTextInputView.h */, - 46EB2E00013B50 /* RCTMultilineTextInputViewManager.h */, - 46EB2E00013B60 /* RCTUITextView.h */, + 46EB2E000139C0 /* RCTMultilineTextInputView.h */, + 46EB2E000139D0 /* RCTMultilineTextInputViewManager.h */, + 46EB2E000139E0 /* RCTUITextView.h */, ); + name = Multiline; path = Multiline; sourceTree = ""; }; - 46EB2E00013C20 /* Singleline */ = { + 46EB2E00013AA0 /* Singleline */ = { isa = PBXGroup; children = ( - 46EB2E00013C30 /* RCTSinglelineTextInputView.h */, - 46EB2E00013C40 /* RCTSinglelineTextInputViewManager.h */, - 46EB2E00013C50 /* RCTUITextField.h */, + 46EB2E00013AB0 /* RCTSinglelineTextInputView.h */, + 46EB2E00013AC0 /* RCTSinglelineTextInputViewManager.h */, + 46EB2E00013AD0 /* RCTUITextField.h */, ); + name = Singleline; path = Singleline; sourceTree = ""; }; - 46EB2E00013C60 /* VirtualText */ = { + 46EB2E00013AE0 /* VirtualText */ = { isa = PBXGroup; children = ( - 46EB2E00013C70 /* RCTVirtualTextShadowView.h */, - 46EB2E00013C80 /* RCTVirtualTextViewManager.h */, + 46EB2E00013AF0 /* RCTVirtualTextShadowView.h */, + 46EB2E00013B00 /* RCTVirtualTextViewManager.h */, ); name = VirtualText; path = Libraries/Text/VirtualText; sourceTree = ""; }; - 46EB2E00013C90 /* RCTVibrationHeaders */ = { + 46EB2E00013B10 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 46EB2E00013CA0 /* RCTVibration.h */, - 46EB2E00013CB0 /* RCTVibrationPlugins.h */, + 46EB2E00013B20 /* RCTVibration.h */, + 46EB2E00013B30 /* RCTVibrationPlugins.h */, ); name = RCTVibrationHeaders; sourceTree = ""; }; - 46EB2E00013CC0 /* RCTWebSocket */ = { + 46EB2E00013B40 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 46EB2E00013CD0 /* RCTReconnectingWebSocket.h */, - 46EB2E00013CE0 /* RCTReconnectingWebSocket.m */, - 46EB2E00013CF0 /* RCTSRWebSocket.h */, - 46EB2E00013D00 /* RCTSRWebSocket.m */, + 46EB2E00013B50 /* RCTReconnectingWebSocket.h */, + 46EB2E00013B60 /* RCTReconnectingWebSocket.m */, + 46EB2E00013B70 /* RCTSRWebSocket.h */, + 46EB2E00013B80 /* RCTSRWebSocket.m */, ); name = RCTWebSocket; sourceTree = ""; }; - 46EB2E00013EE0 /* Drivers */ = { + 46EB2E00013D60 /* Drivers */ = { isa = PBXGroup; children = ( - 46EB2E00013EF0 /* RCTDecayAnimation.m */, - 46EB2E00013F00 /* RCTEventAnimation.m */, - 46EB2E00013F10 /* RCTFrameAnimation.m */, - 46EB2E00013F20 /* RCTSpringAnimation.m */, + 46EB2E00013D70 /* RCTDecayAnimation.m */, + 46EB2E00013D80 /* RCTEventAnimation.m */, + 46EB2E00013D90 /* RCTFrameAnimation.m */, + 46EB2E00013DA0 /* RCTSpringAnimation.m */, ); + name = Drivers; path = Drivers; sourceTree = ""; }; - 46EB2E00013F30 /* Nodes */ = { + 46EB2E00013DB0 /* Nodes */ = { isa = PBXGroup; children = ( - 46EB2E00013F40 /* RCTAdditionAnimatedNode.m */, - 46EB2E00013F50 /* RCTAnimatedNode.m */, - 46EB2E00013F60 /* RCTColorAnimatedNode.m */, - 46EB2E00013F70 /* RCTDiffClampAnimatedNode.m */, - 46EB2E00013F80 /* RCTDivisionAnimatedNode.m */, - 46EB2E00013F90 /* RCTInterpolationAnimatedNode.m */, - 46EB2E00013FA0 /* RCTModuloAnimatedNode.m */, - 46EB2E00013FB0 /* RCTMultiplicationAnimatedNode.m */, - 46EB2E00013FC0 /* RCTPropsAnimatedNode.m */, - 46EB2E00013FD0 /* RCTStyleAnimatedNode.m */, - 46EB2E00013FE0 /* RCTSubtractionAnimatedNode.m */, - 46EB2E00013FF0 /* RCTTrackingAnimatedNode.m */, - 46EB2E00014000 /* RCTTransformAnimatedNode.m */, - 46EB2E00014010 /* RCTValueAnimatedNode.m */, + 46EB2E00013DC0 /* RCTAdditionAnimatedNode.m */, + 46EB2E00013DD0 /* RCTAnimatedNode.m */, + 46EB2E00013DE0 /* RCTColorAnimatedNode.m */, + 46EB2E00013DF0 /* RCTDiffClampAnimatedNode.m */, + 46EB2E00013E00 /* RCTDivisionAnimatedNode.m */, + 46EB2E00013E10 /* RCTInterpolationAnimatedNode.m */, + 46EB2E00013E20 /* RCTModuloAnimatedNode.m */, + 46EB2E00013E30 /* RCTMultiplicationAnimatedNode.m */, + 46EB2E00013E40 /* RCTPropsAnimatedNode.m */, + 46EB2E00013E50 /* RCTStyleAnimatedNode.m */, + 46EB2E00013E60 /* RCTSubtractionAnimatedNode.m */, + 46EB2E00013E70 /* RCTTrackingAnimatedNode.m */, + 46EB2E00013E80 /* RCTTransformAnimatedNode.m */, + 46EB2E00013E90 /* RCTValueAnimatedNode.m */, ); + name = Nodes; path = Nodes; sourceTree = ""; }; - 46EB2E00014280 /* BaseText */ = { + 46EB2E00014100 /* BaseText */ = { isa = PBXGroup; children = ( - 46EB2E00014290 /* RCTBaseTextShadowView.m */, - 46EB2E000142A0 /* RCTBaseTextViewManager.m */, + 46EB2E00014110 /* RCTBaseTextShadowView.m */, + 46EB2E00014120 /* RCTBaseTextViewManager.m */, ); + name = BaseText; path = BaseText; sourceTree = ""; }; - 46EB2E000142B0 /* RawText */ = { + 46EB2E00014130 /* RawText */ = { isa = PBXGroup; children = ( - 46EB2E000142C0 /* RCTRawTextShadowView.m */, - 46EB2E000142D0 /* RCTRawTextViewManager.m */, + 46EB2E00014140 /* RCTRawTextShadowView.m */, + 46EB2E00014150 /* RCTRawTextViewManager.m */, ); + name = RawText; path = RawText; sourceTree = ""; }; - 46EB2E00014300 /* Text */ = { + 46EB2E00014180 /* Text */ = { isa = PBXGroup; children = ( - 46EB2E00014310 /* NSTextStorage+FontScaling.m */, - 46EB2E00014320 /* RCTTextShadowView.m */, - 46EB2E00014330 /* RCTTextView.m */, - 46EB2E00014340 /* RCTTextViewManager.m */, + 46EB2E00014190 /* NSTextStorage+FontScaling.m */, + 46EB2E000141A0 /* RCTTextShadowView.m */, + 46EB2E000141B0 /* RCTTextView.m */, + 46EB2E000141C0 /* RCTTextViewManager.m */, ); + name = Text; path = Text; sourceTree = ""; }; - 46EB2E00014350 /* TextInput */ = { + 46EB2E000141D0 /* TextInput */ = { isa = PBXGroup; children = ( - 46EB2E000143A0 /* RCTBackedTextInputDelegateAdapter.m */, - 46EB2E000143B0 /* RCTBaseTextInputShadowView.m */, - 46EB2E000143C0 /* RCTBaseTextInputView.m */, - 46EB2E000143D0 /* RCTBaseTextInputViewManager.m */, - 46EB2E000143E0 /* RCTInputAccessoryShadowView.m */, - 46EB2E000143F0 /* RCTInputAccessoryView.m */, - 46EB2E00014400 /* RCTInputAccessoryViewContent.m */, - 46EB2E00014410 /* RCTInputAccessoryViewManager.m */, - 46EB2E00014420 /* RCTTextSelection.m */, - 46EB2E00014360 /* Multiline */, - 46EB2E00014430 /* Singleline */, + 46EB2E00014220 /* RCTBackedTextInputDelegateAdapter.m */, + 46EB2E00014230 /* RCTBaseTextInputShadowView.m */, + 46EB2E00014240 /* RCTBaseTextInputView.m */, + 46EB2E00014250 /* RCTBaseTextInputViewManager.m */, + 46EB2E00014260 /* RCTInputAccessoryShadowView.m */, + 46EB2E00014270 /* RCTInputAccessoryView.m */, + 46EB2E00014280 /* RCTInputAccessoryViewContent.m */, + 46EB2E00014290 /* RCTInputAccessoryViewManager.m */, + 46EB2E000142A0 /* RCTTextSelection.m */, + 46EB2E000141E0 /* Multiline */, + 46EB2E000142B0 /* Singleline */, ); + name = TextInput; path = TextInput; sourceTree = ""; }; - 46EB2E00014360 /* Multiline */ = { + 46EB2E000141E0 /* Multiline */ = { isa = PBXGroup; children = ( - 46EB2E00014370 /* RCTMultilineTextInputView.m */, - 46EB2E00014380 /* RCTMultilineTextInputViewManager.m */, - 46EB2E00014390 /* RCTUITextView.m */, + 46EB2E000141F0 /* RCTMultilineTextInputView.m */, + 46EB2E00014200 /* RCTMultilineTextInputViewManager.m */, + 46EB2E00014210 /* RCTUITextView.m */, ); + name = Multiline; path = Multiline; sourceTree = ""; }; - 46EB2E00014430 /* Singleline */ = { + 46EB2E000142B0 /* Singleline */ = { isa = PBXGroup; children = ( - 46EB2E00014440 /* RCTSinglelineTextInputView.m */, - 46EB2E00014450 /* RCTSinglelineTextInputViewManager.m */, - 46EB2E00014460 /* RCTUITextField.m */, + 46EB2E000142C0 /* RCTSinglelineTextInputView.m */, + 46EB2E000142D0 /* RCTSinglelineTextInputViewManager.m */, + 46EB2E000142E0 /* RCTUITextField.m */, ); + name = Singleline; path = Singleline; sourceTree = ""; }; - 46EB2E00014470 /* VirtualText */ = { + 46EB2E000142F0 /* VirtualText */ = { isa = PBXGroup; children = ( - 46EB2E00014480 /* RCTVirtualTextShadowView.m */, - 46EB2E00014490 /* RCTVirtualTextViewManager.m */, + 46EB2E00014300 /* RCTVirtualTextShadowView.m */, + 46EB2E00014310 /* RCTVirtualTextViewManager.m */, ); + name = VirtualText; path = VirtualText; sourceTree = ""; }; - 46EB2E000147E0 /* executor */ = { + 46EB2E00014660 /* executor */ = { isa = PBXGroup; children = ( - 46EB2E000147F0 /* HermesExecutorFactory.cpp */, - 46EB2E00014800 /* HermesExecutorFactory.h */, - 46EB2E00014810 /* JSITracing.cpp */, - 46EB2E00014820 /* JSITracing.h */, + 46EB2E00014670 /* HermesExecutorFactory.cpp */, + 46EB2E00014680 /* HermesExecutorFactory.h */, + 46EB2E00014690 /* JSITracing.cpp */, + 46EB2E000146A0 /* JSITracing.h */, ); + name = executor; path = executor; sourceTree = ""; }; - 46EB2E00014830 /* inspector */ = { + 46EB2E000146B0 /* inspector */ = { isa = PBXGroup; children = ( - 46EB2E00014840 /* AsyncPauseState.h */, - 46EB2E00014850 /* Exceptions.h */, - 46EB2E00014860 /* Inspector.cpp */, - 46EB2E00014870 /* Inspector.h */, - 46EB2E00014880 /* InspectorState.cpp */, - 46EB2E00014890 /* InspectorState.h */, - 46EB2E000148A0 /* RuntimeAdapter.cpp */, - 46EB2E000148B0 /* RuntimeAdapter.h */, - 46EB2E000148C0 /* chrome */, - 46EB2E000149D0 /* detail */, + 46EB2E000146C0 /* AsyncPauseState.h */, + 46EB2E000146D0 /* Exceptions.h */, + 46EB2E000146E0 /* Inspector.cpp */, + 46EB2E000146F0 /* Inspector.h */, + 46EB2E00014700 /* InspectorState.cpp */, + 46EB2E00014710 /* InspectorState.h */, + 46EB2E00014720 /* RuntimeAdapter.cpp */, + 46EB2E00014730 /* RuntimeAdapter.h */, + 46EB2E00014740 /* chrome */, + 46EB2E00014850 /* detail */, ); + name = inspector; path = inspector; sourceTree = ""; }; - 46EB2E000148C0 /* chrome */ = { + 46EB2E00014740 /* chrome */ = { isa = PBXGroup; children = ( - 46EB2E000148D0 /* AutoAttachUtils.cpp */, - 46EB2E000148E0 /* AutoAttachUtils.h */, - 46EB2E000148F0 /* Connection.cpp */, - 46EB2E00014900 /* Connection.h */, - 46EB2E00014910 /* ConnectionDemux.cpp */, - 46EB2E00014920 /* ConnectionDemux.h */, - 46EB2E00014930 /* MessageConverters.cpp */, - 46EB2E00014940 /* MessageConverters.h */, - 46EB2E00014950 /* MessageInterfaces.h */, - 46EB2E00014960 /* MessageTypes.cpp */, - 46EB2E00014970 /* MessageTypes.h */, - 46EB2E00014980 /* MessageTypesInlines.h */, - 46EB2E00014990 /* Registration.cpp */, - 46EB2E000149A0 /* Registration.h */, - 46EB2E000149B0 /* RemoteObjectsTable.cpp */, - 46EB2E000149C0 /* RemoteObjectsTable.h */, + 46EB2E00014750 /* AutoAttachUtils.cpp */, + 46EB2E00014760 /* AutoAttachUtils.h */, + 46EB2E00014770 /* Connection.cpp */, + 46EB2E00014780 /* Connection.h */, + 46EB2E00014790 /* ConnectionDemux.cpp */, + 46EB2E000147A0 /* ConnectionDemux.h */, + 46EB2E000147B0 /* MessageConverters.cpp */, + 46EB2E000147C0 /* MessageConverters.h */, + 46EB2E000147D0 /* MessageInterfaces.h */, + 46EB2E000147E0 /* MessageTypes.cpp */, + 46EB2E000147F0 /* MessageTypes.h */, + 46EB2E00014800 /* MessageTypesInlines.h */, + 46EB2E00014810 /* Registration.cpp */, + 46EB2E00014820 /* Registration.h */, + 46EB2E00014830 /* RemoteObjectsTable.cpp */, + 46EB2E00014840 /* RemoteObjectsTable.h */, ); + name = chrome; path = chrome; sourceTree = ""; }; - 46EB2E000149D0 /* detail */ = { + 46EB2E00014850 /* detail */ = { isa = PBXGroup; children = ( - 46EB2E000149E0 /* CallbackOStream.cpp */, - 46EB2E000149F0 /* CallbackOStream.h */, - 46EB2E00014A00 /* SerialExecutor.cpp */, - 46EB2E00014A10 /* SerialExecutor.h */, - 46EB2E00014A20 /* Thread.cpp */, - 46EB2E00014A30 /* Thread.h */, + 46EB2E00014860 /* CallbackOStream.cpp */, + 46EB2E00014870 /* CallbackOStream.h */, + 46EB2E00014880 /* SerialExecutor.cpp */, + 46EB2E00014890 /* SerialExecutor.h */, + 46EB2E000148A0 /* Thread.cpp */, + 46EB2E000148B0 /* Thread.h */, ); + name = detail; path = detail; sourceTree = ""; }; - 46EB2E00014A60 /* jsi */ = { + 46EB2E000148E0 /* jsi */ = { isa = PBXGroup; children = ( - 46EB2E00014A70 /* decorator.h */, - 46EB2E00014A80 /* instrumentation.h */, - 46EB2E00014AA0 /* jsi.cpp */, - 46EB2E00014AB0 /* jsi.h */, - 46EB2E00014A90 /* jsi-inl.h */, - 46EB2E00014AC0 /* JSIDynamic.cpp */, - 46EB2E00014AD0 /* JSIDynamic.h */, - 46EB2E00014B00 /* jsilib.h */, - 46EB2E00014AE0 /* jsilib-posix.cpp */, - 46EB2E00014AF0 /* jsilib-windows.cpp */, - 46EB2E00014B10 /* threadsafe.h */, + 46EB2E000148F0 /* decorator.h */, + 46EB2E00014900 /* instrumentation.h */, + 46EB2E00014920 /* jsi.cpp */, + 46EB2E00014930 /* jsi.h */, + 46EB2E00014910 /* jsi-inl.h */, + 46EB2E00014940 /* JSIDynamic.cpp */, + 46EB2E00014950 /* JSIDynamic.h */, + 46EB2E00014980 /* jsilib.h */, + 46EB2E00014960 /* jsilib-posix.cpp */, + 46EB2E00014970 /* jsilib-windows.cpp */, + 46EB2E00014990 /* threadsafe.h */, ); + name = jsi; path = jsi; sourceTree = ""; }; - 46EB2E00014BE0 /* turbomodule */ = { + 46EB2E00014A60 /* turbomodule */ = { isa = PBXGroup; children = ( - 46EB2E00014BF0 /* core */, + 46EB2E00014A70 /* core */, ); name = turbomodule; sourceTree = ""; }; - 46EB2E00014BF0 /* core */ = { + 46EB2E00014A70 /* core */ = { isa = PBXGroup; children = ( - 46EB2E00014CC0 /* platform */, - 46EB2E00014C00 /* ReactCommon */, + 46EB2E00014B40 /* platform */, + 46EB2E00014A80 /* ReactCommon */, ); name = core; sourceTree = ""; }; - 46EB2E00014C00 /* ReactCommon */ = { + 46EB2E00014A80 /* ReactCommon */ = { isa = PBXGroup; children = ( - 46EB2E00014C10 /* LongLivedObject.h */, - 46EB2E00014C20 /* TurboCxxModule.cpp */, - 46EB2E00014C30 /* TurboCxxModule.h */, - 46EB2E00014C40 /* TurboModule.cpp */, - 46EB2E00014C50 /* TurboModule.h */, - 46EB2E00014C60 /* TurboModuleBinding.cpp */, - 46EB2E00014C70 /* TurboModuleBinding.h */, - 46EB2E00014C80 /* TurboModulePerfLogger.cpp */, - 46EB2E00014C90 /* TurboModulePerfLogger.h */, - 46EB2E00014CA0 /* TurboModuleUtils.cpp */, - 46EB2E00014CB0 /* TurboModuleUtils.h */, + 46EB2E00014A90 /* LongLivedObject.h */, + 46EB2E00014AA0 /* TurboCxxModule.cpp */, + 46EB2E00014AB0 /* TurboCxxModule.h */, + 46EB2E00014AC0 /* TurboModule.cpp */, + 46EB2E00014AD0 /* TurboModule.h */, + 46EB2E00014AE0 /* TurboModuleBinding.cpp */, + 46EB2E00014AF0 /* TurboModuleBinding.h */, + 46EB2E00014B00 /* TurboModulePerfLogger.cpp */, + 46EB2E00014B10 /* TurboModulePerfLogger.h */, + 46EB2E00014B20 /* TurboModuleUtils.cpp */, + 46EB2E00014B30 /* TurboModuleUtils.h */, ); name = ReactCommon; path = react/nativemodule/core/ReactCommon; sourceTree = ""; }; - 46EB2E00014CC0 /* platform */ = { + 46EB2E00014B40 /* platform */ = { isa = PBXGroup; children = ( - 46EB2E00014CD0 /* ios */, + 46EB2E00014B50 /* ios */, ); name = platform; path = react/nativemodule/core/platform; sourceTree = ""; }; - 46EB2E00014CD0 /* ios */ = { + 46EB2E00014B50 /* ios */ = { isa = PBXGroup; children = ( - 46EB2E00014CE0 /* RCTBlockGuard.h */, - 46EB2E00014CF0 /* RCTBlockGuard.mm */, - 46EB2E00014D00 /* RCTTurboModule.h */, - 46EB2E00014D10 /* RCTTurboModule.mm */, - 46EB2E00014D20 /* RCTTurboModuleManager.h */, - 46EB2E00014D30 /* RCTTurboModuleManager.mm */, + 46EB2E00014B60 /* RCTBlockGuard.h */, + 46EB2E00014B70 /* RCTBlockGuard.mm */, + 46EB2E00014B80 /* RCTTurboModule.h */, + 46EB2E00014B90 /* RCTTurboModule.mm */, + 46EB2E00014BA0 /* RCTTurboModuleManager.h */, + 46EB2E00014BB0 /* RCTTurboModuleManager.mm */, ); + name = ios; path = ios; sourceTree = ""; }; - 46EB2E00014D40 /* Core */ = { - isa = PBXGroup; - children = ( - 46EB2E000154A0 /* NSBezierPath+SDRoundedCorners.h */, - 46EB2E000154B0 /* NSBezierPath+SDRoundedCorners.m */, - 46EB2E00014D50 /* NSButton+WebCache.h */, - 46EB2E00014D60 /* NSButton+WebCache.m */, - 46EB2E00014D70 /* NSData+ImageContentType.h */, - 46EB2E00014D80 /* NSData+ImageContentType.m */, - 46EB2E00014D90 /* NSImage+Compatibility.h */, - 46EB2E00014DA0 /* NSImage+Compatibility.m */, - 46EB2E00014DB0 /* SDAnimatedImage.h */, - 46EB2E00014DC0 /* SDAnimatedImage.m */, - 46EB2E00014DD0 /* SDAnimatedImagePlayer.h */, - 46EB2E00014DE0 /* SDAnimatedImagePlayer.m */, - 46EB2E00014DF0 /* SDAnimatedImageRep.h */, - 46EB2E00014E00 /* SDAnimatedImageRep.m */, - 46EB2E00014E30 /* SDAnimatedImageView.h */, - 46EB2E00014E40 /* SDAnimatedImageView.m */, - 46EB2E00014E10 /* SDAnimatedImageView+WebCache.h */, - 46EB2E00014E20 /* SDAnimatedImageView+WebCache.m */, - 46EB2E000154C0 /* SDAssociatedObject.h */, - 46EB2E000154D0 /* SDAssociatedObject.m */, - 46EB2E000154E0 /* SDAsyncBlockOperation.h */, - 46EB2E000154F0 /* SDAsyncBlockOperation.m */, - 46EB2E00015500 /* SDDeviceHelper.h */, - 46EB2E00015510 /* SDDeviceHelper.m */, - 46EB2E00014E50 /* SDDiskCache.h */, - 46EB2E00014E60 /* SDDiskCache.m */, - 46EB2E00015520 /* SDDisplayLink.h */, - 46EB2E00015530 /* SDDisplayLink.m */, - 46EB2E00015540 /* SDFileAttributeHelper.h */, - 46EB2E00015550 /* SDFileAttributeHelper.m */, - 46EB2E00014E70 /* SDGraphicsImageRenderer.h */, - 46EB2E00014E80 /* SDGraphicsImageRenderer.m */, - 46EB2E00014E90 /* SDImageAPNGCoder.h */, - 46EB2E00014EA0 /* SDImageAPNGCoder.m */, - 46EB2E00015560 /* SDImageAssetManager.h */, - 46EB2E00015570 /* SDImageAssetManager.m */, - 46EB2E00014EB0 /* SDImageAWebPCoder.h */, - 46EB2E00014EC0 /* SDImageAWebPCoder.m */, - 46EB2E00014ED0 /* SDImageCache.h */, - 46EB2E00014EE0 /* SDImageCache.m */, - 46EB2E00014EF0 /* SDImageCacheConfig.h */, - 46EB2E00014F00 /* SDImageCacheConfig.m */, - 46EB2E00014F10 /* SDImageCacheDefine.h */, - 46EB2E00014F20 /* SDImageCacheDefine.m */, - 46EB2E00014F30 /* SDImageCachesManager.h */, - 46EB2E00014F40 /* SDImageCachesManager.m */, - 46EB2E00015580 /* SDImageCachesManagerOperation.h */, - 46EB2E00015590 /* SDImageCachesManagerOperation.m */, - 46EB2E00014F50 /* SDImageCoder.h */, - 46EB2E00014F60 /* SDImageCoder.m */, - 46EB2E00014F70 /* SDImageCoderHelper.h */, - 46EB2E00014F80 /* SDImageCoderHelper.m */, - 46EB2E00014F90 /* SDImageCodersManager.h */, - 46EB2E00014FA0 /* SDImageCodersManager.m */, - 46EB2E00014FB0 /* SDImageFrame.h */, - 46EB2E00014FC0 /* SDImageFrame.m */, - 46EB2E00014FD0 /* SDImageGIFCoder.h */, - 46EB2E00014FE0 /* SDImageGIFCoder.m */, - 46EB2E00014FF0 /* SDImageGraphics.h */, - 46EB2E00015000 /* SDImageGraphics.m */, - 46EB2E00015010 /* SDImageHEICCoder.h */, - 46EB2E00015020 /* SDImageHEICCoder.m */, - 46EB2E00015030 /* SDImageIOAnimatedCoder.h */, - 46EB2E00015040 /* SDImageIOAnimatedCoder.m */, - 46EB2E000155A0 /* SDImageIOAnimatedCoderInternal.h */, - 46EB2E00015050 /* SDImageIOCoder.h */, - 46EB2E00015060 /* SDImageIOCoder.m */, - 46EB2E00015070 /* SDImageLoader.h */, - 46EB2E00015080 /* SDImageLoader.m */, - 46EB2E00015090 /* SDImageLoadersManager.h */, - 46EB2E000150A0 /* SDImageLoadersManager.m */, - 46EB2E000150B0 /* SDImageTransformer.h */, - 46EB2E000150C0 /* SDImageTransformer.m */, - 46EB2E000155B0 /* SDInternalMacros.h */, - 46EB2E000155C0 /* SDInternalMacros.m */, - 46EB2E000150D0 /* SDMemoryCache.h */, - 46EB2E000150E0 /* SDMemoryCache.m */, - 46EB2E000155D0 /* SDmetamacros.h */, - 46EB2E000155E0 /* SDWeakProxy.h */, - 46EB2E000155F0 /* SDWeakProxy.m */, - 46EB2E00015490 /* SDWebImage.h */, - 46EB2E000150F0 /* SDWebImageCacheKeyFilter.h */, - 46EB2E00015100 /* SDWebImageCacheKeyFilter.m */, - 46EB2E00015110 /* SDWebImageCacheSerializer.h */, - 46EB2E00015120 /* SDWebImageCacheSerializer.m */, - 46EB2E00015130 /* SDWebImageCompat.h */, - 46EB2E00015140 /* SDWebImageCompat.m */, - 46EB2E00015150 /* SDWebImageDefine.h */, - 46EB2E00015160 /* SDWebImageDefine.m */, - 46EB2E00015170 /* SDWebImageDownloader.h */, - 46EB2E00015180 /* SDWebImageDownloader.m */, - 46EB2E00015190 /* SDWebImageDownloaderConfig.h */, - 46EB2E000151A0 /* SDWebImageDownloaderConfig.m */, - 46EB2E000151B0 /* SDWebImageDownloaderDecryptor.h */, - 46EB2E000151C0 /* SDWebImageDownloaderDecryptor.m */, - 46EB2E000151D0 /* SDWebImageDownloaderOperation.h */, - 46EB2E000151E0 /* SDWebImageDownloaderOperation.m */, - 46EB2E000151F0 /* SDWebImageDownloaderRequestModifier.h */, - 46EB2E00015200 /* SDWebImageDownloaderRequestModifier.m */, - 46EB2E00015210 /* SDWebImageDownloaderResponseModifier.h */, - 46EB2E00015220 /* SDWebImageDownloaderResponseModifier.m */, - 46EB2E00015230 /* SDWebImageError.h */, - 46EB2E00015240 /* SDWebImageError.m */, - 46EB2E00015250 /* SDWebImageIndicator.h */, - 46EB2E00015260 /* SDWebImageIndicator.m */, - 46EB2E00015270 /* SDWebImageManager.h */, - 46EB2E00015280 /* SDWebImageManager.m */, - 46EB2E00015290 /* SDWebImageOperation.h */, - 46EB2E000152A0 /* SDWebImageOperation.m */, - 46EB2E000152B0 /* SDWebImageOptionsProcessor.h */, - 46EB2E000152C0 /* SDWebImageOptionsProcessor.m */, - 46EB2E000152D0 /* SDWebImagePrefetcher.h */, - 46EB2E000152E0 /* SDWebImagePrefetcher.m */, - 46EB2E000152F0 /* SDWebImageTransition.h */, - 46EB2E00015300 /* SDWebImageTransition.m */, - 46EB2E00015600 /* SDWebImageTransitionInternal.h */, - 46EB2E00015310 /* UIButton+WebCache.h */, - 46EB2E00015320 /* UIButton+WebCache.m */, - 46EB2E00015610 /* UIColor+SDHexString.h */, - 46EB2E00015620 /* UIColor+SDHexString.m */, - 46EB2E00015330 /* UIImage+ExtendedCacheData.h */, - 46EB2E00015340 /* UIImage+ExtendedCacheData.m */, - 46EB2E00015350 /* UIImage+ForceDecode.h */, - 46EB2E00015360 /* UIImage+ForceDecode.m */, - 46EB2E00015370 /* UIImage+GIF.h */, - 46EB2E00015380 /* UIImage+GIF.m */, - 46EB2E00015390 /* UIImage+MemoryCacheCost.h */, - 46EB2E000153A0 /* UIImage+MemoryCacheCost.m */, - 46EB2E000153B0 /* UIImage+Metadata.h */, - 46EB2E000153C0 /* UIImage+Metadata.m */, - 46EB2E000153D0 /* UIImage+MultiFormat.h */, - 46EB2E000153E0 /* UIImage+MultiFormat.m */, - 46EB2E000153F0 /* UIImage+Transform.h */, - 46EB2E00015400 /* UIImage+Transform.m */, - 46EB2E00015410 /* UIImageView+HighlightedWebCache.h */, - 46EB2E00015420 /* UIImageView+HighlightedWebCache.m */, - 46EB2E00015430 /* UIImageView+WebCache.h */, - 46EB2E00015440 /* UIImageView+WebCache.m */, - 46EB2E00015450 /* UIView+WebCache.h */, - 46EB2E00015460 /* UIView+WebCache.m */, - 46EB2E00015470 /* UIView+WebCacheOperation.h */, - 46EB2E00015480 /* UIView+WebCacheOperation.m */, + 46EB2E00014BC0 /* Core */ = { + isa = PBXGroup; + children = ( + 46EB2E00015320 /* NSBezierPath+SDRoundedCorners.h */, + 46EB2E00015330 /* NSBezierPath+SDRoundedCorners.m */, + 46EB2E00014BD0 /* NSButton+WebCache.h */, + 46EB2E00014BE0 /* NSButton+WebCache.m */, + 46EB2E00014BF0 /* NSData+ImageContentType.h */, + 46EB2E00014C00 /* NSData+ImageContentType.m */, + 46EB2E00014C10 /* NSImage+Compatibility.h */, + 46EB2E00014C20 /* NSImage+Compatibility.m */, + 46EB2E00014C30 /* SDAnimatedImage.h */, + 46EB2E00014C40 /* SDAnimatedImage.m */, + 46EB2E00014C50 /* SDAnimatedImagePlayer.h */, + 46EB2E00014C60 /* SDAnimatedImagePlayer.m */, + 46EB2E00014C70 /* SDAnimatedImageRep.h */, + 46EB2E00014C80 /* SDAnimatedImageRep.m */, + 46EB2E00014CB0 /* SDAnimatedImageView.h */, + 46EB2E00014CC0 /* SDAnimatedImageView.m */, + 46EB2E00014C90 /* SDAnimatedImageView+WebCache.h */, + 46EB2E00014CA0 /* SDAnimatedImageView+WebCache.m */, + 46EB2E00015340 /* SDAssociatedObject.h */, + 46EB2E00015350 /* SDAssociatedObject.m */, + 46EB2E00015360 /* SDAsyncBlockOperation.h */, + 46EB2E00015370 /* SDAsyncBlockOperation.m */, + 46EB2E00015380 /* SDDeviceHelper.h */, + 46EB2E00015390 /* SDDeviceHelper.m */, + 46EB2E00014CD0 /* SDDiskCache.h */, + 46EB2E00014CE0 /* SDDiskCache.m */, + 46EB2E000153A0 /* SDDisplayLink.h */, + 46EB2E000153B0 /* SDDisplayLink.m */, + 46EB2E000153C0 /* SDFileAttributeHelper.h */, + 46EB2E000153D0 /* SDFileAttributeHelper.m */, + 46EB2E00014CF0 /* SDGraphicsImageRenderer.h */, + 46EB2E00014D00 /* SDGraphicsImageRenderer.m */, + 46EB2E00014D10 /* SDImageAPNGCoder.h */, + 46EB2E00014D20 /* SDImageAPNGCoder.m */, + 46EB2E000153E0 /* SDImageAssetManager.h */, + 46EB2E000153F0 /* SDImageAssetManager.m */, + 46EB2E00014D30 /* SDImageAWebPCoder.h */, + 46EB2E00014D40 /* SDImageAWebPCoder.m */, + 46EB2E00014D50 /* SDImageCache.h */, + 46EB2E00014D60 /* SDImageCache.m */, + 46EB2E00014D70 /* SDImageCacheConfig.h */, + 46EB2E00014D80 /* SDImageCacheConfig.m */, + 46EB2E00014D90 /* SDImageCacheDefine.h */, + 46EB2E00014DA0 /* SDImageCacheDefine.m */, + 46EB2E00014DB0 /* SDImageCachesManager.h */, + 46EB2E00014DC0 /* SDImageCachesManager.m */, + 46EB2E00015400 /* SDImageCachesManagerOperation.h */, + 46EB2E00015410 /* SDImageCachesManagerOperation.m */, + 46EB2E00014DD0 /* SDImageCoder.h */, + 46EB2E00014DE0 /* SDImageCoder.m */, + 46EB2E00014DF0 /* SDImageCoderHelper.h */, + 46EB2E00014E00 /* SDImageCoderHelper.m */, + 46EB2E00014E10 /* SDImageCodersManager.h */, + 46EB2E00014E20 /* SDImageCodersManager.m */, + 46EB2E00014E30 /* SDImageFrame.h */, + 46EB2E00014E40 /* SDImageFrame.m */, + 46EB2E00014E50 /* SDImageGIFCoder.h */, + 46EB2E00014E60 /* SDImageGIFCoder.m */, + 46EB2E00014E70 /* SDImageGraphics.h */, + 46EB2E00014E80 /* SDImageGraphics.m */, + 46EB2E00014E90 /* SDImageHEICCoder.h */, + 46EB2E00014EA0 /* SDImageHEICCoder.m */, + 46EB2E00014EB0 /* SDImageIOAnimatedCoder.h */, + 46EB2E00014EC0 /* SDImageIOAnimatedCoder.m */, + 46EB2E00015420 /* SDImageIOAnimatedCoderInternal.h */, + 46EB2E00014ED0 /* SDImageIOCoder.h */, + 46EB2E00014EE0 /* SDImageIOCoder.m */, + 46EB2E00014EF0 /* SDImageLoader.h */, + 46EB2E00014F00 /* SDImageLoader.m */, + 46EB2E00014F10 /* SDImageLoadersManager.h */, + 46EB2E00014F20 /* SDImageLoadersManager.m */, + 46EB2E00014F30 /* SDImageTransformer.h */, + 46EB2E00014F40 /* SDImageTransformer.m */, + 46EB2E00015430 /* SDInternalMacros.h */, + 46EB2E00015440 /* SDInternalMacros.m */, + 46EB2E00014F50 /* SDMemoryCache.h */, + 46EB2E00014F60 /* SDMemoryCache.m */, + 46EB2E00015450 /* SDmetamacros.h */, + 46EB2E00015460 /* SDWeakProxy.h */, + 46EB2E00015470 /* SDWeakProxy.m */, + 46EB2E00015310 /* SDWebImage.h */, + 46EB2E00014F70 /* SDWebImageCacheKeyFilter.h */, + 46EB2E00014F80 /* SDWebImageCacheKeyFilter.m */, + 46EB2E00014F90 /* SDWebImageCacheSerializer.h */, + 46EB2E00014FA0 /* SDWebImageCacheSerializer.m */, + 46EB2E00014FB0 /* SDWebImageCompat.h */, + 46EB2E00014FC0 /* SDWebImageCompat.m */, + 46EB2E00014FD0 /* SDWebImageDefine.h */, + 46EB2E00014FE0 /* SDWebImageDefine.m */, + 46EB2E00014FF0 /* SDWebImageDownloader.h */, + 46EB2E00015000 /* SDWebImageDownloader.m */, + 46EB2E00015010 /* SDWebImageDownloaderConfig.h */, + 46EB2E00015020 /* SDWebImageDownloaderConfig.m */, + 46EB2E00015030 /* SDWebImageDownloaderDecryptor.h */, + 46EB2E00015040 /* SDWebImageDownloaderDecryptor.m */, + 46EB2E00015050 /* SDWebImageDownloaderOperation.h */, + 46EB2E00015060 /* SDWebImageDownloaderOperation.m */, + 46EB2E00015070 /* SDWebImageDownloaderRequestModifier.h */, + 46EB2E00015080 /* SDWebImageDownloaderRequestModifier.m */, + 46EB2E00015090 /* SDWebImageDownloaderResponseModifier.h */, + 46EB2E000150A0 /* SDWebImageDownloaderResponseModifier.m */, + 46EB2E000150B0 /* SDWebImageError.h */, + 46EB2E000150C0 /* SDWebImageError.m */, + 46EB2E000150D0 /* SDWebImageIndicator.h */, + 46EB2E000150E0 /* SDWebImageIndicator.m */, + 46EB2E000150F0 /* SDWebImageManager.h */, + 46EB2E00015100 /* SDWebImageManager.m */, + 46EB2E00015110 /* SDWebImageOperation.h */, + 46EB2E00015120 /* SDWebImageOperation.m */, + 46EB2E00015130 /* SDWebImageOptionsProcessor.h */, + 46EB2E00015140 /* SDWebImageOptionsProcessor.m */, + 46EB2E00015150 /* SDWebImagePrefetcher.h */, + 46EB2E00015160 /* SDWebImagePrefetcher.m */, + 46EB2E00015170 /* SDWebImageTransition.h */, + 46EB2E00015180 /* SDWebImageTransition.m */, + 46EB2E00015480 /* SDWebImageTransitionInternal.h */, + 46EB2E00015190 /* UIButton+WebCache.h */, + 46EB2E000151A0 /* UIButton+WebCache.m */, + 46EB2E00015490 /* UIColor+SDHexString.h */, + 46EB2E000154A0 /* UIColor+SDHexString.m */, + 46EB2E000151B0 /* UIImage+ExtendedCacheData.h */, + 46EB2E000151C0 /* UIImage+ExtendedCacheData.m */, + 46EB2E000151D0 /* UIImage+ForceDecode.h */, + 46EB2E000151E0 /* UIImage+ForceDecode.m */, + 46EB2E000151F0 /* UIImage+GIF.h */, + 46EB2E00015200 /* UIImage+GIF.m */, + 46EB2E00015210 /* UIImage+MemoryCacheCost.h */, + 46EB2E00015220 /* UIImage+MemoryCacheCost.m */, + 46EB2E00015230 /* UIImage+Metadata.h */, + 46EB2E00015240 /* UIImage+Metadata.m */, + 46EB2E00015250 /* UIImage+MultiFormat.h */, + 46EB2E00015260 /* UIImage+MultiFormat.m */, + 46EB2E00015270 /* UIImage+Transform.h */, + 46EB2E00015280 /* UIImage+Transform.m */, + 46EB2E00015290 /* UIImageView+HighlightedWebCache.h */, + 46EB2E000152A0 /* UIImageView+HighlightedWebCache.m */, + 46EB2E000152B0 /* UIImageView+WebCache.h */, + 46EB2E000152C0 /* UIImageView+WebCache.m */, + 46EB2E000152D0 /* UIView+WebCache.h */, + 46EB2E000152E0 /* UIView+WebCache.m */, + 46EB2E000152F0 /* UIView+WebCacheOperation.h */, + 46EB2E00015300 /* UIView+WebCacheOperation.m */, ); name = Core; sourceTree = ""; }; - 46EB2E00015B60 /* event */ = { + 46EB2E000159E0 /* event */ = { isa = PBXGroup; children = ( - 46EB2E00015B70 /* event.cpp */, - 46EB2E00015B80 /* event.h */, + 46EB2E000159F0 /* event.cpp */, + 46EB2E00015A00 /* event.h */, ); name = event; path = yoga/event; sourceTree = ""; }; - 46EB2E00015B90 /* internal */ = { + 46EB2E00015A10 /* internal */ = { isa = PBXGroup; children = ( - 46EB2E00015BB0 /* experiments.cpp */, - 46EB2E00015BC0 /* experiments.h */, - 46EB2E00015BA0 /* experiments-inl.h */, + 46EB2E00015A30 /* experiments.cpp */, + 46EB2E00015A40 /* experiments.h */, + 46EB2E00015A20 /* experiments-inl.h */, ); name = internal; path = yoga/internal; sourceTree = ""; }; - 46EB2E00015DA0 /* algorithm */ = { + 46EB2E00015C20 /* algorithm */ = { isa = PBXGroup; children = ( - 46EB2E00015DB0 /* algorithm */, - 46EB2E00015DD0 /* container */, + 46EB2E00015C30 /* algorithm */, + 46EB2E00015C50 /* container */, ); name = algorithm; sourceTree = ""; }; - 46EB2E00015DB0 /* algorithm */ = { + 46EB2E00015C30 /* algorithm */ = { isa = PBXGroup; children = ( - 46EB2E00015DC0 /* algorithm.h */, + 46EB2E00015C40 /* algorithm.h */, ); name = algorithm; sourceTree = ""; }; - 46EB2E00015DD0 /* container */ = { + 46EB2E00015C50 /* container */ = { isa = PBXGroup; children = ( - 46EB2E00015DE0 /* container.h */, + 46EB2E00015C60 /* container.h */, ); name = container; sourceTree = ""; }; - 46EB2E00015DF0 /* base */ = { + 46EB2E00015C70 /* base */ = { isa = PBXGroup; children = ( - 46EB2E00015E00 /* atomic_hook */, - 46EB2E00015E20 /* base */, - 46EB2E00015F20 /* base_internal */, - 46EB2E00015F80 /* config */, - 46EB2E00015FC0 /* core_headers */, - 46EB2E00016040 /* dynamic_annotations */, - 46EB2E00016070 /* endian */, - 46EB2E000160A0 /* errno_saver */, - 46EB2E000160C0 /* fast_type_id */, - 46EB2E000160E0 /* log_severity */, - 46EB2E00016110 /* malloc_internal */, - 46EB2E00016150 /* pretty_function */, - 46EB2E00016170 /* raw_logging_internal */, - 46EB2E000161A0 /* spinlock_wait */, - 46EB2E00016210 /* strerror */, - 46EB2E00016240 /* throw_delegate */, + 46EB2E00015C80 /* atomic_hook */, + 46EB2E00015CA0 /* base */, + 46EB2E00015DA0 /* base_internal */, + 46EB2E00015E00 /* config */, + 46EB2E00015E40 /* core_headers */, + 46EB2E00015EC0 /* dynamic_annotations */, + 46EB2E00015EF0 /* endian */, + 46EB2E00015F20 /* errno_saver */, + 46EB2E00015F40 /* fast_type_id */, + 46EB2E00015F60 /* log_severity */, + 46EB2E00015F90 /* malloc_internal */, + 46EB2E00015FD0 /* pretty_function */, + 46EB2E00015FF0 /* raw_logging_internal */, + 46EB2E00016020 /* spinlock_wait */, + 46EB2E00016090 /* strerror */, + 46EB2E000160C0 /* throw_delegate */, ); name = base; sourceTree = ""; }; - 46EB2E00015E00 /* atomic_hook */ = { + 46EB2E00015C80 /* atomic_hook */ = { isa = PBXGroup; children = ( - 46EB2E00015E10 /* atomic_hook.h */, + 46EB2E00015C90 /* atomic_hook.h */, ); name = atomic_hook; sourceTree = ""; }; - 46EB2E00015E20 /* base */ = { + 46EB2E00015CA0 /* base */ = { isa = PBXGroup; children = ( - 46EB2E00015E30 /* call_once.h */, - 46EB2E00015E40 /* casts.h */, - 46EB2E00015E50 /* cycleclock.cc */, - 46EB2E00015E60 /* cycleclock.h */, - 46EB2E00015E70 /* low_level_scheduling.h */, - 46EB2E00015E80 /* per_thread_tls.h */, - 46EB2E00015E90 /* spinlock.cc */, - 46EB2E00015EA0 /* spinlock.h */, - 46EB2E00015EB0 /* sysinfo.cc */, - 46EB2E00015EC0 /* sysinfo.h */, - 46EB2E00015ED0 /* thread_identity.cc */, - 46EB2E00015EE0 /* thread_identity.h */, - 46EB2E00015EF0 /* tsan_mutex_interface.h */, - 46EB2E00015F00 /* unscaledcycleclock.cc */, - 46EB2E00015F10 /* unscaledcycleclock.h */, + 46EB2E00015CB0 /* call_once.h */, + 46EB2E00015CC0 /* casts.h */, + 46EB2E00015CD0 /* cycleclock.cc */, + 46EB2E00015CE0 /* cycleclock.h */, + 46EB2E00015CF0 /* low_level_scheduling.h */, + 46EB2E00015D00 /* per_thread_tls.h */, + 46EB2E00015D10 /* spinlock.cc */, + 46EB2E00015D20 /* spinlock.h */, + 46EB2E00015D30 /* sysinfo.cc */, + 46EB2E00015D40 /* sysinfo.h */, + 46EB2E00015D50 /* thread_identity.cc */, + 46EB2E00015D60 /* thread_identity.h */, + 46EB2E00015D70 /* tsan_mutex_interface.h */, + 46EB2E00015D80 /* unscaledcycleclock.cc */, + 46EB2E00015D90 /* unscaledcycleclock.h */, ); name = base; sourceTree = ""; }; - 46EB2E00015F20 /* base_internal */ = { + 46EB2E00015DA0 /* base_internal */ = { isa = PBXGroup; children = ( - 46EB2E00015F30 /* hide_ptr.h */, - 46EB2E00015F40 /* identity.h */, - 46EB2E00015F50 /* inline_variable.h */, - 46EB2E00015F60 /* invoke.h */, - 46EB2E00015F70 /* scheduling_mode.h */, + 46EB2E00015DB0 /* hide_ptr.h */, + 46EB2E00015DC0 /* identity.h */, + 46EB2E00015DD0 /* inline_variable.h */, + 46EB2E00015DE0 /* invoke.h */, + 46EB2E00015DF0 /* scheduling_mode.h */, ); name = base_internal; sourceTree = ""; }; - 46EB2E00015F80 /* config */ = { + 46EB2E00015E00 /* config */ = { isa = PBXGroup; children = ( - 46EB2E00015F90 /* config.h */, - 46EB2E00015FA0 /* options.h */, - 46EB2E00015FB0 /* policy_checks.h */, + 46EB2E00015E10 /* config.h */, + 46EB2E00015E20 /* options.h */, + 46EB2E00015E30 /* policy_checks.h */, ); name = config; sourceTree = ""; }; - 46EB2E00015FC0 /* core_headers */ = { + 46EB2E00015E40 /* core_headers */ = { isa = PBXGroup; children = ( - 46EB2E00015FD0 /* attributes.h */, - 46EB2E00015FE0 /* const_init.h */, - 46EB2E00016000 /* macros.h */, - 46EB2E00016010 /* optimization.h */, - 46EB2E00016020 /* port.h */, - 46EB2E00015FF0 /* thread_annotations.h */, - 46EB2E00016030 /* thread_annotations.h */, + 46EB2E00015E50 /* attributes.h */, + 46EB2E00015E60 /* const_init.h */, + 46EB2E00015E80 /* macros.h */, + 46EB2E00015E90 /* optimization.h */, + 46EB2E00015EA0 /* port.h */, + 46EB2E00015E70 /* thread_annotations.h */, + 46EB2E00015EB0 /* thread_annotations.h */, ); name = core_headers; sourceTree = ""; }; - 46EB2E00016040 /* dynamic_annotations */ = { + 46EB2E00015EC0 /* dynamic_annotations */ = { isa = PBXGroup; children = ( - 46EB2E00016050 /* dynamic_annotations.h */, - 46EB2E00016060 /* dynamic_annotations.h */, + 46EB2E00015ED0 /* dynamic_annotations.h */, + 46EB2E00015EE0 /* dynamic_annotations.h */, ); name = dynamic_annotations; sourceTree = ""; }; - 46EB2E00016070 /* endian */ = { + 46EB2E00015EF0 /* endian */ = { isa = PBXGroup; children = ( - 46EB2E00016080 /* endian.h */, - 46EB2E00016090 /* unaligned_access.h */, + 46EB2E00015F00 /* endian.h */, + 46EB2E00015F10 /* unaligned_access.h */, ); name = endian; sourceTree = ""; }; - 46EB2E000160A0 /* errno_saver */ = { + 46EB2E00015F20 /* errno_saver */ = { isa = PBXGroup; children = ( - 46EB2E000160B0 /* errno_saver.h */, + 46EB2E00015F30 /* errno_saver.h */, ); name = errno_saver; sourceTree = ""; }; - 46EB2E000160C0 /* fast_type_id */ = { + 46EB2E00015F40 /* fast_type_id */ = { isa = PBXGroup; children = ( - 46EB2E000160D0 /* fast_type_id.h */, + 46EB2E00015F50 /* fast_type_id.h */, ); name = fast_type_id; sourceTree = ""; }; - 46EB2E000160E0 /* log_severity */ = { + 46EB2E00015F60 /* log_severity */ = { isa = PBXGroup; children = ( - 46EB2E000160F0 /* log_severity.cc */, - 46EB2E00016100 /* log_severity.h */, + 46EB2E00015F70 /* log_severity.cc */, + 46EB2E00015F80 /* log_severity.h */, ); name = log_severity; sourceTree = ""; }; - 46EB2E00016110 /* malloc_internal */ = { + 46EB2E00015F90 /* malloc_internal */ = { isa = PBXGroup; children = ( - 46EB2E00016120 /* direct_mmap.h */, - 46EB2E00016130 /* low_level_alloc.cc */, - 46EB2E00016140 /* low_level_alloc.h */, + 46EB2E00015FA0 /* direct_mmap.h */, + 46EB2E00015FB0 /* low_level_alloc.cc */, + 46EB2E00015FC0 /* low_level_alloc.h */, ); name = malloc_internal; sourceTree = ""; }; - 46EB2E00016150 /* pretty_function */ = { + 46EB2E00015FD0 /* pretty_function */ = { isa = PBXGroup; children = ( - 46EB2E00016160 /* pretty_function.h */, + 46EB2E00015FE0 /* pretty_function.h */, ); name = pretty_function; sourceTree = ""; }; - 46EB2E00016170 /* raw_logging_internal */ = { + 46EB2E00015FF0 /* raw_logging_internal */ = { isa = PBXGroup; children = ( - 46EB2E00016180 /* raw_logging.cc */, - 46EB2E00016190 /* raw_logging.h */, + 46EB2E00016000 /* raw_logging.cc */, + 46EB2E00016010 /* raw_logging.h */, ); name = raw_logging_internal; sourceTree = ""; }; - 46EB2E000161A0 /* spinlock_wait */ = { + 46EB2E00016020 /* spinlock_wait */ = { isa = PBXGroup; children = ( - 46EB2E000161B0 /* spinlock_akaros.inc */, - 46EB2E000161C0 /* spinlock_linux.inc */, - 46EB2E000161D0 /* spinlock_posix.inc */, - 46EB2E000161E0 /* spinlock_wait.cc */, - 46EB2E000161F0 /* spinlock_wait.h */, - 46EB2E00016200 /* spinlock_win32.inc */, + 46EB2E00016030 /* spinlock_akaros.inc */, + 46EB2E00016040 /* spinlock_linux.inc */, + 46EB2E00016050 /* spinlock_posix.inc */, + 46EB2E00016060 /* spinlock_wait.cc */, + 46EB2E00016070 /* spinlock_wait.h */, + 46EB2E00016080 /* spinlock_win32.inc */, ); name = spinlock_wait; sourceTree = ""; }; - 46EB2E00016210 /* strerror */ = { + 46EB2E00016090 /* strerror */ = { isa = PBXGroup; children = ( - 46EB2E00016220 /* strerror.cc */, - 46EB2E00016230 /* strerror.h */, + 46EB2E000160A0 /* strerror.cc */, + 46EB2E000160B0 /* strerror.h */, ); name = strerror; sourceTree = ""; }; - 46EB2E00016240 /* throw_delegate */ = { + 46EB2E000160C0 /* throw_delegate */ = { isa = PBXGroup; children = ( - 46EB2E00016250 /* throw_delegate.cc */, - 46EB2E00016260 /* throw_delegate.h */, + 46EB2E000160D0 /* throw_delegate.cc */, + 46EB2E000160E0 /* throw_delegate.h */, ); name = throw_delegate; sourceTree = ""; }; - 46EB2E00016270 /* container */ = { + 46EB2E000160F0 /* container */ = { isa = PBXGroup; children = ( - 46EB2E00016280 /* common */, - 46EB2E000162A0 /* compressed_tuple */, - 46EB2E000162C0 /* container_memory */, - 46EB2E000162E0 /* fixed_array */, - 46EB2E00016300 /* flat_hash_map */, - 46EB2E00016320 /* hash_function_defaults */, - 46EB2E00016340 /* hash_policy_traits */, - 46EB2E00016360 /* hashtable_debug_hooks */, - 46EB2E00016380 /* hashtablez_sampler */, - 46EB2E000163C0 /* have_sse */, - 46EB2E000163E0 /* inlined_vector */, - 46EB2E00016400 /* inlined_vector_internal */, - 46EB2E00016420 /* layout */, - 46EB2E00016440 /* raw_hash_map */, - 46EB2E00016460 /* raw_hash_set */, + 46EB2E00016100 /* common */, + 46EB2E00016120 /* compressed_tuple */, + 46EB2E00016140 /* container_memory */, + 46EB2E00016160 /* fixed_array */, + 46EB2E00016180 /* flat_hash_map */, + 46EB2E000161A0 /* hash_function_defaults */, + 46EB2E000161C0 /* hash_policy_traits */, + 46EB2E000161E0 /* hashtable_debug_hooks */, + 46EB2E00016200 /* hashtablez_sampler */, + 46EB2E00016240 /* have_sse */, + 46EB2E00016260 /* inlined_vector */, + 46EB2E00016280 /* inlined_vector_internal */, + 46EB2E000162A0 /* layout */, + 46EB2E000162C0 /* raw_hash_map */, + 46EB2E000162E0 /* raw_hash_set */, ); name = container; sourceTree = ""; }; - 46EB2E00016280 /* common */ = { + 46EB2E00016100 /* common */ = { isa = PBXGroup; children = ( - 46EB2E00016290 /* common.h */, + 46EB2E00016110 /* common.h */, ); name = common; sourceTree = ""; }; - 46EB2E000162A0 /* compressed_tuple */ = { + 46EB2E00016120 /* compressed_tuple */ = { isa = PBXGroup; children = ( - 46EB2E000162B0 /* compressed_tuple.h */, + 46EB2E00016130 /* compressed_tuple.h */, ); name = compressed_tuple; sourceTree = ""; }; - 46EB2E000162C0 /* container_memory */ = { + 46EB2E00016140 /* container_memory */ = { isa = PBXGroup; children = ( - 46EB2E000162D0 /* container_memory.h */, + 46EB2E00016150 /* container_memory.h */, ); name = container_memory; sourceTree = ""; }; - 46EB2E000162E0 /* fixed_array */ = { + 46EB2E00016160 /* fixed_array */ = { isa = PBXGroup; children = ( - 46EB2E000162F0 /* fixed_array.h */, + 46EB2E00016170 /* fixed_array.h */, ); name = fixed_array; sourceTree = ""; }; - 46EB2E00016300 /* flat_hash_map */ = { + 46EB2E00016180 /* flat_hash_map */ = { isa = PBXGroup; children = ( - 46EB2E00016310 /* flat_hash_map.h */, + 46EB2E00016190 /* flat_hash_map.h */, ); name = flat_hash_map; sourceTree = ""; }; - 46EB2E00016320 /* hash_function_defaults */ = { + 46EB2E000161A0 /* hash_function_defaults */ = { isa = PBXGroup; children = ( - 46EB2E00016330 /* hash_function_defaults.h */, + 46EB2E000161B0 /* hash_function_defaults.h */, ); name = hash_function_defaults; sourceTree = ""; }; - 46EB2E00016340 /* hash_policy_traits */ = { + 46EB2E000161C0 /* hash_policy_traits */ = { isa = PBXGroup; children = ( - 46EB2E00016350 /* hash_policy_traits.h */, + 46EB2E000161D0 /* hash_policy_traits.h */, ); name = hash_policy_traits; sourceTree = ""; }; - 46EB2E00016360 /* hashtable_debug_hooks */ = { + 46EB2E000161E0 /* hashtable_debug_hooks */ = { isa = PBXGroup; children = ( - 46EB2E00016370 /* hashtable_debug_hooks.h */, + 46EB2E000161F0 /* hashtable_debug_hooks.h */, ); name = hashtable_debug_hooks; sourceTree = ""; }; - 46EB2E00016380 /* hashtablez_sampler */ = { + 46EB2E00016200 /* hashtablez_sampler */ = { isa = PBXGroup; children = ( - 46EB2E00016390 /* hashtablez_sampler.cc */, - 46EB2E000163A0 /* hashtablez_sampler.h */, - 46EB2E000163B0 /* hashtablez_sampler_force_weak_definition.cc */, + 46EB2E00016210 /* hashtablez_sampler.cc */, + 46EB2E00016220 /* hashtablez_sampler.h */, + 46EB2E00016230 /* hashtablez_sampler_force_weak_definition.cc */, ); name = hashtablez_sampler; sourceTree = ""; }; - 46EB2E000163C0 /* have_sse */ = { + 46EB2E00016240 /* have_sse */ = { isa = PBXGroup; children = ( - 46EB2E000163D0 /* have_sse.h */, + 46EB2E00016250 /* have_sse.h */, ); name = have_sse; sourceTree = ""; }; - 46EB2E000163E0 /* inlined_vector */ = { + 46EB2E00016260 /* inlined_vector */ = { isa = PBXGroup; children = ( - 46EB2E000163F0 /* inlined_vector.h */, + 46EB2E00016270 /* inlined_vector.h */, ); name = inlined_vector; sourceTree = ""; }; - 46EB2E00016400 /* inlined_vector_internal */ = { + 46EB2E00016280 /* inlined_vector_internal */ = { isa = PBXGroup; children = ( - 46EB2E00016410 /* inlined_vector.h */, + 46EB2E00016290 /* inlined_vector.h */, ); name = inlined_vector_internal; sourceTree = ""; }; - 46EB2E00016420 /* layout */ = { + 46EB2E000162A0 /* layout */ = { isa = PBXGroup; children = ( - 46EB2E00016430 /* layout.h */, + 46EB2E000162B0 /* layout.h */, ); name = layout; sourceTree = ""; }; - 46EB2E00016440 /* raw_hash_map */ = { + 46EB2E000162C0 /* raw_hash_map */ = { isa = PBXGroup; children = ( - 46EB2E00016450 /* raw_hash_map.h */, + 46EB2E000162D0 /* raw_hash_map.h */, ); name = raw_hash_map; sourceTree = ""; }; - 46EB2E00016460 /* raw_hash_set */ = { + 46EB2E000162E0 /* raw_hash_set */ = { isa = PBXGroup; children = ( - 46EB2E00016470 /* raw_hash_set.cc */, - 46EB2E00016480 /* raw_hash_set.h */, + 46EB2E000162F0 /* raw_hash_set.cc */, + 46EB2E00016300 /* raw_hash_set.h */, ); name = raw_hash_set; sourceTree = ""; }; - 46EB2E00016490 /* debugging */ = { + 46EB2E00016310 /* debugging */ = { isa = PBXGroup; children = ( - 46EB2E000164A0 /* debugging_internal */, - 46EB2E00016510 /* demangle_internal */, - 46EB2E00016540 /* stacktrace */, - 46EB2E00016610 /* symbolize */, + 46EB2E00016320 /* debugging_internal */, + 46EB2E00016390 /* demangle_internal */, + 46EB2E000163C0 /* stacktrace */, + 46EB2E00016490 /* symbolize */, ); name = debugging; sourceTree = ""; }; - 46EB2E000164A0 /* debugging_internal */ = { + 46EB2E00016320 /* debugging_internal */ = { isa = PBXGroup; children = ( - 46EB2E000164B0 /* address_is_readable.cc */, - 46EB2E000164C0 /* address_is_readable.h */, - 46EB2E000164D0 /* elf_mem_image.cc */, - 46EB2E000164E0 /* elf_mem_image.h */, - 46EB2E000164F0 /* vdso_support.cc */, - 46EB2E00016500 /* vdso_support.h */, + 46EB2E00016330 /* address_is_readable.cc */, + 46EB2E00016340 /* address_is_readable.h */, + 46EB2E00016350 /* elf_mem_image.cc */, + 46EB2E00016360 /* elf_mem_image.h */, + 46EB2E00016370 /* vdso_support.cc */, + 46EB2E00016380 /* vdso_support.h */, ); name = debugging_internal; sourceTree = ""; }; - 46EB2E00016510 /* demangle_internal */ = { + 46EB2E00016390 /* demangle_internal */ = { isa = PBXGroup; children = ( - 46EB2E00016520 /* demangle.cc */, - 46EB2E00016530 /* demangle.h */, + 46EB2E000163A0 /* demangle.cc */, + 46EB2E000163B0 /* demangle.h */, ); name = demangle_internal; sourceTree = ""; }; - 46EB2E00016540 /* stacktrace */ = { + 46EB2E000163C0 /* stacktrace */ = { isa = PBXGroup; children = ( - 46EB2E000165F0 /* stacktrace.cc */, - 46EB2E00016600 /* stacktrace.h */, - 46EB2E00016550 /* stacktrace_aarch64-inl.inc */, - 46EB2E00016560 /* stacktrace_arm-inl.inc */, - 46EB2E00016570 /* stacktrace_config.h */, - 46EB2E00016580 /* stacktrace_emscripten-inl.inc */, - 46EB2E00016590 /* stacktrace_generic-inl.inc */, - 46EB2E000165A0 /* stacktrace_powerpc-inl.inc */, - 46EB2E000165B0 /* stacktrace_riscv-inl.inc */, - 46EB2E000165C0 /* stacktrace_unimplemented-inl.inc */, - 46EB2E000165D0 /* stacktrace_win32-inl.inc */, - 46EB2E000165E0 /* stacktrace_x86-inl.inc */, + 46EB2E00016470 /* stacktrace.cc */, + 46EB2E00016480 /* stacktrace.h */, + 46EB2E000163D0 /* stacktrace_aarch64-inl.inc */, + 46EB2E000163E0 /* stacktrace_arm-inl.inc */, + 46EB2E000163F0 /* stacktrace_config.h */, + 46EB2E00016400 /* stacktrace_emscripten-inl.inc */, + 46EB2E00016410 /* stacktrace_generic-inl.inc */, + 46EB2E00016420 /* stacktrace_powerpc-inl.inc */, + 46EB2E00016430 /* stacktrace_riscv-inl.inc */, + 46EB2E00016440 /* stacktrace_unimplemented-inl.inc */, + 46EB2E00016450 /* stacktrace_win32-inl.inc */, + 46EB2E00016460 /* stacktrace_x86-inl.inc */, ); name = stacktrace; sourceTree = ""; }; - 46EB2E00016610 /* symbolize */ = { + 46EB2E00016490 /* symbolize */ = { isa = PBXGroup; children = ( - 46EB2E00016630 /* symbolize.cc */, - 46EB2E00016620 /* symbolize.h */, - 46EB2E00016640 /* symbolize.h */, - 46EB2E00016650 /* symbolize_darwin.inc */, - 46EB2E00016660 /* symbolize_elf.inc */, - 46EB2E00016670 /* symbolize_emscripten.inc */, - 46EB2E00016680 /* symbolize_unimplemented.inc */, - 46EB2E00016690 /* symbolize_win32.inc */, + 46EB2E000164B0 /* symbolize.cc */, + 46EB2E000164A0 /* symbolize.h */, + 46EB2E000164C0 /* symbolize.h */, + 46EB2E000164D0 /* symbolize_darwin.inc */, + 46EB2E000164E0 /* symbolize_elf.inc */, + 46EB2E000164F0 /* symbolize_emscripten.inc */, + 46EB2E00016500 /* symbolize_unimplemented.inc */, + 46EB2E00016510 /* symbolize_win32.inc */, ); name = symbolize; sourceTree = ""; }; - 46EB2E000166A0 /* functional */ = { + 46EB2E00016520 /* functional */ = { isa = PBXGroup; children = ( - 46EB2E000166B0 /* bind_front */, - 46EB2E000166E0 /* function_ref */, + 46EB2E00016530 /* bind_front */, + 46EB2E00016560 /* function_ref */, ); name = functional; sourceTree = ""; }; - 46EB2E000166B0 /* bind_front */ = { + 46EB2E00016530 /* bind_front */ = { isa = PBXGroup; children = ( - 46EB2E000166C0 /* bind_front.h */, - 46EB2E000166D0 /* front_binder.h */, + 46EB2E00016540 /* bind_front.h */, + 46EB2E00016550 /* front_binder.h */, ); name = bind_front; sourceTree = ""; }; - 46EB2E000166E0 /* function_ref */ = { + 46EB2E00016560 /* function_ref */ = { isa = PBXGroup; children = ( - 46EB2E000166F0 /* function_ref.h */, - 46EB2E00016700 /* function_ref.h */, + 46EB2E00016570 /* function_ref.h */, + 46EB2E00016580 /* function_ref.h */, ); name = function_ref; sourceTree = ""; }; - 46EB2E00016710 /* hash */ = { + 46EB2E00016590 /* hash */ = { isa = PBXGroup; children = ( - 46EB2E00016720 /* city */, - 46EB2E00016750 /* hash */, - 46EB2E00016790 /* low_level_hash */, + 46EB2E000165A0 /* city */, + 46EB2E000165D0 /* hash */, + 46EB2E00016610 /* low_level_hash */, ); name = hash; sourceTree = ""; }; - 46EB2E00016720 /* city */ = { + 46EB2E000165A0 /* city */ = { isa = PBXGroup; children = ( - 46EB2E00016730 /* city.cc */, - 46EB2E00016740 /* city.h */, + 46EB2E000165B0 /* city.cc */, + 46EB2E000165C0 /* city.h */, ); name = city; sourceTree = ""; }; - 46EB2E00016750 /* hash */ = { + 46EB2E000165D0 /* hash */ = { isa = PBXGroup; children = ( - 46EB2E00016770 /* hash.cc */, - 46EB2E00016760 /* hash.h */, - 46EB2E00016780 /* hash.h */, + 46EB2E000165F0 /* hash.cc */, + 46EB2E000165E0 /* hash.h */, + 46EB2E00016600 /* hash.h */, ); name = hash; sourceTree = ""; }; - 46EB2E00016790 /* low_level_hash */ = { + 46EB2E00016610 /* low_level_hash */ = { isa = PBXGroup; children = ( - 46EB2E000167A0 /* low_level_hash.cc */, - 46EB2E000167B0 /* low_level_hash.h */, + 46EB2E00016620 /* low_level_hash.cc */, + 46EB2E00016630 /* low_level_hash.h */, ); name = low_level_hash; sourceTree = ""; }; - 46EB2E000167C0 /* memory */ = { + 46EB2E00016640 /* memory */ = { isa = PBXGroup; children = ( - 46EB2E000167D0 /* memory */, + 46EB2E00016650 /* memory */, ); name = memory; sourceTree = ""; }; - 46EB2E000167D0 /* memory */ = { + 46EB2E00016650 /* memory */ = { isa = PBXGroup; children = ( - 46EB2E000167E0 /* memory.h */, + 46EB2E00016660 /* memory.h */, ); name = memory; sourceTree = ""; }; - 46EB2E000167F0 /* meta */ = { + 46EB2E00016670 /* meta */ = { isa = PBXGroup; children = ( - 46EB2E00016800 /* type_traits */, + 46EB2E00016680 /* type_traits */, ); name = meta; sourceTree = ""; }; - 46EB2E00016800 /* type_traits */ = { + 46EB2E00016680 /* type_traits */ = { isa = PBXGroup; children = ( - 46EB2E00016810 /* type_traits.h */, + 46EB2E00016690 /* type_traits.h */, ); name = type_traits; sourceTree = ""; }; - 46EB2E00016820 /* numeric */ = { + 46EB2E000166A0 /* numeric */ = { isa = PBXGroup; children = ( - 46EB2E00016830 /* bits */, - 46EB2E00016860 /* int128 */, - 46EB2E000168B0 /* representation */, + 46EB2E000166B0 /* bits */, + 46EB2E000166E0 /* int128 */, + 46EB2E00016730 /* representation */, ); name = numeric; sourceTree = ""; }; - 46EB2E00016830 /* bits */ = { + 46EB2E000166B0 /* bits */ = { isa = PBXGroup; children = ( - 46EB2E00016840 /* bits.h */, - 46EB2E00016850 /* bits.h */, + 46EB2E000166C0 /* bits.h */, + 46EB2E000166D0 /* bits.h */, ); name = bits; sourceTree = ""; }; - 46EB2E00016860 /* int128 */ = { + 46EB2E000166E0 /* int128 */ = { isa = PBXGroup; children = ( - 46EB2E00016870 /* int128.cc */, - 46EB2E00016880 /* int128.h */, - 46EB2E00016890 /* int128_have_intrinsic.inc */, - 46EB2E000168A0 /* int128_no_intrinsic.inc */, + 46EB2E000166F0 /* int128.cc */, + 46EB2E00016700 /* int128.h */, + 46EB2E00016710 /* int128_have_intrinsic.inc */, + 46EB2E00016720 /* int128_no_intrinsic.inc */, ); name = int128; sourceTree = ""; }; - 46EB2E000168B0 /* representation */ = { + 46EB2E00016730 /* representation */ = { isa = PBXGroup; children = ( - 46EB2E000168C0 /* representation.h */, + 46EB2E00016740 /* representation.h */, ); name = representation; sourceTree = ""; }; - 46EB2E000168D0 /* profiling */ = { + 46EB2E00016750 /* profiling */ = { isa = PBXGroup; children = ( - 46EB2E000168E0 /* exponential_biased */, - 46EB2E00016910 /* sample_recorder */, + 46EB2E00016760 /* exponential_biased */, + 46EB2E00016790 /* sample_recorder */, ); name = profiling; sourceTree = ""; }; - 46EB2E000168E0 /* exponential_biased */ = { + 46EB2E00016760 /* exponential_biased */ = { isa = PBXGroup; children = ( - 46EB2E000168F0 /* exponential_biased.cc */, - 46EB2E00016900 /* exponential_biased.h */, + 46EB2E00016770 /* exponential_biased.cc */, + 46EB2E00016780 /* exponential_biased.h */, ); name = exponential_biased; sourceTree = ""; }; - 46EB2E00016910 /* sample_recorder */ = { + 46EB2E00016790 /* sample_recorder */ = { isa = PBXGroup; children = ( - 46EB2E00016920 /* sample_recorder.h */, + 46EB2E000167A0 /* sample_recorder.h */, ); name = sample_recorder; sourceTree = ""; }; - 46EB2E00016930 /* random */ = { + 46EB2E000167B0 /* random */ = { isa = PBXGroup; children = ( - 46EB2E00016940 /* distributions */, - 46EB2E00016A20 /* internal */, - 46EB2E00016D10 /* random */, - 46EB2E00016D30 /* seed_gen_exception */, - 46EB2E00016D60 /* seed_sequences */, + 46EB2E000167C0 /* distributions */, + 46EB2E000168A0 /* internal */, + 46EB2E00016B90 /* random */, + 46EB2E00016BB0 /* seed_gen_exception */, + 46EB2E00016BE0 /* seed_sequences */, ); name = random; sourceTree = ""; }; - 46EB2E00016940 /* distributions */ = { + 46EB2E000167C0 /* distributions */ = { isa = PBXGroup; children = ( - 46EB2E00016950 /* bernoulli_distribution.h */, - 46EB2E00016960 /* beta_distribution.h */, - 46EB2E00016970 /* discrete_distribution.cc */, - 46EB2E00016980 /* discrete_distribution.h */, - 46EB2E00016990 /* distributions.h */, - 46EB2E000169A0 /* exponential_distribution.h */, - 46EB2E000169B0 /* gaussian_distribution.cc */, - 46EB2E000169C0 /* gaussian_distribution.h */, - 46EB2E000169D0 /* log_uniform_int_distribution.h */, - 46EB2E000169E0 /* poisson_distribution.h */, - 46EB2E000169F0 /* uniform_int_distribution.h */, - 46EB2E00016A00 /* uniform_real_distribution.h */, - 46EB2E00016A10 /* zipf_distribution.h */, + 46EB2E000167D0 /* bernoulli_distribution.h */, + 46EB2E000167E0 /* beta_distribution.h */, + 46EB2E000167F0 /* discrete_distribution.cc */, + 46EB2E00016800 /* discrete_distribution.h */, + 46EB2E00016810 /* distributions.h */, + 46EB2E00016820 /* exponential_distribution.h */, + 46EB2E00016830 /* gaussian_distribution.cc */, + 46EB2E00016840 /* gaussian_distribution.h */, + 46EB2E00016850 /* log_uniform_int_distribution.h */, + 46EB2E00016860 /* poisson_distribution.h */, + 46EB2E00016870 /* uniform_int_distribution.h */, + 46EB2E00016880 /* uniform_real_distribution.h */, + 46EB2E00016890 /* zipf_distribution.h */, ); name = distributions; sourceTree = ""; }; - 46EB2E00016A20 /* internal */ = { - isa = PBXGroup; - children = ( - 46EB2E00016A30 /* distribution_caller */, - 46EB2E00016A50 /* fast_uniform_bits */, - 46EB2E00016A70 /* fastmath */, - 46EB2E00016A90 /* generate_real */, - 46EB2E00016AB0 /* iostream_state_saver */, - 46EB2E00016AD0 /* nonsecure_base */, - 46EB2E00016AF0 /* pcg_engine */, - 46EB2E00016B10 /* platform */, - 46EB2E00016B50 /* pool_urbg */, - 46EB2E00016B80 /* randen */, - 46EB2E00016BB0 /* randen_engine */, - 46EB2E00016BD0 /* randen_hwaes */, - 46EB2E00016C10 /* randen_hwaes_impl */, - 46EB2E00016C30 /* randen_slow */, - 46EB2E00016C60 /* salted_seed_seq */, - 46EB2E00016C80 /* seed_material */, - 46EB2E00016CB0 /* traits */, - 46EB2E00016CD0 /* uniform_helper */, - 46EB2E00016CF0 /* wide_multiply */, + 46EB2E000168A0 /* internal */ = { + isa = PBXGroup; + children = ( + 46EB2E000168B0 /* distribution_caller */, + 46EB2E000168D0 /* fast_uniform_bits */, + 46EB2E000168F0 /* fastmath */, + 46EB2E00016910 /* generate_real */, + 46EB2E00016930 /* iostream_state_saver */, + 46EB2E00016950 /* nonsecure_base */, + 46EB2E00016970 /* pcg_engine */, + 46EB2E00016990 /* platform */, + 46EB2E000169D0 /* pool_urbg */, + 46EB2E00016A00 /* randen */, + 46EB2E00016A30 /* randen_engine */, + 46EB2E00016A50 /* randen_hwaes */, + 46EB2E00016A90 /* randen_hwaes_impl */, + 46EB2E00016AB0 /* randen_slow */, + 46EB2E00016AE0 /* salted_seed_seq */, + 46EB2E00016B00 /* seed_material */, + 46EB2E00016B30 /* traits */, + 46EB2E00016B50 /* uniform_helper */, + 46EB2E00016B70 /* wide_multiply */, ); name = internal; sourceTree = ""; }; - 46EB2E00016A30 /* distribution_caller */ = { + 46EB2E000168B0 /* distribution_caller */ = { isa = PBXGroup; children = ( - 46EB2E00016A40 /* distribution_caller.h */, + 46EB2E000168C0 /* distribution_caller.h */, ); name = distribution_caller; sourceTree = ""; }; - 46EB2E00016A50 /* fast_uniform_bits */ = { + 46EB2E000168D0 /* fast_uniform_bits */ = { isa = PBXGroup; children = ( - 46EB2E00016A60 /* fast_uniform_bits.h */, + 46EB2E000168E0 /* fast_uniform_bits.h */, ); name = fast_uniform_bits; sourceTree = ""; }; - 46EB2E00016A70 /* fastmath */ = { + 46EB2E000168F0 /* fastmath */ = { isa = PBXGroup; children = ( - 46EB2E00016A80 /* fastmath.h */, + 46EB2E00016900 /* fastmath.h */, ); name = fastmath; sourceTree = ""; }; - 46EB2E00016A90 /* generate_real */ = { + 46EB2E00016910 /* generate_real */ = { isa = PBXGroup; children = ( - 46EB2E00016AA0 /* generate_real.h */, + 46EB2E00016920 /* generate_real.h */, ); name = generate_real; sourceTree = ""; }; - 46EB2E00016AB0 /* iostream_state_saver */ = { + 46EB2E00016930 /* iostream_state_saver */ = { isa = PBXGroup; children = ( - 46EB2E00016AC0 /* iostream_state_saver.h */, + 46EB2E00016940 /* iostream_state_saver.h */, ); name = iostream_state_saver; sourceTree = ""; }; - 46EB2E00016AD0 /* nonsecure_base */ = { + 46EB2E00016950 /* nonsecure_base */ = { isa = PBXGroup; children = ( - 46EB2E00016AE0 /* nonsecure_base.h */, + 46EB2E00016960 /* nonsecure_base.h */, ); name = nonsecure_base; sourceTree = ""; }; - 46EB2E00016AF0 /* pcg_engine */ = { + 46EB2E00016970 /* pcg_engine */ = { isa = PBXGroup; children = ( - 46EB2E00016B00 /* pcg_engine.h */, + 46EB2E00016980 /* pcg_engine.h */, ); name = pcg_engine; sourceTree = ""; }; - 46EB2E00016B10 /* platform */ = { + 46EB2E00016990 /* platform */ = { isa = PBXGroup; children = ( - 46EB2E00016B20 /* platform.h */, - 46EB2E00016B30 /* randen_round_keys.cc */, - 46EB2E00016B40 /* randen_traits.h */, + 46EB2E000169A0 /* platform.h */, + 46EB2E000169B0 /* randen_round_keys.cc */, + 46EB2E000169C0 /* randen_traits.h */, ); name = platform; sourceTree = ""; }; - 46EB2E00016B50 /* pool_urbg */ = { + 46EB2E000169D0 /* pool_urbg */ = { isa = PBXGroup; children = ( - 46EB2E00016B60 /* pool_urbg.cc */, - 46EB2E00016B70 /* pool_urbg.h */, + 46EB2E000169E0 /* pool_urbg.cc */, + 46EB2E000169F0 /* pool_urbg.h */, ); name = pool_urbg; sourceTree = ""; }; - 46EB2E00016B80 /* randen */ = { + 46EB2E00016A00 /* randen */ = { isa = PBXGroup; children = ( - 46EB2E00016B90 /* randen.cc */, - 46EB2E00016BA0 /* randen.h */, + 46EB2E00016A10 /* randen.cc */, + 46EB2E00016A20 /* randen.h */, ); name = randen; sourceTree = ""; }; - 46EB2E00016BB0 /* randen_engine */ = { + 46EB2E00016A30 /* randen_engine */ = { isa = PBXGroup; children = ( - 46EB2E00016BC0 /* randen_engine.h */, + 46EB2E00016A40 /* randen_engine.h */, ); name = randen_engine; sourceTree = ""; }; - 46EB2E00016BD0 /* randen_hwaes */ = { + 46EB2E00016A50 /* randen_hwaes */ = { isa = PBXGroup; children = ( - 46EB2E00016BE0 /* randen_detect.cc */, - 46EB2E00016BF0 /* randen_detect.h */, - 46EB2E00016C00 /* randen_hwaes.h */, + 46EB2E00016A60 /* randen_detect.cc */, + 46EB2E00016A70 /* randen_detect.h */, + 46EB2E00016A80 /* randen_hwaes.h */, ); name = randen_hwaes; sourceTree = ""; }; - 46EB2E00016C10 /* randen_hwaes_impl */ = { + 46EB2E00016A90 /* randen_hwaes_impl */ = { isa = PBXGroup; children = ( - 46EB2E00016C20 /* randen_hwaes.cc */, + 46EB2E00016AA0 /* randen_hwaes.cc */, ); name = randen_hwaes_impl; sourceTree = ""; }; - 46EB2E00016C30 /* randen_slow */ = { + 46EB2E00016AB0 /* randen_slow */ = { isa = PBXGroup; children = ( - 46EB2E00016C40 /* randen_slow.cc */, - 46EB2E00016C50 /* randen_slow.h */, + 46EB2E00016AC0 /* randen_slow.cc */, + 46EB2E00016AD0 /* randen_slow.h */, ); name = randen_slow; sourceTree = ""; }; - 46EB2E00016C60 /* salted_seed_seq */ = { + 46EB2E00016AE0 /* salted_seed_seq */ = { isa = PBXGroup; children = ( - 46EB2E00016C70 /* salted_seed_seq.h */, + 46EB2E00016AF0 /* salted_seed_seq.h */, ); name = salted_seed_seq; sourceTree = ""; }; - 46EB2E00016C80 /* seed_material */ = { + 46EB2E00016B00 /* seed_material */ = { isa = PBXGroup; children = ( - 46EB2E00016C90 /* seed_material.cc */, - 46EB2E00016CA0 /* seed_material.h */, + 46EB2E00016B10 /* seed_material.cc */, + 46EB2E00016B20 /* seed_material.h */, ); name = seed_material; sourceTree = ""; }; - 46EB2E00016CB0 /* traits */ = { + 46EB2E00016B30 /* traits */ = { isa = PBXGroup; children = ( - 46EB2E00016CC0 /* traits.h */, + 46EB2E00016B40 /* traits.h */, ); name = traits; sourceTree = ""; }; - 46EB2E00016CD0 /* uniform_helper */ = { + 46EB2E00016B50 /* uniform_helper */ = { isa = PBXGroup; children = ( - 46EB2E00016CE0 /* uniform_helper.h */, + 46EB2E00016B60 /* uniform_helper.h */, ); name = uniform_helper; sourceTree = ""; }; - 46EB2E00016CF0 /* wide_multiply */ = { + 46EB2E00016B70 /* wide_multiply */ = { isa = PBXGroup; children = ( - 46EB2E00016D00 /* wide_multiply.h */, + 46EB2E00016B80 /* wide_multiply.h */, ); name = wide_multiply; sourceTree = ""; }; - 46EB2E00016D10 /* random */ = { + 46EB2E00016B90 /* random */ = { isa = PBXGroup; children = ( - 46EB2E00016D20 /* random.h */, + 46EB2E00016BA0 /* random.h */, ); name = random; sourceTree = ""; }; - 46EB2E00016D30 /* seed_gen_exception */ = { + 46EB2E00016BB0 /* seed_gen_exception */ = { isa = PBXGroup; children = ( - 46EB2E00016D40 /* seed_gen_exception.cc */, - 46EB2E00016D50 /* seed_gen_exception.h */, + 46EB2E00016BC0 /* seed_gen_exception.cc */, + 46EB2E00016BD0 /* seed_gen_exception.h */, ); name = seed_gen_exception; sourceTree = ""; }; - 46EB2E00016D60 /* seed_sequences */ = { + 46EB2E00016BE0 /* seed_sequences */ = { isa = PBXGroup; children = ( - 46EB2E00016D70 /* seed_sequences.cc */, - 46EB2E00016D80 /* seed_sequences.h */, + 46EB2E00016BF0 /* seed_sequences.cc */, + 46EB2E00016C00 /* seed_sequences.h */, ); name = seed_sequences; sourceTree = ""; }; - 46EB2E00016D90 /* status */ = { + 46EB2E00016C10 /* status */ = { isa = PBXGroup; children = ( - 46EB2E00016DA0 /* status */, - 46EB2E00016E00 /* statusor */, + 46EB2E00016C20 /* status */, + 46EB2E00016C80 /* statusor */, ); name = status; sourceTree = ""; }; - 46EB2E00016DA0 /* status */ = { + 46EB2E00016C20 /* status */ = { isa = PBXGroup; children = ( - 46EB2E00016DC0 /* status.cc */, - 46EB2E00016DD0 /* status.h */, - 46EB2E00016DB0 /* status_internal.h */, - 46EB2E00016DE0 /* status_payload_printer.cc */, - 46EB2E00016DF0 /* status_payload_printer.h */, + 46EB2E00016C40 /* status.cc */, + 46EB2E00016C50 /* status.h */, + 46EB2E00016C30 /* status_internal.h */, + 46EB2E00016C60 /* status_payload_printer.cc */, + 46EB2E00016C70 /* status_payload_printer.h */, ); name = status; sourceTree = ""; }; - 46EB2E00016E00 /* statusor */ = { + 46EB2E00016C80 /* statusor */ = { isa = PBXGroup; children = ( - 46EB2E00016E20 /* statusor.cc */, - 46EB2E00016E30 /* statusor.h */, - 46EB2E00016E10 /* statusor_internal.h */, + 46EB2E00016CA0 /* statusor.cc */, + 46EB2E00016CB0 /* statusor.h */, + 46EB2E00016C90 /* statusor_internal.h */, ); name = statusor; sourceTree = ""; }; - 46EB2E00016E40 /* strings */ = { + 46EB2E00016CC0 /* strings */ = { isa = PBXGroup; children = ( - 46EB2E00016E50 /* cord */, - 46EB2E00016E80 /* cord_internal */, - 46EB2E00016F70 /* cordz_functions */, - 46EB2E00016FA0 /* cordz_handle */, - 46EB2E00016FD0 /* cordz_info */, - 46EB2E00017000 /* cordz_statistics */, - 46EB2E00017020 /* cordz_update_scope */, - 46EB2E00017040 /* cordz_update_tracker */, - 46EB2E00017060 /* internal */, - 46EB2E000170F0 /* str_format */, - 46EB2E00017110 /* str_format_internal */, - 46EB2E000171F0 /* strings */, + 46EB2E00016CD0 /* cord */, + 46EB2E00016D00 /* cord_internal */, + 46EB2E00016DF0 /* cordz_functions */, + 46EB2E00016E20 /* cordz_handle */, + 46EB2E00016E50 /* cordz_info */, + 46EB2E00016E80 /* cordz_statistics */, + 46EB2E00016EA0 /* cordz_update_scope */, + 46EB2E00016EC0 /* cordz_update_tracker */, + 46EB2E00016EE0 /* internal */, + 46EB2E00016F70 /* str_format */, + 46EB2E00016F90 /* str_format_internal */, + 46EB2E00017070 /* strings */, ); name = strings; sourceTree = ""; }; - 46EB2E00016E50 /* cord */ = { + 46EB2E00016CD0 /* cord */ = { isa = PBXGroup; children = ( - 46EB2E00016E60 /* cord.cc */, - 46EB2E00016E70 /* cord.h */, + 46EB2E00016CE0 /* cord.cc */, + 46EB2E00016CF0 /* cord.h */, ); name = cord; sourceTree = ""; }; - 46EB2E00016E80 /* cord_internal */ = { + 46EB2E00016D00 /* cord_internal */ = { isa = PBXGroup; children = ( - 46EB2E00016E90 /* cord_internal.cc */, - 46EB2E00016EA0 /* cord_internal.h */, - 46EB2E00016EB0 /* cord_rep_btree.cc */, - 46EB2E00016EC0 /* cord_rep_btree.h */, - 46EB2E00016ED0 /* cord_rep_btree_navigator.cc */, - 46EB2E00016EE0 /* cord_rep_btree_navigator.h */, - 46EB2E00016EF0 /* cord_rep_btree_reader.cc */, - 46EB2E00016F00 /* cord_rep_btree_reader.h */, - 46EB2E00016F10 /* cord_rep_consume.cc */, - 46EB2E00016F20 /* cord_rep_consume.h */, - 46EB2E00016F30 /* cord_rep_flat.h */, - 46EB2E00016F40 /* cord_rep_ring.cc */, - 46EB2E00016F50 /* cord_rep_ring.h */, - 46EB2E00016F60 /* cord_rep_ring_reader.h */, + 46EB2E00016D10 /* cord_internal.cc */, + 46EB2E00016D20 /* cord_internal.h */, + 46EB2E00016D30 /* cord_rep_btree.cc */, + 46EB2E00016D40 /* cord_rep_btree.h */, + 46EB2E00016D50 /* cord_rep_btree_navigator.cc */, + 46EB2E00016D60 /* cord_rep_btree_navigator.h */, + 46EB2E00016D70 /* cord_rep_btree_reader.cc */, + 46EB2E00016D80 /* cord_rep_btree_reader.h */, + 46EB2E00016D90 /* cord_rep_consume.cc */, + 46EB2E00016DA0 /* cord_rep_consume.h */, + 46EB2E00016DB0 /* cord_rep_flat.h */, + 46EB2E00016DC0 /* cord_rep_ring.cc */, + 46EB2E00016DD0 /* cord_rep_ring.h */, + 46EB2E00016DE0 /* cord_rep_ring_reader.h */, ); name = cord_internal; sourceTree = ""; }; - 46EB2E00016F70 /* cordz_functions */ = { + 46EB2E00016DF0 /* cordz_functions */ = { isa = PBXGroup; children = ( - 46EB2E00016F80 /* cordz_functions.cc */, - 46EB2E00016F90 /* cordz_functions.h */, + 46EB2E00016E00 /* cordz_functions.cc */, + 46EB2E00016E10 /* cordz_functions.h */, ); name = cordz_functions; sourceTree = ""; }; - 46EB2E00016FA0 /* cordz_handle */ = { + 46EB2E00016E20 /* cordz_handle */ = { isa = PBXGroup; children = ( - 46EB2E00016FB0 /* cordz_handle.cc */, - 46EB2E00016FC0 /* cordz_handle.h */, + 46EB2E00016E30 /* cordz_handle.cc */, + 46EB2E00016E40 /* cordz_handle.h */, ); name = cordz_handle; sourceTree = ""; }; - 46EB2E00016FD0 /* cordz_info */ = { + 46EB2E00016E50 /* cordz_info */ = { isa = PBXGroup; children = ( - 46EB2E00016FE0 /* cordz_info.cc */, - 46EB2E00016FF0 /* cordz_info.h */, + 46EB2E00016E60 /* cordz_info.cc */, + 46EB2E00016E70 /* cordz_info.h */, ); name = cordz_info; sourceTree = ""; }; - 46EB2E00017000 /* cordz_statistics */ = { + 46EB2E00016E80 /* cordz_statistics */ = { isa = PBXGroup; children = ( - 46EB2E00017010 /* cordz_statistics.h */, + 46EB2E00016E90 /* cordz_statistics.h */, ); name = cordz_statistics; sourceTree = ""; }; - 46EB2E00017020 /* cordz_update_scope */ = { + 46EB2E00016EA0 /* cordz_update_scope */ = { isa = PBXGroup; children = ( - 46EB2E00017030 /* cordz_update_scope.h */, + 46EB2E00016EB0 /* cordz_update_scope.h */, ); name = cordz_update_scope; sourceTree = ""; }; - 46EB2E00017040 /* cordz_update_tracker */ = { + 46EB2E00016EC0 /* cordz_update_tracker */ = { isa = PBXGroup; children = ( - 46EB2E00017050 /* cordz_update_tracker.h */, + 46EB2E00016ED0 /* cordz_update_tracker.h */, ); name = cordz_update_tracker; sourceTree = ""; }; - 46EB2E00017060 /* internal */ = { + 46EB2E00016EE0 /* internal */ = { isa = PBXGroup; children = ( - 46EB2E00017070 /* char_map.h */, - 46EB2E00017080 /* escaping.cc */, - 46EB2E00017090 /* escaping.h */, - 46EB2E000170A0 /* ostringstream.cc */, - 46EB2E000170B0 /* ostringstream.h */, - 46EB2E000170C0 /* resize_uninitialized.h */, - 46EB2E000170D0 /* utf8.cc */, - 46EB2E000170E0 /* utf8.h */, + 46EB2E00016EF0 /* char_map.h */, + 46EB2E00016F00 /* escaping.cc */, + 46EB2E00016F10 /* escaping.h */, + 46EB2E00016F20 /* ostringstream.cc */, + 46EB2E00016F30 /* ostringstream.h */, + 46EB2E00016F40 /* resize_uninitialized.h */, + 46EB2E00016F50 /* utf8.cc */, + 46EB2E00016F60 /* utf8.h */, ); name = internal; sourceTree = ""; }; - 46EB2E000170F0 /* str_format */ = { + 46EB2E00016F70 /* str_format */ = { isa = PBXGroup; children = ( - 46EB2E00017100 /* str_format.h */, + 46EB2E00016F80 /* str_format.h */, ); name = str_format; sourceTree = ""; }; - 46EB2E00017110 /* str_format_internal */ = { + 46EB2E00016F90 /* str_format_internal */ = { isa = PBXGroup; children = ( - 46EB2E00017120 /* arg.cc */, - 46EB2E00017130 /* arg.h */, - 46EB2E00017140 /* bind.cc */, - 46EB2E00017150 /* bind.h */, - 46EB2E00017160 /* checker.h */, - 46EB2E00017170 /* extension.cc */, - 46EB2E00017180 /* extension.h */, - 46EB2E00017190 /* float_conversion.cc */, - 46EB2E000171A0 /* float_conversion.h */, - 46EB2E000171B0 /* output.cc */, - 46EB2E000171C0 /* output.h */, - 46EB2E000171D0 /* parser.cc */, - 46EB2E000171E0 /* parser.h */, + 46EB2E00016FA0 /* arg.cc */, + 46EB2E00016FB0 /* arg.h */, + 46EB2E00016FC0 /* bind.cc */, + 46EB2E00016FD0 /* bind.h */, + 46EB2E00016FE0 /* checker.h */, + 46EB2E00016FF0 /* extension.cc */, + 46EB2E00017000 /* extension.h */, + 46EB2E00017010 /* float_conversion.cc */, + 46EB2E00017020 /* float_conversion.h */, + 46EB2E00017030 /* output.cc */, + 46EB2E00017040 /* output.h */, + 46EB2E00017050 /* parser.cc */, + 46EB2E00017060 /* parser.h */, ); name = str_format_internal; sourceTree = ""; }; - 46EB2E000171F0 /* strings */ = { - isa = PBXGroup; - children = ( - 46EB2E00017200 /* ascii.cc */, - 46EB2E00017210 /* ascii.h */, - 46EB2E00017220 /* charconv.cc */, - 46EB2E00017230 /* charconv.h */, - 46EB2E00017260 /* charconv_bigint.cc */, - 46EB2E00017270 /* charconv_bigint.h */, - 46EB2E00017280 /* charconv_parse.cc */, - 46EB2E00017290 /* charconv_parse.h */, - 46EB2E00017240 /* escaping.cc */, - 46EB2E00017250 /* escaping.h */, - 46EB2E00017300 /* match.cc */, - 46EB2E00017310 /* match.h */, - 46EB2E000172A0 /* memutil.cc */, - 46EB2E000172B0 /* memutil.h */, - 46EB2E00017320 /* numbers.cc */, - 46EB2E00017330 /* numbers.h */, - 46EB2E000172C0 /* stl_type_traits.h */, - 46EB2E00017340 /* str_cat.cc */, - 46EB2E00017350 /* str_cat.h */, - 46EB2E00017360 /* str_join.h */, - 46EB2E000172D0 /* str_join_internal.h */, - 46EB2E00017370 /* str_replace.cc */, - 46EB2E00017380 /* str_replace.h */, - 46EB2E00017390 /* str_split.cc */, - 46EB2E000173A0 /* str_split.h */, - 46EB2E000172E0 /* str_split_internal.h */, - 46EB2E000172F0 /* string_constant.h */, - 46EB2E000173B0 /* string_view.cc */, - 46EB2E000173C0 /* string_view.h */, - 46EB2E000173D0 /* strip.h */, - 46EB2E000173E0 /* substitute.cc */, - 46EB2E000173F0 /* substitute.h */, + 46EB2E00017070 /* strings */ = { + isa = PBXGroup; + children = ( + 46EB2E00017080 /* ascii.cc */, + 46EB2E00017090 /* ascii.h */, + 46EB2E000170A0 /* charconv.cc */, + 46EB2E000170B0 /* charconv.h */, + 46EB2E000170E0 /* charconv_bigint.cc */, + 46EB2E000170F0 /* charconv_bigint.h */, + 46EB2E00017100 /* charconv_parse.cc */, + 46EB2E00017110 /* charconv_parse.h */, + 46EB2E000170C0 /* escaping.cc */, + 46EB2E000170D0 /* escaping.h */, + 46EB2E00017180 /* match.cc */, + 46EB2E00017190 /* match.h */, + 46EB2E00017120 /* memutil.cc */, + 46EB2E00017130 /* memutil.h */, + 46EB2E000171A0 /* numbers.cc */, + 46EB2E000171B0 /* numbers.h */, + 46EB2E00017140 /* stl_type_traits.h */, + 46EB2E000171C0 /* str_cat.cc */, + 46EB2E000171D0 /* str_cat.h */, + 46EB2E000171E0 /* str_join.h */, + 46EB2E00017150 /* str_join_internal.h */, + 46EB2E000171F0 /* str_replace.cc */, + 46EB2E00017200 /* str_replace.h */, + 46EB2E00017210 /* str_split.cc */, + 46EB2E00017220 /* str_split.h */, + 46EB2E00017160 /* str_split_internal.h */, + 46EB2E00017170 /* string_constant.h */, + 46EB2E00017230 /* string_view.cc */, + 46EB2E00017240 /* string_view.h */, + 46EB2E00017250 /* strip.h */, + 46EB2E00017260 /* substitute.cc */, + 46EB2E00017270 /* substitute.h */, ); name = strings; sourceTree = ""; }; - 46EB2E00017400 /* synchronization */ = { + 46EB2E00017280 /* synchronization */ = { isa = PBXGroup; children = ( - 46EB2E00017410 /* graphcycles_internal */, - 46EB2E00017440 /* kernel_timeout_internal */, - 46EB2E00017460 /* synchronization */, + 46EB2E00017290 /* graphcycles_internal */, + 46EB2E000172C0 /* kernel_timeout_internal */, + 46EB2E000172E0 /* synchronization */, ); name = synchronization; sourceTree = ""; }; - 46EB2E00017410 /* graphcycles_internal */ = { + 46EB2E00017290 /* graphcycles_internal */ = { isa = PBXGroup; children = ( - 46EB2E00017420 /* graphcycles.cc */, - 46EB2E00017430 /* graphcycles.h */, + 46EB2E000172A0 /* graphcycles.cc */, + 46EB2E000172B0 /* graphcycles.h */, ); name = graphcycles_internal; sourceTree = ""; }; - 46EB2E00017440 /* kernel_timeout_internal */ = { + 46EB2E000172C0 /* kernel_timeout_internal */ = { isa = PBXGroup; children = ( - 46EB2E00017450 /* kernel_timeout.h */, + 46EB2E000172D0 /* kernel_timeout.h */, ); name = kernel_timeout_internal; sourceTree = ""; }; - 46EB2E00017460 /* synchronization */ = { + 46EB2E000172E0 /* synchronization */ = { isa = PBXGroup; children = ( - 46EB2E00017470 /* barrier.cc */, - 46EB2E00017480 /* barrier.h */, - 46EB2E00017490 /* blocking_counter.cc */, - 46EB2E000174A0 /* blocking_counter.h */, - 46EB2E000174B0 /* create_thread_identity.cc */, - 46EB2E000174C0 /* create_thread_identity.h */, - 46EB2E000174D0 /* futex.h */, - 46EB2E00017520 /* mutex.cc */, - 46EB2E00017530 /* mutex.h */, - 46EB2E00017540 /* notification.cc */, - 46EB2E00017550 /* notification.h */, - 46EB2E000174E0 /* per_thread_sem.cc */, - 46EB2E000174F0 /* per_thread_sem.h */, - 46EB2E00017500 /* waiter.cc */, - 46EB2E00017510 /* waiter.h */, + 46EB2E000172F0 /* barrier.cc */, + 46EB2E00017300 /* barrier.h */, + 46EB2E00017310 /* blocking_counter.cc */, + 46EB2E00017320 /* blocking_counter.h */, + 46EB2E00017330 /* create_thread_identity.cc */, + 46EB2E00017340 /* create_thread_identity.h */, + 46EB2E00017350 /* futex.h */, + 46EB2E000173A0 /* mutex.cc */, + 46EB2E000173B0 /* mutex.h */, + 46EB2E000173C0 /* notification.cc */, + 46EB2E000173D0 /* notification.h */, + 46EB2E00017360 /* per_thread_sem.cc */, + 46EB2E00017370 /* per_thread_sem.h */, + 46EB2E00017380 /* waiter.cc */, + 46EB2E00017390 /* waiter.h */, ); name = synchronization; sourceTree = ""; }; - 46EB2E00017560 /* time */ = { + 46EB2E000173E0 /* time */ = { isa = PBXGroup; children = ( - 46EB2E00017570 /* internal */, - 46EB2E00017700 /* time */, + 46EB2E000173F0 /* internal */, + 46EB2E00017580 /* time */, ); name = time; sourceTree = ""; }; - 46EB2E00017570 /* internal */ = { + 46EB2E000173F0 /* internal */ = { isa = PBXGroup; children = ( - 46EB2E00017580 /* cctz */, + 46EB2E00017400 /* cctz */, ); name = internal; sourceTree = ""; }; - 46EB2E00017580 /* cctz */ = { + 46EB2E00017400 /* cctz */ = { isa = PBXGroup; children = ( - 46EB2E00017590 /* civil_time */, - 46EB2E000175D0 /* time_zone */, + 46EB2E00017410 /* civil_time */, + 46EB2E00017450 /* time_zone */, ); name = cctz; sourceTree = ""; }; - 46EB2E00017590 /* civil_time */ = { + 46EB2E00017410 /* civil_time */ = { isa = PBXGroup; children = ( - 46EB2E000175A0 /* civil_time.h */, - 46EB2E000175C0 /* civil_time_detail.cc */, - 46EB2E000175B0 /* civil_time_detail.h */, + 46EB2E00017420 /* civil_time.h */, + 46EB2E00017440 /* civil_time_detail.cc */, + 46EB2E00017430 /* civil_time_detail.h */, ); name = civil_time; sourceTree = ""; }; - 46EB2E000175D0 /* time_zone */ = { - isa = PBXGroup; - children = ( - 46EB2E000175E0 /* time_zone.h */, - 46EB2E00017600 /* time_zone_fixed.cc */, - 46EB2E00017610 /* time_zone_fixed.h */, - 46EB2E00017620 /* time_zone_format.cc */, - 46EB2E00017630 /* time_zone_if.cc */, - 46EB2E00017640 /* time_zone_if.h */, - 46EB2E00017650 /* time_zone_impl.cc */, - 46EB2E00017660 /* time_zone_impl.h */, - 46EB2E00017670 /* time_zone_info.cc */, - 46EB2E00017680 /* time_zone_info.h */, - 46EB2E00017690 /* time_zone_libc.cc */, - 46EB2E000176A0 /* time_zone_libc.h */, - 46EB2E000176B0 /* time_zone_lookup.cc */, - 46EB2E000176C0 /* time_zone_posix.cc */, - 46EB2E000176D0 /* time_zone_posix.h */, - 46EB2E000176E0 /* tzfile.h */, - 46EB2E000176F0 /* zone_info_source.cc */, - 46EB2E000175F0 /* zone_info_source.h */, + 46EB2E00017450 /* time_zone */ = { + isa = PBXGroup; + children = ( + 46EB2E00017460 /* time_zone.h */, + 46EB2E00017480 /* time_zone_fixed.cc */, + 46EB2E00017490 /* time_zone_fixed.h */, + 46EB2E000174A0 /* time_zone_format.cc */, + 46EB2E000174B0 /* time_zone_if.cc */, + 46EB2E000174C0 /* time_zone_if.h */, + 46EB2E000174D0 /* time_zone_impl.cc */, + 46EB2E000174E0 /* time_zone_impl.h */, + 46EB2E000174F0 /* time_zone_info.cc */, + 46EB2E00017500 /* time_zone_info.h */, + 46EB2E00017510 /* time_zone_libc.cc */, + 46EB2E00017520 /* time_zone_libc.h */, + 46EB2E00017530 /* time_zone_lookup.cc */, + 46EB2E00017540 /* time_zone_posix.cc */, + 46EB2E00017550 /* time_zone_posix.h */, + 46EB2E00017560 /* tzfile.h */, + 46EB2E00017570 /* zone_info_source.cc */, + 46EB2E00017470 /* zone_info_source.h */, ); name = time_zone; sourceTree = ""; }; - 46EB2E00017700 /* time */ = { + 46EB2E00017580 /* time */ = { isa = PBXGroup; children = ( - 46EB2E00017710 /* civil_time.cc */, - 46EB2E00017720 /* civil_time.h */, - 46EB2E00017730 /* clock.cc */, - 46EB2E00017740 /* clock.h */, - 46EB2E00017750 /* duration.cc */, - 46EB2E00017760 /* format.cc */, - 46EB2E00017770 /* get_current_time_chrono.inc */, - 46EB2E00017780 /* get_current_time_posix.inc */, - 46EB2E00017790 /* time.cc */, - 46EB2E000177A0 /* time.h */, + 46EB2E00017590 /* civil_time.cc */, + 46EB2E000175A0 /* civil_time.h */, + 46EB2E000175B0 /* clock.cc */, + 46EB2E000175C0 /* clock.h */, + 46EB2E000175D0 /* duration.cc */, + 46EB2E000175E0 /* format.cc */, + 46EB2E000175F0 /* get_current_time_chrono.inc */, + 46EB2E00017600 /* get_current_time_posix.inc */, + 46EB2E00017610 /* time.cc */, + 46EB2E00017620 /* time.h */, ); name = time; sourceTree = ""; }; - 46EB2E000177B0 /* types */ = { + 46EB2E00017630 /* types */ = { isa = PBXGroup; children = ( - 46EB2E000177C0 /* any */, - 46EB2E000177E0 /* bad_any_cast */, - 46EB2E00017800 /* bad_any_cast_impl */, - 46EB2E00017820 /* bad_optional_access */, - 46EB2E00017850 /* bad_variant_access */, - 46EB2E00017880 /* compare */, - 46EB2E000178A0 /* optional */, - 46EB2E000178D0 /* span */, - 46EB2E00017900 /* variant */, + 46EB2E00017640 /* any */, + 46EB2E00017660 /* bad_any_cast */, + 46EB2E00017680 /* bad_any_cast_impl */, + 46EB2E000176A0 /* bad_optional_access */, + 46EB2E000176D0 /* bad_variant_access */, + 46EB2E00017700 /* compare */, + 46EB2E00017720 /* optional */, + 46EB2E00017750 /* span */, + 46EB2E00017780 /* variant */, ); name = types; sourceTree = ""; }; - 46EB2E000177C0 /* any */ = { + 46EB2E00017640 /* any */ = { isa = PBXGroup; children = ( - 46EB2E000177D0 /* any.h */, + 46EB2E00017650 /* any.h */, ); name = any; sourceTree = ""; }; - 46EB2E000177E0 /* bad_any_cast */ = { + 46EB2E00017660 /* bad_any_cast */ = { isa = PBXGroup; children = ( - 46EB2E000177F0 /* bad_any_cast.h */, + 46EB2E00017670 /* bad_any_cast.h */, ); name = bad_any_cast; sourceTree = ""; }; - 46EB2E00017800 /* bad_any_cast_impl */ = { + 46EB2E00017680 /* bad_any_cast_impl */ = { isa = PBXGroup; children = ( - 46EB2E00017810 /* bad_any_cast.cc */, + 46EB2E00017690 /* bad_any_cast.cc */, ); name = bad_any_cast_impl; sourceTree = ""; }; - 46EB2E00017820 /* bad_optional_access */ = { + 46EB2E000176A0 /* bad_optional_access */ = { isa = PBXGroup; children = ( - 46EB2E00017830 /* bad_optional_access.cc */, - 46EB2E00017840 /* bad_optional_access.h */, + 46EB2E000176B0 /* bad_optional_access.cc */, + 46EB2E000176C0 /* bad_optional_access.h */, ); name = bad_optional_access; sourceTree = ""; }; - 46EB2E00017850 /* bad_variant_access */ = { + 46EB2E000176D0 /* bad_variant_access */ = { isa = PBXGroup; children = ( - 46EB2E00017860 /* bad_variant_access.cc */, - 46EB2E00017870 /* bad_variant_access.h */, + 46EB2E000176E0 /* bad_variant_access.cc */, + 46EB2E000176F0 /* bad_variant_access.h */, ); name = bad_variant_access; sourceTree = ""; }; - 46EB2E00017880 /* compare */ = { + 46EB2E00017700 /* compare */ = { isa = PBXGroup; children = ( - 46EB2E00017890 /* compare.h */, + 46EB2E00017710 /* compare.h */, ); name = compare; sourceTree = ""; }; - 46EB2E000178A0 /* optional */ = { + 46EB2E00017720 /* optional */ = { isa = PBXGroup; children = ( - 46EB2E000178B0 /* optional.h */, - 46EB2E000178C0 /* optional.h */, + 46EB2E00017730 /* optional.h */, + 46EB2E00017740 /* optional.h */, ); name = optional; sourceTree = ""; }; - 46EB2E000178D0 /* span */ = { + 46EB2E00017750 /* span */ = { isa = PBXGroup; children = ( - 46EB2E000178E0 /* span.h */, - 46EB2E000178F0 /* span.h */, + 46EB2E00017760 /* span.h */, + 46EB2E00017770 /* span.h */, ); name = span; sourceTree = ""; }; - 46EB2E00017900 /* variant */ = { + 46EB2E00017780 /* variant */ = { isa = PBXGroup; children = ( - 46EB2E00017910 /* variant.h */, - 46EB2E00017920 /* variant.h */, + 46EB2E00017790 /* variant.h */, + 46EB2E000177A0 /* variant.h */, ); name = variant; sourceTree = ""; }; - 46EB2E00017930 /* utility */ = { + 46EB2E000177B0 /* utility */ = { isa = PBXGroup; children = ( - 46EB2E00017940 /* utility */, + 46EB2E000177C0 /* utility */, ); name = utility; sourceTree = ""; }; - 46EB2E00017940 /* utility */ = { + 46EB2E000177C0 /* utility */ = { isa = PBXGroup; children = ( - 46EB2E00017950 /* utility.h */, + 46EB2E000177D0 /* utility.h */, ); name = utility; sourceTree = ""; }; - 46EB2E00017A30 /* Implementation */ = { - isa = PBXGroup; - children = ( - 46EB2E00018200 /* accesslog.upb.h */, - 46EB2E000188D0 /* accesslog.upbdefs.h */, - 46EB2E000199E0 /* activity.h */, - 46EB2E00018260 /* address.upb.h */, - 46EB2E00018930 /* address.upbdefs.h */, - 46EB2E00017B10 /* address_filtering.h */, - 46EB2E000184F0 /* ads.upb.h */, - 46EB2E00018BC0 /* ads.upbdefs.h */, - 46EB2E0001A380 /* alarm.cc */, - 46EB2E00019230 /* alloc.h */, - 46EB2E00018030 /* alpn.h */, - 46EB2E0001A100 /* alts_counter.h */, - 46EB2E00019BD0 /* alts_credentials.h */, - 46EB2E0001A110 /* alts_crypter.h */, - 46EB2E0001A120 /* alts_frame_protector.h */, - 46EB2E0001A1B0 /* alts_grpc_integrity_only_record_protocol.h */, - 46EB2E0001A1C0 /* alts_grpc_privacy_integrity_record_protocol.h */, - 46EB2E0001A1D0 /* alts_grpc_record_protocol.h */, - 46EB2E0001A1E0 /* alts_grpc_record_protocol_common.h */, - 46EB2E0001A150 /* alts_handshaker_client.h */, - 46EB2E0001A1F0 /* alts_iovec_record_protocol.h */, - 46EB2E0001A130 /* alts_record_protocol_crypter_common.h */, - 46EB2E00019D80 /* alts_security_connector.h */, - 46EB2E0001A160 /* alts_shared_resource.h */, - 46EB2E0001A170 /* alts_tsi_handshaker.h */, - 46EB2E0001A180 /* alts_tsi_handshaker_private.h */, - 46EB2E0001A190 /* alts_tsi_utils.h */, - 46EB2E0001A200 /* alts_zero_copy_grpc_protector.h */, - 46EB2E00018750 /* altscontext.upb.h */, - 46EB2E00018660 /* annotations.upb.h */, - 46EB2E00018D30 /* annotations.upbdefs.h */, - 46EB2E000186D0 /* any.upb.h */, - 46EB2E00018DA0 /* any.upbdefs.h */, - 46EB2E00019AF0 /* api.h */, - 46EB2E00018380 /* api_listener.upb.h */, - 46EB2E00018A50 /* api_listener.upbdefs.h */, - 46EB2E00019F40 /* api_trace.h */, - 46EB2E00019B00 /* arena.h */, - 46EB2E0001A4A0 /* async_generic_service.cc */, - 46EB2E000192D0 /* atomic_utils.h */, - 46EB2E00019E30 /* auth_filters.h */, - 46EB2E0001A390 /* auth_property_iterator.cc */, - 46EB2E00018820 /* authority.upb.h */, - 46EB2E00018E90 /* authority.upbdefs.h */, - 46EB2E00019B50 /* authorization_engine.h */, - 46EB2E00019B60 /* authorization_policy_provider.h */, - 46EB2E000190A0 /* avl.h */, - 46EB2E00019C20 /* aws_external_account_credentials.h */, - 46EB2E00019C30 /* aws_request_signer.h */, - 46EB2E00019EB0 /* b64.h */, - 46EB2E00017A40 /* backend_metric.h */, - 46EB2E000190B0 /* backoff.h */, - 46EB2E00018270 /* backoff.upb.h */, - 46EB2E00018940 /* backoff.upbdefs.h */, - 46EB2E00017A50 /* backup_poller.h */, - 46EB2E00018280 /* base.upb.h */, - 46EB2E00018950 /* base.upbdefs.h */, - 46EB2E00019A00 /* basic_seq.h */, - 46EB2E0001A020 /* bdp_estimator.h */, - 46EB2E00018060 /* bin_decoder.h */, - 46EB2E00018070 /* bin_encoder.h */, - 46EB2E00017F70 /* binder.h */, - 46EB2E00017F80 /* binder_android.cc */, - 46EB2E00017F90 /* binder_android.h */, - 46EB2E00017F10 /* binder_auto_utils.h */, - 46EB2E00017DD0 /* binder_connector.cc */, - 46EB2E00017DE0 /* binder_connector.h */, - 46EB2E00017FA0 /* binder_constants.cc */, - 46EB2E00017FB0 /* binder_constants.h */, - 46EB2E00017EA0 /* binder_security_policy.cc */, - 46EB2E00017EB0 /* binder_server.cc */, - 46EB2E00017EC0 /* binder_server.h */, - 46EB2E00017ED0 /* binder_server_credentials.cc */, - 46EB2E00017EE0 /* binder_stream.h */, - 46EB2E00017EF0 /* binder_transport.cc */, - 46EB2E00017F00 /* binder_transport.h */, - 46EB2E000192E0 /* bitset.h */, - 46EB2E000194A0 /* block_annotate.h */, - 46EB2E00018210 /* bootstrap.upb.h */, - 46EB2E000188E0 /* bootstrap.upbdefs.h */, - 46EB2E000194B0 /* buffer_list.h */, - 46EB2E00019F50 /* builtins.h */, - 46EB2E0001A620 /* byte_buffer_cc.cc */, - 46EB2E0001A030 /* byte_stream.h */, - 46EB2E00019F60 /* call.h */, - 46EB2E000194C0 /* call_combiner.h */, - 46EB2E00019F70 /* call_test_only.h */, - 46EB2E000190C0 /* call_tracer.h */, - 46EB2E000184E0 /* cds.upb.h */, - 46EB2E00018BB0 /* cds.upbdefs.h */, - 46EB2E000184A0 /* cert.upb.h */, - 46EB2E00018B70 /* cert.upbdefs.h */, - 46EB2E00018F00 /* certificate_provider_factory.h */, - 46EB2E00018F10 /* certificate_provider_registry.h */, - 46EB2E00018F20 /* certificate_provider_store.h */, - 46EB2E000194D0 /* cfstream_handle.h */, - 46EB2E00019F80 /* channel.h */, - 46EB2E000190D0 /* channel_args.h */, - 46EB2E00019200 /* channel_args_endpoint_config.h */, - 46EB2E000190E0 /* channel_args_preconditioning.h */, - 46EB2E0001A4B0 /* channel_argument_option.cc */, - 46EB2E0001A3A0 /* channel_arguments.cc */, - 46EB2E0001A2A0 /* channel_cc.cc */, - 46EB2E00017DF0 /* channel_create.cc */, - 46EB2E00017E00 /* channel_create_impl.cc */, - 46EB2E00017E10 /* channel_create_impl.h */, - 46EB2E0001A3B0 /* channel_filter.cc */, - 46EB2E0001A3C0 /* channel_filter.h */, - 46EB2E00019F90 /* channel_init.h */, - 46EB2E000190F0 /* channel_stack.h */, - 46EB2E00019100 /* channel_stack_builder.h */, - 46EB2E00019FA0 /* channel_stack_type.h */, - 46EB2E00019110 /* channel_trace.h */, - 46EB2E00019120 /* channelz.h */, - 46EB2E00019130 /* channelz_registry.h */, - 46EB2E00019BE0 /* check_gcp_environment.h */, - 46EB2E00018670 /* checked.upb.h */, - 46EB2E00018D40 /* checked.upbdefs.h */, - 46EB2E00017B20 /* child_policy_handler.h */, - 46EB2E00018040 /* chttp2_connector.h */, - 46EB2E00018050 /* chttp2_server.h */, - 46EB2E00018080 /* chttp2_transport.h */, - 46EB2E000192F0 /* chunked_vector.h */, - 46EB2E00018220 /* circuit_breaker.upb.h */, - 46EB2E000188F0 /* circuit_breaker.upbdefs.h */, - 46EB2E00017D30 /* client_authority_filter.h */, - 46EB2E0001A2B0 /* client_callback.cc */, - 46EB2E00017A60 /* client_channel.h */, - 46EB2E00017A70 /* client_channel_channelz.h */, - 46EB2E00017A80 /* client_channel_factory.h */, - 46EB2E0001A2C0 /* client_context.cc */, - 46EB2E0001A2D0 /* client_interceptor.cc */, - 46EB2E00017B30 /* client_load_reporting_filter.h */, - 46EB2E000194E0 /* closure.h */, - 46EB2E000195C0 /* closure.h */, - 46EB2E00018230 /* cluster.upb.h */, - 46EB2E00018440 /* cluster.upb.h */, - 46EB2E00018900 /* cluster.upbdefs.h */, - 46EB2E00018B10 /* cluster.upbdefs.h */, - 46EB2E0001A370 /* codegen_init.cc */, - 46EB2E00018830 /* collection_entry.upb.h */, - 46EB2E00018EA0 /* collection_entry.upbdefs.h */, - 46EB2E000194F0 /* combiner.h */, - 46EB2E000184B0 /* common.upb.h */, - 46EB2E00018B80 /* common.upbdefs.h */, - 46EB2E00019FB0 /* completion_queue.h */, - 46EB2E0001A3D0 /* completion_queue_cc.cc */, - 46EB2E00019FC0 /* completion_queue_factory.h */, - 46EB2E00019C00 /* composite_credentials.h */, - 46EB2E000191A0 /* compression_internal.h */, - 46EB2E000181D0 /* config_dump.upb.h */, - 46EB2E000188A0 /* config_dump.upbdefs.h */, - 46EB2E00017A90 /* config_selector.h */, - 46EB2E00018290 /* config_source.upb.h */, - 46EB2E00018960 /* config_source.upbdefs.h */, - 46EB2E00019140 /* connected_channel.h */, - 46EB2E00017E20 /* connection_id_generator.cc */, - 46EB2E00017E30 /* connection_id_generator.h */, - 46EB2E0001A040 /* connectivity_state.h */, - 46EB2E00017AA0 /* connector.h */, - 46EB2E00019300 /* construct_destruct.h */, - 46EB2E00019150 /* context.h */, - 46EB2E000199F0 /* context.h */, - 46EB2E00018090 /* context_list.h */, - 46EB2E00018840 /* context_params.upb.h */, - 46EB2E00018EB0 /* context_params.upbdefs.h */, - 46EB2E0001A3E0 /* core_codegen.cc */, - 46EB2E000191C0 /* core_configuration.h */, - 46EB2E00019310 /* cpp_impl_of.h */, - 46EB2E0001A2E0 /* create_channel.cc */, - 46EB2E0001A2F0 /* create_channel_internal.cc */, - 46EB2E0001A300 /* create_channel_internal.h */, - 46EB2E0001A310 /* create_channel_posix.cc */, - 46EB2E0001A4C0 /* create_default_thread_pool.cc */, - 46EB2E00019C10 /* credentials.h */, - 46EB2E0001A320 /* credentials_cc.cc */, - 46EB2E00018560 /* csds.upb.h */, - 46EB2E00018C30 /* csds.upbdefs.h */, - 46EB2E00018610 /* custom_tag.upb.h */, - 46EB2E00018CE0 /* custom_tag.upbdefs.h */, - 46EB2E00017CF0 /* deadline_filter.h */, - 46EB2E00019320 /* debug_location.h */, - 46EB2E0001A660 /* decode.h */, - 46EB2E0001A670 /* decode_fast.h */, - 46EB2E0001A680 /* decode_internal.h */, - 46EB2E0001A690 /* def.h */, - 46EB2E0001A6A0 /* def.hpp */, - 46EB2E0001A510 /* default_health_check_service.cc */, - 46EB2E0001A520 /* default_health_check_service.h */, - 46EB2E000181E0 /* deprecation.upb.h */, - 46EB2E000188B0 /* deprecation.upbdefs.h */, - 46EB2E000186E0 /* descriptor.upb.h */, - 46EB2E00018DB0 /* descriptor.upbdefs.h */, - 46EB2E00018500 /* discovery.upb.h */, - 46EB2E00018BD0 /* discovery.upbdefs.h */, - 46EB2E00017C40 /* dns_resolver_selection.h */, - 46EB2E00019330 /* dual_ref_counted.h */, - 46EB2E000186F0 /* duration.upb.h */, - 46EB2E00018DC0 /* duration.upbdefs.h */, - 46EB2E00019500 /* dynamic_annotations.h */, - 46EB2E00017AB0 /* dynamic_filters.h */, - 46EB2E0001A4D0 /* dynamic_thread_pool.cc */, - 46EB2E0001A4E0 /* dynamic_thread_pool.h */, - 46EB2E00018510 /* eds.upb.h */, - 46EB2E00018BE0 /* eds.upbdefs.h */, - 46EB2E00018700 /* empty.upb.h */, - 46EB2E00018DD0 /* empty.upbdefs.h */, - 46EB2E0001A6B0 /* encode.h */, - 46EB2E00019510 /* endpoint.h */, - 46EB2E000195D0 /* endpoint.h */, - 46EB2E00018350 /* endpoint.upb.h */, - 46EB2E00018A20 /* endpoint.upbdefs.h */, - 46EB2E00017E40 /* endpoint_binder_pool.cc */, - 46EB2E00017E50 /* endpoint_binder_pool.h */, - 46EB2E00019520 /* endpoint_cfstream.h */, - 46EB2E00018360 /* endpoint_components.upb.h */, - 46EB2E00018A30 /* endpoint_components.upbdefs.h */, - 46EB2E00019530 /* endpoint_pair.h */, - 46EB2E00019240 /* env.h */, - 46EB2E00019540 /* error.h */, - 46EB2E00019550 /* error_cfstream.h */, - 46EB2E00019560 /* error_internal.h */, - 46EB2E0001A050 /* error_utils.h */, - 46EB2E00019570 /* ev_apple.h */, - 46EB2E00019580 /* ev_epoll1_linux.h */, - 46EB2E00019590 /* ev_epollex_linux.h */, - 46EB2E000195A0 /* ev_poll_posix.h */, - 46EB2E000195B0 /* ev_posix.h */, - 46EB2E00018680 /* eval.upb.h */, - 46EB2E00018D50 /* eval.upbdefs.h */, - 46EB2E00019B70 /* evaluate_args.h */, - 46EB2E00019210 /* event_engine_factory.h */, - 46EB2E000182A0 /* event_service_config.upb.h */, - 46EB2E00018970 /* event_service_config.upbdefs.h */, - 46EB2E00019FD0 /* event_string.h */, - 46EB2E00019340 /* examine_stack.h */, - 46EB2E00019620 /* exec_ctx.h */, - 46EB2E00019A50 /* exec_ctx_wakeup_scheduler.h */, - 46EB2E00019630 /* executor.h */, - 46EB2E00018690 /* explain.upb.h */, - 46EB2E00018D60 /* explain.upbdefs.h */, - 46EB2E000182B0 /* extension.upb.h */, - 46EB2E00018980 /* extension.upbdefs.h */, - 46EB2E00019C40 /* external_account_credentials.h */, - 46EB2E0001A4F0 /* external_connection_acceptor_impl.cc */, - 46EB2E0001A500 /* external_connection_acceptor_impl.h */, - 46EB2E00019C70 /* fake_credentials.h */, - 46EB2E00017C50 /* fake_resolver.h */, - 46EB2E00019D90 /* fake_security_connector.h */, - 46EB2E0001A210 /* fake_transport_security.h */, - 46EB2E00018450 /* fault.upb.h */, - 46EB2E00018460 /* fault.upb.h */, - 46EB2E00018B20 /* fault.upbdefs.h */, - 46EB2E00018B30 /* fault.upbdefs.h */, - 46EB2E00017D00 /* fault_injection_filter.h */, - 46EB2E00019C50 /* file_external_account_credentials.h */, - 46EB2E00018F30 /* file_watcher_certificate_provider_factory.h */, - 46EB2E00018240 /* filter.upb.h */, - 46EB2E00018910 /* filter.upbdefs.h */, - 46EB2E000180A0 /* flow_control.h */, - 46EB2E00019350 /* fork.h */, - 46EB2E00019470 /* format_request.h */, - 46EB2E000180B0 /* frame.h */, - 46EB2E000180C0 /* frame_data.h */, - 46EB2E000180D0 /* frame_goaway.h */, - 46EB2E0001A140 /* frame_handler.h */, - 46EB2E000180E0 /* frame_ping.h */, - 46EB2E000180F0 /* frame_rst_stream.h */, - 46EB2E00018100 /* frame_settings.h */, - 46EB2E00018110 /* frame_window_update.h */, - 46EB2E00019660 /* gethostname.h */, - 46EB2E00019360 /* global_config.h */, - 46EB2E00019370 /* global_config_custom.h */, - 46EB2E00019380 /* global_config_env.h */, - 46EB2E00019390 /* global_config_generic.h */, - 46EB2E00017AC0 /* global_subchannel_pool.h */, - 46EB2E00019C80 /* google_default_credentials.h */, - 46EB2E00019BF0 /* grpc_alts_credentials_options.h */, - 46EB2E00017C20 /* grpc_ares_ev_driver.h */, - 46EB2E00017C30 /* grpc_ares_wrapper.h */, - 46EB2E00019B80 /* grpc_authorization_engine.h */, - 46EB2E00019670 /* grpc_if_nametoindex.h */, - 46EB2E000182C0 /* grpc_service.upb.h */, - 46EB2E00018990 /* grpc_service.upbdefs.h */, - 46EB2E00019D10 /* grpc_tls_certificate_distributor.h */, - 46EB2E00019D20 /* grpc_tls_certificate_provider.h */, - 46EB2E00019D30 /* grpc_tls_certificate_verifier.h */, - 46EB2E00019D40 /* grpc_tls_credentials_options.h */, - 46EB2E00017B40 /* grpclb.h */, - 46EB2E00017B50 /* grpclb_balancer_addresses.h */, - 46EB2E00017B60 /* grpclb_channel.h */, - 46EB2E00017B70 /* grpclb_client_stats.h */, - 46EB2E0001A0F0 /* gsec.h */, - 46EB2E00019160 /* handshaker.h */, - 46EB2E00018760 /* handshaker.upb.h */, - 46EB2E00019170 /* handshaker_factory.h */, - 46EB2E00019180 /* handshaker_registry.h */, - 46EB2E00018780 /* health.upb.h */, - 46EB2E000182D0 /* health_check.upb.h */, - 46EB2E000189A0 /* health_check.upbdefs.h */, - 46EB2E00017AD0 /* health_check_client.h */, - 46EB2E0001A530 /* health_check_service.cc */, - 46EB2E0001A540 /* health_check_service_server_builder_option.cc */, - 46EB2E000193A0 /* host_port.h */, - 46EB2E00018120 /* hpack_constants.h */, - 46EB2E00018130 /* hpack_encoder.h */, - 46EB2E00018140 /* hpack_encoder_table.h */, - 46EB2E00018150 /* hpack_parser.h */, - 46EB2E00018160 /* hpack_parser_table.h */, - 46EB2E00018620 /* http.upb.h */, - 46EB2E000186C0 /* http.upb.h */, - 46EB2E00018CF0 /* http.upbdefs.h */, - 46EB2E00018D90 /* http.upbdefs.h */, - 46EB2E0001A060 /* http2_errors.h */, - 46EB2E00018170 /* http2_settings.h */, - 46EB2E00017D20 /* http_client_filter.h */, - 46EB2E00017AE0 /* http_connect_handshaker.h */, - 46EB2E00018490 /* http_connection_manager.upb.h */, - 46EB2E00018B60 /* http_connection_manager.upbdefs.h */, - 46EB2E00017AF0 /* http_proxy.h */, - 46EB2E00017D60 /* http_server_filter.h */, - 46EB2E00018430 /* http_tracer.upb.h */, - 46EB2E00018B00 /* http_tracer.upbdefs.h */, - 46EB2E000182E0 /* http_uri.upb.h */, - 46EB2E000189B0 /* http_uri.upbdefs.h */, - 46EB2E00019480 /* httpcli.h */, - 46EB2E00018180 /* huffsyms.h */, - 46EB2E00019C90 /* iam_credentials.h */, - 46EB2E00017CE0 /* idle_filter_state.h */, - 46EB2E00019FE0 /* init.h */, - 46EB2E000181C0 /* inproc_transport.h */, - 46EB2E0001A330 /* insecure_credentials.cc */, - 46EB2E00019DA0 /* insecure_security_connector.h */, - 46EB2E0001A550 /* insecure_server_credentials.cc */, - 46EB2E00018190 /* internal.h */, - 46EB2E00019680 /* internal_errqueue.h */, - 46EB2E00019690 /* iocp_windows.h */, - 46EB2E000196A0 /* iomgr.h */, - 46EB2E000196B0 /* iomgr_custom.h */, - 46EB2E000196C0 /* iomgr_internal.h */, - 46EB2E000196D0 /* is_epollexclusive_available.h */, - 46EB2E00017E60 /* jni_utils.cc */, - 46EB2E00017E70 /* jni_utils.h */, - 46EB2E000199A0 /* json.h */, - 46EB2E00019CA0 /* json_token.h */, - 46EB2E000199B0 /* json_util.h */, - 46EB2E00019E70 /* json_util.h */, - 46EB2E00019CB0 /* jwt_credentials.h */, - 46EB2E00019CC0 /* jwt_verifier.h */, - 46EB2E00019FF0 /* lame_client.h */, - 46EB2E00017B00 /* lb_policy.h */, - 46EB2E00017BD0 /* lb_policy_factory.h */, - 46EB2E00017BE0 /* lb_policy_registry.h */, - 46EB2E00018520 /* lds.upb.h */, - 46EB2E00018BF0 /* lds.upbdefs.h */, - 46EB2E00018390 /* listener.upb.h */, - 46EB2E00018A60 /* listener.upbdefs.h */, - 46EB2E000183A0 /* listener_components.upb.h */, - 46EB2E00018A70 /* listener_components.upbdefs.h */, - 46EB2E00018790 /* load_balancer.upb.h */, - 46EB2E00017B80 /* load_balancer_api.h */, - 46EB2E000196E0 /* load_file.h */, - 46EB2E00018370 /* load_report.upb.h */, - 46EB2E00018A40 /* load_report.upbdefs.h */, - 46EB2E00019DB0 /* load_system_roots.h */, - 46EB2E00019DC0 /* load_system_roots_linux.h */, - 46EB2E00019CD0 /* local_credentials.h */, - 46EB2E00019DD0 /* local_security_connector.h */, - 46EB2E00017BF0 /* local_subchannel_pool.h */, - 46EB2E0001A220 /* local_transport_security.h */, - 46EB2E000196F0 /* lockfree_event.h */, - 46EB2E00019A60 /* loop.h */, - 46EB2E00018530 /* lrs.upb.h */, - 46EB2E00018C00 /* lrs.upbdefs.h */, - 46EB2E000193B0 /* manual_constructor.h */, - 46EB2E00019A70 /* map.h */, - 46EB2E000199C0 /* matchers.h */, - 46EB2E00019B90 /* matchers.h */, - 46EB2E00017D70 /* max_age_filter.h */, - 46EB2E000193C0 /* memory.h */, - 46EB2E00019B10 /* memory_quota.h */, - 46EB2E000191B0 /* message_compress.h */, - 46EB2E00017D40 /* message_compress_filter.h */, - 46EB2E00017D50 /* message_decompress_filter.h */, - 46EB2E00017D80 /* message_size_filter.h */, - 46EB2E00018580 /* metadata.upb.h */, - 46EB2E00018600 /* metadata.upb.h */, - 46EB2E00018C50 /* metadata.upbdefs.h */, - 46EB2E00018CD0 /* metadata.upbdefs.h */, - 46EB2E0001A070 /* metadata_batch.h */, - 46EB2E000187B0 /* migrate.upb.h */, - 46EB2E00018E20 /* migrate.upbdefs.h */, - 46EB2E00019640 /* mpmcqueue.h */, - 46EB2E000193D0 /* mpscq.h */, - 46EB2E0001A6C0 /* msg.h */, - 46EB2E0001A6D0 /* msg_internal.h */, - 46EB2E00019250 /* murmur_hash.h */, - 46EB2E00019700 /* nameser.h */, - 46EB2E00017F20 /* ndk_binder.cc */, - 46EB2E00017F30 /* ndk_binder.h */, - 46EB2E00018590 /* node.upb.h */, - 46EB2E00018C60 /* node.upbdefs.h */, - 46EB2E000185A0 /* number.upb.h */, - 46EB2E00018C70 /* number.upbdefs.h */, - 46EB2E00019CE0 /* oauth2_credentials.h */, - 46EB2E00018880 /* orca_load_report.upb.h */, - 46EB2E000193E0 /* orphanable.h */, - 46EB2E00018250 /* outlier_detection.upb.h */, - 46EB2E00018920 /* outlier_detection.upbdefs.h */, - 46EB2E000183E0 /* overload.upb.h */, - 46EB2E00018AB0 /* overload.upbdefs.h */, - 46EB2E00019080 /* parse_address.h */, - 46EB2E0001A080 /* parsed_metadata.h */, - 46EB2E00019490 /* parser.h */, - 46EB2E000185B0 /* path.upb.h */, - 46EB2E00018C80 /* path.upbdefs.h */, - 46EB2E00018570 /* path_transformation.upb.h */, - 46EB2E00018C40 /* path_transformation.upbdefs.h */, - 46EB2E00018630 /* percent.upb.h */, - 46EB2E00018D00 /* percent.upbdefs.h */, - 46EB2E00019EC0 /* percent_encoding.h */, - 46EB2E0001A090 /* pid_controller.h */, - 46EB2E00019CF0 /* plugin_credentials.h */, - 46EB2E00019A80 /* poll.h */, - 46EB2E00019710 /* polling_entity.h */, - 46EB2E000195E0 /* pollset.h */, - 46EB2E00019720 /* pollset.h */, - 46EB2E00019730 /* pollset_custom.h */, - 46EB2E00019740 /* pollset_set.h */, - 46EB2E00019750 /* pollset_set_custom.h */, - 46EB2E00019760 /* pollset_set_windows.h */, - 46EB2E00019770 /* pollset_windows.h */, - 46EB2E00019780 /* port.h */, - 46EB2E0001A6E0 /* port_def.inc */, - 46EB2E0001A6F0 /* port_undef.inc */, - 46EB2E000195F0 /* promise.h */, - 46EB2E00019A10 /* promise_factory.h */, - 46EB2E00019A20 /* promise_like.h */, - 46EB2E000182F0 /* protocol.upb.h */, - 46EB2E000189C0 /* protocol.upbdefs.h */, - 46EB2E00017C00 /* proxy_mapper.h */, - 46EB2E00017C10 /* proxy_mapper_registry.h */, - 46EB2E00018300 /* proxy_protocol.upb.h */, - 46EB2E000189D0 /* proxy_protocol.upbdefs.h */, - 46EB2E00019790 /* python_util.h */, - 46EB2E000183B0 /* quic_config.upb.h */, - 46EB2E00018A80 /* quic_config.upbdefs.h */, - 46EB2E00019A90 /* race.h */, - 46EB2E00018640 /* range.upb.h */, - 46EB2E00018D10 /* range.upbdefs.h */, - 46EB2E000183F0 /* rbac.upb.h */, - 46EB2E00018470 /* rbac.upb.h */, - 46EB2E00018AC0 /* rbac.upbdefs.h */, - 46EB2E00018B40 /* rbac.upbdefs.h */, - 46EB2E00017D90 /* rbac_filter.h */, - 46EB2E00019BA0 /* rbac_policy.h */, - 46EB2E00017DA0 /* rbac_service_config_parser.h */, - 46EB2E00018540 /* rds.upb.h */, - 46EB2E00018C10 /* rds.upbdefs.h */, - 46EB2E000193F0 /* ref_counted.h */, - 46EB2E00019400 /* ref_counted_ptr.h */, - 46EB2E0001A700 /* reflection.h */, - 46EB2E0001A710 /* reflection.hpp */, - 46EB2E000185C0 /* regex.upb.h */, - 46EB2E00018C90 /* regex.upbdefs.h */, - 46EB2E000197A0 /* resolve_address.h */, - 46EB2E000197B0 /* resolve_address_custom.h */, - 46EB2E000197C0 /* resolve_address_impl.h */, - 46EB2E000197D0 /* resolve_address_posix.h */, - 46EB2E000197E0 /* resolve_address_windows.h */, - 46EB2E000197F0 /* resolved_address.h */, - 46EB2E00019600 /* resolved_address_internal.h */, - 46EB2E00019610 /* resolver.h */, - 46EB2E00019AB0 /* resolver.h */, - 46EB2E00018310 /* resolver.upb.h */, - 46EB2E000189E0 /* resolver.upbdefs.h */, - 46EB2E00019AC0 /* resolver_factory.h */, - 46EB2E00019AD0 /* resolver_registry.h */, - 46EB2E00017C70 /* resolver_result_parsing.h */, - 46EB2E000181F0 /* resource.upb.h */, - 46EB2E00018850 /* resource.upb.h */, - 46EB2E000188C0 /* resource.upbdefs.h */, - 46EB2E00018EC0 /* resource.upbdefs.h */, - 46EB2E00018860 /* resource_locator.upb.h */, - 46EB2E00018ED0 /* resource_locator.upbdefs.h */, - 46EB2E00018870 /* resource_name.upb.h */, - 46EB2E00018EE0 /* resource_name.upbdefs.h */, - 46EB2E00019B20 /* resource_quota.h */, - 46EB2E0001A3F0 /* resource_quota_cc.cc */, - 46EB2E00017C80 /* retry_filter.h */, - 46EB2E00017C90 /* retry_service_config.h */, - 46EB2E00017CA0 /* retry_throttle.h */, - 46EB2E00017B90 /* ring_hash.h */, - 46EB2E000187A0 /* rls.upb.h */, - 46EB2E00018400 /* route.upb.h */, - 46EB2E00018AD0 /* route.upbdefs.h */, - 46EB2E00018410 /* route_components.upb.h */, - 46EB2E00018AE0 /* route_components.upbdefs.h */, - 46EB2E00018480 /* router.upb.h */, - 46EB2E00018B50 /* router.upbdefs.h */, - 46EB2E0001A400 /* rpc_method.cc */, - 46EB2E00018420 /* scoped_route.upb.h */, - 46EB2E00018AF0 /* scoped_route.upbdefs.h */, - 46EB2E00019BB0 /* sdk_server_authz_filter.h */, - 46EB2E000184C0 /* secret.upb.h */, - 46EB2E00018B90 /* secret.upbdefs.h */, - 46EB2E0001A410 /* secure_auth_context.cc */, - 46EB2E0001A420 /* secure_auth_context.h */, - 46EB2E0001A430 /* secure_channel_arguments.cc */, - 46EB2E0001A440 /* secure_create_auth_context.cc */, - 46EB2E0001A340 /* secure_credentials.cc */, - 46EB2E0001A350 /* secure_credentials.h */, - 46EB2E00019E40 /* secure_endpoint.h */, - 46EB2E0001A560 /* secure_server_credentials.cc */, - 46EB2E0001A570 /* secure_server_credentials.h */, - 46EB2E000187C0 /* security.upb.h */, - 46EB2E00018E30 /* security.upbdefs.h */, - 46EB2E00019DE0 /* security_connector.h */, - 46EB2E00019BC0 /* security_context.h */, - 46EB2E00019E50 /* security_handshaker.h */, - 46EB2E00017E80 /* security_policy_setting.cc */, - 46EB2E00017E90 /* security_policy_setting.h */, - 46EB2E00018650 /* semantic_version.upb.h */, - 46EB2E00018D20 /* semantic_version.upbdefs.h */, - 46EB2E000187D0 /* sensitive.upb.h */, - 46EB2E00018E40 /* sensitive.upbdefs.h */, - 46EB2E00019AA0 /* seq.h */, - 46EB2E0001A000 /* server.h */, - 46EB2E00019AE0 /* server_address.h */, - 46EB2E0001A580 /* server_builder.cc */, - 46EB2E0001A590 /* server_callback.cc */, - 46EB2E0001A5A0 /* server_cc.cc */, - 46EB2E00017DB0 /* server_config_selector.h */, - 46EB2E00017DC0 /* server_config_selector_filter.h */, - 46EB2E0001A5B0 /* server_context.cc */, - 46EB2E0001A5C0 /* server_credentials.cc */, - 46EB2E0001A5D0 /* server_posix.cc */, - 46EB2E00019E80 /* service_config.h */, - 46EB2E00019E90 /* service_config_call_data.h */, - 46EB2E00017D10 /* service_config_parser.h */, - 46EB2E00019EA0 /* service_config_parser.h */, - 46EB2E00019ED0 /* slice.h */, - 46EB2E00019EE0 /* slice_internal.h */, - 46EB2E00019EF0 /* slice_refcount.h */, - 46EB2E00019F00 /* slice_refcount_base.h */, - 46EB2E00019F10 /* slice_split.h */, - 46EB2E00019F20 /* slice_string_helpers.h */, - 46EB2E00019F30 /* slice_utils.h */, - 46EB2E00019220 /* sockaddr.h */, - 46EB2E00019800 /* sockaddr.h */, - 46EB2E00019810 /* sockaddr_posix.h */, - 46EB2E00019090 /* sockaddr_utils.h */, - 46EB2E00019820 /* sockaddr_windows.h */, - 46EB2E00019830 /* socket_factory_posix.h */, - 46EB2E00019840 /* socket_mutator.h */, - 46EB2E00018320 /* socket_option.upb.h */, - 46EB2E000189F0 /* socket_option.upbdefs.h */, - 46EB2E00019850 /* socket_utils.h */, - 46EB2E00019860 /* socket_utils_posix.h */, - 46EB2E00019870 /* socket_windows.h */, - 46EB2E00019260 /* spinlock.h */, - 46EB2E00018550 /* srds.upb.h */, - 46EB2E00018C20 /* srds.upbdefs.h */, - 46EB2E00019D00 /* ssl_credentials.h */, - 46EB2E00019DF0 /* ssl_security_connector.h */, - 46EB2E0001A230 /* ssl_session.h */, - 46EB2E0001A240 /* ssl_session_cache.h */, - 46EB2E0001A250 /* ssl_transport_security.h */, - 46EB2E0001A260 /* ssl_types.h */, - 46EB2E00019E00 /* ssl_utils.h */, - 46EB2E00019E10 /* ssl_utils_config.h */, - 46EB2E00019410 /* stat.h */, - 46EB2E000191D0 /* stats.h */, - 46EB2E000183D0 /* stats.upb.h */, - 46EB2E00018AA0 /* stats.upbdefs.h */, - 46EB2E000191E0 /* stats_data.h */, - 46EB2E0001A630 /* status.cc */, - 46EB2E00019A30 /* status.h */, - 46EB2E00018740 /* status.upb.h */, - 46EB2E000187E0 /* status.upb.h */, - 46EB2E00018810 /* status.upb.h */, - 46EB2E00018E10 /* status.upbdefs.h */, - 46EB2E00018E50 /* status.upbdefs.h */, - 46EB2E00018E80 /* status.upbdefs.h */, - 46EB2E0001A0A0 /* status_conversion.h */, - 46EB2E00019420 /* status_helper.h */, - 46EB2E00019190 /* status_util.h */, - 46EB2E000181A0 /* stream_map.h */, - 46EB2E00019270 /* string.h */, - 46EB2E000185D0 /* string.upb.h */, - 46EB2E00018CA0 /* string.upbdefs.h */, - 46EB2E0001A640 /* string_ref.cc */, - 46EB2E00019280 /* string_windows.h */, - 46EB2E000185E0 /* struct.upb.h */, - 46EB2E00018710 /* struct.upb.h */, - 46EB2E00018CB0 /* struct.upbdefs.h */, - 46EB2E00018DE0 /* struct.upbdefs.h */, - 46EB2E00017CB0 /* subchannel.h */, - 46EB2E00017CC0 /* subchannel_interface.h */, - 46EB2E00017BA0 /* subchannel_list.h */, - 46EB2E00017CD0 /* subchannel_pool_interface.h */, - 46EB2E00018330 /* substitution_format_string.upb.h */, - 46EB2E00018A00 /* substitution_format_string.upbdefs.h */, - 46EB2E00019A40 /* switch.h */, - 46EB2E00019430 /* sync.h */, - 46EB2E000186A0 /* syntax.upb.h */, - 46EB2E00018D70 /* syntax.upbdefs.h */, - 46EB2E00019880 /* sys_epoll_wrapper.h */, - 46EB2E00019440 /* table.h */, - 46EB2E0001A720 /* table_internal.h */, - 46EB2E00019890 /* tcp_client.h */, - 46EB2E000198A0 /* tcp_client_posix.h */, - 46EB2E000198B0 /* tcp_custom.h */, - 46EB2E000198C0 /* tcp_posix.h */, - 46EB2E000198D0 /* tcp_server.h */, - 46EB2E000198E0 /* tcp_server_utils_posix.h */, - 46EB2E000198F0 /* tcp_windows.h */, - 46EB2E0001A730 /* text_encode.h */, - 46EB2E00019450 /* thd.h */, - 46EB2E0001A600 /* thread_manager.cc */, - 46EB2E0001A610 /* thread_manager.h */, - 46EB2E0001A5E0 /* thread_pool_interface.h */, - 46EB2E00019B30 /* thread_quota.h */, - 46EB2E00019650 /* threadpool.h */, - 46EB2E00019900 /* time_averaged_stats.h */, - 46EB2E0001A650 /* time_cc.cc */, - 46EB2E00019290 /* time_precise.h */, - 46EB2E00019460 /* time_util.h */, - 46EB2E0001A0B0 /* timeout_encoding.h */, - 46EB2E00019910 /* timer.h */, - 46EB2E00019920 /* timer_custom.h */, - 46EB2E00019930 /* timer_generic.h */, - 46EB2E00019940 /* timer_heap.h */, - 46EB2E00019950 /* timer_manager.h */, - 46EB2E000199D0 /* timers.h */, - 46EB2E00018720 /* timestamp.upb.h */, - 46EB2E00018DF0 /* timestamp.upbdefs.h */, - 46EB2E000192A0 /* tls.h */, - 46EB2E000184D0 /* tls.upb.h */, - 46EB2E00018BA0 /* tls.upbdefs.h */, - 46EB2E0001A450 /* tls_certificate_provider.cc */, - 46EB2E0001A460 /* tls_certificate_verifier.cc */, - 46EB2E00019D50 /* tls_credentials.h */, - 46EB2E0001A470 /* tls_credentials_options.cc */, - 46EB2E00019E20 /* tls_security_connector.h */, - 46EB2E00019D60 /* tls_utils.h */, - 46EB2E000192B0 /* tmpfile.h */, - 46EB2E000191F0 /* trace.h */, - 46EB2E00019B40 /* trace.h */, - 46EB2E00017FC0 /* transaction.cc */, - 46EB2E00017FD0 /* transaction.h */, - 46EB2E0001A0C0 /* transport.h */, - 46EB2E0001A0D0 /* transport_impl.h */, - 46EB2E0001A270 /* transport_security.h */, - 46EB2E00018770 /* transport_security_common.upb.h */, - 46EB2E0001A1A0 /* transport_security_common_api.h */, - 46EB2E0001A280 /* transport_security_grpc.h */, - 46EB2E0001A290 /* transport_security_interface.h */, - 46EB2E00017F40 /* transport_stream_receiver.h */, - 46EB2E00017F50 /* transport_stream_receiver_impl.cc */, - 46EB2E00017F60 /* transport_stream_receiver_impl.h */, - 46EB2E00019E60 /* tsi_error.h */, - 46EB2E00018890 /* typed_struct.upb.h */, - 46EB2E00018EF0 /* typed_struct.upbdefs.h */, - 46EB2E000183C0 /* udp_listener_config.upb.h */, - 46EB2E00018A90 /* udp_listener_config.upbdefs.h */, - 46EB2E00018340 /* udp_socket_config.upb.h */, - 46EB2E00018A10 /* udp_socket_config.upbdefs.h */, - 46EB2E00019960 /* unix_sockets_posix.h */, - 46EB2E0001A740 /* upb.h */, - 46EB2E0001A750 /* upb.hpp */, - 46EB2E0001A760 /* upb_internal.h */, - 46EB2E00018F40 /* upb_utils.h */, - 46EB2E0001A0E0 /* uri_parser.h */, - 46EB2E00019C60 /* url_external_account_credentials.h */, - 46EB2E000192C0 /* useful.h */, - 46EB2E00018800 /* validate.upb.h */, - 46EB2E00018E70 /* validate.upbdefs.h */, - 46EB2E0001A010 /* validate_metadata.h */, - 46EB2E0001A480 /* validate_service_config.cc */, - 46EB2E000185F0 /* value.upb.h */, - 46EB2E000186B0 /* value.upb.h */, - 46EB2E00018CC0 /* value.upbdefs.h */, - 46EB2E00018D80 /* value.upbdefs.h */, - 46EB2E000181B0 /* varint.h */, - 46EB2E0001A490 /* version_cc.cc */, - 46EB2E000187F0 /* versioning.upb.h */, - 46EB2E00018E60 /* versioning.upbdefs.h */, - 46EB2E00019970 /* wakeup_fd_pipe.h */, - 46EB2E00019980 /* wakeup_fd_posix.h */, - 46EB2E00017FE0 /* wire_reader.h */, - 46EB2E00017FF0 /* wire_reader_impl.cc */, - 46EB2E00018000 /* wire_reader_impl.h */, - 46EB2E00018010 /* wire_writer.cc */, - 46EB2E00018020 /* wire_writer.h */, - 46EB2E00019990 /* work_serializer.h */, - 46EB2E00018730 /* wrappers.upb.h */, - 46EB2E00018E00 /* wrappers.upbdefs.h */, - 46EB2E00017BB0 /* xds.h */, - 46EB2E00018F50 /* xds_api.h */, - 46EB2E00018F60 /* xds_bootstrap.h */, - 46EB2E00018F70 /* xds_certificate_provider.h */, - 46EB2E00017BC0 /* xds_channel_args.h */, - 46EB2E00018F80 /* xds_channel_args.h */, - 46EB2E00018F90 /* xds_channel_creds.h */, - 46EB2E00018FA0 /* xds_channel_stack_modifier.h */, - 46EB2E00018FB0 /* xds_client.h */, - 46EB2E00018FC0 /* xds_client_stats.h */, - 46EB2E00018FD0 /* xds_cluster.h */, - 46EB2E00018FE0 /* xds_common_types.h */, - 46EB2E0001A360 /* xds_credentials.cc */, - 46EB2E00019D70 /* xds_credentials.h */, - 46EB2E00018FF0 /* xds_endpoint.h */, - 46EB2E00019000 /* xds_http_fault_filter.h */, - 46EB2E00019010 /* xds_http_filters.h */, - 46EB2E00019020 /* xds_http_rbac_filter.h */, - 46EB2E00019030 /* xds_listener.h */, - 46EB2E00017C60 /* xds_resolver.h */, - 46EB2E00019040 /* xds_resource_type.h */, - 46EB2E00019050 /* xds_resource_type_impl.h */, - 46EB2E00019060 /* xds_route_config.h */, - 46EB2E00019070 /* xds_routing.h */, - 46EB2E0001A5F0 /* xds_server_credentials.cc */, - 46EB2E0001A770 /* xxhash.h */, + 46EB2E000178B0 /* Implementation */ = { + isa = PBXGroup; + children = ( + 46EB2E00018080 /* accesslog.upb.h */, + 46EB2E00018750 /* accesslog.upbdefs.h */, + 46EB2E00019860 /* activity.h */, + 46EB2E000180E0 /* address.upb.h */, + 46EB2E000187B0 /* address.upbdefs.h */, + 46EB2E00017990 /* address_filtering.h */, + 46EB2E00018370 /* ads.upb.h */, + 46EB2E00018A40 /* ads.upbdefs.h */, + 46EB2E0001A200 /* alarm.cc */, + 46EB2E000190B0 /* alloc.h */, + 46EB2E00017EB0 /* alpn.h */, + 46EB2E00019F80 /* alts_counter.h */, + 46EB2E00019A50 /* alts_credentials.h */, + 46EB2E00019F90 /* alts_crypter.h */, + 46EB2E00019FA0 /* alts_frame_protector.h */, + 46EB2E0001A030 /* alts_grpc_integrity_only_record_protocol.h */, + 46EB2E0001A040 /* alts_grpc_privacy_integrity_record_protocol.h */, + 46EB2E0001A050 /* alts_grpc_record_protocol.h */, + 46EB2E0001A060 /* alts_grpc_record_protocol_common.h */, + 46EB2E00019FD0 /* alts_handshaker_client.h */, + 46EB2E0001A070 /* alts_iovec_record_protocol.h */, + 46EB2E00019FB0 /* alts_record_protocol_crypter_common.h */, + 46EB2E00019C00 /* alts_security_connector.h */, + 46EB2E00019FE0 /* alts_shared_resource.h */, + 46EB2E00019FF0 /* alts_tsi_handshaker.h */, + 46EB2E0001A000 /* alts_tsi_handshaker_private.h */, + 46EB2E0001A010 /* alts_tsi_utils.h */, + 46EB2E0001A080 /* alts_zero_copy_grpc_protector.h */, + 46EB2E000185D0 /* altscontext.upb.h */, + 46EB2E000184E0 /* annotations.upb.h */, + 46EB2E00018BB0 /* annotations.upbdefs.h */, + 46EB2E00018550 /* any.upb.h */, + 46EB2E00018C20 /* any.upbdefs.h */, + 46EB2E00019970 /* api.h */, + 46EB2E00018200 /* api_listener.upb.h */, + 46EB2E000188D0 /* api_listener.upbdefs.h */, + 46EB2E00019DC0 /* api_trace.h */, + 46EB2E00019980 /* arena.h */, + 46EB2E0001A320 /* async_generic_service.cc */, + 46EB2E00019150 /* atomic_utils.h */, + 46EB2E00019CB0 /* auth_filters.h */, + 46EB2E0001A210 /* auth_property_iterator.cc */, + 46EB2E000186A0 /* authority.upb.h */, + 46EB2E00018D10 /* authority.upbdefs.h */, + 46EB2E000199D0 /* authorization_engine.h */, + 46EB2E000199E0 /* authorization_policy_provider.h */, + 46EB2E00018F20 /* avl.h */, + 46EB2E00019AA0 /* aws_external_account_credentials.h */, + 46EB2E00019AB0 /* aws_request_signer.h */, + 46EB2E00019D30 /* b64.h */, + 46EB2E000178C0 /* backend_metric.h */, + 46EB2E00018F30 /* backoff.h */, + 46EB2E000180F0 /* backoff.upb.h */, + 46EB2E000187C0 /* backoff.upbdefs.h */, + 46EB2E000178D0 /* backup_poller.h */, + 46EB2E00018100 /* base.upb.h */, + 46EB2E000187D0 /* base.upbdefs.h */, + 46EB2E00019880 /* basic_seq.h */, + 46EB2E00019EA0 /* bdp_estimator.h */, + 46EB2E00017EE0 /* bin_decoder.h */, + 46EB2E00017EF0 /* bin_encoder.h */, + 46EB2E00017DF0 /* binder.h */, + 46EB2E00017E00 /* binder_android.cc */, + 46EB2E00017E10 /* binder_android.h */, + 46EB2E00017D90 /* binder_auto_utils.h */, + 46EB2E00017C50 /* binder_connector.cc */, + 46EB2E00017C60 /* binder_connector.h */, + 46EB2E00017E20 /* binder_constants.cc */, + 46EB2E00017E30 /* binder_constants.h */, + 46EB2E00017D20 /* binder_security_policy.cc */, + 46EB2E00017D30 /* binder_server.cc */, + 46EB2E00017D40 /* binder_server.h */, + 46EB2E00017D50 /* binder_server_credentials.cc */, + 46EB2E00017D60 /* binder_stream.h */, + 46EB2E00017D70 /* binder_transport.cc */, + 46EB2E00017D80 /* binder_transport.h */, + 46EB2E00019160 /* bitset.h */, + 46EB2E00019320 /* block_annotate.h */, + 46EB2E00018090 /* bootstrap.upb.h */, + 46EB2E00018760 /* bootstrap.upbdefs.h */, + 46EB2E00019330 /* buffer_list.h */, + 46EB2E00019DD0 /* builtins.h */, + 46EB2E0001A4A0 /* byte_buffer_cc.cc */, + 46EB2E00019EB0 /* byte_stream.h */, + 46EB2E00019DE0 /* call.h */, + 46EB2E00019340 /* call_combiner.h */, + 46EB2E00019DF0 /* call_test_only.h */, + 46EB2E00018F40 /* call_tracer.h */, + 46EB2E00018360 /* cds.upb.h */, + 46EB2E00018A30 /* cds.upbdefs.h */, + 46EB2E00018320 /* cert.upb.h */, + 46EB2E000189F0 /* cert.upbdefs.h */, + 46EB2E00018D80 /* certificate_provider_factory.h */, + 46EB2E00018D90 /* certificate_provider_registry.h */, + 46EB2E00018DA0 /* certificate_provider_store.h */, + 46EB2E00019350 /* cfstream_handle.h */, + 46EB2E00019E00 /* channel.h */, + 46EB2E00018F50 /* channel_args.h */, + 46EB2E00019080 /* channel_args_endpoint_config.h */, + 46EB2E00018F60 /* channel_args_preconditioning.h */, + 46EB2E0001A330 /* channel_argument_option.cc */, + 46EB2E0001A220 /* channel_arguments.cc */, + 46EB2E0001A120 /* channel_cc.cc */, + 46EB2E00017C70 /* channel_create.cc */, + 46EB2E00017C80 /* channel_create_impl.cc */, + 46EB2E00017C90 /* channel_create_impl.h */, + 46EB2E0001A230 /* channel_filter.cc */, + 46EB2E0001A240 /* channel_filter.h */, + 46EB2E00019E10 /* channel_init.h */, + 46EB2E00018F70 /* channel_stack.h */, + 46EB2E00018F80 /* channel_stack_builder.h */, + 46EB2E00019E20 /* channel_stack_type.h */, + 46EB2E00018F90 /* channel_trace.h */, + 46EB2E00018FA0 /* channelz.h */, + 46EB2E00018FB0 /* channelz_registry.h */, + 46EB2E00019A60 /* check_gcp_environment.h */, + 46EB2E000184F0 /* checked.upb.h */, + 46EB2E00018BC0 /* checked.upbdefs.h */, + 46EB2E000179A0 /* child_policy_handler.h */, + 46EB2E00017EC0 /* chttp2_connector.h */, + 46EB2E00017ED0 /* chttp2_server.h */, + 46EB2E00017F00 /* chttp2_transport.h */, + 46EB2E00019170 /* chunked_vector.h */, + 46EB2E000180A0 /* circuit_breaker.upb.h */, + 46EB2E00018770 /* circuit_breaker.upbdefs.h */, + 46EB2E00017BB0 /* client_authority_filter.h */, + 46EB2E0001A130 /* client_callback.cc */, + 46EB2E000178E0 /* client_channel.h */, + 46EB2E000178F0 /* client_channel_channelz.h */, + 46EB2E00017900 /* client_channel_factory.h */, + 46EB2E0001A140 /* client_context.cc */, + 46EB2E0001A150 /* client_interceptor.cc */, + 46EB2E000179B0 /* client_load_reporting_filter.h */, + 46EB2E00019360 /* closure.h */, + 46EB2E00019440 /* closure.h */, + 46EB2E000180B0 /* cluster.upb.h */, + 46EB2E000182C0 /* cluster.upb.h */, + 46EB2E00018780 /* cluster.upbdefs.h */, + 46EB2E00018990 /* cluster.upbdefs.h */, + 46EB2E0001A1F0 /* codegen_init.cc */, + 46EB2E000186B0 /* collection_entry.upb.h */, + 46EB2E00018D20 /* collection_entry.upbdefs.h */, + 46EB2E00019370 /* combiner.h */, + 46EB2E00018330 /* common.upb.h */, + 46EB2E00018A00 /* common.upbdefs.h */, + 46EB2E00019E30 /* completion_queue.h */, + 46EB2E0001A250 /* completion_queue_cc.cc */, + 46EB2E00019E40 /* completion_queue_factory.h */, + 46EB2E00019A80 /* composite_credentials.h */, + 46EB2E00019020 /* compression_internal.h */, + 46EB2E00018050 /* config_dump.upb.h */, + 46EB2E00018720 /* config_dump.upbdefs.h */, + 46EB2E00017910 /* config_selector.h */, + 46EB2E00018110 /* config_source.upb.h */, + 46EB2E000187E0 /* config_source.upbdefs.h */, + 46EB2E00018FC0 /* connected_channel.h */, + 46EB2E00017CA0 /* connection_id_generator.cc */, + 46EB2E00017CB0 /* connection_id_generator.h */, + 46EB2E00019EC0 /* connectivity_state.h */, + 46EB2E00017920 /* connector.h */, + 46EB2E00019180 /* construct_destruct.h */, + 46EB2E00018FD0 /* context.h */, + 46EB2E00019870 /* context.h */, + 46EB2E00017F10 /* context_list.h */, + 46EB2E000186C0 /* context_params.upb.h */, + 46EB2E00018D30 /* context_params.upbdefs.h */, + 46EB2E0001A260 /* core_codegen.cc */, + 46EB2E00019040 /* core_configuration.h */, + 46EB2E00019190 /* cpp_impl_of.h */, + 46EB2E0001A160 /* create_channel.cc */, + 46EB2E0001A170 /* create_channel_internal.cc */, + 46EB2E0001A180 /* create_channel_internal.h */, + 46EB2E0001A190 /* create_channel_posix.cc */, + 46EB2E0001A340 /* create_default_thread_pool.cc */, + 46EB2E00019A90 /* credentials.h */, + 46EB2E0001A1A0 /* credentials_cc.cc */, + 46EB2E000183E0 /* csds.upb.h */, + 46EB2E00018AB0 /* csds.upbdefs.h */, + 46EB2E00018490 /* custom_tag.upb.h */, + 46EB2E00018B60 /* custom_tag.upbdefs.h */, + 46EB2E00017B70 /* deadline_filter.h */, + 46EB2E000191A0 /* debug_location.h */, + 46EB2E0001A4E0 /* decode.h */, + 46EB2E0001A4F0 /* decode_fast.h */, + 46EB2E0001A500 /* decode_internal.h */, + 46EB2E0001A510 /* def.h */, + 46EB2E0001A520 /* def.hpp */, + 46EB2E0001A390 /* default_health_check_service.cc */, + 46EB2E0001A3A0 /* default_health_check_service.h */, + 46EB2E00018060 /* deprecation.upb.h */, + 46EB2E00018730 /* deprecation.upbdefs.h */, + 46EB2E00018560 /* descriptor.upb.h */, + 46EB2E00018C30 /* descriptor.upbdefs.h */, + 46EB2E00018380 /* discovery.upb.h */, + 46EB2E00018A50 /* discovery.upbdefs.h */, + 46EB2E00017AC0 /* dns_resolver_selection.h */, + 46EB2E000191B0 /* dual_ref_counted.h */, + 46EB2E00018570 /* duration.upb.h */, + 46EB2E00018C40 /* duration.upbdefs.h */, + 46EB2E00019380 /* dynamic_annotations.h */, + 46EB2E00017930 /* dynamic_filters.h */, + 46EB2E0001A350 /* dynamic_thread_pool.cc */, + 46EB2E0001A360 /* dynamic_thread_pool.h */, + 46EB2E00018390 /* eds.upb.h */, + 46EB2E00018A60 /* eds.upbdefs.h */, + 46EB2E00018580 /* empty.upb.h */, + 46EB2E00018C50 /* empty.upbdefs.h */, + 46EB2E0001A530 /* encode.h */, + 46EB2E00019390 /* endpoint.h */, + 46EB2E00019450 /* endpoint.h */, + 46EB2E000181D0 /* endpoint.upb.h */, + 46EB2E000188A0 /* endpoint.upbdefs.h */, + 46EB2E00017CC0 /* endpoint_binder_pool.cc */, + 46EB2E00017CD0 /* endpoint_binder_pool.h */, + 46EB2E000193A0 /* endpoint_cfstream.h */, + 46EB2E000181E0 /* endpoint_components.upb.h */, + 46EB2E000188B0 /* endpoint_components.upbdefs.h */, + 46EB2E000193B0 /* endpoint_pair.h */, + 46EB2E000190C0 /* env.h */, + 46EB2E000193C0 /* error.h */, + 46EB2E000193D0 /* error_cfstream.h */, + 46EB2E000193E0 /* error_internal.h */, + 46EB2E00019ED0 /* error_utils.h */, + 46EB2E000193F0 /* ev_apple.h */, + 46EB2E00019400 /* ev_epoll1_linux.h */, + 46EB2E00019410 /* ev_epollex_linux.h */, + 46EB2E00019420 /* ev_poll_posix.h */, + 46EB2E00019430 /* ev_posix.h */, + 46EB2E00018500 /* eval.upb.h */, + 46EB2E00018BD0 /* eval.upbdefs.h */, + 46EB2E000199F0 /* evaluate_args.h */, + 46EB2E00019090 /* event_engine_factory.h */, + 46EB2E00018120 /* event_service_config.upb.h */, + 46EB2E000187F0 /* event_service_config.upbdefs.h */, + 46EB2E00019E50 /* event_string.h */, + 46EB2E000191C0 /* examine_stack.h */, + 46EB2E000194A0 /* exec_ctx.h */, + 46EB2E000198D0 /* exec_ctx_wakeup_scheduler.h */, + 46EB2E000194B0 /* executor.h */, + 46EB2E00018510 /* explain.upb.h */, + 46EB2E00018BE0 /* explain.upbdefs.h */, + 46EB2E00018130 /* extension.upb.h */, + 46EB2E00018800 /* extension.upbdefs.h */, + 46EB2E00019AC0 /* external_account_credentials.h */, + 46EB2E0001A370 /* external_connection_acceptor_impl.cc */, + 46EB2E0001A380 /* external_connection_acceptor_impl.h */, + 46EB2E00019AF0 /* fake_credentials.h */, + 46EB2E00017AD0 /* fake_resolver.h */, + 46EB2E00019C10 /* fake_security_connector.h */, + 46EB2E0001A090 /* fake_transport_security.h */, + 46EB2E000182D0 /* fault.upb.h */, + 46EB2E000182E0 /* fault.upb.h */, + 46EB2E000189A0 /* fault.upbdefs.h */, + 46EB2E000189B0 /* fault.upbdefs.h */, + 46EB2E00017B80 /* fault_injection_filter.h */, + 46EB2E00019AD0 /* file_external_account_credentials.h */, + 46EB2E00018DB0 /* file_watcher_certificate_provider_factory.h */, + 46EB2E000180C0 /* filter.upb.h */, + 46EB2E00018790 /* filter.upbdefs.h */, + 46EB2E00017F20 /* flow_control.h */, + 46EB2E000191D0 /* fork.h */, + 46EB2E000192F0 /* format_request.h */, + 46EB2E00017F30 /* frame.h */, + 46EB2E00017F40 /* frame_data.h */, + 46EB2E00017F50 /* frame_goaway.h */, + 46EB2E00019FC0 /* frame_handler.h */, + 46EB2E00017F60 /* frame_ping.h */, + 46EB2E00017F70 /* frame_rst_stream.h */, + 46EB2E00017F80 /* frame_settings.h */, + 46EB2E00017F90 /* frame_window_update.h */, + 46EB2E000194E0 /* gethostname.h */, + 46EB2E000191E0 /* global_config.h */, + 46EB2E000191F0 /* global_config_custom.h */, + 46EB2E00019200 /* global_config_env.h */, + 46EB2E00019210 /* global_config_generic.h */, + 46EB2E00017940 /* global_subchannel_pool.h */, + 46EB2E00019B00 /* google_default_credentials.h */, + 46EB2E00019A70 /* grpc_alts_credentials_options.h */, + 46EB2E00017AA0 /* grpc_ares_ev_driver.h */, + 46EB2E00017AB0 /* grpc_ares_wrapper.h */, + 46EB2E00019A00 /* grpc_authorization_engine.h */, + 46EB2E000194F0 /* grpc_if_nametoindex.h */, + 46EB2E00018140 /* grpc_service.upb.h */, + 46EB2E00018810 /* grpc_service.upbdefs.h */, + 46EB2E00019B90 /* grpc_tls_certificate_distributor.h */, + 46EB2E00019BA0 /* grpc_tls_certificate_provider.h */, + 46EB2E00019BB0 /* grpc_tls_certificate_verifier.h */, + 46EB2E00019BC0 /* grpc_tls_credentials_options.h */, + 46EB2E000179C0 /* grpclb.h */, + 46EB2E000179D0 /* grpclb_balancer_addresses.h */, + 46EB2E000179E0 /* grpclb_channel.h */, + 46EB2E000179F0 /* grpclb_client_stats.h */, + 46EB2E00019F70 /* gsec.h */, + 46EB2E00018FE0 /* handshaker.h */, + 46EB2E000185E0 /* handshaker.upb.h */, + 46EB2E00018FF0 /* handshaker_factory.h */, + 46EB2E00019000 /* handshaker_registry.h */, + 46EB2E00018600 /* health.upb.h */, + 46EB2E00018150 /* health_check.upb.h */, + 46EB2E00018820 /* health_check.upbdefs.h */, + 46EB2E00017950 /* health_check_client.h */, + 46EB2E0001A3B0 /* health_check_service.cc */, + 46EB2E0001A3C0 /* health_check_service_server_builder_option.cc */, + 46EB2E00019220 /* host_port.h */, + 46EB2E00017FA0 /* hpack_constants.h */, + 46EB2E00017FB0 /* hpack_encoder.h */, + 46EB2E00017FC0 /* hpack_encoder_table.h */, + 46EB2E00017FD0 /* hpack_parser.h */, + 46EB2E00017FE0 /* hpack_parser_table.h */, + 46EB2E000184A0 /* http.upb.h */, + 46EB2E00018540 /* http.upb.h */, + 46EB2E00018B70 /* http.upbdefs.h */, + 46EB2E00018C10 /* http.upbdefs.h */, + 46EB2E00019EE0 /* http2_errors.h */, + 46EB2E00017FF0 /* http2_settings.h */, + 46EB2E00017BA0 /* http_client_filter.h */, + 46EB2E00017960 /* http_connect_handshaker.h */, + 46EB2E00018310 /* http_connection_manager.upb.h */, + 46EB2E000189E0 /* http_connection_manager.upbdefs.h */, + 46EB2E00017970 /* http_proxy.h */, + 46EB2E00017BE0 /* http_server_filter.h */, + 46EB2E000182B0 /* http_tracer.upb.h */, + 46EB2E00018980 /* http_tracer.upbdefs.h */, + 46EB2E00018160 /* http_uri.upb.h */, + 46EB2E00018830 /* http_uri.upbdefs.h */, + 46EB2E00019300 /* httpcli.h */, + 46EB2E00018000 /* huffsyms.h */, + 46EB2E00019B10 /* iam_credentials.h */, + 46EB2E00017B60 /* idle_filter_state.h */, + 46EB2E00019E60 /* init.h */, + 46EB2E00018040 /* inproc_transport.h */, + 46EB2E0001A1B0 /* insecure_credentials.cc */, + 46EB2E00019C20 /* insecure_security_connector.h */, + 46EB2E0001A3D0 /* insecure_server_credentials.cc */, + 46EB2E00018010 /* internal.h */, + 46EB2E00019500 /* internal_errqueue.h */, + 46EB2E00019510 /* iocp_windows.h */, + 46EB2E00019520 /* iomgr.h */, + 46EB2E00019530 /* iomgr_custom.h */, + 46EB2E00019540 /* iomgr_internal.h */, + 46EB2E00019550 /* is_epollexclusive_available.h */, + 46EB2E00017CE0 /* jni_utils.cc */, + 46EB2E00017CF0 /* jni_utils.h */, + 46EB2E00019820 /* json.h */, + 46EB2E00019B20 /* json_token.h */, + 46EB2E00019830 /* json_util.h */, + 46EB2E00019CF0 /* json_util.h */, + 46EB2E00019B30 /* jwt_credentials.h */, + 46EB2E00019B40 /* jwt_verifier.h */, + 46EB2E00019E70 /* lame_client.h */, + 46EB2E00017980 /* lb_policy.h */, + 46EB2E00017A50 /* lb_policy_factory.h */, + 46EB2E00017A60 /* lb_policy_registry.h */, + 46EB2E000183A0 /* lds.upb.h */, + 46EB2E00018A70 /* lds.upbdefs.h */, + 46EB2E00018210 /* listener.upb.h */, + 46EB2E000188E0 /* listener.upbdefs.h */, + 46EB2E00018220 /* listener_components.upb.h */, + 46EB2E000188F0 /* listener_components.upbdefs.h */, + 46EB2E00018610 /* load_balancer.upb.h */, + 46EB2E00017A00 /* load_balancer_api.h */, + 46EB2E00019560 /* load_file.h */, + 46EB2E000181F0 /* load_report.upb.h */, + 46EB2E000188C0 /* load_report.upbdefs.h */, + 46EB2E00019C30 /* load_system_roots.h */, + 46EB2E00019C40 /* load_system_roots_linux.h */, + 46EB2E00019B50 /* local_credentials.h */, + 46EB2E00019C50 /* local_security_connector.h */, + 46EB2E00017A70 /* local_subchannel_pool.h */, + 46EB2E0001A0A0 /* local_transport_security.h */, + 46EB2E00019570 /* lockfree_event.h */, + 46EB2E000198E0 /* loop.h */, + 46EB2E000183B0 /* lrs.upb.h */, + 46EB2E00018A80 /* lrs.upbdefs.h */, + 46EB2E00019230 /* manual_constructor.h */, + 46EB2E000198F0 /* map.h */, + 46EB2E00019840 /* matchers.h */, + 46EB2E00019A10 /* matchers.h */, + 46EB2E00017BF0 /* max_age_filter.h */, + 46EB2E00019240 /* memory.h */, + 46EB2E00019990 /* memory_quota.h */, + 46EB2E00019030 /* message_compress.h */, + 46EB2E00017BC0 /* message_compress_filter.h */, + 46EB2E00017BD0 /* message_decompress_filter.h */, + 46EB2E00017C00 /* message_size_filter.h */, + 46EB2E00018400 /* metadata.upb.h */, + 46EB2E00018480 /* metadata.upb.h */, + 46EB2E00018AD0 /* metadata.upbdefs.h */, + 46EB2E00018B50 /* metadata.upbdefs.h */, + 46EB2E00019EF0 /* metadata_batch.h */, + 46EB2E00018630 /* migrate.upb.h */, + 46EB2E00018CA0 /* migrate.upbdefs.h */, + 46EB2E000194C0 /* mpmcqueue.h */, + 46EB2E00019250 /* mpscq.h */, + 46EB2E0001A540 /* msg.h */, + 46EB2E0001A550 /* msg_internal.h */, + 46EB2E000190D0 /* murmur_hash.h */, + 46EB2E00019580 /* nameser.h */, + 46EB2E00017DA0 /* ndk_binder.cc */, + 46EB2E00017DB0 /* ndk_binder.h */, + 46EB2E00018410 /* node.upb.h */, + 46EB2E00018AE0 /* node.upbdefs.h */, + 46EB2E00018420 /* number.upb.h */, + 46EB2E00018AF0 /* number.upbdefs.h */, + 46EB2E00019B60 /* oauth2_credentials.h */, + 46EB2E00018700 /* orca_load_report.upb.h */, + 46EB2E00019260 /* orphanable.h */, + 46EB2E000180D0 /* outlier_detection.upb.h */, + 46EB2E000187A0 /* outlier_detection.upbdefs.h */, + 46EB2E00018260 /* overload.upb.h */, + 46EB2E00018930 /* overload.upbdefs.h */, + 46EB2E00018F00 /* parse_address.h */, + 46EB2E00019F00 /* parsed_metadata.h */, + 46EB2E00019310 /* parser.h */, + 46EB2E00018430 /* path.upb.h */, + 46EB2E00018B00 /* path.upbdefs.h */, + 46EB2E000183F0 /* path_transformation.upb.h */, + 46EB2E00018AC0 /* path_transformation.upbdefs.h */, + 46EB2E000184B0 /* percent.upb.h */, + 46EB2E00018B80 /* percent.upbdefs.h */, + 46EB2E00019D40 /* percent_encoding.h */, + 46EB2E00019F10 /* pid_controller.h */, + 46EB2E00019B70 /* plugin_credentials.h */, + 46EB2E00019900 /* poll.h */, + 46EB2E00019590 /* polling_entity.h */, + 46EB2E00019460 /* pollset.h */, + 46EB2E000195A0 /* pollset.h */, + 46EB2E000195B0 /* pollset_custom.h */, + 46EB2E000195C0 /* pollset_set.h */, + 46EB2E000195D0 /* pollset_set_custom.h */, + 46EB2E000195E0 /* pollset_set_windows.h */, + 46EB2E000195F0 /* pollset_windows.h */, + 46EB2E00019600 /* port.h */, + 46EB2E0001A560 /* port_def.inc */, + 46EB2E0001A570 /* port_undef.inc */, + 46EB2E00019470 /* promise.h */, + 46EB2E00019890 /* promise_factory.h */, + 46EB2E000198A0 /* promise_like.h */, + 46EB2E00018170 /* protocol.upb.h */, + 46EB2E00018840 /* protocol.upbdefs.h */, + 46EB2E00017A80 /* proxy_mapper.h */, + 46EB2E00017A90 /* proxy_mapper_registry.h */, + 46EB2E00018180 /* proxy_protocol.upb.h */, + 46EB2E00018850 /* proxy_protocol.upbdefs.h */, + 46EB2E00019610 /* python_util.h */, + 46EB2E00018230 /* quic_config.upb.h */, + 46EB2E00018900 /* quic_config.upbdefs.h */, + 46EB2E00019910 /* race.h */, + 46EB2E000184C0 /* range.upb.h */, + 46EB2E00018B90 /* range.upbdefs.h */, + 46EB2E00018270 /* rbac.upb.h */, + 46EB2E000182F0 /* rbac.upb.h */, + 46EB2E00018940 /* rbac.upbdefs.h */, + 46EB2E000189C0 /* rbac.upbdefs.h */, + 46EB2E00017C10 /* rbac_filter.h */, + 46EB2E00019A20 /* rbac_policy.h */, + 46EB2E00017C20 /* rbac_service_config_parser.h */, + 46EB2E000183C0 /* rds.upb.h */, + 46EB2E00018A90 /* rds.upbdefs.h */, + 46EB2E00019270 /* ref_counted.h */, + 46EB2E00019280 /* ref_counted_ptr.h */, + 46EB2E0001A580 /* reflection.h */, + 46EB2E0001A590 /* reflection.hpp */, + 46EB2E00018440 /* regex.upb.h */, + 46EB2E00018B10 /* regex.upbdefs.h */, + 46EB2E00019620 /* resolve_address.h */, + 46EB2E00019630 /* resolve_address_custom.h */, + 46EB2E00019640 /* resolve_address_impl.h */, + 46EB2E00019650 /* resolve_address_posix.h */, + 46EB2E00019660 /* resolve_address_windows.h */, + 46EB2E00019670 /* resolved_address.h */, + 46EB2E00019480 /* resolved_address_internal.h */, + 46EB2E00019490 /* resolver.h */, + 46EB2E00019930 /* resolver.h */, + 46EB2E00018190 /* resolver.upb.h */, + 46EB2E00018860 /* resolver.upbdefs.h */, + 46EB2E00019940 /* resolver_factory.h */, + 46EB2E00019950 /* resolver_registry.h */, + 46EB2E00017AF0 /* resolver_result_parsing.h */, + 46EB2E00018070 /* resource.upb.h */, + 46EB2E000186D0 /* resource.upb.h */, + 46EB2E00018740 /* resource.upbdefs.h */, + 46EB2E00018D40 /* resource.upbdefs.h */, + 46EB2E000186E0 /* resource_locator.upb.h */, + 46EB2E00018D50 /* resource_locator.upbdefs.h */, + 46EB2E000186F0 /* resource_name.upb.h */, + 46EB2E00018D60 /* resource_name.upbdefs.h */, + 46EB2E000199A0 /* resource_quota.h */, + 46EB2E0001A270 /* resource_quota_cc.cc */, + 46EB2E00017B00 /* retry_filter.h */, + 46EB2E00017B10 /* retry_service_config.h */, + 46EB2E00017B20 /* retry_throttle.h */, + 46EB2E00017A10 /* ring_hash.h */, + 46EB2E00018620 /* rls.upb.h */, + 46EB2E00018280 /* route.upb.h */, + 46EB2E00018950 /* route.upbdefs.h */, + 46EB2E00018290 /* route_components.upb.h */, + 46EB2E00018960 /* route_components.upbdefs.h */, + 46EB2E00018300 /* router.upb.h */, + 46EB2E000189D0 /* router.upbdefs.h */, + 46EB2E0001A280 /* rpc_method.cc */, + 46EB2E000182A0 /* scoped_route.upb.h */, + 46EB2E00018970 /* scoped_route.upbdefs.h */, + 46EB2E00019A30 /* sdk_server_authz_filter.h */, + 46EB2E00018340 /* secret.upb.h */, + 46EB2E00018A10 /* secret.upbdefs.h */, + 46EB2E0001A290 /* secure_auth_context.cc */, + 46EB2E0001A2A0 /* secure_auth_context.h */, + 46EB2E0001A2B0 /* secure_channel_arguments.cc */, + 46EB2E0001A2C0 /* secure_create_auth_context.cc */, + 46EB2E0001A1C0 /* secure_credentials.cc */, + 46EB2E0001A1D0 /* secure_credentials.h */, + 46EB2E00019CC0 /* secure_endpoint.h */, + 46EB2E0001A3E0 /* secure_server_credentials.cc */, + 46EB2E0001A3F0 /* secure_server_credentials.h */, + 46EB2E00018640 /* security.upb.h */, + 46EB2E00018CB0 /* security.upbdefs.h */, + 46EB2E00019C60 /* security_connector.h */, + 46EB2E00019A40 /* security_context.h */, + 46EB2E00019CD0 /* security_handshaker.h */, + 46EB2E00017D00 /* security_policy_setting.cc */, + 46EB2E00017D10 /* security_policy_setting.h */, + 46EB2E000184D0 /* semantic_version.upb.h */, + 46EB2E00018BA0 /* semantic_version.upbdefs.h */, + 46EB2E00018650 /* sensitive.upb.h */, + 46EB2E00018CC0 /* sensitive.upbdefs.h */, + 46EB2E00019920 /* seq.h */, + 46EB2E00019E80 /* server.h */, + 46EB2E00019960 /* server_address.h */, + 46EB2E0001A400 /* server_builder.cc */, + 46EB2E0001A410 /* server_callback.cc */, + 46EB2E0001A420 /* server_cc.cc */, + 46EB2E00017C30 /* server_config_selector.h */, + 46EB2E00017C40 /* server_config_selector_filter.h */, + 46EB2E0001A430 /* server_context.cc */, + 46EB2E0001A440 /* server_credentials.cc */, + 46EB2E0001A450 /* server_posix.cc */, + 46EB2E00019D00 /* service_config.h */, + 46EB2E00019D10 /* service_config_call_data.h */, + 46EB2E00017B90 /* service_config_parser.h */, + 46EB2E00019D20 /* service_config_parser.h */, + 46EB2E00019D50 /* slice.h */, + 46EB2E00019D60 /* slice_internal.h */, + 46EB2E00019D70 /* slice_refcount.h */, + 46EB2E00019D80 /* slice_refcount_base.h */, + 46EB2E00019D90 /* slice_split.h */, + 46EB2E00019DA0 /* slice_string_helpers.h */, + 46EB2E00019DB0 /* slice_utils.h */, + 46EB2E000190A0 /* sockaddr.h */, + 46EB2E00019680 /* sockaddr.h */, + 46EB2E00019690 /* sockaddr_posix.h */, + 46EB2E00018F10 /* sockaddr_utils.h */, + 46EB2E000196A0 /* sockaddr_windows.h */, + 46EB2E000196B0 /* socket_factory_posix.h */, + 46EB2E000196C0 /* socket_mutator.h */, + 46EB2E000181A0 /* socket_option.upb.h */, + 46EB2E00018870 /* socket_option.upbdefs.h */, + 46EB2E000196D0 /* socket_utils.h */, + 46EB2E000196E0 /* socket_utils_posix.h */, + 46EB2E000196F0 /* socket_windows.h */, + 46EB2E000190E0 /* spinlock.h */, + 46EB2E000183D0 /* srds.upb.h */, + 46EB2E00018AA0 /* srds.upbdefs.h */, + 46EB2E00019B80 /* ssl_credentials.h */, + 46EB2E00019C70 /* ssl_security_connector.h */, + 46EB2E0001A0B0 /* ssl_session.h */, + 46EB2E0001A0C0 /* ssl_session_cache.h */, + 46EB2E0001A0D0 /* ssl_transport_security.h */, + 46EB2E0001A0E0 /* ssl_types.h */, + 46EB2E00019C80 /* ssl_utils.h */, + 46EB2E00019C90 /* ssl_utils_config.h */, + 46EB2E00019290 /* stat.h */, + 46EB2E00019050 /* stats.h */, + 46EB2E00018250 /* stats.upb.h */, + 46EB2E00018920 /* stats.upbdefs.h */, + 46EB2E00019060 /* stats_data.h */, + 46EB2E0001A4B0 /* status.cc */, + 46EB2E000198B0 /* status.h */, + 46EB2E000185C0 /* status.upb.h */, + 46EB2E00018660 /* status.upb.h */, + 46EB2E00018690 /* status.upb.h */, + 46EB2E00018C90 /* status.upbdefs.h */, + 46EB2E00018CD0 /* status.upbdefs.h */, + 46EB2E00018D00 /* status.upbdefs.h */, + 46EB2E00019F20 /* status_conversion.h */, + 46EB2E000192A0 /* status_helper.h */, + 46EB2E00019010 /* status_util.h */, + 46EB2E00018020 /* stream_map.h */, + 46EB2E000190F0 /* string.h */, + 46EB2E00018450 /* string.upb.h */, + 46EB2E00018B20 /* string.upbdefs.h */, + 46EB2E0001A4C0 /* string_ref.cc */, + 46EB2E00019100 /* string_windows.h */, + 46EB2E00018460 /* struct.upb.h */, + 46EB2E00018590 /* struct.upb.h */, + 46EB2E00018B30 /* struct.upbdefs.h */, + 46EB2E00018C60 /* struct.upbdefs.h */, + 46EB2E00017B30 /* subchannel.h */, + 46EB2E00017B40 /* subchannel_interface.h */, + 46EB2E00017A20 /* subchannel_list.h */, + 46EB2E00017B50 /* subchannel_pool_interface.h */, + 46EB2E000181B0 /* substitution_format_string.upb.h */, + 46EB2E00018880 /* substitution_format_string.upbdefs.h */, + 46EB2E000198C0 /* switch.h */, + 46EB2E000192B0 /* sync.h */, + 46EB2E00018520 /* syntax.upb.h */, + 46EB2E00018BF0 /* syntax.upbdefs.h */, + 46EB2E00019700 /* sys_epoll_wrapper.h */, + 46EB2E000192C0 /* table.h */, + 46EB2E0001A5A0 /* table_internal.h */, + 46EB2E00019710 /* tcp_client.h */, + 46EB2E00019720 /* tcp_client_posix.h */, + 46EB2E00019730 /* tcp_custom.h */, + 46EB2E00019740 /* tcp_posix.h */, + 46EB2E00019750 /* tcp_server.h */, + 46EB2E00019760 /* tcp_server_utils_posix.h */, + 46EB2E00019770 /* tcp_windows.h */, + 46EB2E0001A5B0 /* text_encode.h */, + 46EB2E000192D0 /* thd.h */, + 46EB2E0001A480 /* thread_manager.cc */, + 46EB2E0001A490 /* thread_manager.h */, + 46EB2E0001A460 /* thread_pool_interface.h */, + 46EB2E000199B0 /* thread_quota.h */, + 46EB2E000194D0 /* threadpool.h */, + 46EB2E00019780 /* time_averaged_stats.h */, + 46EB2E0001A4D0 /* time_cc.cc */, + 46EB2E00019110 /* time_precise.h */, + 46EB2E000192E0 /* time_util.h */, + 46EB2E00019F30 /* timeout_encoding.h */, + 46EB2E00019790 /* timer.h */, + 46EB2E000197A0 /* timer_custom.h */, + 46EB2E000197B0 /* timer_generic.h */, + 46EB2E000197C0 /* timer_heap.h */, + 46EB2E000197D0 /* timer_manager.h */, + 46EB2E00019850 /* timers.h */, + 46EB2E000185A0 /* timestamp.upb.h */, + 46EB2E00018C70 /* timestamp.upbdefs.h */, + 46EB2E00019120 /* tls.h */, + 46EB2E00018350 /* tls.upb.h */, + 46EB2E00018A20 /* tls.upbdefs.h */, + 46EB2E0001A2D0 /* tls_certificate_provider.cc */, + 46EB2E0001A2E0 /* tls_certificate_verifier.cc */, + 46EB2E00019BD0 /* tls_credentials.h */, + 46EB2E0001A2F0 /* tls_credentials_options.cc */, + 46EB2E00019CA0 /* tls_security_connector.h */, + 46EB2E00019BE0 /* tls_utils.h */, + 46EB2E00019130 /* tmpfile.h */, + 46EB2E00019070 /* trace.h */, + 46EB2E000199C0 /* trace.h */, + 46EB2E00017E40 /* transaction.cc */, + 46EB2E00017E50 /* transaction.h */, + 46EB2E00019F40 /* transport.h */, + 46EB2E00019F50 /* transport_impl.h */, + 46EB2E0001A0F0 /* transport_security.h */, + 46EB2E000185F0 /* transport_security_common.upb.h */, + 46EB2E0001A020 /* transport_security_common_api.h */, + 46EB2E0001A100 /* transport_security_grpc.h */, + 46EB2E0001A110 /* transport_security_interface.h */, + 46EB2E00017DC0 /* transport_stream_receiver.h */, + 46EB2E00017DD0 /* transport_stream_receiver_impl.cc */, + 46EB2E00017DE0 /* transport_stream_receiver_impl.h */, + 46EB2E00019CE0 /* tsi_error.h */, + 46EB2E00018710 /* typed_struct.upb.h */, + 46EB2E00018D70 /* typed_struct.upbdefs.h */, + 46EB2E00018240 /* udp_listener_config.upb.h */, + 46EB2E00018910 /* udp_listener_config.upbdefs.h */, + 46EB2E000181C0 /* udp_socket_config.upb.h */, + 46EB2E00018890 /* udp_socket_config.upbdefs.h */, + 46EB2E000197E0 /* unix_sockets_posix.h */, + 46EB2E0001A5C0 /* upb.h */, + 46EB2E0001A5D0 /* upb.hpp */, + 46EB2E0001A5E0 /* upb_internal.h */, + 46EB2E00018DC0 /* upb_utils.h */, + 46EB2E00019F60 /* uri_parser.h */, + 46EB2E00019AE0 /* url_external_account_credentials.h */, + 46EB2E00019140 /* useful.h */, + 46EB2E00018680 /* validate.upb.h */, + 46EB2E00018CF0 /* validate.upbdefs.h */, + 46EB2E00019E90 /* validate_metadata.h */, + 46EB2E0001A300 /* validate_service_config.cc */, + 46EB2E00018470 /* value.upb.h */, + 46EB2E00018530 /* value.upb.h */, + 46EB2E00018B40 /* value.upbdefs.h */, + 46EB2E00018C00 /* value.upbdefs.h */, + 46EB2E00018030 /* varint.h */, + 46EB2E0001A310 /* version_cc.cc */, + 46EB2E00018670 /* versioning.upb.h */, + 46EB2E00018CE0 /* versioning.upbdefs.h */, + 46EB2E000197F0 /* wakeup_fd_pipe.h */, + 46EB2E00019800 /* wakeup_fd_posix.h */, + 46EB2E00017E60 /* wire_reader.h */, + 46EB2E00017E70 /* wire_reader_impl.cc */, + 46EB2E00017E80 /* wire_reader_impl.h */, + 46EB2E00017E90 /* wire_writer.cc */, + 46EB2E00017EA0 /* wire_writer.h */, + 46EB2E00019810 /* work_serializer.h */, + 46EB2E000185B0 /* wrappers.upb.h */, + 46EB2E00018C80 /* wrappers.upbdefs.h */, + 46EB2E00017A30 /* xds.h */, + 46EB2E00018DD0 /* xds_api.h */, + 46EB2E00018DE0 /* xds_bootstrap.h */, + 46EB2E00018DF0 /* xds_certificate_provider.h */, + 46EB2E00017A40 /* xds_channel_args.h */, + 46EB2E00018E00 /* xds_channel_args.h */, + 46EB2E00018E10 /* xds_channel_creds.h */, + 46EB2E00018E20 /* xds_channel_stack_modifier.h */, + 46EB2E00018E30 /* xds_client.h */, + 46EB2E00018E40 /* xds_client_stats.h */, + 46EB2E00018E50 /* xds_cluster.h */, + 46EB2E00018E60 /* xds_common_types.h */, + 46EB2E0001A1E0 /* xds_credentials.cc */, + 46EB2E00019BF0 /* xds_credentials.h */, + 46EB2E00018E70 /* xds_endpoint.h */, + 46EB2E00018E80 /* xds_http_fault_filter.h */, + 46EB2E00018E90 /* xds_http_filters.h */, + 46EB2E00018EA0 /* xds_http_rbac_filter.h */, + 46EB2E00018EB0 /* xds_listener.h */, + 46EB2E00017AE0 /* xds_resolver.h */, + 46EB2E00018EC0 /* xds_resource_type.h */, + 46EB2E00018ED0 /* xds_resource_type_impl.h */, + 46EB2E00018EE0 /* xds_route_config.h */, + 46EB2E00018EF0 /* xds_routing.h */, + 46EB2E0001A470 /* xds_server_credentials.cc */, + 46EB2E0001A5F0 /* xxhash.h */, ); name = Implementation; sourceTree = ""; }; - 46EB2E0001A780 /* Interface */ = { - isa = PBXGroup; - children = ( - 46EB2E0001A790 /* alarm.h */, - 46EB2E0001A810 /* async_generic_service.h */, - 46EB2E0001A880 /* async_generic_service.h */, - 46EB2E0001A890 /* async_stream.h */, - 46EB2E0001ACF0 /* async_stream.h */, - 46EB2E0001A8A0 /* async_unary_call.h */, - 46EB2E0001AD00 /* async_unary_call.h */, - 46EB2E0001AA70 /* auth_context.h */, - 46EB2E0001AC10 /* auth_context.h */, - 46EB2E0001AC20 /* auth_metadata_processor.h */, - 46EB2E0001AC30 /* authorization_policy_provider.h */, - 46EB2E0001AC40 /* binder_credentials.h */, - 46EB2E0001AC50 /* binder_security_policy.h */, - 46EB2E0001A8B0 /* byte_buffer.h */, - 46EB2E0001AD10 /* byte_buffer.h */, - 46EB2E0001A850 /* call.h */, - 46EB2E0001A8C0 /* call.h */, - 46EB2E0001A8D0 /* call_hook.h */, - 46EB2E0001A8E0 /* call_op_set.h */, - 46EB2E0001A8F0 /* call_op_set_interface.h */, - 46EB2E0001A900 /* callback_common.h */, - 46EB2E0001A7A0 /* channel.h */, - 46EB2E0001A860 /* channel_argument_option.h */, - 46EB2E0001AD20 /* channel_arguments.h */, - 46EB2E0001A910 /* channel_interface.h */, - 46EB2E0001A920 /* client_callback.h */, - 46EB2E0001AD30 /* client_callback.h */, + 46EB2E0001A600 /* Interface */ = { + isa = PBXGroup; + children = ( + 46EB2E0001A610 /* alarm.h */, + 46EB2E0001A690 /* async_generic_service.h */, + 46EB2E0001A700 /* async_generic_service.h */, + 46EB2E0001A710 /* async_stream.h */, + 46EB2E0001AB70 /* async_stream.h */, + 46EB2E0001A720 /* async_unary_call.h */, + 46EB2E0001AB80 /* async_unary_call.h */, + 46EB2E0001A8F0 /* auth_context.h */, + 46EB2E0001AA90 /* auth_context.h */, + 46EB2E0001AAA0 /* auth_metadata_processor.h */, + 46EB2E0001AAB0 /* authorization_policy_provider.h */, + 46EB2E0001AAC0 /* binder_credentials.h */, + 46EB2E0001AAD0 /* binder_security_policy.h */, + 46EB2E0001A730 /* byte_buffer.h */, + 46EB2E0001AB90 /* byte_buffer.h */, + 46EB2E0001A6D0 /* call.h */, + 46EB2E0001A740 /* call.h */, + 46EB2E0001A750 /* call_hook.h */, + 46EB2E0001A760 /* call_op_set.h */, + 46EB2E0001A770 /* call_op_set_interface.h */, + 46EB2E0001A780 /* callback_common.h */, + 46EB2E0001A620 /* channel.h */, + 46EB2E0001A6E0 /* channel_argument_option.h */, + 46EB2E0001ABA0 /* channel_arguments.h */, + 46EB2E0001A790 /* channel_interface.h */, + 46EB2E0001A7A0 /* client_callback.h */, + 46EB2E0001ABB0 /* client_callback.h */, + 46EB2E0001A630 /* client_context.h */, 46EB2E0001A7B0 /* client_context.h */, - 46EB2E0001A930 /* client_context.h */, - 46EB2E0001A940 /* client_interceptor.h */, - 46EB2E0001AD40 /* client_interceptor.h */, - 46EB2E0001A870 /* client_unary_call.h */, - 46EB2E0001A950 /* client_unary_call.h */, - 46EB2E0001A7C0 /* completion_queue.h */, - 46EB2E0001A960 /* completion_queue.h */, - 46EB2E0001A970 /* completion_queue_tag.h */, - 46EB2E0001A980 /* config.h */, - 46EB2E0001AD50 /* config.h */, - 46EB2E0001A990 /* core_codegen.h */, - 46EB2E0001A9A0 /* core_codegen_interface.h */, - 46EB2E0001A9B0 /* create_auth_context.h */, - 46EB2E0001A7D0 /* create_channel.h */, - 46EB2E0001A7E0 /* create_channel_binder.h */, - 46EB2E0001A7F0 /* create_channel_posix.h */, - 46EB2E0001AC60 /* credentials.h */, - 46EB2E0001A9C0 /* delegating_channel.h */, - 46EB2E0001A820 /* generic_stub.h */, - 46EB2E0001A9D0 /* grpc_library.h */, - 46EB2E0001AB70 /* grpc_library.h */, - 46EB2E0001A830 /* grpcpp.h */, - 46EB2E0001A840 /* health_check_service_interface.h */, - 46EB2E0001A800 /* health_check_service_server_builder_option.h */, - 46EB2E0001A9E0 /* intercepted_channel.h */, - 46EB2E0001A9F0 /* interceptor.h */, - 46EB2E0001AD60 /* interceptor.h */, - 46EB2E0001AA00 /* interceptor_common.h */, - 46EB2E0001AA10 /* message_allocator.h */, - 46EB2E0001AD70 /* message_allocator.h */, - 46EB2E0001AA20 /* metadata_map.h */, - 46EB2E0001AA30 /* method_handler.h */, - 46EB2E0001AD80 /* method_handler.h */, - 46EB2E0001AA40 /* method_handler_impl.h */, - 46EB2E0001AB80 /* method_handler_impl.h */, - 46EB2E0001AD90 /* proto_buffer_reader.h */, - 46EB2E0001ADA0 /* proto_buffer_writer.h */, - 46EB2E0001AC00 /* resource_quota.h */, - 46EB2E0001AA50 /* rpc_method.h */, - 46EB2E0001AB90 /* rpc_method.h */, - 46EB2E0001AA60 /* rpc_service_method.h */, - 46EB2E0001ABA0 /* rpc_service_method.h */, - 46EB2E0001AA80 /* serialization_traits.h */, - 46EB2E0001ABB0 /* serialization_traits.h */, - 46EB2E0001ACB0 /* server.h */, - 46EB2E0001ACC0 /* server_builder.h */, - 46EB2E0001ABC0 /* server_builder_option.h */, - 46EB2E0001ABD0 /* server_builder_plugin.h */, - 46EB2E0001AA90 /* server_callback.h */, - 46EB2E0001ADB0 /* server_callback.h */, - 46EB2E0001AAA0 /* server_callback_handlers.h */, - 46EB2E0001AAB0 /* server_context.h */, - 46EB2E0001ACD0 /* server_context.h */, - 46EB2E0001AC70 /* server_credentials.h */, - 46EB2E0001ABE0 /* server_initializer.h */, - 46EB2E0001AAC0 /* server_interceptor.h */, - 46EB2E0001ADC0 /* server_interceptor.h */, - 46EB2E0001AAD0 /* server_interface.h */, - 46EB2E0001ACE0 /* server_posix.h */, - 46EB2E0001AAE0 /* service_type.h */, - 46EB2E0001ABF0 /* service_type.h */, - 46EB2E0001AAF0 /* slice.h */, - 46EB2E0001ADD0 /* slice.h */, - 46EB2E0001AB00 /* status.h */, - 46EB2E0001ADE0 /* status.h */, - 46EB2E0001AB10 /* status_code_enum.h */, - 46EB2E0001ADF0 /* status_code_enum.h */, - 46EB2E0001AB20 /* string_ref.h */, - 46EB2E0001AE00 /* string_ref.h */, - 46EB2E0001AB30 /* stub_options.h */, - 46EB2E0001AE10 /* stub_options.h */, - 46EB2E0001AB40 /* sync.h */, - 46EB2E0001AB50 /* sync_stream.h */, - 46EB2E0001AE20 /* sync_stream.h */, - 46EB2E0001AB60 /* time.h */, - 46EB2E0001AE30 /* time.h */, - 46EB2E0001AC80 /* tls_certificate_provider.h */, - 46EB2E0001AC90 /* tls_certificate_verifier.h */, - 46EB2E0001ACA0 /* tls_credentials_options.h */, - 46EB2E0001AE40 /* validate_service_config.h */, - 46EB2E0001AE50 /* xds_server_builder.h */, + 46EB2E0001A7C0 /* client_interceptor.h */, + 46EB2E0001ABC0 /* client_interceptor.h */, + 46EB2E0001A6F0 /* client_unary_call.h */, + 46EB2E0001A7D0 /* client_unary_call.h */, + 46EB2E0001A640 /* completion_queue.h */, + 46EB2E0001A7E0 /* completion_queue.h */, + 46EB2E0001A7F0 /* completion_queue_tag.h */, + 46EB2E0001A800 /* config.h */, + 46EB2E0001ABD0 /* config.h */, + 46EB2E0001A810 /* core_codegen.h */, + 46EB2E0001A820 /* core_codegen_interface.h */, + 46EB2E0001A830 /* create_auth_context.h */, + 46EB2E0001A650 /* create_channel.h */, + 46EB2E0001A660 /* create_channel_binder.h */, + 46EB2E0001A670 /* create_channel_posix.h */, + 46EB2E0001AAE0 /* credentials.h */, + 46EB2E0001A840 /* delegating_channel.h */, + 46EB2E0001A6A0 /* generic_stub.h */, + 46EB2E0001A850 /* grpc_library.h */, + 46EB2E0001A9F0 /* grpc_library.h */, + 46EB2E0001A6B0 /* grpcpp.h */, + 46EB2E0001A6C0 /* health_check_service_interface.h */, + 46EB2E0001A680 /* health_check_service_server_builder_option.h */, + 46EB2E0001A860 /* intercepted_channel.h */, + 46EB2E0001A870 /* interceptor.h */, + 46EB2E0001ABE0 /* interceptor.h */, + 46EB2E0001A880 /* interceptor_common.h */, + 46EB2E0001A890 /* message_allocator.h */, + 46EB2E0001ABF0 /* message_allocator.h */, + 46EB2E0001A8A0 /* metadata_map.h */, + 46EB2E0001A8B0 /* method_handler.h */, + 46EB2E0001AC00 /* method_handler.h */, + 46EB2E0001A8C0 /* method_handler_impl.h */, + 46EB2E0001AA00 /* method_handler_impl.h */, + 46EB2E0001AC10 /* proto_buffer_reader.h */, + 46EB2E0001AC20 /* proto_buffer_writer.h */, + 46EB2E0001AA80 /* resource_quota.h */, + 46EB2E0001A8D0 /* rpc_method.h */, + 46EB2E0001AA10 /* rpc_method.h */, + 46EB2E0001A8E0 /* rpc_service_method.h */, + 46EB2E0001AA20 /* rpc_service_method.h */, + 46EB2E0001A900 /* serialization_traits.h */, + 46EB2E0001AA30 /* serialization_traits.h */, + 46EB2E0001AB30 /* server.h */, + 46EB2E0001AB40 /* server_builder.h */, + 46EB2E0001AA40 /* server_builder_option.h */, + 46EB2E0001AA50 /* server_builder_plugin.h */, + 46EB2E0001A910 /* server_callback.h */, + 46EB2E0001AC30 /* server_callback.h */, + 46EB2E0001A920 /* server_callback_handlers.h */, + 46EB2E0001A930 /* server_context.h */, + 46EB2E0001AB50 /* server_context.h */, + 46EB2E0001AAF0 /* server_credentials.h */, + 46EB2E0001AA60 /* server_initializer.h */, + 46EB2E0001A940 /* server_interceptor.h */, + 46EB2E0001AC40 /* server_interceptor.h */, + 46EB2E0001A950 /* server_interface.h */, + 46EB2E0001AB60 /* server_posix.h */, + 46EB2E0001A960 /* service_type.h */, + 46EB2E0001AA70 /* service_type.h */, + 46EB2E0001A970 /* slice.h */, + 46EB2E0001AC50 /* slice.h */, + 46EB2E0001A980 /* status.h */, + 46EB2E0001AC60 /* status.h */, + 46EB2E0001A990 /* status_code_enum.h */, + 46EB2E0001AC70 /* status_code_enum.h */, + 46EB2E0001A9A0 /* string_ref.h */, + 46EB2E0001AC80 /* string_ref.h */, + 46EB2E0001A9B0 /* stub_options.h */, + 46EB2E0001AC90 /* stub_options.h */, + 46EB2E0001A9C0 /* sync.h */, + 46EB2E0001A9D0 /* sync_stream.h */, + 46EB2E0001ACA0 /* sync_stream.h */, + 46EB2E0001A9E0 /* time.h */, + 46EB2E0001ACB0 /* time.h */, + 46EB2E0001AB00 /* tls_certificate_provider.h */, + 46EB2E0001AB10 /* tls_certificate_verifier.h */, + 46EB2E0001AB20 /* tls_credentials_options.h */, + 46EB2E0001ACC0 /* validate_service_config.h */, + 46EB2E0001ACD0 /* xds_server_builder.h */, ); name = Interface; sourceTree = ""; }; - 46EB2E0001AE60 /* Implementation */ = { - isa = PBXGroup; - children = ( - 46EB2E0001BAD0 /* accesslog.upb.c */, - 46EB2E0001BAE0 /* accesslog.upb.h */, - 46EB2E0001C870 /* accesslog.upbdefs.c */, - 46EB2E0001C880 /* accesslog.upbdefs.h */, - 46EB2E0001EBC0 /* activity.cc */, - 46EB2E0001EBD0 /* activity.h */, - 46EB2E0001BB90 /* address.upb.c */, - 46EB2E0001BBA0 /* address.upb.h */, - 46EB2E0001C930 /* address.upbdefs.c */, - 46EB2E0001C940 /* address.upbdefs.h */, - 46EB2E0001B030 /* address_filtering.cc */, - 46EB2E0001B040 /* address_filtering.h */, - 46EB2E0001C0B0 /* ads.upb.c */, - 46EB2E0001C0C0 /* ads.upb.h */, - 46EB2E0001CE50 /* ads.upbdefs.c */, - 46EB2E0001CE60 /* ads.upbdefs.h */, - 46EB2E0001F9D0 /* aes_gcm.cc */, - 46EB2E0001DAF0 /* alloc.cc */, - 46EB2E0001DB00 /* alloc.h */, - 46EB2E0001B6B0 /* alpn.cc */, - 46EB2E0001B6C0 /* alpn.h */, - 46EB2E0001FA00 /* alts_counter.cc */, - 46EB2E0001FA10 /* alts_counter.h */, - 46EB2E0001EEC0 /* alts_credentials.cc */, - 46EB2E0001EED0 /* alts_credentials.h */, - 46EB2E0001FA20 /* alts_crypter.cc */, - 46EB2E0001FA30 /* alts_crypter.h */, - 46EB2E0001FA40 /* alts_frame_protector.cc */, - 46EB2E0001FA50 /* alts_frame_protector.h */, - 46EB2E0001FB70 /* alts_grpc_integrity_only_record_protocol.cc */, - 46EB2E0001FB80 /* alts_grpc_integrity_only_record_protocol.h */, - 46EB2E0001FB90 /* alts_grpc_privacy_integrity_record_protocol.cc */, - 46EB2E0001FBA0 /* alts_grpc_privacy_integrity_record_protocol.h */, - 46EB2E0001FBB0 /* alts_grpc_record_protocol.h */, - 46EB2E0001FBC0 /* alts_grpc_record_protocol_common.cc */, - 46EB2E0001FBD0 /* alts_grpc_record_protocol_common.h */, - 46EB2E0001FAC0 /* alts_handshaker_client.cc */, - 46EB2E0001FAD0 /* alts_handshaker_client.h */, - 46EB2E0001FBE0 /* alts_iovec_record_protocol.cc */, - 46EB2E0001FBF0 /* alts_iovec_record_protocol.h */, - 46EB2E0001FA60 /* alts_record_protocol_crypter_common.cc */, - 46EB2E0001FA70 /* alts_record_protocol_crypter_common.h */, - 46EB2E0001FA80 /* alts_seal_privacy_integrity_crypter.cc */, - 46EB2E0001F290 /* alts_security_connector.cc */, - 46EB2E0001F2A0 /* alts_security_connector.h */, - 46EB2E0001FAE0 /* alts_shared_resource.cc */, - 46EB2E0001FAF0 /* alts_shared_resource.h */, - 46EB2E0001FB00 /* alts_tsi_handshaker.cc */, - 46EB2E0001FB10 /* alts_tsi_handshaker.h */, - 46EB2E0001FB20 /* alts_tsi_handshaker_private.h */, - 46EB2E0001FB30 /* alts_tsi_utils.cc */, - 46EB2E0001FB40 /* alts_tsi_utils.h */, - 46EB2E0001FA90 /* alts_unseal_privacy_integrity_crypter.cc */, - 46EB2E0001FC00 /* alts_zero_copy_grpc_protector.cc */, - 46EB2E0001FC10 /* alts_zero_copy_grpc_protector.h */, - 46EB2E0001C570 /* altscontext.upb.c */, - 46EB2E0001C580 /* altscontext.upb.h */, - 46EB2E0001C390 /* annotations.upb.c */, - 46EB2E0001C3A0 /* annotations.upb.h */, - 46EB2E0001D130 /* annotations.upbdefs.c */, - 46EB2E0001D140 /* annotations.upbdefs.h */, - 46EB2E0001C470 /* any.upb.c */, - 46EB2E0001C480 /* any.upb.h */, - 46EB2E0001D210 /* any.upbdefs.c */, - 46EB2E0001D220 /* any.upbdefs.h */, - 46EB2E0001ED10 /* api.cc */, - 46EB2E0001ED20 /* api.h */, - 46EB2E0001BDD0 /* api_listener.upb.c */, - 46EB2E0001BDE0 /* api_listener.upb.h */, - 46EB2E0001CB70 /* api_listener.upbdefs.c */, - 46EB2E0001CB80 /* api_listener.upbdefs.h */, - 46EB2E0001F610 /* api_trace.cc */, - 46EB2E0001F620 /* api_trace.h */, - 46EB2E0001ED30 /* arena.cc */, - 46EB2E0001ED40 /* arena.h */, - 46EB2E0001DB10 /* atm.cc */, - 46EB2E0001DD80 /* atomic_utils.h */, - 46EB2E0001F3F0 /* auth_filters.h */, - 46EB2E0001C710 /* authority.upb.c */, - 46EB2E0001C720 /* authority.upb.h */, - 46EB2E0001D3F0 /* authority.upbdefs.c */, - 46EB2E0001D400 /* authority.upbdefs.h */, - 46EB2E0001EDD0 /* authorization_engine.h */, - 46EB2E0001EDE0 /* authorization_policy_provider.h */, - 46EB2E0001EDF0 /* authorization_policy_provider_vtable.cc */, - 46EB2E0001D7E0 /* avl.h */, - 46EB2E0001EFB0 /* aws_external_account_credentials.cc */, - 46EB2E0001EFC0 /* aws_external_account_credentials.h */, - 46EB2E0001EFD0 /* aws_request_signer.cc */, - 46EB2E0001EFE0 /* aws_request_signer.h */, - 46EB2E0001F4F0 /* b64.cc */, - 46EB2E0001F500 /* b64.h */, - 46EB2E0001AE80 /* backend_metric.cc */, - 46EB2E0001AE90 /* backend_metric.h */, - 46EB2E0001D7F0 /* backoff.cc */, - 46EB2E0001D800 /* backoff.h */, - 46EB2E0001BBB0 /* backoff.upb.c */, - 46EB2E0001BBC0 /* backoff.upb.h */, - 46EB2E0001C950 /* backoff.upbdefs.c */, - 46EB2E0001C960 /* backoff.upbdefs.h */, - 46EB2E0001AEA0 /* backup_poller.cc */, - 46EB2E0001AEB0 /* backup_poller.h */, - 46EB2E0001BBD0 /* base.upb.c */, - 46EB2E0001BBE0 /* base.upb.h */, - 46EB2E0001C970 /* base.upbdefs.c */, - 46EB2E0001C980 /* base.upbdefs.h */, - 46EB2E0001EBF0 /* basic_seq.h */, - 46EB2E0001EB90 /* basic_timers.cc */, - 46EB2E0001F840 /* bdp_estimator.cc */, - 46EB2E0001F850 /* bdp_estimator.h */, - 46EB2E0001FF60 /* benchmark.h */, - 46EB2E0001B770 /* bin_decoder.cc */, - 46EB2E0001B780 /* bin_decoder.h */, - 46EB2E0001B790 /* bin_encoder.cc */, - 46EB2E0001B7A0 /* bin_encoder.h */, - 46EB2E0001B290 /* binder_resolver.cc */, - 46EB2E0001FD30 /* bitmap256.h */, - 46EB2E0001DD90 /* bitset.h */, - 46EB2E0001FD40 /* bitstate.cc */, - 46EB2E0001E040 /* block_annotate.h */, - 46EB2E0001BAF0 /* bootstrap.upb.c */, - 46EB2E0001BB00 /* bootstrap.upb.h */, - 46EB2E0001C890 /* bootstrap.upbdefs.c */, - 46EB2E0001C8A0 /* bootstrap.upbdefs.h */, - 46EB2E0001E050 /* buffer_list.cc */, - 46EB2E0001E060 /* buffer_list.h */, - 46EB2E0001F630 /* builtins.cc */, - 46EB2E0001F640 /* builtins.h */, - 46EB2E0001F650 /* byte_buffer.cc */, - 46EB2E0001F660 /* byte_buffer_reader.cc */, - 46EB2E0001F860 /* byte_stream.cc */, - 46EB2E0001F870 /* byte_stream.h */, - 46EB2E0001F670 /* call.cc */, - 46EB2E0001F680 /* call.h */, - 46EB2E0001E070 /* call_combiner.cc */, - 46EB2E0001E080 /* call_combiner.h */, - 46EB2E0001F690 /* call_details.cc */, - 46EB2E0001F6A0 /* call_log_batch.cc */, - 46EB2E0001F6B0 /* call_test_only.h */, - 46EB2E0001D810 /* call_tracer.h */, - 46EB2E0001B1B0 /* cds.cc */, - 46EB2E0001C090 /* cds.upb.c */, - 46EB2E0001C0A0 /* cds.upb.h */, - 46EB2E0001CE30 /* cds.upbdefs.c */, - 46EB2E0001CE40 /* cds.upbdefs.h */, - 46EB2E0001C010 /* cert.upb.c */, - 46EB2E0001C020 /* cert.upb.h */, - 46EB2E0001CDB0 /* cert.upbdefs.c */, - 46EB2E0001CDC0 /* cert.upbdefs.h */, - 46EB2E0001D4D0 /* certificate_provider_factory.h */, - 46EB2E0001D4E0 /* certificate_provider_registry.cc */, - 46EB2E0001D4F0 /* certificate_provider_registry.h */, - 46EB2E0001D500 /* certificate_provider_store.cc */, - 46EB2E0001D510 /* certificate_provider_store.h */, - 46EB2E0001E090 /* cfstream_handle.cc */, - 46EB2E0001E0A0 /* cfstream_handle.h */, - 46EB2E0001F6C0 /* channel.cc */, - 46EB2E0001F6D0 /* channel.h */, - 46EB2E0001D820 /* channel_args.cc */, - 46EB2E0001D830 /* channel_args.h */, - 46EB2E0001DA70 /* channel_args_endpoint_config.cc */, - 46EB2E0001DA80 /* channel_args_endpoint_config.h */, - 46EB2E0001D840 /* channel_args_preconditioning.cc */, - 46EB2E0001D850 /* channel_args_preconditioning.h */, - 46EB2E0001AEC0 /* channel_connectivity.cc */, - 46EB2E0001B6F0 /* channel_create.cc */, - 46EB2E0001B700 /* channel_create_posix.cc */, - 46EB2E0001F6E0 /* channel_init.cc */, - 46EB2E0001F6F0 /* channel_init.h */, - 46EB2E0001F700 /* channel_ping.cc */, - 46EB2E0001D860 /* channel_stack.cc */, - 46EB2E0001D870 /* channel_stack.h */, - 46EB2E0001D880 /* channel_stack_builder.cc */, - 46EB2E0001D890 /* channel_stack_builder.h */, - 46EB2E0001F710 /* channel_stack_type.cc */, - 46EB2E0001F720 /* channel_stack_type.h */, - 46EB2E0001D8A0 /* channel_trace.cc */, - 46EB2E0001D8B0 /* channel_trace.h */, - 46EB2E0001D8C0 /* channelz.cc */, - 46EB2E0001D8D0 /* channelz.h */, - 46EB2E0001D8E0 /* channelz_registry.cc */, - 46EB2E0001D8F0 /* channelz_registry.h */, - 46EB2E0001EEE0 /* check_gcp_environment.cc */, - 46EB2E0001EEF0 /* check_gcp_environment.h */, - 46EB2E0001EF00 /* check_gcp_environment_linux.cc */, - 46EB2E0001EF10 /* check_gcp_environment_no_op.cc */, - 46EB2E0001EF20 /* check_gcp_environment_windows.cc */, - 46EB2E0001C3B0 /* checked.upb.c */, - 46EB2E0001C3C0 /* checked.upb.h */, - 46EB2E0001D150 /* checked.upbdefs.c */, - 46EB2E0001D160 /* checked.upbdefs.h */, - 46EB2E0001B050 /* child_policy_handler.cc */, - 46EB2E0001B060 /* child_policy_handler.h */, - 46EB2E0001B6D0 /* chttp2_connector.cc */, - 46EB2E0001B6E0 /* chttp2_connector.h */, - 46EB2E0001B7B0 /* chttp2_plugin.cc */, - 46EB2E0001B720 /* chttp2_server.cc */, - 46EB2E0001B730 /* chttp2_server.h */, - 46EB2E0001B7C0 /* chttp2_transport.cc */, - 46EB2E0001B7D0 /* chttp2_transport.h */, - 46EB2E0001DDA0 /* chunked_vector.h */, - 46EB2E0001BB10 /* circuit_breaker.upb.c */, - 46EB2E0001BB20 /* circuit_breaker.upb.h */, - 46EB2E0001C8B0 /* circuit_breaker.upbdefs.c */, - 46EB2E0001C8C0 /* circuit_breaker.upbdefs.h */, - 46EB2E0001F400 /* client_auth_filter.cc */, - 46EB2E0001B560 /* client_authority_filter.cc */, - 46EB2E0001B570 /* client_authority_filter.h */, - 46EB2E0001AED0 /* client_channel.cc */, - 46EB2E0001AEE0 /* client_channel.h */, - 46EB2E0001AEF0 /* client_channel_channelz.cc */, - 46EB2E0001AF00 /* client_channel_channelz.h */, - 46EB2E0001AF10 /* client_channel_factory.cc */, - 46EB2E0001AF20 /* client_channel_factory.h */, - 46EB2E0001AF30 /* client_channel_plugin.cc */, - 46EB2E0001B4B0 /* client_idle_filter.cc */, - 46EB2E0001B070 /* client_load_reporting_filter.cc */, - 46EB2E0001B080 /* client_load_reporting_filter.h */, - 46EB2E0001E280 /* closure.cc */, - 46EB2E0001E0B0 /* closure.h */, - 46EB2E0001E290 /* closure.h */, - 46EB2E0001BB30 /* cluster.upb.c */, - 46EB2E0001BF50 /* cluster.upb.c */, - 46EB2E0001BB40 /* cluster.upb.h */, - 46EB2E0001BF60 /* cluster.upb.h */, - 46EB2E0001C8D0 /* cluster.upbdefs.c */, - 46EB2E0001CCF0 /* cluster.upbdefs.c */, - 46EB2E0001C8E0 /* cluster.upbdefs.h */, - 46EB2E0001CD00 /* cluster.upbdefs.h */, - 46EB2E0001C730 /* collection_entry.upb.c */, - 46EB2E0001C740 /* collection_entry.upb.h */, - 46EB2E0001D410 /* collection_entry.upbdefs.c */, - 46EB2E0001D420 /* collection_entry.upbdefs.h */, - 46EB2E0001E0C0 /* combiner.cc */, - 46EB2E0001E0D0 /* combiner.h */, - 46EB2E0001C030 /* common.upb.c */, - 46EB2E0001C040 /* common.upb.h */, - 46EB2E0001CDD0 /* common.upbdefs.c */, - 46EB2E0001CDE0 /* common.upbdefs.h */, - 46EB2E0001FD50 /* compile.cc */, - 46EB2E0001F730 /* completion_queue.cc */, - 46EB2E0001F740 /* completion_queue.h */, - 46EB2E0001F750 /* completion_queue_factory.cc */, - 46EB2E0001F760 /* completion_queue_factory.h */, - 46EB2E0001EF70 /* composite_credentials.cc */, - 46EB2E0001EF80 /* composite_credentials.h */, - 46EB2E0001D9A0 /* compression.cc */, - 46EB2E0001D9B0 /* compression_internal.cc */, - 46EB2E0001D9C0 /* compression_internal.h */, - 46EB2E0001BA70 /* config_dump.upb.c */, - 46EB2E0001BA80 /* config_dump.upb.h */, - 46EB2E0001C810 /* config_dump.upbdefs.c */, - 46EB2E0001C820 /* config_dump.upbdefs.h */, - 46EB2E0001AF40 /* config_selector.cc */, - 46EB2E0001AF50 /* config_selector.h */, - 46EB2E0001BBF0 /* config_source.upb.c */, - 46EB2E0001BC00 /* config_source.upb.h */, - 46EB2E0001C990 /* config_source.upbdefs.c */, - 46EB2E0001C9A0 /* config_source.upbdefs.h */, - 46EB2E0001D900 /* connected_channel.cc */, - 46EB2E0001D910 /* connected_channel.h */, - 46EB2E0001F880 /* connectivity_state.cc */, - 46EB2E0001F890 /* connectivity_state.h */, - 46EB2E0001AF60 /* connector.h */, - 46EB2E0001DDB0 /* construct_destruct.h */, - 46EB2E0001D920 /* context.h */, - 46EB2E0001EBE0 /* context.h */, - 46EB2E0001B7E0 /* context_list.cc */, - 46EB2E0001B7F0 /* context_list.h */, - 46EB2E0001C750 /* context_params.upb.c */, - 46EB2E0001C760 /* context_params.upb.h */, - 46EB2E0001D430 /* context_params.upbdefs.c */, - 46EB2E0001D440 /* context_params.upbdefs.h */, - 46EB2E0001D9F0 /* core_configuration.cc */, - 46EB2E0001DA00 /* core_configuration.h */, - 46EB2E0001DDC0 /* cpp_impl_of.h */, - 46EB2E0001DB20 /* cpu_iphone.cc */, - 46EB2E0001DB30 /* cpu_linux.cc */, - 46EB2E0001DB40 /* cpu_posix.cc */, - 46EB2E0001DB50 /* cpu_windows.cc */, - 46EB2E0001EF90 /* credentials.cc */, - 46EB2E0001EFA0 /* credentials.h */, - 46EB2E0001F070 /* credentials_generic.cc */, - 46EB2E0001C190 /* csds.upb.c */, - 46EB2E0001C1A0 /* csds.upb.h */, - 46EB2E0001CF30 /* csds.upbdefs.c */, - 46EB2E0001CF40 /* csds.upbdefs.h */, - 46EB2E0001C2F0 /* custom_tag.upb.c */, - 46EB2E0001C300 /* custom_tag.upb.h */, - 46EB2E0001D090 /* custom_tag.upbdefs.c */, - 46EB2E0001D0A0 /* custom_tag.upbdefs.h */, - 46EB2E0001B4E0 /* deadline_filter.cc */, - 46EB2E0001B4F0 /* deadline_filter.h */, - 46EB2E0001DDD0 /* debug_location.h */, - 46EB2E00020040 /* decode.c */, - 46EB2E00020050 /* decode.h */, - 46EB2E00020060 /* decode_fast.c */, - 46EB2E00020070 /* decode_fast.h */, - 46EB2E00020080 /* decode_internal.h */, - 46EB2E00020090 /* def.c */, - 46EB2E000200A0 /* def.h */, - 46EB2E000200B0 /* def.hpp */, - 46EB2E0001BA90 /* deprecation.upb.c */, - 46EB2E0001BAA0 /* deprecation.upb.h */, - 46EB2E0001C830 /* deprecation.upbdefs.c */, - 46EB2E0001C840 /* deprecation.upbdefs.h */, - 46EB2E0001C490 /* descriptor.upb.c */, - 46EB2E0001C4A0 /* descriptor.upb.h */, - 46EB2E0001D230 /* descriptor.upbdefs.c */, - 46EB2E0001D240 /* descriptor.upbdefs.h */, - 46EB2E0001FD60 /* dfa.cc */, - 46EB2E0001C0D0 /* discovery.upb.c */, - 46EB2E0001C0E0 /* discovery.upb.h */, - 46EB2E0001CE70 /* discovery.upbdefs.c */, - 46EB2E0001CE80 /* discovery.upbdefs.h */, - 46EB2E0001B360 /* dns_resolver.cc */, - 46EB2E0001B2A0 /* dns_resolver_ares.cc */, - 46EB2E0001B340 /* dns_resolver_selection.cc */, - 46EB2E0001B350 /* dns_resolver_selection.h */, - 46EB2E0001DDE0 /* dual_ref_counted.h */, - 46EB2E0001E0E0 /* dualstack_socket_posix.cc */, - 46EB2E0001C4B0 /* duration.upb.c */, - 46EB2E0001C4C0 /* duration.upb.h */, - 46EB2E0001D250 /* duration.upbdefs.c */, - 46EB2E0001D260 /* duration.upbdefs.h */, - 46EB2E0001E0F0 /* dynamic_annotations.h */, - 46EB2E0001AF70 /* dynamic_filters.cc */, - 46EB2E0001AF80 /* dynamic_filters.h */, - 46EB2E0001C0F0 /* eds.upb.c */, - 46EB2E0001C100 /* eds.upb.h */, - 46EB2E0001CE90 /* eds.upbdefs.c */, - 46EB2E0001CEA0 /* eds.upbdefs.h */, - 46EB2E0001C4D0 /* empty.upb.c */, - 46EB2E0001C4E0 /* empty.upb.h */, - 46EB2E0001D270 /* empty.upbdefs.c */, - 46EB2E0001D280 /* empty.upbdefs.h */, - 46EB2E000200C0 /* encode.c */, - 46EB2E000200D0 /* encode.h */, - 46EB2E0001E100 /* endpoint.cc */, - 46EB2E0001E2A0 /* endpoint.cc */, - 46EB2E0001E110 /* endpoint.h */, - 46EB2E0001E2B0 /* endpoint.h */, - 46EB2E0001BD70 /* endpoint.upb.c */, - 46EB2E0001BD80 /* endpoint.upb.h */, - 46EB2E0001CB10 /* endpoint.upbdefs.c */, - 46EB2E0001CB20 /* endpoint.upbdefs.h */, - 46EB2E0001E120 /* endpoint_cfstream.cc */, - 46EB2E0001E130 /* endpoint_cfstream.h */, - 46EB2E0001BD90 /* endpoint_components.upb.c */, - 46EB2E0001BDA0 /* endpoint_components.upb.h */, - 46EB2E0001CB30 /* endpoint_components.upbdefs.c */, - 46EB2E0001CB40 /* endpoint_components.upbdefs.h */, - 46EB2E0001E140 /* endpoint_pair.h */, - 46EB2E0001E150 /* endpoint_pair_event_engine.cc */, - 46EB2E0001E160 /* endpoint_pair_posix.cc */, - 46EB2E0001E170 /* endpoint_pair_windows.cc */, - 46EB2E0001DB60 /* env.h */, - 46EB2E0001DB70 /* env_linux.cc */, - 46EB2E0001DB80 /* env_posix.cc */, - 46EB2E0001DB90 /* env_windows.cc */, - 46EB2E0001E180 /* error.cc */, - 46EB2E0001E190 /* error.h */, - 46EB2E0001E1A0 /* error_cfstream.cc */, - 46EB2E0001E1B0 /* error_cfstream.h */, - 46EB2E0001E1C0 /* error_internal.h */, - 46EB2E0001F8A0 /* error_utils.cc */, - 46EB2E0001F8B0 /* error_utils.h */, - 46EB2E0001E1D0 /* ev_apple.cc */, - 46EB2E0001E1E0 /* ev_apple.h */, - 46EB2E0001E1F0 /* ev_epoll1_linux.cc */, - 46EB2E0001E200 /* ev_epoll1_linux.h */, - 46EB2E0001E210 /* ev_epollex_linux.cc */, - 46EB2E0001E220 /* ev_epollex_linux.h */, - 46EB2E0001E230 /* ev_poll_posix.cc */, - 46EB2E0001E240 /* ev_poll_posix.h */, - 46EB2E0001E250 /* ev_posix.cc */, - 46EB2E0001E260 /* ev_posix.h */, - 46EB2E0001E270 /* ev_windows.cc */, - 46EB2E0001C3D0 /* eval.upb.c */, - 46EB2E0001C3E0 /* eval.upb.h */, - 46EB2E0001D170 /* eval.upbdefs.c */, - 46EB2E0001D180 /* eval.upbdefs.h */, - 46EB2E0001EE00 /* evaluate_args.cc */, - 46EB2E0001EE10 /* evaluate_args.h */, - 46EB2E0001DA90 /* event_engine.cc */, - 46EB2E0001DAA0 /* event_engine_factory.cc */, - 46EB2E0001DAB0 /* event_engine_factory.h */, - 46EB2E0001BC10 /* event_service_config.upb.c */, - 46EB2E0001BC20 /* event_service_config.upb.h */, - 46EB2E0001C9B0 /* event_service_config.upbdefs.c */, - 46EB2E0001C9C0 /* event_service_config.upbdefs.h */, - 46EB2E0001F770 /* event_string.cc */, - 46EB2E0001F780 /* event_string.h */, - 46EB2E0001DDF0 /* examine_stack.cc */, - 46EB2E0001DE00 /* examine_stack.h */, - 46EB2E0001E360 /* exec_ctx.cc */, - 46EB2E0001E370 /* exec_ctx.h */, - 46EB2E0001EC40 /* exec_ctx_wakeup_scheduler.h */, - 46EB2E0001E380 /* executor.cc */, - 46EB2E0001E390 /* executor.h */, - 46EB2E0001C3F0 /* explain.upb.c */, - 46EB2E0001C400 /* explain.upb.h */, - 46EB2E0001D190 /* explain.upbdefs.c */, - 46EB2E0001D1A0 /* explain.upbdefs.h */, - 46EB2E0001BC30 /* extension.upb.c */, - 46EB2E0001BC40 /* extension.upb.h */, - 46EB2E0001C9D0 /* extension.upbdefs.c */, - 46EB2E0001C9E0 /* extension.upbdefs.h */, - 46EB2E0001EFF0 /* external_account_credentials.cc */, - 46EB2E0001F000 /* external_account_credentials.h */, - 46EB2E0001F050 /* fake_credentials.cc */, - 46EB2E0001F060 /* fake_credentials.h */, - 46EB2E0001B370 /* fake_resolver.cc */, - 46EB2E0001B380 /* fake_resolver.h */, - 46EB2E0001F2B0 /* fake_security_connector.cc */, - 46EB2E0001F2C0 /* fake_security_connector.h */, - 46EB2E0001FC20 /* fake_transport_security.cc */, - 46EB2E0001FC30 /* fake_transport_security.h */, - 46EB2E0001BF70 /* fault.upb.c */, - 46EB2E0001BF90 /* fault.upb.c */, - 46EB2E0001BF80 /* fault.upb.h */, - 46EB2E0001BFA0 /* fault.upb.h */, - 46EB2E0001CD10 /* fault.upbdefs.c */, - 46EB2E0001CD30 /* fault.upbdefs.c */, - 46EB2E0001CD20 /* fault.upbdefs.h */, - 46EB2E0001CD40 /* fault.upbdefs.h */, - 46EB2E0001B500 /* fault_injection_filter.cc */, - 46EB2E0001B510 /* fault_injection_filter.h */, - 46EB2E0001F010 /* file_external_account_credentials.cc */, - 46EB2E0001F020 /* file_external_account_credentials.h */, - 46EB2E0001D520 /* file_watcher_certificate_provider_factory.cc */, - 46EB2E0001D530 /* file_watcher_certificate_provider_factory.h */, - 46EB2E0001BB50 /* filter.upb.c */, - 46EB2E0001BB60 /* filter.upb.h */, - 46EB2E0001C8F0 /* filter.upbdefs.c */, - 46EB2E0001C900 /* filter.upbdefs.h */, - 46EB2E0001FD70 /* filtered_re2.cc */, - 46EB2E0001FD80 /* filtered_re2.h */, - 46EB2E0001FF70 /* flags.h */, - 46EB2E0001B800 /* flow_control.cc */, - 46EB2E0001B810 /* flow_control.h */, - 46EB2E0001DE10 /* fork.cc */, - 46EB2E0001DE20 /* fork.h */, - 46EB2E0001E3E0 /* fork_posix.cc */, - 46EB2E0001E3F0 /* fork_windows.cc */, - 46EB2E0001DFD0 /* format_request.cc */, - 46EB2E0001DFE0 /* format_request.h */, - 46EB2E0001B820 /* frame.h */, - 46EB2E0001B830 /* frame_data.cc */, - 46EB2E0001B840 /* frame_data.h */, - 46EB2E0001B850 /* frame_goaway.cc */, - 46EB2E0001B860 /* frame_goaway.h */, - 46EB2E0001FAA0 /* frame_handler.cc */, - 46EB2E0001FAB0 /* frame_handler.h */, - 46EB2E0001B870 /* frame_ping.cc */, - 46EB2E0001B880 /* frame_ping.h */, - 46EB2E0001B890 /* frame_rst_stream.cc */, - 46EB2E0001B8A0 /* frame_rst_stream.h */, - 46EB2E0001B8B0 /* frame_settings.cc */, - 46EB2E0001B8C0 /* frame_settings.h */, - 46EB2E0001B8D0 /* frame_window_update.cc */, - 46EB2E0001B8E0 /* frame_window_update.h */, - 46EB2E0001E400 /* gethostname.h */, - 46EB2E0001E410 /* gethostname_fallback.cc */, - 46EB2E0001E420 /* gethostname_host_name_max.cc */, - 46EB2E0001E430 /* gethostname_sysconf.cc */, - 46EB2E0001DE30 /* global_config.h */, - 46EB2E0001DE40 /* global_config_custom.h */, - 46EB2E0001DE50 /* global_config_env.cc */, - 46EB2E0001DE60 /* global_config_env.h */, - 46EB2E0001DE70 /* global_config_generic.h */, - 46EB2E0001AF90 /* global_subchannel_pool.cc */, - 46EB2E0001AFA0 /* global_subchannel_pool.h */, - 46EB2E0001B390 /* google_c2p_resolver.cc */, - 46EB2E0001F080 /* google_default_credentials.cc */, - 46EB2E0001F090 /* google_default_credentials.h */, - 46EB2E0001EF30 /* grpc_alts_credentials_client_options.cc */, - 46EB2E0001EF40 /* grpc_alts_credentials_options.cc */, - 46EB2E0001EF50 /* grpc_alts_credentials_options.h */, - 46EB2E0001EF60 /* grpc_alts_credentials_server_options.cc */, - 46EB2E0001B2B0 /* grpc_ares_ev_driver.h */, - 46EB2E0001B2C0 /* grpc_ares_ev_driver_event_engine.cc */, - 46EB2E0001B2D0 /* grpc_ares_ev_driver_posix.cc */, - 46EB2E0001B2E0 /* grpc_ares_ev_driver_windows.cc */, - 46EB2E0001B2F0 /* grpc_ares_wrapper.cc */, - 46EB2E0001B300 /* grpc_ares_wrapper.h */, - 46EB2E0001B310 /* grpc_ares_wrapper_event_engine.cc */, - 46EB2E0001B320 /* grpc_ares_wrapper_posix.cc */, - 46EB2E0001B330 /* grpc_ares_wrapper_windows.cc */, - 46EB2E0001EE20 /* grpc_authorization_engine.cc */, - 46EB2E0001EE30 /* grpc_authorization_engine.h */, - 46EB2E0001AE70 /* grpc_context.cc */, - 46EB2E0001E440 /* grpc_if_nametoindex.h */, - 46EB2E0001E450 /* grpc_if_nametoindex_posix.cc */, - 46EB2E0001E460 /* grpc_if_nametoindex_unsupported.cc */, - 46EB2E0001F9C0 /* grpc_plugin_registry.cc */, - 46EB2E0001BC50 /* grpc_service.upb.c */, - 46EB2E0001BC60 /* grpc_service.upb.h */, - 46EB2E0001C9F0 /* grpc_service.upbdefs.c */, - 46EB2E0001CA00 /* grpc_service.upbdefs.h */, - 46EB2E0001F1B0 /* grpc_tls_certificate_distributor.cc */, - 46EB2E0001F1C0 /* grpc_tls_certificate_distributor.h */, - 46EB2E0001F1D0 /* grpc_tls_certificate_provider.cc */, - 46EB2E0001F1E0 /* grpc_tls_certificate_provider.h */, - 46EB2E0001F1F0 /* grpc_tls_certificate_verifier.cc */, - 46EB2E0001F200 /* grpc_tls_certificate_verifier.h */, - 46EB2E0001F210 /* grpc_tls_credentials_options.cc */, - 46EB2E0001F220 /* grpc_tls_credentials_options.h */, - 46EB2E0001B090 /* grpclb.cc */, - 46EB2E0001B0A0 /* grpclb.h */, - 46EB2E0001B0B0 /* grpclb_balancer_addresses.cc */, - 46EB2E0001B0C0 /* grpclb_balancer_addresses.h */, - 46EB2E0001B0D0 /* grpclb_channel.h */, - 46EB2E0001B0E0 /* grpclb_channel_secure.cc */, - 46EB2E0001B0F0 /* grpclb_client_stats.cc */, - 46EB2E0001B100 /* grpclb_client_stats.h */, - 46EB2E0001F9E0 /* gsec.cc */, - 46EB2E0001F9F0 /* gsec.h */, - 46EB2E0001D930 /* handshaker.cc */, - 46EB2E0001D940 /* handshaker.h */, - 46EB2E0001C590 /* handshaker.upb.c */, - 46EB2E0001C5A0 /* handshaker.upb.h */, - 46EB2E0001D950 /* handshaker_factory.h */, - 46EB2E0001D960 /* handshaker_registry.cc */, - 46EB2E0001D970 /* handshaker_registry.h */, - 46EB2E0001C5D0 /* health.upb.c */, - 46EB2E0001C5E0 /* health.upb.h */, - 46EB2E0001BC70 /* health_check.upb.c */, - 46EB2E0001BC80 /* health_check.upb.h */, - 46EB2E0001CA10 /* health_check.upbdefs.c */, - 46EB2E0001CA20 /* health_check.upbdefs.h */, - 46EB2E0001AFB0 /* health_check_client.cc */, - 46EB2E0001AFC0 /* health_check_client.h */, - 46EB2E0001DE80 /* host_port.cc */, - 46EB2E0001DE90 /* host_port.h */, - 46EB2E0001B8F0 /* hpack_constants.h */, - 46EB2E0001B900 /* hpack_encoder.cc */, - 46EB2E0001B910 /* hpack_encoder.h */, - 46EB2E0001B920 /* hpack_encoder_table.cc */, - 46EB2E0001B930 /* hpack_encoder_table.h */, - 46EB2E0001B940 /* hpack_parser.cc */, - 46EB2E0001B950 /* hpack_parser.h */, - 46EB2E0001B960 /* hpack_parser_table.cc */, - 46EB2E0001B970 /* hpack_parser_table.h */, - 46EB2E0001C310 /* http.upb.c */, - 46EB2E0001C450 /* http.upb.c */, - 46EB2E0001C320 /* http.upb.h */, - 46EB2E0001C460 /* http.upb.h */, - 46EB2E0001D0B0 /* http.upbdefs.c */, - 46EB2E0001D1F0 /* http.upbdefs.c */, - 46EB2E0001D0C0 /* http.upbdefs.h */, - 46EB2E0001D200 /* http.upbdefs.h */, - 46EB2E0001F8C0 /* http2_errors.h */, - 46EB2E0001B980 /* http2_settings.cc */, - 46EB2E0001B990 /* http2_settings.h */, - 46EB2E0001B540 /* http_client_filter.cc */, - 46EB2E0001B550 /* http_client_filter.h */, - 46EB2E0001AFD0 /* http_connect_handshaker.cc */, - 46EB2E0001AFE0 /* http_connect_handshaker.h */, - 46EB2E0001BFF0 /* http_connection_manager.upb.c */, - 46EB2E0001C000 /* http_connection_manager.upb.h */, - 46EB2E0001CD90 /* http_connection_manager.upbdefs.c */, - 46EB2E0001CDA0 /* http_connection_manager.upbdefs.h */, - 46EB2E0001B580 /* http_filters_plugin.cc */, - 46EB2E0001AFF0 /* http_proxy.cc */, - 46EB2E0001B000 /* http_proxy.h */, - 46EB2E0001B5D0 /* http_server_filter.cc */, - 46EB2E0001B5E0 /* http_server_filter.h */, - 46EB2E0001BF30 /* http_tracer.upb.c */, - 46EB2E0001BF40 /* http_tracer.upb.h */, - 46EB2E0001CCD0 /* http_tracer.upbdefs.c */, - 46EB2E0001CCE0 /* http_tracer.upbdefs.h */, - 46EB2E0001BC90 /* http_uri.upb.c */, - 46EB2E0001BCA0 /* http_uri.upb.h */, - 46EB2E0001CA30 /* http_uri.upbdefs.c */, - 46EB2E0001CA40 /* http_uri.upbdefs.h */, - 46EB2E0001DFF0 /* httpcli.cc */, - 46EB2E0001E000 /* httpcli.h */, - 46EB2E0001E010 /* httpcli_security_connector.cc */, - 46EB2E0001B9A0 /* huffsyms.cc */, - 46EB2E0001B9B0 /* huffsyms.h */, - 46EB2E0001F0A0 /* iam_credentials.cc */, - 46EB2E0001F0B0 /* iam_credentials.h */, - 46EB2E0001B4C0 /* idle_filter_state.cc */, - 46EB2E0001B4D0 /* idle_filter_state.h */, - 46EB2E0001F790 /* init.cc */, - 46EB2E0001F7A0 /* init.h */, - 46EB2E0001F7B0 /* init_secure.cc */, - 46EB2E0001BA40 /* inproc_plugin.cc */, - 46EB2E0001BA50 /* inproc_transport.cc */, - 46EB2E0001BA60 /* inproc_transport.h */, - 46EB2E0001F0C0 /* insecure_credentials.cc */, - 46EB2E0001F2D0 /* insecure_security_connector.cc */, - 46EB2E0001F2E0 /* insecure_security_connector.h */, - 46EB2E0001B9C0 /* internal.h */, - 46EB2E0001E470 /* internal_errqueue.cc */, - 46EB2E0001E480 /* internal_errqueue.h */, - 46EB2E0001E490 /* iocp_windows.cc */, - 46EB2E0001E4A0 /* iocp_windows.h */, - 46EB2E0001E2C0 /* iomgr.cc */, - 46EB2E0001E4B0 /* iomgr.cc */, - 46EB2E0001E4C0 /* iomgr.h */, - 46EB2E0001E4D0 /* iomgr_custom.cc */, - 46EB2E0001E4E0 /* iomgr_custom.h */, - 46EB2E0001E4F0 /* iomgr_internal.cc */, - 46EB2E0001E500 /* iomgr_internal.h */, - 46EB2E0001E510 /* iomgr_posix.cc */, - 46EB2E0001E520 /* iomgr_posix_cfstream.cc */, - 46EB2E0001E530 /* iomgr_windows.cc */, - 46EB2E0001E540 /* is_epollexclusive_available.cc */, - 46EB2E0001E550 /* is_epollexclusive_available.h */, - 46EB2E0001EB20 /* json.h */, - 46EB2E0001EB30 /* json_reader.cc */, - 46EB2E0001F0D0 /* json_token.cc */, - 46EB2E0001F0E0 /* json_token.h */, - 46EB2E0001EB40 /* json_util.cc */, - 46EB2E0001F480 /* json_util.cc */, - 46EB2E0001EB50 /* json_util.h */, - 46EB2E0001F490 /* json_util.h */, - 46EB2E0001EB60 /* json_writer.cc */, - 46EB2E0001F0F0 /* jwt_credentials.cc */, - 46EB2E0001F100 /* jwt_credentials.h */, - 46EB2E0001F110 /* jwt_verifier.cc */, - 46EB2E0001F120 /* jwt_verifier.h */, - 46EB2E0001F7C0 /* lame_client.cc */, - 46EB2E0001F7D0 /* lame_client.h */, - 46EB2E0001B010 /* lb_policy.cc */, - 46EB2E0001B020 /* lb_policy.h */, - 46EB2E0001B210 /* lb_policy_factory.h */, - 46EB2E0001B220 /* lb_policy_registry.cc */, - 46EB2E0001B230 /* lb_policy_registry.h */, - 46EB2E0001C110 /* lds.upb.c */, - 46EB2E0001C120 /* lds.upb.h */, - 46EB2E0001CEB0 /* lds.upbdefs.c */, - 46EB2E0001CEC0 /* lds.upbdefs.h */, - 46EB2E0001BDF0 /* listener.upb.c */, - 46EB2E0001BE00 /* listener.upb.h */, - 46EB2E0001CB90 /* listener.upbdefs.c */, - 46EB2E0001CBA0 /* listener.upbdefs.h */, - 46EB2E0001BE10 /* listener_components.upb.c */, - 46EB2E0001BE20 /* listener_components.upb.h */, - 46EB2E0001CBB0 /* listener_components.upbdefs.c */, - 46EB2E0001CBC0 /* listener_components.upbdefs.h */, - 46EB2E0001C5F0 /* load_balancer.upb.c */, - 46EB2E0001C600 /* load_balancer.upb.h */, - 46EB2E0001B110 /* load_balancer_api.cc */, - 46EB2E0001B120 /* load_balancer_api.h */, - 46EB2E0001E560 /* load_file.cc */, - 46EB2E0001E570 /* load_file.h */, - 46EB2E0001BDB0 /* load_report.upb.c */, - 46EB2E0001BDC0 /* load_report.upb.h */, - 46EB2E0001CB50 /* load_report.upbdefs.c */, - 46EB2E0001CB60 /* load_report.upbdefs.h */, - 46EB2E0001F2F0 /* load_system_roots.h */, - 46EB2E0001F300 /* load_system_roots_fallback.cc */, - 46EB2E0001F310 /* load_system_roots_linux.cc */, - 46EB2E0001F320 /* load_system_roots_linux.h */, - 46EB2E0001F130 /* local_credentials.cc */, - 46EB2E0001F140 /* local_credentials.h */, - 46EB2E0001F330 /* local_security_connector.cc */, - 46EB2E0001F340 /* local_security_connector.h */, - 46EB2E0001B240 /* local_subchannel_pool.cc */, - 46EB2E0001B250 /* local_subchannel_pool.h */, - 46EB2E0001FC40 /* local_transport_security.cc */, - 46EB2E0001FC50 /* local_transport_security.h */, - 46EB2E0001E580 /* lockfree_event.cc */, - 46EB2E0001E590 /* lockfree_event.h */, - 46EB2E0001DBA0 /* log.cc */, - 46EB2E0001DBB0 /* log_android.cc */, - 46EB2E0001DBC0 /* log_linux.cc */, - 46EB2E0001DBD0 /* log_posix.cc */, - 46EB2E0001DBE0 /* log_windows.cc */, - 46EB2E0001FF80 /* logging.h */, - 46EB2E0001EC50 /* loop.h */, - 46EB2E0001C130 /* lrs.upb.c */, - 46EB2E0001C140 /* lrs.upb.h */, - 46EB2E0001CED0 /* lrs.upbdefs.c */, - 46EB2E0001CEE0 /* lrs.upbdefs.h */, - 46EB2E0001FF90 /* malloc_counter.h */, - 46EB2E0001DEA0 /* manual_constructor.h */, - 46EB2E0001EC60 /* map.h */, - 46EB2E0001EB70 /* matchers.cc */, - 46EB2E0001EE40 /* matchers.cc */, - 46EB2E0001EB80 /* matchers.h */, - 46EB2E0001EE50 /* matchers.h */, - 46EB2E0001B5F0 /* max_age_filter.cc */, - 46EB2E0001B600 /* max_age_filter.h */, - 46EB2E0001DEB0 /* memory.h */, - 46EB2E0001DAC0 /* memory_allocator.cc */, - 46EB2E0001ED50 /* memory_quota.cc */, - 46EB2E0001ED60 /* memory_quota.h */, - 46EB2E0001D9D0 /* message_compress.cc */, - 46EB2E0001D9E0 /* message_compress.h */, - 46EB2E0001B590 /* message_compress_filter.cc */, - 46EB2E0001B5A0 /* message_compress_filter.h */, - 46EB2E0001B5B0 /* message_decompress_filter.cc */, - 46EB2E0001B5C0 /* message_decompress_filter.h */, - 46EB2E0001B610 /* message_size_filter.cc */, - 46EB2E0001B620 /* message_size_filter.h */, - 46EB2E0001C1D0 /* metadata.upb.c */, - 46EB2E0001C2D0 /* metadata.upb.c */, - 46EB2E0001C1E0 /* metadata.upb.h */, - 46EB2E0001C2E0 /* metadata.upb.h */, - 46EB2E0001CF70 /* metadata.upbdefs.c */, - 46EB2E0001D070 /* metadata.upbdefs.c */, - 46EB2E0001CF80 /* metadata.upbdefs.h */, - 46EB2E0001D080 /* metadata.upbdefs.h */, - 46EB2E0001F7E0 /* metadata_array.cc */, - 46EB2E0001F8D0 /* metadata_batch.h */, - 46EB2E0001C630 /* migrate.upb.c */, - 46EB2E0001C640 /* migrate.upb.h */, - 46EB2E0001D310 /* migrate.upbdefs.c */, - 46EB2E0001D320 /* migrate.upbdefs.h */, - 46EB2E0001FD90 /* mimics_pcre.cc */, - 46EB2E0001FFA0 /* mix.h */, - 46EB2E0001E3A0 /* mpmcqueue.cc */, - 46EB2E0001E3B0 /* mpmcqueue.h */, - 46EB2E0001DEC0 /* mpscq.cc */, - 46EB2E0001DED0 /* mpscq.h */, - 46EB2E000200E0 /* msg.c */, - 46EB2E000200F0 /* msg.h */, - 46EB2E00020100 /* msg_internal.h */, - 46EB2E0001DBF0 /* murmur_hash.cc */, - 46EB2E0001DC00 /* murmur_hash.h */, - 46EB2E0001FFB0 /* mutex.h */, - 46EB2E0001E5A0 /* nameser.h */, - 46EB2E0001FDA0 /* nfa.cc */, - 46EB2E0001C1F0 /* node.upb.c */, - 46EB2E0001C200 /* node.upb.h */, - 46EB2E0001CF90 /* node.upbdefs.c */, - 46EB2E0001CFA0 /* node.upbdefs.h */, - 46EB2E0001C210 /* number.upb.c */, - 46EB2E0001C220 /* number.upb.h */, - 46EB2E0001CFB0 /* number.upbdefs.c */, - 46EB2E0001CFC0 /* number.upbdefs.h */, - 46EB2E0001F150 /* oauth2_credentials.cc */, - 46EB2E0001F160 /* oauth2_credentials.h */, - 46EB2E0001FDB0 /* onepass.cc */, - 46EB2E0001C7D0 /* orca_load_report.upb.c */, - 46EB2E0001C7E0 /* orca_load_report.upb.h */, - 46EB2E0001DEE0 /* orphanable.h */, - 46EB2E0001BB70 /* outlier_detection.upb.c */, - 46EB2E0001BB80 /* outlier_detection.upb.h */, - 46EB2E0001C910 /* outlier_detection.upbdefs.c */, - 46EB2E0001C920 /* outlier_detection.upbdefs.h */, - 46EB2E0001BE90 /* overload.upb.c */, - 46EB2E0001BEA0 /* overload.upb.h */, - 46EB2E0001CC30 /* overload.upbdefs.c */, - 46EB2E0001CC40 /* overload.upbdefs.h */, - 46EB2E0001FDC0 /* parse.cc */, - 46EB2E0001D7A0 /* parse_address.cc */, - 46EB2E0001D7B0 /* parse_address.h */, - 46EB2E0001F8E0 /* parsed_metadata.cc */, - 46EB2E0001F8F0 /* parsed_metadata.h */, - 46EB2E0001E020 /* parser.cc */, - 46EB2E0001E030 /* parser.h */, - 46EB2E0001B9D0 /* parsing.cc */, - 46EB2E0001C230 /* path.upb.c */, - 46EB2E0001C240 /* path.upb.h */, - 46EB2E0001CFD0 /* path.upbdefs.c */, - 46EB2E0001CFE0 /* path.upbdefs.h */, - 46EB2E0001C1B0 /* path_transformation.upb.c */, - 46EB2E0001C1C0 /* path_transformation.upb.h */, - 46EB2E0001CF50 /* path_transformation.upbdefs.c */, - 46EB2E0001CF60 /* path_transformation.upbdefs.h */, - 46EB2E0001FFC0 /* pcre.cc */, - 46EB2E0001FFD0 /* pcre.h */, - 46EB2E0001C330 /* percent.upb.c */, - 46EB2E0001C340 /* percent.upb.h */, - 46EB2E0001D0D0 /* percent.upbdefs.c */, - 46EB2E0001D0E0 /* percent.upbdefs.h */, - 46EB2E0001F510 /* percent_encoding.cc */, - 46EB2E0001F520 /* percent_encoding.h */, - 46EB2E0001FDD0 /* perl_groups.cc */, - 46EB2E0001B130 /* pick_first.cc */, - 46EB2E0001F900 /* pid_controller.cc */, - 46EB2E0001F910 /* pid_controller.h */, - 46EB2E0001F170 /* plugin_credentials.cc */, - 46EB2E0001F180 /* plugin_credentials.h */, - 46EB2E0001FDE0 /* pod_array.h */, - 46EB2E0001EC70 /* poll.h */, - 46EB2E0001E5B0 /* polling_entity.cc */, - 46EB2E0001E5C0 /* polling_entity.h */, - 46EB2E0001E2D0 /* pollset.cc */, - 46EB2E0001E5D0 /* pollset.cc */, - 46EB2E0001E2E0 /* pollset.h */, - 46EB2E0001E5E0 /* pollset.h */, - 46EB2E0001E5F0 /* pollset_custom.cc */, - 46EB2E0001E600 /* pollset_custom.h */, - 46EB2E0001E610 /* pollset_set.cc */, - 46EB2E0001E620 /* pollset_set.h */, - 46EB2E0001E630 /* pollset_set_custom.cc */, - 46EB2E0001E640 /* pollset_set_custom.h */, - 46EB2E0001E650 /* pollset_set_windows.cc */, - 46EB2E0001E660 /* pollset_set_windows.h */, - 46EB2E0001E670 /* pollset_windows.cc */, - 46EB2E0001E680 /* pollset_windows.h */, - 46EB2E0001E690 /* port.h */, - 46EB2E00020110 /* port_def.inc */, - 46EB2E00020120 /* port_undef.inc */, - 46EB2E0001FDF0 /* prefilter.cc */, - 46EB2E0001FE00 /* prefilter.h */, - 46EB2E0001FE10 /* prefilter_tree.cc */, - 46EB2E0001FE20 /* prefilter_tree.h */, - 46EB2E0001B140 /* priority.cc */, - 46EB2E0001FE30 /* prog.cc */, - 46EB2E0001FE40 /* prog.h */, - 46EB2E0001E2F0 /* promise.h */, - 46EB2E0001EC00 /* promise_factory.h */, - 46EB2E0001EC10 /* promise_like.h */, - 46EB2E0001BCB0 /* protocol.upb.c */, - 46EB2E0001BCC0 /* protocol.upb.h */, - 46EB2E0001CA50 /* protocol.upbdefs.c */, - 46EB2E0001CA60 /* protocol.upbdefs.h */, - 46EB2E0001B260 /* proxy_mapper.h */, - 46EB2E0001B270 /* proxy_mapper_registry.cc */, - 46EB2E0001B280 /* proxy_mapper_registry.h */, - 46EB2E0001BCD0 /* proxy_protocol.upb.c */, - 46EB2E0001BCE0 /* proxy_protocol.upb.h */, - 46EB2E0001CA70 /* proxy_protocol.upbdefs.c */, - 46EB2E0001CA80 /* proxy_protocol.upbdefs.h */, - 46EB2E0001E6A0 /* python_util.h */, - 46EB2E0001BE30 /* quic_config.upb.c */, - 46EB2E0001BE40 /* quic_config.upb.h */, - 46EB2E0001CBD0 /* quic_config.upbdefs.c */, - 46EB2E0001CBE0 /* quic_config.upbdefs.h */, - 46EB2E0001EC80 /* race.h */, - 46EB2E0001C350 /* range.upb.c */, - 46EB2E0001C360 /* range.upb.h */, - 46EB2E0001D0F0 /* range.upbdefs.c */, - 46EB2E0001D100 /* range.upbdefs.h */, - 46EB2E0001BEB0 /* rbac.upb.c */, - 46EB2E0001BFB0 /* rbac.upb.c */, - 46EB2E0001BEC0 /* rbac.upb.h */, - 46EB2E0001BFC0 /* rbac.upb.h */, - 46EB2E0001CC50 /* rbac.upbdefs.c */, - 46EB2E0001CD50 /* rbac.upbdefs.c */, - 46EB2E0001CC60 /* rbac.upbdefs.h */, - 46EB2E0001CD60 /* rbac.upbdefs.h */, - 46EB2E0001B630 /* rbac_filter.cc */, - 46EB2E0001B640 /* rbac_filter.h */, - 46EB2E0001EE60 /* rbac_policy.cc */, - 46EB2E0001EE70 /* rbac_policy.h */, - 46EB2E0001B650 /* rbac_service_config_parser.cc */, - 46EB2E0001B660 /* rbac_service_config_parser.h */, - 46EB2E0001C150 /* rds.upb.c */, - 46EB2E0001C160 /* rds.upb.h */, - 46EB2E0001CEF0 /* rds.upbdefs.c */, - 46EB2E0001CF00 /* rds.upbdefs.h */, - 46EB2E0001FE50 /* re2.cc */, - 46EB2E0001FE60 /* re2.h */, - 46EB2E0001DEF0 /* ref_counted.h */, - 46EB2E0001DF00 /* ref_counted_ptr.h */, - 46EB2E00020130 /* reflection.c */, - 46EB2E00020140 /* reflection.h */, - 46EB2E00020150 /* reflection.hpp */, - 46EB2E0001C250 /* regex.upb.c */, - 46EB2E0001C260 /* regex.upb.h */, - 46EB2E0001CFF0 /* regex.upbdefs.c */, - 46EB2E0001D000 /* regex.upbdefs.h */, - 46EB2E0001FE70 /* regexp.cc */, - 46EB2E0001FE80 /* regexp.h */, - 46EB2E0001E6B0 /* resolve_address.cc */, - 46EB2E0001E6C0 /* resolve_address.h */, - 46EB2E0001E6D0 /* resolve_address_custom.cc */, - 46EB2E0001E6E0 /* resolve_address_custom.h */, - 46EB2E0001E6F0 /* resolve_address_impl.h */, - 46EB2E0001E700 /* resolve_address_posix.cc */, - 46EB2E0001E710 /* resolve_address_posix.h */, - 46EB2E0001E720 /* resolve_address_windows.cc */, - 46EB2E0001E730 /* resolve_address_windows.h */, - 46EB2E0001E740 /* resolved_address.h */, - 46EB2E0001E300 /* resolved_address_internal.cc */, - 46EB2E0001E310 /* resolved_address_internal.h */, - 46EB2E0001E320 /* resolver.cc */, - 46EB2E0001ECA0 /* resolver.cc */, - 46EB2E0001E330 /* resolver.h */, - 46EB2E0001ECB0 /* resolver.h */, - 46EB2E0001BCF0 /* resolver.upb.c */, - 46EB2E0001BD00 /* resolver.upb.h */, - 46EB2E0001CA90 /* resolver.upbdefs.c */, - 46EB2E0001CAA0 /* resolver.upbdefs.h */, - 46EB2E0001ECC0 /* resolver_factory.h */, - 46EB2E0001ECD0 /* resolver_registry.cc */, - 46EB2E0001ECE0 /* resolver_registry.h */, - 46EB2E0001B3D0 /* resolver_result_parsing.cc */, - 46EB2E0001B3E0 /* resolver_result_parsing.h */, - 46EB2E0001BAB0 /* resource.upb.c */, - 46EB2E0001C770 /* resource.upb.c */, - 46EB2E0001BAC0 /* resource.upb.h */, - 46EB2E0001C780 /* resource.upb.h */, - 46EB2E0001C850 /* resource.upbdefs.c */, - 46EB2E0001D450 /* resource.upbdefs.c */, - 46EB2E0001C860 /* resource.upbdefs.h */, - 46EB2E0001D460 /* resource.upbdefs.h */, - 46EB2E0001C790 /* resource_locator.upb.c */, - 46EB2E0001C7A0 /* resource_locator.upb.h */, - 46EB2E0001D470 /* resource_locator.upbdefs.c */, - 46EB2E0001D480 /* resource_locator.upbdefs.h */, - 46EB2E0001C7B0 /* resource_name.upb.c */, - 46EB2E0001C7C0 /* resource_name.upb.h */, - 46EB2E0001D490 /* resource_name.upbdefs.c */, - 46EB2E0001D4A0 /* resource_name.upbdefs.h */, - 46EB2E0001ED70 /* resource_quota.cc */, - 46EB2E0001ED80 /* resource_quota.h */, - 46EB2E0001B3F0 /* retry_filter.cc */, - 46EB2E0001B400 /* retry_filter.h */, - 46EB2E0001B410 /* retry_service_config.cc */, - 46EB2E0001B420 /* retry_service_config.h */, - 46EB2E0001B430 /* retry_throttle.cc */, - 46EB2E0001B440 /* retry_throttle.h */, - 46EB2E0001B150 /* ring_hash.cc */, - 46EB2E0001B160 /* ring_hash.h */, - 46EB2E0001B170 /* rls.cc */, - 46EB2E0001C610 /* rls.upb.c */, - 46EB2E0001C620 /* rls.upb.h */, - 46EB2E0001B180 /* round_robin.cc */, - 46EB2E0001BED0 /* route.upb.c */, - 46EB2E0001BEE0 /* route.upb.h */, - 46EB2E0001CC70 /* route.upbdefs.c */, - 46EB2E0001CC80 /* route.upbdefs.h */, - 46EB2E0001BEF0 /* route_components.upb.c */, - 46EB2E0001BF00 /* route_components.upb.h */, - 46EB2E0001CC90 /* route_components.upbdefs.c */, - 46EB2E0001CCA0 /* route_components.upbdefs.h */, - 46EB2E0001BFD0 /* router.upb.c */, - 46EB2E0001BFE0 /* router.upb.h */, - 46EB2E0001CD70 /* router.upbdefs.c */, - 46EB2E0001CD80 /* router.upbdefs.h */, - 46EB2E0001FFE0 /* rune.cc */, - 46EB2E0001BF10 /* scoped_route.upb.c */, - 46EB2E0001BF20 /* scoped_route.upb.h */, - 46EB2E0001CCB0 /* scoped_route.upbdefs.c */, - 46EB2E0001CCC0 /* scoped_route.upbdefs.h */, - 46EB2E0001EE80 /* sdk_server_authz_filter.cc */, - 46EB2E0001EE90 /* sdk_server_authz_filter.h */, - 46EB2E0001C050 /* secret.upb.c */, - 46EB2E0001C060 /* secret.upb.h */, - 46EB2E0001CDF0 /* secret.upbdefs.c */, - 46EB2E0001CE00 /* secret.upbdefs.h */, - 46EB2E0001B710 /* secure_channel_create.cc */, - 46EB2E0001F410 /* secure_endpoint.cc */, - 46EB2E0001F420 /* secure_endpoint.h */, - 46EB2E0001C650 /* security.upb.c */, - 46EB2E0001C660 /* security.upb.h */, - 46EB2E0001D330 /* security.upbdefs.c */, - 46EB2E0001D340 /* security.upbdefs.h */, - 46EB2E0001F350 /* security_connector.cc */, - 46EB2E0001F360 /* security_connector.h */, - 46EB2E0001EEA0 /* security_context.cc */, - 46EB2E0001EEB0 /* security_context.h */, - 46EB2E0001F430 /* security_handshaker.cc */, - 46EB2E0001F440 /* security_handshaker.h */, - 46EB2E0001C370 /* semantic_version.upb.c */, - 46EB2E0001C380 /* semantic_version.upb.h */, - 46EB2E0001D110 /* semantic_version.upbdefs.c */, - 46EB2E0001D120 /* semantic_version.upbdefs.h */, - 46EB2E0001C670 /* sensitive.upb.c */, - 46EB2E0001C680 /* sensitive.upb.h */, - 46EB2E0001D350 /* sensitive.upbdefs.c */, - 46EB2E0001D360 /* sensitive.upbdefs.h */, - 46EB2E0001EC90 /* seq.h */, - 46EB2E0001F7F0 /* server.cc */, - 46EB2E0001F800 /* server.h */, - 46EB2E0001ECF0 /* server_address.cc */, - 46EB2E0001ED00 /* server_address.h */, - 46EB2E0001F450 /* server_auth_filter.cc */, - 46EB2E0001B740 /* server_chttp2.cc */, - 46EB2E0001B750 /* server_chttp2_posix.cc */, - 46EB2E0001B670 /* server_config_selector.cc */, - 46EB2E0001B680 /* server_config_selector.h */, - 46EB2E0001B690 /* server_config_selector_filter.cc */, - 46EB2E0001B6A0 /* server_config_selector_filter.h */, - 46EB2E0001B760 /* server_secure_chttp2.cc */, - 46EB2E0001F4A0 /* service_config.cc */, - 46EB2E0001F4B0 /* service_config.h */, - 46EB2E0001F4C0 /* service_config_call_data.h */, - 46EB2E0001B450 /* service_config_channel_arg_filter.cc */, - 46EB2E0001B520 /* service_config_parser.cc */, - 46EB2E0001F4D0 /* service_config_parser.cc */, - 46EB2E0001B530 /* service_config_parser.h */, - 46EB2E0001F4E0 /* service_config_parser.h */, - 46EB2E0001FE90 /* set.cc */, - 46EB2E0001FEA0 /* set.h */, - 46EB2E0001FEB0 /* simplify.cc */, - 46EB2E0001F530 /* slice.cc */, - 46EB2E0001F540 /* slice.h */, - 46EB2E0001F550 /* slice_api.cc */, - 46EB2E0001F560 /* slice_buffer.cc */, - 46EB2E0001F570 /* slice_intern.cc */, - 46EB2E0001F580 /* slice_internal.h */, - 46EB2E0001F590 /* slice_refcount.cc */, - 46EB2E0001F5A0 /* slice_refcount.h */, - 46EB2E0001F5B0 /* slice_refcount_base.h */, - 46EB2E0001F5C0 /* slice_split.cc */, - 46EB2E0001F5D0 /* slice_split.h */, - 46EB2E0001F5E0 /* slice_string_helpers.cc */, - 46EB2E0001F5F0 /* slice_string_helpers.h */, - 46EB2E0001F600 /* slice_utils.h */, - 46EB2E0001DAD0 /* sockaddr.cc */, - 46EB2E0001DAE0 /* sockaddr.h */, - 46EB2E0001E750 /* sockaddr.h */, - 46EB2E0001E760 /* sockaddr_posix.h */, - 46EB2E0001B3A0 /* sockaddr_resolver.cc */, - 46EB2E0001D7C0 /* sockaddr_utils.cc */, - 46EB2E0001D7D0 /* sockaddr_utils.h */, - 46EB2E0001E770 /* sockaddr_windows.h */, - 46EB2E0001E780 /* socket_factory_posix.cc */, - 46EB2E0001E790 /* socket_factory_posix.h */, - 46EB2E0001E7A0 /* socket_mutator.cc */, - 46EB2E0001E7B0 /* socket_mutator.h */, - 46EB2E0001BD10 /* socket_option.upb.c */, - 46EB2E0001BD20 /* socket_option.upb.h */, - 46EB2E0001CAB0 /* socket_option.upbdefs.c */, - 46EB2E0001CAC0 /* socket_option.upbdefs.h */, - 46EB2E0001E7C0 /* socket_utils.h */, - 46EB2E0001E7D0 /* socket_utils_common_posix.cc */, - 46EB2E0001E7E0 /* socket_utils_linux.cc */, - 46EB2E0001E7F0 /* socket_utils_posix.cc */, - 46EB2E0001E800 /* socket_utils_posix.h */, - 46EB2E0001E810 /* socket_utils_windows.cc */, - 46EB2E0001E820 /* socket_windows.cc */, - 46EB2E0001E830 /* socket_windows.h */, - 46EB2E0001FEC0 /* sparse_array.h */, - 46EB2E0001FED0 /* sparse_set.h */, - 46EB2E0001DC10 /* spinlock.h */, - 46EB2E0001C170 /* srds.upb.c */, - 46EB2E0001C180 /* srds.upb.h */, - 46EB2E0001CF10 /* srds.upbdefs.c */, - 46EB2E0001CF20 /* srds.upbdefs.h */, - 46EB2E0001F190 /* ssl_credentials.cc */, - 46EB2E0001F1A0 /* ssl_credentials.h */, - 46EB2E0001F370 /* ssl_security_connector.cc */, - 46EB2E0001F380 /* ssl_security_connector.h */, - 46EB2E0001FC60 /* ssl_session.h */, - 46EB2E0001FC70 /* ssl_session_boringssl.cc */, - 46EB2E0001FC80 /* ssl_session_cache.cc */, - 46EB2E0001FC90 /* ssl_session_cache.h */, - 46EB2E0001FCA0 /* ssl_session_openssl.cc */, - 46EB2E0001FCB0 /* ssl_transport_security.cc */, - 46EB2E0001FCC0 /* ssl_transport_security.h */, - 46EB2E0001FCD0 /* ssl_types.h */, - 46EB2E0001F390 /* ssl_utils.cc */, - 46EB2E0001F3A0 /* ssl_utils.h */, - 46EB2E0001F3B0 /* ssl_utils_config.cc */, - 46EB2E0001F3C0 /* ssl_utils_config.h */, - 46EB2E0001EBA0 /* stap_timers.cc */, - 46EB2E0001DF10 /* stat.h */, - 46EB2E0001DF20 /* stat_posix.cc */, - 46EB2E0001DF30 /* stat_windows.cc */, - 46EB2E0001DA10 /* stats.cc */, - 46EB2E0001DA20 /* stats.h */, - 46EB2E0001BE70 /* stats.upb.c */, - 46EB2E0001BE80 /* stats.upb.h */, - 46EB2E0001CC10 /* stats.upbdefs.c */, - 46EB2E0001CC20 /* stats.upbdefs.h */, - 46EB2E0001DA30 /* stats_data.cc */, - 46EB2E0001DA40 /* stats_data.h */, - 46EB2E0001EC20 /* status.h */, - 46EB2E0001C550 /* status.upb.c */, - 46EB2E0001C690 /* status.upb.c */, - 46EB2E0001C6F0 /* status.upb.c */, - 46EB2E0001C560 /* status.upb.h */, - 46EB2E0001C6A0 /* status.upb.h */, - 46EB2E0001C700 /* status.upb.h */, - 46EB2E0001D2F0 /* status.upbdefs.c */, - 46EB2E0001D370 /* status.upbdefs.c */, - 46EB2E0001D3D0 /* status.upbdefs.c */, - 46EB2E0001D300 /* status.upbdefs.h */, - 46EB2E0001D380 /* status.upbdefs.h */, - 46EB2E0001D3E0 /* status.upbdefs.h */, - 46EB2E0001F920 /* status_conversion.cc */, - 46EB2E0001F930 /* status_conversion.h */, - 46EB2E0001DF40 /* status_helper.cc */, - 46EB2E0001DF50 /* status_helper.h */, - 46EB2E0001D980 /* status_util.cc */, - 46EB2E0001D990 /* status_util.h */, - 46EB2E0001B9E0 /* stream_lists.cc */, - 46EB2E0001B9F0 /* stream_map.cc */, - 46EB2E0001BA00 /* stream_map.h */, - 46EB2E0001DC20 /* string.cc */, - 46EB2E0001DC30 /* string.h */, - 46EB2E0001C270 /* string.upb.c */, - 46EB2E0001C280 /* string.upb.h */, - 46EB2E0001D010 /* string.upbdefs.c */, - 46EB2E0001D020 /* string.upbdefs.h */, - 46EB2E0001DC40 /* string_posix.cc */, - 46EB2E0001DC50 /* string_util_windows.cc */, - 46EB2E0001DC60 /* string_windows.cc */, - 46EB2E0001DC70 /* string_windows.h */, - 46EB2E0001FEE0 /* stringpiece.cc */, - 46EB2E0001FEF0 /* stringpiece.h */, - 46EB2E0001C290 /* struct.upb.c */, - 46EB2E0001C4F0 /* struct.upb.c */, - 46EB2E0001C2A0 /* struct.upb.h */, - 46EB2E0001C500 /* struct.upb.h */, - 46EB2E0001D030 /* struct.upbdefs.c */, - 46EB2E0001D290 /* struct.upbdefs.c */, - 46EB2E0001D040 /* struct.upbdefs.h */, - 46EB2E0001D2A0 /* struct.upbdefs.h */, - 46EB2E0001FFF0 /* strutil.cc */, - 46EB2E00020000 /* strutil.h */, - 46EB2E0001B460 /* subchannel.cc */, - 46EB2E0001B470 /* subchannel.h */, - 46EB2E0001B480 /* subchannel_interface.h */, - 46EB2E0001B190 /* subchannel_list.h */, - 46EB2E0001B490 /* subchannel_pool_interface.cc */, - 46EB2E0001B4A0 /* subchannel_pool_interface.h */, - 46EB2E0001BD30 /* substitution_format_string.upb.c */, - 46EB2E0001BD40 /* substitution_format_string.upb.h */, - 46EB2E0001CAD0 /* substitution_format_string.upbdefs.c */, - 46EB2E0001CAE0 /* substitution_format_string.upbdefs.h */, - 46EB2E0001EC30 /* switch.h */, - 46EB2E0001DC80 /* sync.cc */, - 46EB2E0001DF60 /* sync.h */, - 46EB2E0001DC90 /* sync_abseil.cc */, - 46EB2E0001DCA0 /* sync_posix.cc */, - 46EB2E0001DCB0 /* sync_windows.cc */, - 46EB2E0001C410 /* syntax.upb.c */, - 46EB2E0001C420 /* syntax.upb.h */, - 46EB2E0001D1B0 /* syntax.upbdefs.c */, - 46EB2E0001D1C0 /* syntax.upbdefs.h */, - 46EB2E0001E840 /* sys_epoll_wrapper.h */, - 46EB2E00020160 /* table.c */, - 46EB2E0001DF70 /* table.h */, - 46EB2E00020170 /* table_internal.h */, - 46EB2E0001E340 /* tcp.cc */, - 46EB2E0001E850 /* tcp_client.cc */, - 46EB2E0001E860 /* tcp_client.h */, - 46EB2E0001E870 /* tcp_client_cfstream.cc */, - 46EB2E0001E880 /* tcp_client_custom.cc */, - 46EB2E0001E890 /* tcp_client_posix.cc */, - 46EB2E0001E8A0 /* tcp_client_posix.h */, - 46EB2E0001E8B0 /* tcp_client_windows.cc */, - 46EB2E0001E8C0 /* tcp_custom.cc */, - 46EB2E0001E8D0 /* tcp_custom.h */, - 46EB2E0001E8E0 /* tcp_posix.cc */, - 46EB2E0001E8F0 /* tcp_posix.h */, - 46EB2E0001E900 /* tcp_server.cc */, - 46EB2E0001E910 /* tcp_server.h */, - 46EB2E0001E920 /* tcp_server_custom.cc */, - 46EB2E0001E930 /* tcp_server_posix.cc */, - 46EB2E0001E940 /* tcp_server_utils_posix.h */, - 46EB2E0001E950 /* tcp_server_utils_posix_common.cc */, - 46EB2E0001E960 /* tcp_server_utils_posix_ifaddrs.cc */, - 46EB2E0001E970 /* tcp_server_utils_posix_noifaddrs.cc */, - 46EB2E0001E980 /* tcp_server_windows.cc */, - 46EB2E0001E990 /* tcp_windows.cc */, - 46EB2E0001E9A0 /* tcp_windows.h */, - 46EB2E00020010 /* test.h */, - 46EB2E00020180 /* text_encode.c */, - 46EB2E00020190 /* text_encode.h */, - 46EB2E0001DF80 /* thd.h */, - 46EB2E0001DF90 /* thd_posix.cc */, - 46EB2E0001DFA0 /* thd_windows.cc */, - 46EB2E0001ED90 /* thread_quota.cc */, - 46EB2E0001EDA0 /* thread_quota.h */, - 46EB2E0001E3C0 /* threadpool.cc */, - 46EB2E0001E3D0 /* threadpool.h */, - 46EB2E0001DCC0 /* time.cc */, - 46EB2E0001E9B0 /* time_averaged_stats.cc */, - 46EB2E0001E9C0 /* time_averaged_stats.h */, - 46EB2E0001DCD0 /* time_posix.cc */, - 46EB2E0001DCE0 /* time_precise.cc */, - 46EB2E0001DCF0 /* time_precise.h */, - 46EB2E0001DFB0 /* time_util.cc */, - 46EB2E0001DFC0 /* time_util.h */, - 46EB2E0001DD00 /* time_windows.cc */, - 46EB2E0001F940 /* timeout_encoding.cc */, - 46EB2E0001F950 /* timeout_encoding.h */, - 46EB2E0001E350 /* timer.cc */, - 46EB2E0001E9D0 /* timer.cc */, - 46EB2E0001E9E0 /* timer.h */, - 46EB2E0001E9F0 /* timer_custom.cc */, - 46EB2E0001EA00 /* timer_custom.h */, - 46EB2E0001EA10 /* timer_generic.cc */, - 46EB2E0001EA20 /* timer_generic.h */, - 46EB2E0001EA30 /* timer_heap.cc */, - 46EB2E0001EA40 /* timer_heap.h */, - 46EB2E0001EA50 /* timer_manager.cc */, - 46EB2E0001EA60 /* timer_manager.h */, - 46EB2E0001EBB0 /* timers.h */, - 46EB2E0001C510 /* timestamp.upb.c */, - 46EB2E0001C520 /* timestamp.upb.h */, - 46EB2E0001D2B0 /* timestamp.upbdefs.c */, - 46EB2E0001D2C0 /* timestamp.upbdefs.h */, - 46EB2E0001DD10 /* tls.h */, - 46EB2E0001C070 /* tls.upb.c */, - 46EB2E0001C080 /* tls.upb.h */, - 46EB2E0001CE10 /* tls.upbdefs.c */, - 46EB2E0001CE20 /* tls.upbdefs.h */, - 46EB2E0001F230 /* tls_credentials.cc */, - 46EB2E0001F240 /* tls_credentials.h */, - 46EB2E0001F3D0 /* tls_security_connector.cc */, - 46EB2E0001F3E0 /* tls_security_connector.h */, - 46EB2E0001F250 /* tls_utils.cc */, - 46EB2E0001F260 /* tls_utils.h */, - 46EB2E0001DD20 /* tmpfile.h */, - 46EB2E0001DD30 /* tmpfile_msys.cc */, - 46EB2E0001DD40 /* tmpfile_posix.cc */, - 46EB2E0001DD50 /* tmpfile_windows.cc */, - 46EB2E0001FF00 /* tostring.cc */, - 46EB2E0001DA50 /* trace.cc */, - 46EB2E0001EDB0 /* trace.cc */, - 46EB2E0001DA60 /* trace.h */, - 46EB2E0001EDC0 /* trace.h */, - 46EB2E0001F960 /* transport.cc */, - 46EB2E0001F970 /* transport.h */, - 46EB2E0001F980 /* transport_impl.h */, - 46EB2E0001F990 /* transport_op_string.cc */, - 46EB2E0001FCE0 /* transport_security.cc */, - 46EB2E0001FCF0 /* transport_security.h */, - 46EB2E0001C5B0 /* transport_security_common.upb.c */, - 46EB2E0001C5C0 /* transport_security_common.upb.h */, - 46EB2E0001FB50 /* transport_security_common_api.cc */, - 46EB2E0001FB60 /* transport_security_common_api.h */, - 46EB2E0001FD00 /* transport_security_grpc.cc */, - 46EB2E0001FD10 /* transport_security_grpc.h */, - 46EB2E0001FD20 /* transport_security_interface.h */, - 46EB2E0001F460 /* tsi_error.cc */, - 46EB2E0001F470 /* tsi_error.h */, - 46EB2E0001C7F0 /* typed_struct.upb.c */, - 46EB2E0001C800 /* typed_struct.upb.h */, - 46EB2E0001D4B0 /* typed_struct.upbdefs.c */, - 46EB2E0001D4C0 /* typed_struct.upbdefs.h */, - 46EB2E0001BE50 /* udp_listener_config.upb.c */, - 46EB2E0001BE60 /* udp_listener_config.upb.h */, - 46EB2E0001CBF0 /* udp_listener_config.upbdefs.c */, - 46EB2E0001CC00 /* udp_listener_config.upbdefs.h */, - 46EB2E0001BD50 /* udp_socket_config.upb.c */, - 46EB2E0001BD60 /* udp_socket_config.upb.h */, - 46EB2E0001CAF0 /* udp_socket_config.upbdefs.c */, - 46EB2E0001CB00 /* udp_socket_config.upbdefs.h */, - 46EB2E0001FF10 /* unicode_casefold.cc */, - 46EB2E0001FF20 /* unicode_casefold.h */, - 46EB2E0001FF30 /* unicode_groups.cc */, - 46EB2E0001FF40 /* unicode_groups.h */, - 46EB2E0001EA70 /* unix_sockets_posix.cc */, - 46EB2E0001EA80 /* unix_sockets_posix.h */, - 46EB2E0001EA90 /* unix_sockets_posix_noop.cc */, - 46EB2E000201A0 /* upb.c */, - 46EB2E000201B0 /* upb.h */, - 46EB2E000201C0 /* upb.hpp */, - 46EB2E000201D0 /* upb_internal.h */, - 46EB2E0001D540 /* upb_utils.h */, - 46EB2E0001F9A0 /* uri_parser.cc */, - 46EB2E0001F9B0 /* uri_parser.h */, - 46EB2E0001F030 /* url_external_account_credentials.cc */, - 46EB2E0001F040 /* url_external_account_credentials.h */, - 46EB2E0001DD60 /* useful.h */, - 46EB2E00020020 /* utf.h */, - 46EB2E00020030 /* util.h */, - 46EB2E0001C6D0 /* validate.upb.c */, - 46EB2E0001C6E0 /* validate.upb.h */, - 46EB2E0001D3B0 /* validate.upbdefs.c */, - 46EB2E0001D3C0 /* validate.upbdefs.h */, - 46EB2E0001F810 /* validate_metadata.cc */, - 46EB2E0001F820 /* validate_metadata.h */, + 46EB2E0001ACE0 /* Implementation */ = { + isa = PBXGroup; + children = ( + 46EB2E0001B950 /* accesslog.upb.c */, + 46EB2E0001B960 /* accesslog.upb.h */, + 46EB2E0001C6F0 /* accesslog.upbdefs.c */, + 46EB2E0001C700 /* accesslog.upbdefs.h */, + 46EB2E0001EA40 /* activity.cc */, + 46EB2E0001EA50 /* activity.h */, + 46EB2E0001BA10 /* address.upb.c */, + 46EB2E0001BA20 /* address.upb.h */, + 46EB2E0001C7B0 /* address.upbdefs.c */, + 46EB2E0001C7C0 /* address.upbdefs.h */, + 46EB2E0001AEB0 /* address_filtering.cc */, + 46EB2E0001AEC0 /* address_filtering.h */, + 46EB2E0001BF30 /* ads.upb.c */, + 46EB2E0001BF40 /* ads.upb.h */, + 46EB2E0001CCD0 /* ads.upbdefs.c */, + 46EB2E0001CCE0 /* ads.upbdefs.h */, + 46EB2E0001F850 /* aes_gcm.cc */, + 46EB2E0001D970 /* alloc.cc */, + 46EB2E0001D980 /* alloc.h */, + 46EB2E0001B530 /* alpn.cc */, + 46EB2E0001B540 /* alpn.h */, + 46EB2E0001F880 /* alts_counter.cc */, + 46EB2E0001F890 /* alts_counter.h */, + 46EB2E0001ED40 /* alts_credentials.cc */, + 46EB2E0001ED50 /* alts_credentials.h */, + 46EB2E0001F8A0 /* alts_crypter.cc */, + 46EB2E0001F8B0 /* alts_crypter.h */, + 46EB2E0001F8C0 /* alts_frame_protector.cc */, + 46EB2E0001F8D0 /* alts_frame_protector.h */, + 46EB2E0001F9F0 /* alts_grpc_integrity_only_record_protocol.cc */, + 46EB2E0001FA00 /* alts_grpc_integrity_only_record_protocol.h */, + 46EB2E0001FA10 /* alts_grpc_privacy_integrity_record_protocol.cc */, + 46EB2E0001FA20 /* alts_grpc_privacy_integrity_record_protocol.h */, + 46EB2E0001FA30 /* alts_grpc_record_protocol.h */, + 46EB2E0001FA40 /* alts_grpc_record_protocol_common.cc */, + 46EB2E0001FA50 /* alts_grpc_record_protocol_common.h */, + 46EB2E0001F940 /* alts_handshaker_client.cc */, + 46EB2E0001F950 /* alts_handshaker_client.h */, + 46EB2E0001FA60 /* alts_iovec_record_protocol.cc */, + 46EB2E0001FA70 /* alts_iovec_record_protocol.h */, + 46EB2E0001F8E0 /* alts_record_protocol_crypter_common.cc */, + 46EB2E0001F8F0 /* alts_record_protocol_crypter_common.h */, + 46EB2E0001F900 /* alts_seal_privacy_integrity_crypter.cc */, + 46EB2E0001F110 /* alts_security_connector.cc */, + 46EB2E0001F120 /* alts_security_connector.h */, + 46EB2E0001F960 /* alts_shared_resource.cc */, + 46EB2E0001F970 /* alts_shared_resource.h */, + 46EB2E0001F980 /* alts_tsi_handshaker.cc */, + 46EB2E0001F990 /* alts_tsi_handshaker.h */, + 46EB2E0001F9A0 /* alts_tsi_handshaker_private.h */, + 46EB2E0001F9B0 /* alts_tsi_utils.cc */, + 46EB2E0001F9C0 /* alts_tsi_utils.h */, + 46EB2E0001F910 /* alts_unseal_privacy_integrity_crypter.cc */, + 46EB2E0001FA80 /* alts_zero_copy_grpc_protector.cc */, + 46EB2E0001FA90 /* alts_zero_copy_grpc_protector.h */, + 46EB2E0001C3F0 /* altscontext.upb.c */, + 46EB2E0001C400 /* altscontext.upb.h */, + 46EB2E0001C210 /* annotations.upb.c */, + 46EB2E0001C220 /* annotations.upb.h */, + 46EB2E0001CFB0 /* annotations.upbdefs.c */, + 46EB2E0001CFC0 /* annotations.upbdefs.h */, + 46EB2E0001C2F0 /* any.upb.c */, + 46EB2E0001C300 /* any.upb.h */, + 46EB2E0001D090 /* any.upbdefs.c */, + 46EB2E0001D0A0 /* any.upbdefs.h */, + 46EB2E0001EB90 /* api.cc */, + 46EB2E0001EBA0 /* api.h */, + 46EB2E0001BC50 /* api_listener.upb.c */, + 46EB2E0001BC60 /* api_listener.upb.h */, + 46EB2E0001C9F0 /* api_listener.upbdefs.c */, + 46EB2E0001CA00 /* api_listener.upbdefs.h */, + 46EB2E0001F490 /* api_trace.cc */, + 46EB2E0001F4A0 /* api_trace.h */, + 46EB2E0001EBB0 /* arena.cc */, + 46EB2E0001EBC0 /* arena.h */, + 46EB2E0001D990 /* atm.cc */, + 46EB2E0001DC00 /* atomic_utils.h */, + 46EB2E0001F270 /* auth_filters.h */, + 46EB2E0001C590 /* authority.upb.c */, + 46EB2E0001C5A0 /* authority.upb.h */, + 46EB2E0001D270 /* authority.upbdefs.c */, + 46EB2E0001D280 /* authority.upbdefs.h */, + 46EB2E0001EC50 /* authorization_engine.h */, + 46EB2E0001EC60 /* authorization_policy_provider.h */, + 46EB2E0001EC70 /* authorization_policy_provider_vtable.cc */, + 46EB2E0001D660 /* avl.h */, + 46EB2E0001EE30 /* aws_external_account_credentials.cc */, + 46EB2E0001EE40 /* aws_external_account_credentials.h */, + 46EB2E0001EE50 /* aws_request_signer.cc */, + 46EB2E0001EE60 /* aws_request_signer.h */, + 46EB2E0001F370 /* b64.cc */, + 46EB2E0001F380 /* b64.h */, + 46EB2E0001AD00 /* backend_metric.cc */, + 46EB2E0001AD10 /* backend_metric.h */, + 46EB2E0001D670 /* backoff.cc */, + 46EB2E0001D680 /* backoff.h */, + 46EB2E0001BA30 /* backoff.upb.c */, + 46EB2E0001BA40 /* backoff.upb.h */, + 46EB2E0001C7D0 /* backoff.upbdefs.c */, + 46EB2E0001C7E0 /* backoff.upbdefs.h */, + 46EB2E0001AD20 /* backup_poller.cc */, + 46EB2E0001AD30 /* backup_poller.h */, + 46EB2E0001BA50 /* base.upb.c */, + 46EB2E0001BA60 /* base.upb.h */, + 46EB2E0001C7F0 /* base.upbdefs.c */, + 46EB2E0001C800 /* base.upbdefs.h */, + 46EB2E0001EA70 /* basic_seq.h */, + 46EB2E0001EA10 /* basic_timers.cc */, + 46EB2E0001F6C0 /* bdp_estimator.cc */, + 46EB2E0001F6D0 /* bdp_estimator.h */, + 46EB2E0001FDE0 /* benchmark.h */, + 46EB2E0001B5F0 /* bin_decoder.cc */, + 46EB2E0001B600 /* bin_decoder.h */, + 46EB2E0001B610 /* bin_encoder.cc */, + 46EB2E0001B620 /* bin_encoder.h */, + 46EB2E0001B110 /* binder_resolver.cc */, + 46EB2E0001FBB0 /* bitmap256.h */, + 46EB2E0001DC10 /* bitset.h */, + 46EB2E0001FBC0 /* bitstate.cc */, + 46EB2E0001DEC0 /* block_annotate.h */, + 46EB2E0001B970 /* bootstrap.upb.c */, + 46EB2E0001B980 /* bootstrap.upb.h */, + 46EB2E0001C710 /* bootstrap.upbdefs.c */, + 46EB2E0001C720 /* bootstrap.upbdefs.h */, + 46EB2E0001DED0 /* buffer_list.cc */, + 46EB2E0001DEE0 /* buffer_list.h */, + 46EB2E0001F4B0 /* builtins.cc */, + 46EB2E0001F4C0 /* builtins.h */, + 46EB2E0001F4D0 /* byte_buffer.cc */, + 46EB2E0001F4E0 /* byte_buffer_reader.cc */, + 46EB2E0001F6E0 /* byte_stream.cc */, + 46EB2E0001F6F0 /* byte_stream.h */, + 46EB2E0001F4F0 /* call.cc */, + 46EB2E0001F500 /* call.h */, + 46EB2E0001DEF0 /* call_combiner.cc */, + 46EB2E0001DF00 /* call_combiner.h */, + 46EB2E0001F510 /* call_details.cc */, + 46EB2E0001F520 /* call_log_batch.cc */, + 46EB2E0001F530 /* call_test_only.h */, + 46EB2E0001D690 /* call_tracer.h */, + 46EB2E0001B030 /* cds.cc */, + 46EB2E0001BF10 /* cds.upb.c */, + 46EB2E0001BF20 /* cds.upb.h */, + 46EB2E0001CCB0 /* cds.upbdefs.c */, + 46EB2E0001CCC0 /* cds.upbdefs.h */, + 46EB2E0001BE90 /* cert.upb.c */, + 46EB2E0001BEA0 /* cert.upb.h */, + 46EB2E0001CC30 /* cert.upbdefs.c */, + 46EB2E0001CC40 /* cert.upbdefs.h */, + 46EB2E0001D350 /* certificate_provider_factory.h */, + 46EB2E0001D360 /* certificate_provider_registry.cc */, + 46EB2E0001D370 /* certificate_provider_registry.h */, + 46EB2E0001D380 /* certificate_provider_store.cc */, + 46EB2E0001D390 /* certificate_provider_store.h */, + 46EB2E0001DF10 /* cfstream_handle.cc */, + 46EB2E0001DF20 /* cfstream_handle.h */, + 46EB2E0001F540 /* channel.cc */, + 46EB2E0001F550 /* channel.h */, + 46EB2E0001D6A0 /* channel_args.cc */, + 46EB2E0001D6B0 /* channel_args.h */, + 46EB2E0001D8F0 /* channel_args_endpoint_config.cc */, + 46EB2E0001D900 /* channel_args_endpoint_config.h */, + 46EB2E0001D6C0 /* channel_args_preconditioning.cc */, + 46EB2E0001D6D0 /* channel_args_preconditioning.h */, + 46EB2E0001AD40 /* channel_connectivity.cc */, + 46EB2E0001B570 /* channel_create.cc */, + 46EB2E0001B580 /* channel_create_posix.cc */, + 46EB2E0001F560 /* channel_init.cc */, + 46EB2E0001F570 /* channel_init.h */, + 46EB2E0001F580 /* channel_ping.cc */, + 46EB2E0001D6E0 /* channel_stack.cc */, + 46EB2E0001D6F0 /* channel_stack.h */, + 46EB2E0001D700 /* channel_stack_builder.cc */, + 46EB2E0001D710 /* channel_stack_builder.h */, + 46EB2E0001F590 /* channel_stack_type.cc */, + 46EB2E0001F5A0 /* channel_stack_type.h */, + 46EB2E0001D720 /* channel_trace.cc */, + 46EB2E0001D730 /* channel_trace.h */, + 46EB2E0001D740 /* channelz.cc */, + 46EB2E0001D750 /* channelz.h */, + 46EB2E0001D760 /* channelz_registry.cc */, + 46EB2E0001D770 /* channelz_registry.h */, + 46EB2E0001ED60 /* check_gcp_environment.cc */, + 46EB2E0001ED70 /* check_gcp_environment.h */, + 46EB2E0001ED80 /* check_gcp_environment_linux.cc */, + 46EB2E0001ED90 /* check_gcp_environment_no_op.cc */, + 46EB2E0001EDA0 /* check_gcp_environment_windows.cc */, + 46EB2E0001C230 /* checked.upb.c */, + 46EB2E0001C240 /* checked.upb.h */, + 46EB2E0001CFD0 /* checked.upbdefs.c */, + 46EB2E0001CFE0 /* checked.upbdefs.h */, + 46EB2E0001AED0 /* child_policy_handler.cc */, + 46EB2E0001AEE0 /* child_policy_handler.h */, + 46EB2E0001B550 /* chttp2_connector.cc */, + 46EB2E0001B560 /* chttp2_connector.h */, + 46EB2E0001B630 /* chttp2_plugin.cc */, + 46EB2E0001B5A0 /* chttp2_server.cc */, + 46EB2E0001B5B0 /* chttp2_server.h */, + 46EB2E0001B640 /* chttp2_transport.cc */, + 46EB2E0001B650 /* chttp2_transport.h */, + 46EB2E0001DC20 /* chunked_vector.h */, + 46EB2E0001B990 /* circuit_breaker.upb.c */, + 46EB2E0001B9A0 /* circuit_breaker.upb.h */, + 46EB2E0001C730 /* circuit_breaker.upbdefs.c */, + 46EB2E0001C740 /* circuit_breaker.upbdefs.h */, + 46EB2E0001F280 /* client_auth_filter.cc */, + 46EB2E0001B3E0 /* client_authority_filter.cc */, + 46EB2E0001B3F0 /* client_authority_filter.h */, + 46EB2E0001AD50 /* client_channel.cc */, + 46EB2E0001AD60 /* client_channel.h */, + 46EB2E0001AD70 /* client_channel_channelz.cc */, + 46EB2E0001AD80 /* client_channel_channelz.h */, + 46EB2E0001AD90 /* client_channel_factory.cc */, + 46EB2E0001ADA0 /* client_channel_factory.h */, + 46EB2E0001ADB0 /* client_channel_plugin.cc */, + 46EB2E0001B330 /* client_idle_filter.cc */, + 46EB2E0001AEF0 /* client_load_reporting_filter.cc */, + 46EB2E0001AF00 /* client_load_reporting_filter.h */, + 46EB2E0001E100 /* closure.cc */, + 46EB2E0001DF30 /* closure.h */, + 46EB2E0001E110 /* closure.h */, + 46EB2E0001B9B0 /* cluster.upb.c */, + 46EB2E0001BDD0 /* cluster.upb.c */, + 46EB2E0001B9C0 /* cluster.upb.h */, + 46EB2E0001BDE0 /* cluster.upb.h */, + 46EB2E0001C750 /* cluster.upbdefs.c */, + 46EB2E0001CB70 /* cluster.upbdefs.c */, + 46EB2E0001C760 /* cluster.upbdefs.h */, + 46EB2E0001CB80 /* cluster.upbdefs.h */, + 46EB2E0001C5B0 /* collection_entry.upb.c */, + 46EB2E0001C5C0 /* collection_entry.upb.h */, + 46EB2E0001D290 /* collection_entry.upbdefs.c */, + 46EB2E0001D2A0 /* collection_entry.upbdefs.h */, + 46EB2E0001DF40 /* combiner.cc */, + 46EB2E0001DF50 /* combiner.h */, + 46EB2E0001BEB0 /* common.upb.c */, + 46EB2E0001BEC0 /* common.upb.h */, + 46EB2E0001CC50 /* common.upbdefs.c */, + 46EB2E0001CC60 /* common.upbdefs.h */, + 46EB2E0001FBD0 /* compile.cc */, + 46EB2E0001F5B0 /* completion_queue.cc */, + 46EB2E0001F5C0 /* completion_queue.h */, + 46EB2E0001F5D0 /* completion_queue_factory.cc */, + 46EB2E0001F5E0 /* completion_queue_factory.h */, + 46EB2E0001EDF0 /* composite_credentials.cc */, + 46EB2E0001EE00 /* composite_credentials.h */, + 46EB2E0001D820 /* compression.cc */, + 46EB2E0001D830 /* compression_internal.cc */, + 46EB2E0001D840 /* compression_internal.h */, + 46EB2E0001B8F0 /* config_dump.upb.c */, + 46EB2E0001B900 /* config_dump.upb.h */, + 46EB2E0001C690 /* config_dump.upbdefs.c */, + 46EB2E0001C6A0 /* config_dump.upbdefs.h */, + 46EB2E0001ADC0 /* config_selector.cc */, + 46EB2E0001ADD0 /* config_selector.h */, + 46EB2E0001BA70 /* config_source.upb.c */, + 46EB2E0001BA80 /* config_source.upb.h */, + 46EB2E0001C810 /* config_source.upbdefs.c */, + 46EB2E0001C820 /* config_source.upbdefs.h */, + 46EB2E0001D780 /* connected_channel.cc */, + 46EB2E0001D790 /* connected_channel.h */, + 46EB2E0001F700 /* connectivity_state.cc */, + 46EB2E0001F710 /* connectivity_state.h */, + 46EB2E0001ADE0 /* connector.h */, + 46EB2E0001DC30 /* construct_destruct.h */, + 46EB2E0001D7A0 /* context.h */, + 46EB2E0001EA60 /* context.h */, + 46EB2E0001B660 /* context_list.cc */, + 46EB2E0001B670 /* context_list.h */, + 46EB2E0001C5D0 /* context_params.upb.c */, + 46EB2E0001C5E0 /* context_params.upb.h */, + 46EB2E0001D2B0 /* context_params.upbdefs.c */, + 46EB2E0001D2C0 /* context_params.upbdefs.h */, + 46EB2E0001D870 /* core_configuration.cc */, + 46EB2E0001D880 /* core_configuration.h */, + 46EB2E0001DC40 /* cpp_impl_of.h */, + 46EB2E0001D9A0 /* cpu_iphone.cc */, + 46EB2E0001D9B0 /* cpu_linux.cc */, + 46EB2E0001D9C0 /* cpu_posix.cc */, + 46EB2E0001D9D0 /* cpu_windows.cc */, + 46EB2E0001EE10 /* credentials.cc */, + 46EB2E0001EE20 /* credentials.h */, + 46EB2E0001EEF0 /* credentials_generic.cc */, + 46EB2E0001C010 /* csds.upb.c */, + 46EB2E0001C020 /* csds.upb.h */, + 46EB2E0001CDB0 /* csds.upbdefs.c */, + 46EB2E0001CDC0 /* csds.upbdefs.h */, + 46EB2E0001C170 /* custom_tag.upb.c */, + 46EB2E0001C180 /* custom_tag.upb.h */, + 46EB2E0001CF10 /* custom_tag.upbdefs.c */, + 46EB2E0001CF20 /* custom_tag.upbdefs.h */, + 46EB2E0001B360 /* deadline_filter.cc */, + 46EB2E0001B370 /* deadline_filter.h */, + 46EB2E0001DC50 /* debug_location.h */, + 46EB2E0001FEC0 /* decode.c */, + 46EB2E0001FED0 /* decode.h */, + 46EB2E0001FEE0 /* decode_fast.c */, + 46EB2E0001FEF0 /* decode_fast.h */, + 46EB2E0001FF00 /* decode_internal.h */, + 46EB2E0001FF10 /* def.c */, + 46EB2E0001FF20 /* def.h */, + 46EB2E0001FF30 /* def.hpp */, + 46EB2E0001B910 /* deprecation.upb.c */, + 46EB2E0001B920 /* deprecation.upb.h */, + 46EB2E0001C6B0 /* deprecation.upbdefs.c */, + 46EB2E0001C6C0 /* deprecation.upbdefs.h */, + 46EB2E0001C310 /* descriptor.upb.c */, + 46EB2E0001C320 /* descriptor.upb.h */, + 46EB2E0001D0B0 /* descriptor.upbdefs.c */, + 46EB2E0001D0C0 /* descriptor.upbdefs.h */, + 46EB2E0001FBE0 /* dfa.cc */, + 46EB2E0001BF50 /* discovery.upb.c */, + 46EB2E0001BF60 /* discovery.upb.h */, + 46EB2E0001CCF0 /* discovery.upbdefs.c */, + 46EB2E0001CD00 /* discovery.upbdefs.h */, + 46EB2E0001B1E0 /* dns_resolver.cc */, + 46EB2E0001B120 /* dns_resolver_ares.cc */, + 46EB2E0001B1C0 /* dns_resolver_selection.cc */, + 46EB2E0001B1D0 /* dns_resolver_selection.h */, + 46EB2E0001DC60 /* dual_ref_counted.h */, + 46EB2E0001DF60 /* dualstack_socket_posix.cc */, + 46EB2E0001C330 /* duration.upb.c */, + 46EB2E0001C340 /* duration.upb.h */, + 46EB2E0001D0D0 /* duration.upbdefs.c */, + 46EB2E0001D0E0 /* duration.upbdefs.h */, + 46EB2E0001DF70 /* dynamic_annotations.h */, + 46EB2E0001ADF0 /* dynamic_filters.cc */, + 46EB2E0001AE00 /* dynamic_filters.h */, + 46EB2E0001BF70 /* eds.upb.c */, + 46EB2E0001BF80 /* eds.upb.h */, + 46EB2E0001CD10 /* eds.upbdefs.c */, + 46EB2E0001CD20 /* eds.upbdefs.h */, + 46EB2E0001C350 /* empty.upb.c */, + 46EB2E0001C360 /* empty.upb.h */, + 46EB2E0001D0F0 /* empty.upbdefs.c */, + 46EB2E0001D100 /* empty.upbdefs.h */, + 46EB2E0001FF40 /* encode.c */, + 46EB2E0001FF50 /* encode.h */, + 46EB2E0001DF80 /* endpoint.cc */, + 46EB2E0001E120 /* endpoint.cc */, + 46EB2E0001DF90 /* endpoint.h */, + 46EB2E0001E130 /* endpoint.h */, + 46EB2E0001BBF0 /* endpoint.upb.c */, + 46EB2E0001BC00 /* endpoint.upb.h */, + 46EB2E0001C990 /* endpoint.upbdefs.c */, + 46EB2E0001C9A0 /* endpoint.upbdefs.h */, + 46EB2E0001DFA0 /* endpoint_cfstream.cc */, + 46EB2E0001DFB0 /* endpoint_cfstream.h */, + 46EB2E0001BC10 /* endpoint_components.upb.c */, + 46EB2E0001BC20 /* endpoint_components.upb.h */, + 46EB2E0001C9B0 /* endpoint_components.upbdefs.c */, + 46EB2E0001C9C0 /* endpoint_components.upbdefs.h */, + 46EB2E0001DFC0 /* endpoint_pair.h */, + 46EB2E0001DFD0 /* endpoint_pair_event_engine.cc */, + 46EB2E0001DFE0 /* endpoint_pair_posix.cc */, + 46EB2E0001DFF0 /* endpoint_pair_windows.cc */, + 46EB2E0001D9E0 /* env.h */, + 46EB2E0001D9F0 /* env_linux.cc */, + 46EB2E0001DA00 /* env_posix.cc */, + 46EB2E0001DA10 /* env_windows.cc */, + 46EB2E0001E000 /* error.cc */, + 46EB2E0001E010 /* error.h */, + 46EB2E0001E020 /* error_cfstream.cc */, + 46EB2E0001E030 /* error_cfstream.h */, + 46EB2E0001E040 /* error_internal.h */, + 46EB2E0001F720 /* error_utils.cc */, + 46EB2E0001F730 /* error_utils.h */, + 46EB2E0001E050 /* ev_apple.cc */, + 46EB2E0001E060 /* ev_apple.h */, + 46EB2E0001E070 /* ev_epoll1_linux.cc */, + 46EB2E0001E080 /* ev_epoll1_linux.h */, + 46EB2E0001E090 /* ev_epollex_linux.cc */, + 46EB2E0001E0A0 /* ev_epollex_linux.h */, + 46EB2E0001E0B0 /* ev_poll_posix.cc */, + 46EB2E0001E0C0 /* ev_poll_posix.h */, + 46EB2E0001E0D0 /* ev_posix.cc */, + 46EB2E0001E0E0 /* ev_posix.h */, + 46EB2E0001E0F0 /* ev_windows.cc */, + 46EB2E0001C250 /* eval.upb.c */, + 46EB2E0001C260 /* eval.upb.h */, + 46EB2E0001CFF0 /* eval.upbdefs.c */, + 46EB2E0001D000 /* eval.upbdefs.h */, + 46EB2E0001EC80 /* evaluate_args.cc */, + 46EB2E0001EC90 /* evaluate_args.h */, + 46EB2E0001D910 /* event_engine.cc */, + 46EB2E0001D920 /* event_engine_factory.cc */, + 46EB2E0001D930 /* event_engine_factory.h */, + 46EB2E0001BA90 /* event_service_config.upb.c */, + 46EB2E0001BAA0 /* event_service_config.upb.h */, + 46EB2E0001C830 /* event_service_config.upbdefs.c */, + 46EB2E0001C840 /* event_service_config.upbdefs.h */, + 46EB2E0001F5F0 /* event_string.cc */, + 46EB2E0001F600 /* event_string.h */, + 46EB2E0001DC70 /* examine_stack.cc */, + 46EB2E0001DC80 /* examine_stack.h */, + 46EB2E0001E1E0 /* exec_ctx.cc */, + 46EB2E0001E1F0 /* exec_ctx.h */, + 46EB2E0001EAC0 /* exec_ctx_wakeup_scheduler.h */, + 46EB2E0001E200 /* executor.cc */, + 46EB2E0001E210 /* executor.h */, + 46EB2E0001C270 /* explain.upb.c */, + 46EB2E0001C280 /* explain.upb.h */, + 46EB2E0001D010 /* explain.upbdefs.c */, + 46EB2E0001D020 /* explain.upbdefs.h */, + 46EB2E0001BAB0 /* extension.upb.c */, + 46EB2E0001BAC0 /* extension.upb.h */, + 46EB2E0001C850 /* extension.upbdefs.c */, + 46EB2E0001C860 /* extension.upbdefs.h */, + 46EB2E0001EE70 /* external_account_credentials.cc */, + 46EB2E0001EE80 /* external_account_credentials.h */, + 46EB2E0001EED0 /* fake_credentials.cc */, + 46EB2E0001EEE0 /* fake_credentials.h */, + 46EB2E0001B1F0 /* fake_resolver.cc */, + 46EB2E0001B200 /* fake_resolver.h */, + 46EB2E0001F130 /* fake_security_connector.cc */, + 46EB2E0001F140 /* fake_security_connector.h */, + 46EB2E0001FAA0 /* fake_transport_security.cc */, + 46EB2E0001FAB0 /* fake_transport_security.h */, + 46EB2E0001BDF0 /* fault.upb.c */, + 46EB2E0001BE10 /* fault.upb.c */, + 46EB2E0001BE00 /* fault.upb.h */, + 46EB2E0001BE20 /* fault.upb.h */, + 46EB2E0001CB90 /* fault.upbdefs.c */, + 46EB2E0001CBB0 /* fault.upbdefs.c */, + 46EB2E0001CBA0 /* fault.upbdefs.h */, + 46EB2E0001CBC0 /* fault.upbdefs.h */, + 46EB2E0001B380 /* fault_injection_filter.cc */, + 46EB2E0001B390 /* fault_injection_filter.h */, + 46EB2E0001EE90 /* file_external_account_credentials.cc */, + 46EB2E0001EEA0 /* file_external_account_credentials.h */, + 46EB2E0001D3A0 /* file_watcher_certificate_provider_factory.cc */, + 46EB2E0001D3B0 /* file_watcher_certificate_provider_factory.h */, + 46EB2E0001B9D0 /* filter.upb.c */, + 46EB2E0001B9E0 /* filter.upb.h */, + 46EB2E0001C770 /* filter.upbdefs.c */, + 46EB2E0001C780 /* filter.upbdefs.h */, + 46EB2E0001FBF0 /* filtered_re2.cc */, + 46EB2E0001FC00 /* filtered_re2.h */, + 46EB2E0001FDF0 /* flags.h */, + 46EB2E0001B680 /* flow_control.cc */, + 46EB2E0001B690 /* flow_control.h */, + 46EB2E0001DC90 /* fork.cc */, + 46EB2E0001DCA0 /* fork.h */, + 46EB2E0001E260 /* fork_posix.cc */, + 46EB2E0001E270 /* fork_windows.cc */, + 46EB2E0001DE50 /* format_request.cc */, + 46EB2E0001DE60 /* format_request.h */, + 46EB2E0001B6A0 /* frame.h */, + 46EB2E0001B6B0 /* frame_data.cc */, + 46EB2E0001B6C0 /* frame_data.h */, + 46EB2E0001B6D0 /* frame_goaway.cc */, + 46EB2E0001B6E0 /* frame_goaway.h */, + 46EB2E0001F920 /* frame_handler.cc */, + 46EB2E0001F930 /* frame_handler.h */, + 46EB2E0001B6F0 /* frame_ping.cc */, + 46EB2E0001B700 /* frame_ping.h */, + 46EB2E0001B710 /* frame_rst_stream.cc */, + 46EB2E0001B720 /* frame_rst_stream.h */, + 46EB2E0001B730 /* frame_settings.cc */, + 46EB2E0001B740 /* frame_settings.h */, + 46EB2E0001B750 /* frame_window_update.cc */, + 46EB2E0001B760 /* frame_window_update.h */, + 46EB2E0001E280 /* gethostname.h */, + 46EB2E0001E290 /* gethostname_fallback.cc */, + 46EB2E0001E2A0 /* gethostname_host_name_max.cc */, + 46EB2E0001E2B0 /* gethostname_sysconf.cc */, + 46EB2E0001DCB0 /* global_config.h */, + 46EB2E0001DCC0 /* global_config_custom.h */, + 46EB2E0001DCD0 /* global_config_env.cc */, + 46EB2E0001DCE0 /* global_config_env.h */, + 46EB2E0001DCF0 /* global_config_generic.h */, + 46EB2E0001AE10 /* global_subchannel_pool.cc */, + 46EB2E0001AE20 /* global_subchannel_pool.h */, + 46EB2E0001B210 /* google_c2p_resolver.cc */, + 46EB2E0001EF00 /* google_default_credentials.cc */, + 46EB2E0001EF10 /* google_default_credentials.h */, + 46EB2E0001EDB0 /* grpc_alts_credentials_client_options.cc */, + 46EB2E0001EDC0 /* grpc_alts_credentials_options.cc */, + 46EB2E0001EDD0 /* grpc_alts_credentials_options.h */, + 46EB2E0001EDE0 /* grpc_alts_credentials_server_options.cc */, + 46EB2E0001B130 /* grpc_ares_ev_driver.h */, + 46EB2E0001B140 /* grpc_ares_ev_driver_event_engine.cc */, + 46EB2E0001B150 /* grpc_ares_ev_driver_posix.cc */, + 46EB2E0001B160 /* grpc_ares_ev_driver_windows.cc */, + 46EB2E0001B170 /* grpc_ares_wrapper.cc */, + 46EB2E0001B180 /* grpc_ares_wrapper.h */, + 46EB2E0001B190 /* grpc_ares_wrapper_event_engine.cc */, + 46EB2E0001B1A0 /* grpc_ares_wrapper_posix.cc */, + 46EB2E0001B1B0 /* grpc_ares_wrapper_windows.cc */, + 46EB2E0001ECA0 /* grpc_authorization_engine.cc */, + 46EB2E0001ECB0 /* grpc_authorization_engine.h */, + 46EB2E0001ACF0 /* grpc_context.cc */, + 46EB2E0001E2C0 /* grpc_if_nametoindex.h */, + 46EB2E0001E2D0 /* grpc_if_nametoindex_posix.cc */, + 46EB2E0001E2E0 /* grpc_if_nametoindex_unsupported.cc */, + 46EB2E0001F840 /* grpc_plugin_registry.cc */, + 46EB2E0001BAD0 /* grpc_service.upb.c */, + 46EB2E0001BAE0 /* grpc_service.upb.h */, + 46EB2E0001C870 /* grpc_service.upbdefs.c */, + 46EB2E0001C880 /* grpc_service.upbdefs.h */, + 46EB2E0001F030 /* grpc_tls_certificate_distributor.cc */, + 46EB2E0001F040 /* grpc_tls_certificate_distributor.h */, + 46EB2E0001F050 /* grpc_tls_certificate_provider.cc */, + 46EB2E0001F060 /* grpc_tls_certificate_provider.h */, + 46EB2E0001F070 /* grpc_tls_certificate_verifier.cc */, + 46EB2E0001F080 /* grpc_tls_certificate_verifier.h */, + 46EB2E0001F090 /* grpc_tls_credentials_options.cc */, + 46EB2E0001F0A0 /* grpc_tls_credentials_options.h */, + 46EB2E0001AF10 /* grpclb.cc */, + 46EB2E0001AF20 /* grpclb.h */, + 46EB2E0001AF30 /* grpclb_balancer_addresses.cc */, + 46EB2E0001AF40 /* grpclb_balancer_addresses.h */, + 46EB2E0001AF50 /* grpclb_channel.h */, + 46EB2E0001AF60 /* grpclb_channel_secure.cc */, + 46EB2E0001AF70 /* grpclb_client_stats.cc */, + 46EB2E0001AF80 /* grpclb_client_stats.h */, + 46EB2E0001F860 /* gsec.cc */, + 46EB2E0001F870 /* gsec.h */, + 46EB2E0001D7B0 /* handshaker.cc */, + 46EB2E0001D7C0 /* handshaker.h */, + 46EB2E0001C410 /* handshaker.upb.c */, + 46EB2E0001C420 /* handshaker.upb.h */, + 46EB2E0001D7D0 /* handshaker_factory.h */, + 46EB2E0001D7E0 /* handshaker_registry.cc */, + 46EB2E0001D7F0 /* handshaker_registry.h */, + 46EB2E0001C450 /* health.upb.c */, + 46EB2E0001C460 /* health.upb.h */, + 46EB2E0001BAF0 /* health_check.upb.c */, + 46EB2E0001BB00 /* health_check.upb.h */, + 46EB2E0001C890 /* health_check.upbdefs.c */, + 46EB2E0001C8A0 /* health_check.upbdefs.h */, + 46EB2E0001AE30 /* health_check_client.cc */, + 46EB2E0001AE40 /* health_check_client.h */, + 46EB2E0001DD00 /* host_port.cc */, + 46EB2E0001DD10 /* host_port.h */, + 46EB2E0001B770 /* hpack_constants.h */, + 46EB2E0001B780 /* hpack_encoder.cc */, + 46EB2E0001B790 /* hpack_encoder.h */, + 46EB2E0001B7A0 /* hpack_encoder_table.cc */, + 46EB2E0001B7B0 /* hpack_encoder_table.h */, + 46EB2E0001B7C0 /* hpack_parser.cc */, + 46EB2E0001B7D0 /* hpack_parser.h */, + 46EB2E0001B7E0 /* hpack_parser_table.cc */, + 46EB2E0001B7F0 /* hpack_parser_table.h */, + 46EB2E0001C190 /* http.upb.c */, + 46EB2E0001C2D0 /* http.upb.c */, + 46EB2E0001C1A0 /* http.upb.h */, + 46EB2E0001C2E0 /* http.upb.h */, + 46EB2E0001CF30 /* http.upbdefs.c */, + 46EB2E0001D070 /* http.upbdefs.c */, + 46EB2E0001CF40 /* http.upbdefs.h */, + 46EB2E0001D080 /* http.upbdefs.h */, + 46EB2E0001F740 /* http2_errors.h */, + 46EB2E0001B800 /* http2_settings.cc */, + 46EB2E0001B810 /* http2_settings.h */, + 46EB2E0001B3C0 /* http_client_filter.cc */, + 46EB2E0001B3D0 /* http_client_filter.h */, + 46EB2E0001AE50 /* http_connect_handshaker.cc */, + 46EB2E0001AE60 /* http_connect_handshaker.h */, + 46EB2E0001BE70 /* http_connection_manager.upb.c */, + 46EB2E0001BE80 /* http_connection_manager.upb.h */, + 46EB2E0001CC10 /* http_connection_manager.upbdefs.c */, + 46EB2E0001CC20 /* http_connection_manager.upbdefs.h */, + 46EB2E0001B400 /* http_filters_plugin.cc */, + 46EB2E0001AE70 /* http_proxy.cc */, + 46EB2E0001AE80 /* http_proxy.h */, + 46EB2E0001B450 /* http_server_filter.cc */, + 46EB2E0001B460 /* http_server_filter.h */, + 46EB2E0001BDB0 /* http_tracer.upb.c */, + 46EB2E0001BDC0 /* http_tracer.upb.h */, + 46EB2E0001CB50 /* http_tracer.upbdefs.c */, + 46EB2E0001CB60 /* http_tracer.upbdefs.h */, + 46EB2E0001BB10 /* http_uri.upb.c */, + 46EB2E0001BB20 /* http_uri.upb.h */, + 46EB2E0001C8B0 /* http_uri.upbdefs.c */, + 46EB2E0001C8C0 /* http_uri.upbdefs.h */, + 46EB2E0001DE70 /* httpcli.cc */, + 46EB2E0001DE80 /* httpcli.h */, + 46EB2E0001DE90 /* httpcli_security_connector.cc */, + 46EB2E0001B820 /* huffsyms.cc */, + 46EB2E0001B830 /* huffsyms.h */, + 46EB2E0001EF20 /* iam_credentials.cc */, + 46EB2E0001EF30 /* iam_credentials.h */, + 46EB2E0001B340 /* idle_filter_state.cc */, + 46EB2E0001B350 /* idle_filter_state.h */, + 46EB2E0001F610 /* init.cc */, + 46EB2E0001F620 /* init.h */, + 46EB2E0001F630 /* init_secure.cc */, + 46EB2E0001B8C0 /* inproc_plugin.cc */, + 46EB2E0001B8D0 /* inproc_transport.cc */, + 46EB2E0001B8E0 /* inproc_transport.h */, + 46EB2E0001EF40 /* insecure_credentials.cc */, + 46EB2E0001F150 /* insecure_security_connector.cc */, + 46EB2E0001F160 /* insecure_security_connector.h */, + 46EB2E0001B840 /* internal.h */, + 46EB2E0001E2F0 /* internal_errqueue.cc */, + 46EB2E0001E300 /* internal_errqueue.h */, + 46EB2E0001E310 /* iocp_windows.cc */, + 46EB2E0001E320 /* iocp_windows.h */, + 46EB2E0001E140 /* iomgr.cc */, + 46EB2E0001E330 /* iomgr.cc */, + 46EB2E0001E340 /* iomgr.h */, + 46EB2E0001E350 /* iomgr_custom.cc */, + 46EB2E0001E360 /* iomgr_custom.h */, + 46EB2E0001E370 /* iomgr_internal.cc */, + 46EB2E0001E380 /* iomgr_internal.h */, + 46EB2E0001E390 /* iomgr_posix.cc */, + 46EB2E0001E3A0 /* iomgr_posix_cfstream.cc */, + 46EB2E0001E3B0 /* iomgr_windows.cc */, + 46EB2E0001E3C0 /* is_epollexclusive_available.cc */, + 46EB2E0001E3D0 /* is_epollexclusive_available.h */, + 46EB2E0001E9A0 /* json.h */, + 46EB2E0001E9B0 /* json_reader.cc */, + 46EB2E0001EF50 /* json_token.cc */, + 46EB2E0001EF60 /* json_token.h */, + 46EB2E0001E9C0 /* json_util.cc */, + 46EB2E0001F300 /* json_util.cc */, + 46EB2E0001E9D0 /* json_util.h */, + 46EB2E0001F310 /* json_util.h */, + 46EB2E0001E9E0 /* json_writer.cc */, + 46EB2E0001EF70 /* jwt_credentials.cc */, + 46EB2E0001EF80 /* jwt_credentials.h */, + 46EB2E0001EF90 /* jwt_verifier.cc */, + 46EB2E0001EFA0 /* jwt_verifier.h */, + 46EB2E0001F640 /* lame_client.cc */, + 46EB2E0001F650 /* lame_client.h */, + 46EB2E0001AE90 /* lb_policy.cc */, + 46EB2E0001AEA0 /* lb_policy.h */, + 46EB2E0001B090 /* lb_policy_factory.h */, + 46EB2E0001B0A0 /* lb_policy_registry.cc */, + 46EB2E0001B0B0 /* lb_policy_registry.h */, + 46EB2E0001BF90 /* lds.upb.c */, + 46EB2E0001BFA0 /* lds.upb.h */, + 46EB2E0001CD30 /* lds.upbdefs.c */, + 46EB2E0001CD40 /* lds.upbdefs.h */, + 46EB2E0001BC70 /* listener.upb.c */, + 46EB2E0001BC80 /* listener.upb.h */, + 46EB2E0001CA10 /* listener.upbdefs.c */, + 46EB2E0001CA20 /* listener.upbdefs.h */, + 46EB2E0001BC90 /* listener_components.upb.c */, + 46EB2E0001BCA0 /* listener_components.upb.h */, + 46EB2E0001CA30 /* listener_components.upbdefs.c */, + 46EB2E0001CA40 /* listener_components.upbdefs.h */, + 46EB2E0001C470 /* load_balancer.upb.c */, + 46EB2E0001C480 /* load_balancer.upb.h */, + 46EB2E0001AF90 /* load_balancer_api.cc */, + 46EB2E0001AFA0 /* load_balancer_api.h */, + 46EB2E0001E3E0 /* load_file.cc */, + 46EB2E0001E3F0 /* load_file.h */, + 46EB2E0001BC30 /* load_report.upb.c */, + 46EB2E0001BC40 /* load_report.upb.h */, + 46EB2E0001C9D0 /* load_report.upbdefs.c */, + 46EB2E0001C9E0 /* load_report.upbdefs.h */, + 46EB2E0001F170 /* load_system_roots.h */, + 46EB2E0001F180 /* load_system_roots_fallback.cc */, + 46EB2E0001F190 /* load_system_roots_linux.cc */, + 46EB2E0001F1A0 /* load_system_roots_linux.h */, + 46EB2E0001EFB0 /* local_credentials.cc */, + 46EB2E0001EFC0 /* local_credentials.h */, + 46EB2E0001F1B0 /* local_security_connector.cc */, + 46EB2E0001F1C0 /* local_security_connector.h */, + 46EB2E0001B0C0 /* local_subchannel_pool.cc */, + 46EB2E0001B0D0 /* local_subchannel_pool.h */, + 46EB2E0001FAC0 /* local_transport_security.cc */, + 46EB2E0001FAD0 /* local_transport_security.h */, + 46EB2E0001E400 /* lockfree_event.cc */, + 46EB2E0001E410 /* lockfree_event.h */, + 46EB2E0001DA20 /* log.cc */, + 46EB2E0001DA30 /* log_android.cc */, + 46EB2E0001DA40 /* log_linux.cc */, + 46EB2E0001DA50 /* log_posix.cc */, + 46EB2E0001DA60 /* log_windows.cc */, + 46EB2E0001FE00 /* logging.h */, + 46EB2E0001EAD0 /* loop.h */, + 46EB2E0001BFB0 /* lrs.upb.c */, + 46EB2E0001BFC0 /* lrs.upb.h */, + 46EB2E0001CD50 /* lrs.upbdefs.c */, + 46EB2E0001CD60 /* lrs.upbdefs.h */, + 46EB2E0001FE10 /* malloc_counter.h */, + 46EB2E0001DD20 /* manual_constructor.h */, + 46EB2E0001EAE0 /* map.h */, + 46EB2E0001E9F0 /* matchers.cc */, + 46EB2E0001ECC0 /* matchers.cc */, + 46EB2E0001EA00 /* matchers.h */, + 46EB2E0001ECD0 /* matchers.h */, + 46EB2E0001B470 /* max_age_filter.cc */, + 46EB2E0001B480 /* max_age_filter.h */, + 46EB2E0001DD30 /* memory.h */, + 46EB2E0001D940 /* memory_allocator.cc */, + 46EB2E0001EBD0 /* memory_quota.cc */, + 46EB2E0001EBE0 /* memory_quota.h */, + 46EB2E0001D850 /* message_compress.cc */, + 46EB2E0001D860 /* message_compress.h */, + 46EB2E0001B410 /* message_compress_filter.cc */, + 46EB2E0001B420 /* message_compress_filter.h */, + 46EB2E0001B430 /* message_decompress_filter.cc */, + 46EB2E0001B440 /* message_decompress_filter.h */, + 46EB2E0001B490 /* message_size_filter.cc */, + 46EB2E0001B4A0 /* message_size_filter.h */, + 46EB2E0001C050 /* metadata.upb.c */, + 46EB2E0001C150 /* metadata.upb.c */, + 46EB2E0001C060 /* metadata.upb.h */, + 46EB2E0001C160 /* metadata.upb.h */, + 46EB2E0001CDF0 /* metadata.upbdefs.c */, + 46EB2E0001CEF0 /* metadata.upbdefs.c */, + 46EB2E0001CE00 /* metadata.upbdefs.h */, + 46EB2E0001CF00 /* metadata.upbdefs.h */, + 46EB2E0001F660 /* metadata_array.cc */, + 46EB2E0001F750 /* metadata_batch.h */, + 46EB2E0001C4B0 /* migrate.upb.c */, + 46EB2E0001C4C0 /* migrate.upb.h */, + 46EB2E0001D190 /* migrate.upbdefs.c */, + 46EB2E0001D1A0 /* migrate.upbdefs.h */, + 46EB2E0001FC10 /* mimics_pcre.cc */, + 46EB2E0001FE20 /* mix.h */, + 46EB2E0001E220 /* mpmcqueue.cc */, + 46EB2E0001E230 /* mpmcqueue.h */, + 46EB2E0001DD40 /* mpscq.cc */, + 46EB2E0001DD50 /* mpscq.h */, + 46EB2E0001FF60 /* msg.c */, + 46EB2E0001FF70 /* msg.h */, + 46EB2E0001FF80 /* msg_internal.h */, + 46EB2E0001DA70 /* murmur_hash.cc */, + 46EB2E0001DA80 /* murmur_hash.h */, + 46EB2E0001FE30 /* mutex.h */, + 46EB2E0001E420 /* nameser.h */, + 46EB2E0001FC20 /* nfa.cc */, + 46EB2E0001C070 /* node.upb.c */, + 46EB2E0001C080 /* node.upb.h */, + 46EB2E0001CE10 /* node.upbdefs.c */, + 46EB2E0001CE20 /* node.upbdefs.h */, + 46EB2E0001C090 /* number.upb.c */, + 46EB2E0001C0A0 /* number.upb.h */, + 46EB2E0001CE30 /* number.upbdefs.c */, + 46EB2E0001CE40 /* number.upbdefs.h */, + 46EB2E0001EFD0 /* oauth2_credentials.cc */, + 46EB2E0001EFE0 /* oauth2_credentials.h */, + 46EB2E0001FC30 /* onepass.cc */, + 46EB2E0001C650 /* orca_load_report.upb.c */, + 46EB2E0001C660 /* orca_load_report.upb.h */, + 46EB2E0001DD60 /* orphanable.h */, + 46EB2E0001B9F0 /* outlier_detection.upb.c */, + 46EB2E0001BA00 /* outlier_detection.upb.h */, + 46EB2E0001C790 /* outlier_detection.upbdefs.c */, + 46EB2E0001C7A0 /* outlier_detection.upbdefs.h */, + 46EB2E0001BD10 /* overload.upb.c */, + 46EB2E0001BD20 /* overload.upb.h */, + 46EB2E0001CAB0 /* overload.upbdefs.c */, + 46EB2E0001CAC0 /* overload.upbdefs.h */, + 46EB2E0001FC40 /* parse.cc */, + 46EB2E0001D620 /* parse_address.cc */, + 46EB2E0001D630 /* parse_address.h */, + 46EB2E0001F760 /* parsed_metadata.cc */, + 46EB2E0001F770 /* parsed_metadata.h */, + 46EB2E0001DEA0 /* parser.cc */, + 46EB2E0001DEB0 /* parser.h */, + 46EB2E0001B850 /* parsing.cc */, + 46EB2E0001C0B0 /* path.upb.c */, + 46EB2E0001C0C0 /* path.upb.h */, + 46EB2E0001CE50 /* path.upbdefs.c */, + 46EB2E0001CE60 /* path.upbdefs.h */, + 46EB2E0001C030 /* path_transformation.upb.c */, + 46EB2E0001C040 /* path_transformation.upb.h */, + 46EB2E0001CDD0 /* path_transformation.upbdefs.c */, + 46EB2E0001CDE0 /* path_transformation.upbdefs.h */, + 46EB2E0001FE40 /* pcre.cc */, + 46EB2E0001FE50 /* pcre.h */, + 46EB2E0001C1B0 /* percent.upb.c */, + 46EB2E0001C1C0 /* percent.upb.h */, + 46EB2E0001CF50 /* percent.upbdefs.c */, + 46EB2E0001CF60 /* percent.upbdefs.h */, + 46EB2E0001F390 /* percent_encoding.cc */, + 46EB2E0001F3A0 /* percent_encoding.h */, + 46EB2E0001FC50 /* perl_groups.cc */, + 46EB2E0001AFB0 /* pick_first.cc */, + 46EB2E0001F780 /* pid_controller.cc */, + 46EB2E0001F790 /* pid_controller.h */, + 46EB2E0001EFF0 /* plugin_credentials.cc */, + 46EB2E0001F000 /* plugin_credentials.h */, + 46EB2E0001FC60 /* pod_array.h */, + 46EB2E0001EAF0 /* poll.h */, + 46EB2E0001E430 /* polling_entity.cc */, + 46EB2E0001E440 /* polling_entity.h */, + 46EB2E0001E150 /* pollset.cc */, + 46EB2E0001E450 /* pollset.cc */, + 46EB2E0001E160 /* pollset.h */, + 46EB2E0001E460 /* pollset.h */, + 46EB2E0001E470 /* pollset_custom.cc */, + 46EB2E0001E480 /* pollset_custom.h */, + 46EB2E0001E490 /* pollset_set.cc */, + 46EB2E0001E4A0 /* pollset_set.h */, + 46EB2E0001E4B0 /* pollset_set_custom.cc */, + 46EB2E0001E4C0 /* pollset_set_custom.h */, + 46EB2E0001E4D0 /* pollset_set_windows.cc */, + 46EB2E0001E4E0 /* pollset_set_windows.h */, + 46EB2E0001E4F0 /* pollset_windows.cc */, + 46EB2E0001E500 /* pollset_windows.h */, + 46EB2E0001E510 /* port.h */, + 46EB2E0001FF90 /* port_def.inc */, + 46EB2E0001FFA0 /* port_undef.inc */, + 46EB2E0001FC70 /* prefilter.cc */, + 46EB2E0001FC80 /* prefilter.h */, + 46EB2E0001FC90 /* prefilter_tree.cc */, + 46EB2E0001FCA0 /* prefilter_tree.h */, + 46EB2E0001AFC0 /* priority.cc */, + 46EB2E0001FCB0 /* prog.cc */, + 46EB2E0001FCC0 /* prog.h */, + 46EB2E0001E170 /* promise.h */, + 46EB2E0001EA80 /* promise_factory.h */, + 46EB2E0001EA90 /* promise_like.h */, + 46EB2E0001BB30 /* protocol.upb.c */, + 46EB2E0001BB40 /* protocol.upb.h */, + 46EB2E0001C8D0 /* protocol.upbdefs.c */, + 46EB2E0001C8E0 /* protocol.upbdefs.h */, + 46EB2E0001B0E0 /* proxy_mapper.h */, + 46EB2E0001B0F0 /* proxy_mapper_registry.cc */, + 46EB2E0001B100 /* proxy_mapper_registry.h */, + 46EB2E0001BB50 /* proxy_protocol.upb.c */, + 46EB2E0001BB60 /* proxy_protocol.upb.h */, + 46EB2E0001C8F0 /* proxy_protocol.upbdefs.c */, + 46EB2E0001C900 /* proxy_protocol.upbdefs.h */, + 46EB2E0001E520 /* python_util.h */, + 46EB2E0001BCB0 /* quic_config.upb.c */, + 46EB2E0001BCC0 /* quic_config.upb.h */, + 46EB2E0001CA50 /* quic_config.upbdefs.c */, + 46EB2E0001CA60 /* quic_config.upbdefs.h */, + 46EB2E0001EB00 /* race.h */, + 46EB2E0001C1D0 /* range.upb.c */, + 46EB2E0001C1E0 /* range.upb.h */, + 46EB2E0001CF70 /* range.upbdefs.c */, + 46EB2E0001CF80 /* range.upbdefs.h */, + 46EB2E0001BD30 /* rbac.upb.c */, + 46EB2E0001BE30 /* rbac.upb.c */, + 46EB2E0001BD40 /* rbac.upb.h */, + 46EB2E0001BE40 /* rbac.upb.h */, + 46EB2E0001CAD0 /* rbac.upbdefs.c */, + 46EB2E0001CBD0 /* rbac.upbdefs.c */, + 46EB2E0001CAE0 /* rbac.upbdefs.h */, + 46EB2E0001CBE0 /* rbac.upbdefs.h */, + 46EB2E0001B4B0 /* rbac_filter.cc */, + 46EB2E0001B4C0 /* rbac_filter.h */, + 46EB2E0001ECE0 /* rbac_policy.cc */, + 46EB2E0001ECF0 /* rbac_policy.h */, + 46EB2E0001B4D0 /* rbac_service_config_parser.cc */, + 46EB2E0001B4E0 /* rbac_service_config_parser.h */, + 46EB2E0001BFD0 /* rds.upb.c */, + 46EB2E0001BFE0 /* rds.upb.h */, + 46EB2E0001CD70 /* rds.upbdefs.c */, + 46EB2E0001CD80 /* rds.upbdefs.h */, + 46EB2E0001FCD0 /* re2.cc */, + 46EB2E0001FCE0 /* re2.h */, + 46EB2E0001DD70 /* ref_counted.h */, + 46EB2E0001DD80 /* ref_counted_ptr.h */, + 46EB2E0001FFB0 /* reflection.c */, + 46EB2E0001FFC0 /* reflection.h */, + 46EB2E0001FFD0 /* reflection.hpp */, + 46EB2E0001C0D0 /* regex.upb.c */, + 46EB2E0001C0E0 /* regex.upb.h */, + 46EB2E0001CE70 /* regex.upbdefs.c */, + 46EB2E0001CE80 /* regex.upbdefs.h */, + 46EB2E0001FCF0 /* regexp.cc */, + 46EB2E0001FD00 /* regexp.h */, + 46EB2E0001E530 /* resolve_address.cc */, + 46EB2E0001E540 /* resolve_address.h */, + 46EB2E0001E550 /* resolve_address_custom.cc */, + 46EB2E0001E560 /* resolve_address_custom.h */, + 46EB2E0001E570 /* resolve_address_impl.h */, + 46EB2E0001E580 /* resolve_address_posix.cc */, + 46EB2E0001E590 /* resolve_address_posix.h */, + 46EB2E0001E5A0 /* resolve_address_windows.cc */, + 46EB2E0001E5B0 /* resolve_address_windows.h */, + 46EB2E0001E5C0 /* resolved_address.h */, + 46EB2E0001E180 /* resolved_address_internal.cc */, + 46EB2E0001E190 /* resolved_address_internal.h */, + 46EB2E0001E1A0 /* resolver.cc */, + 46EB2E0001EB20 /* resolver.cc */, + 46EB2E0001E1B0 /* resolver.h */, + 46EB2E0001EB30 /* resolver.h */, + 46EB2E0001BB70 /* resolver.upb.c */, + 46EB2E0001BB80 /* resolver.upb.h */, + 46EB2E0001C910 /* resolver.upbdefs.c */, + 46EB2E0001C920 /* resolver.upbdefs.h */, + 46EB2E0001EB40 /* resolver_factory.h */, + 46EB2E0001EB50 /* resolver_registry.cc */, + 46EB2E0001EB60 /* resolver_registry.h */, + 46EB2E0001B250 /* resolver_result_parsing.cc */, + 46EB2E0001B260 /* resolver_result_parsing.h */, + 46EB2E0001B930 /* resource.upb.c */, + 46EB2E0001C5F0 /* resource.upb.c */, + 46EB2E0001B940 /* resource.upb.h */, + 46EB2E0001C600 /* resource.upb.h */, + 46EB2E0001C6D0 /* resource.upbdefs.c */, + 46EB2E0001D2D0 /* resource.upbdefs.c */, + 46EB2E0001C6E0 /* resource.upbdefs.h */, + 46EB2E0001D2E0 /* resource.upbdefs.h */, + 46EB2E0001C610 /* resource_locator.upb.c */, + 46EB2E0001C620 /* resource_locator.upb.h */, + 46EB2E0001D2F0 /* resource_locator.upbdefs.c */, + 46EB2E0001D300 /* resource_locator.upbdefs.h */, + 46EB2E0001C630 /* resource_name.upb.c */, + 46EB2E0001C640 /* resource_name.upb.h */, + 46EB2E0001D310 /* resource_name.upbdefs.c */, + 46EB2E0001D320 /* resource_name.upbdefs.h */, + 46EB2E0001EBF0 /* resource_quota.cc */, + 46EB2E0001EC00 /* resource_quota.h */, + 46EB2E0001B270 /* retry_filter.cc */, + 46EB2E0001B280 /* retry_filter.h */, + 46EB2E0001B290 /* retry_service_config.cc */, + 46EB2E0001B2A0 /* retry_service_config.h */, + 46EB2E0001B2B0 /* retry_throttle.cc */, + 46EB2E0001B2C0 /* retry_throttle.h */, + 46EB2E0001AFD0 /* ring_hash.cc */, + 46EB2E0001AFE0 /* ring_hash.h */, + 46EB2E0001AFF0 /* rls.cc */, + 46EB2E0001C490 /* rls.upb.c */, + 46EB2E0001C4A0 /* rls.upb.h */, + 46EB2E0001B000 /* round_robin.cc */, + 46EB2E0001BD50 /* route.upb.c */, + 46EB2E0001BD60 /* route.upb.h */, + 46EB2E0001CAF0 /* route.upbdefs.c */, + 46EB2E0001CB00 /* route.upbdefs.h */, + 46EB2E0001BD70 /* route_components.upb.c */, + 46EB2E0001BD80 /* route_components.upb.h */, + 46EB2E0001CB10 /* route_components.upbdefs.c */, + 46EB2E0001CB20 /* route_components.upbdefs.h */, + 46EB2E0001BE50 /* router.upb.c */, + 46EB2E0001BE60 /* router.upb.h */, + 46EB2E0001CBF0 /* router.upbdefs.c */, + 46EB2E0001CC00 /* router.upbdefs.h */, + 46EB2E0001FE60 /* rune.cc */, + 46EB2E0001BD90 /* scoped_route.upb.c */, + 46EB2E0001BDA0 /* scoped_route.upb.h */, + 46EB2E0001CB30 /* scoped_route.upbdefs.c */, + 46EB2E0001CB40 /* scoped_route.upbdefs.h */, + 46EB2E0001ED00 /* sdk_server_authz_filter.cc */, + 46EB2E0001ED10 /* sdk_server_authz_filter.h */, + 46EB2E0001BED0 /* secret.upb.c */, + 46EB2E0001BEE0 /* secret.upb.h */, + 46EB2E0001CC70 /* secret.upbdefs.c */, + 46EB2E0001CC80 /* secret.upbdefs.h */, + 46EB2E0001B590 /* secure_channel_create.cc */, + 46EB2E0001F290 /* secure_endpoint.cc */, + 46EB2E0001F2A0 /* secure_endpoint.h */, + 46EB2E0001C4D0 /* security.upb.c */, + 46EB2E0001C4E0 /* security.upb.h */, + 46EB2E0001D1B0 /* security.upbdefs.c */, + 46EB2E0001D1C0 /* security.upbdefs.h */, + 46EB2E0001F1D0 /* security_connector.cc */, + 46EB2E0001F1E0 /* security_connector.h */, + 46EB2E0001ED20 /* security_context.cc */, + 46EB2E0001ED30 /* security_context.h */, + 46EB2E0001F2B0 /* security_handshaker.cc */, + 46EB2E0001F2C0 /* security_handshaker.h */, + 46EB2E0001C1F0 /* semantic_version.upb.c */, + 46EB2E0001C200 /* semantic_version.upb.h */, + 46EB2E0001CF90 /* semantic_version.upbdefs.c */, + 46EB2E0001CFA0 /* semantic_version.upbdefs.h */, + 46EB2E0001C4F0 /* sensitive.upb.c */, + 46EB2E0001C500 /* sensitive.upb.h */, + 46EB2E0001D1D0 /* sensitive.upbdefs.c */, + 46EB2E0001D1E0 /* sensitive.upbdefs.h */, + 46EB2E0001EB10 /* seq.h */, + 46EB2E0001F670 /* server.cc */, + 46EB2E0001F680 /* server.h */, + 46EB2E0001EB70 /* server_address.cc */, + 46EB2E0001EB80 /* server_address.h */, + 46EB2E0001F2D0 /* server_auth_filter.cc */, + 46EB2E0001B5C0 /* server_chttp2.cc */, + 46EB2E0001B5D0 /* server_chttp2_posix.cc */, + 46EB2E0001B4F0 /* server_config_selector.cc */, + 46EB2E0001B500 /* server_config_selector.h */, + 46EB2E0001B510 /* server_config_selector_filter.cc */, + 46EB2E0001B520 /* server_config_selector_filter.h */, + 46EB2E0001B5E0 /* server_secure_chttp2.cc */, + 46EB2E0001F320 /* service_config.cc */, + 46EB2E0001F330 /* service_config.h */, + 46EB2E0001F340 /* service_config_call_data.h */, + 46EB2E0001B2D0 /* service_config_channel_arg_filter.cc */, + 46EB2E0001B3A0 /* service_config_parser.cc */, + 46EB2E0001F350 /* service_config_parser.cc */, + 46EB2E0001B3B0 /* service_config_parser.h */, + 46EB2E0001F360 /* service_config_parser.h */, + 46EB2E0001FD10 /* set.cc */, + 46EB2E0001FD20 /* set.h */, + 46EB2E0001FD30 /* simplify.cc */, + 46EB2E0001F3B0 /* slice.cc */, + 46EB2E0001F3C0 /* slice.h */, + 46EB2E0001F3D0 /* slice_api.cc */, + 46EB2E0001F3E0 /* slice_buffer.cc */, + 46EB2E0001F3F0 /* slice_intern.cc */, + 46EB2E0001F400 /* slice_internal.h */, + 46EB2E0001F410 /* slice_refcount.cc */, + 46EB2E0001F420 /* slice_refcount.h */, + 46EB2E0001F430 /* slice_refcount_base.h */, + 46EB2E0001F440 /* slice_split.cc */, + 46EB2E0001F450 /* slice_split.h */, + 46EB2E0001F460 /* slice_string_helpers.cc */, + 46EB2E0001F470 /* slice_string_helpers.h */, + 46EB2E0001F480 /* slice_utils.h */, + 46EB2E0001D950 /* sockaddr.cc */, + 46EB2E0001D960 /* sockaddr.h */, + 46EB2E0001E5D0 /* sockaddr.h */, + 46EB2E0001E5E0 /* sockaddr_posix.h */, + 46EB2E0001B220 /* sockaddr_resolver.cc */, + 46EB2E0001D640 /* sockaddr_utils.cc */, + 46EB2E0001D650 /* sockaddr_utils.h */, + 46EB2E0001E5F0 /* sockaddr_windows.h */, + 46EB2E0001E600 /* socket_factory_posix.cc */, + 46EB2E0001E610 /* socket_factory_posix.h */, + 46EB2E0001E620 /* socket_mutator.cc */, + 46EB2E0001E630 /* socket_mutator.h */, + 46EB2E0001BB90 /* socket_option.upb.c */, + 46EB2E0001BBA0 /* socket_option.upb.h */, + 46EB2E0001C930 /* socket_option.upbdefs.c */, + 46EB2E0001C940 /* socket_option.upbdefs.h */, + 46EB2E0001E640 /* socket_utils.h */, + 46EB2E0001E650 /* socket_utils_common_posix.cc */, + 46EB2E0001E660 /* socket_utils_linux.cc */, + 46EB2E0001E670 /* socket_utils_posix.cc */, + 46EB2E0001E680 /* socket_utils_posix.h */, + 46EB2E0001E690 /* socket_utils_windows.cc */, + 46EB2E0001E6A0 /* socket_windows.cc */, + 46EB2E0001E6B0 /* socket_windows.h */, + 46EB2E0001FD40 /* sparse_array.h */, + 46EB2E0001FD50 /* sparse_set.h */, + 46EB2E0001DA90 /* spinlock.h */, + 46EB2E0001BFF0 /* srds.upb.c */, + 46EB2E0001C000 /* srds.upb.h */, + 46EB2E0001CD90 /* srds.upbdefs.c */, + 46EB2E0001CDA0 /* srds.upbdefs.h */, + 46EB2E0001F010 /* ssl_credentials.cc */, + 46EB2E0001F020 /* ssl_credentials.h */, + 46EB2E0001F1F0 /* ssl_security_connector.cc */, + 46EB2E0001F200 /* ssl_security_connector.h */, + 46EB2E0001FAE0 /* ssl_session.h */, + 46EB2E0001FAF0 /* ssl_session_boringssl.cc */, + 46EB2E0001FB00 /* ssl_session_cache.cc */, + 46EB2E0001FB10 /* ssl_session_cache.h */, + 46EB2E0001FB20 /* ssl_session_openssl.cc */, + 46EB2E0001FB30 /* ssl_transport_security.cc */, + 46EB2E0001FB40 /* ssl_transport_security.h */, + 46EB2E0001FB50 /* ssl_types.h */, + 46EB2E0001F210 /* ssl_utils.cc */, + 46EB2E0001F220 /* ssl_utils.h */, + 46EB2E0001F230 /* ssl_utils_config.cc */, + 46EB2E0001F240 /* ssl_utils_config.h */, + 46EB2E0001EA20 /* stap_timers.cc */, + 46EB2E0001DD90 /* stat.h */, + 46EB2E0001DDA0 /* stat_posix.cc */, + 46EB2E0001DDB0 /* stat_windows.cc */, + 46EB2E0001D890 /* stats.cc */, + 46EB2E0001D8A0 /* stats.h */, + 46EB2E0001BCF0 /* stats.upb.c */, + 46EB2E0001BD00 /* stats.upb.h */, + 46EB2E0001CA90 /* stats.upbdefs.c */, + 46EB2E0001CAA0 /* stats.upbdefs.h */, + 46EB2E0001D8B0 /* stats_data.cc */, + 46EB2E0001D8C0 /* stats_data.h */, + 46EB2E0001EAA0 /* status.h */, + 46EB2E0001C3D0 /* status.upb.c */, + 46EB2E0001C510 /* status.upb.c */, + 46EB2E0001C570 /* status.upb.c */, + 46EB2E0001C3E0 /* status.upb.h */, + 46EB2E0001C520 /* status.upb.h */, + 46EB2E0001C580 /* status.upb.h */, + 46EB2E0001D170 /* status.upbdefs.c */, + 46EB2E0001D1F0 /* status.upbdefs.c */, + 46EB2E0001D250 /* status.upbdefs.c */, + 46EB2E0001D180 /* status.upbdefs.h */, + 46EB2E0001D200 /* status.upbdefs.h */, + 46EB2E0001D260 /* status.upbdefs.h */, + 46EB2E0001F7A0 /* status_conversion.cc */, + 46EB2E0001F7B0 /* status_conversion.h */, + 46EB2E0001DDC0 /* status_helper.cc */, + 46EB2E0001DDD0 /* status_helper.h */, + 46EB2E0001D800 /* status_util.cc */, + 46EB2E0001D810 /* status_util.h */, + 46EB2E0001B860 /* stream_lists.cc */, + 46EB2E0001B870 /* stream_map.cc */, + 46EB2E0001B880 /* stream_map.h */, + 46EB2E0001DAA0 /* string.cc */, + 46EB2E0001DAB0 /* string.h */, + 46EB2E0001C0F0 /* string.upb.c */, + 46EB2E0001C100 /* string.upb.h */, + 46EB2E0001CE90 /* string.upbdefs.c */, + 46EB2E0001CEA0 /* string.upbdefs.h */, + 46EB2E0001DAC0 /* string_posix.cc */, + 46EB2E0001DAD0 /* string_util_windows.cc */, + 46EB2E0001DAE0 /* string_windows.cc */, + 46EB2E0001DAF0 /* string_windows.h */, + 46EB2E0001FD60 /* stringpiece.cc */, + 46EB2E0001FD70 /* stringpiece.h */, + 46EB2E0001C110 /* struct.upb.c */, + 46EB2E0001C370 /* struct.upb.c */, + 46EB2E0001C120 /* struct.upb.h */, + 46EB2E0001C380 /* struct.upb.h */, + 46EB2E0001CEB0 /* struct.upbdefs.c */, + 46EB2E0001D110 /* struct.upbdefs.c */, + 46EB2E0001CEC0 /* struct.upbdefs.h */, + 46EB2E0001D120 /* struct.upbdefs.h */, + 46EB2E0001FE70 /* strutil.cc */, + 46EB2E0001FE80 /* strutil.h */, + 46EB2E0001B2E0 /* subchannel.cc */, + 46EB2E0001B2F0 /* subchannel.h */, + 46EB2E0001B300 /* subchannel_interface.h */, + 46EB2E0001B010 /* subchannel_list.h */, + 46EB2E0001B310 /* subchannel_pool_interface.cc */, + 46EB2E0001B320 /* subchannel_pool_interface.h */, + 46EB2E0001BBB0 /* substitution_format_string.upb.c */, + 46EB2E0001BBC0 /* substitution_format_string.upb.h */, + 46EB2E0001C950 /* substitution_format_string.upbdefs.c */, + 46EB2E0001C960 /* substitution_format_string.upbdefs.h */, + 46EB2E0001EAB0 /* switch.h */, + 46EB2E0001DB00 /* sync.cc */, + 46EB2E0001DDE0 /* sync.h */, + 46EB2E0001DB10 /* sync_abseil.cc */, + 46EB2E0001DB20 /* sync_posix.cc */, + 46EB2E0001DB30 /* sync_windows.cc */, + 46EB2E0001C290 /* syntax.upb.c */, + 46EB2E0001C2A0 /* syntax.upb.h */, + 46EB2E0001D030 /* syntax.upbdefs.c */, + 46EB2E0001D040 /* syntax.upbdefs.h */, + 46EB2E0001E6C0 /* sys_epoll_wrapper.h */, + 46EB2E0001FFE0 /* table.c */, + 46EB2E0001DDF0 /* table.h */, + 46EB2E0001FFF0 /* table_internal.h */, + 46EB2E0001E1C0 /* tcp.cc */, + 46EB2E0001E6D0 /* tcp_client.cc */, + 46EB2E0001E6E0 /* tcp_client.h */, + 46EB2E0001E6F0 /* tcp_client_cfstream.cc */, + 46EB2E0001E700 /* tcp_client_custom.cc */, + 46EB2E0001E710 /* tcp_client_posix.cc */, + 46EB2E0001E720 /* tcp_client_posix.h */, + 46EB2E0001E730 /* tcp_client_windows.cc */, + 46EB2E0001E740 /* tcp_custom.cc */, + 46EB2E0001E750 /* tcp_custom.h */, + 46EB2E0001E760 /* tcp_posix.cc */, + 46EB2E0001E770 /* tcp_posix.h */, + 46EB2E0001E780 /* tcp_server.cc */, + 46EB2E0001E790 /* tcp_server.h */, + 46EB2E0001E7A0 /* tcp_server_custom.cc */, + 46EB2E0001E7B0 /* tcp_server_posix.cc */, + 46EB2E0001E7C0 /* tcp_server_utils_posix.h */, + 46EB2E0001E7D0 /* tcp_server_utils_posix_common.cc */, + 46EB2E0001E7E0 /* tcp_server_utils_posix_ifaddrs.cc */, + 46EB2E0001E7F0 /* tcp_server_utils_posix_noifaddrs.cc */, + 46EB2E0001E800 /* tcp_server_windows.cc */, + 46EB2E0001E810 /* tcp_windows.cc */, + 46EB2E0001E820 /* tcp_windows.h */, + 46EB2E0001FE90 /* test.h */, + 46EB2E00020000 /* text_encode.c */, + 46EB2E00020010 /* text_encode.h */, + 46EB2E0001DE00 /* thd.h */, + 46EB2E0001DE10 /* thd_posix.cc */, + 46EB2E0001DE20 /* thd_windows.cc */, + 46EB2E0001EC10 /* thread_quota.cc */, + 46EB2E0001EC20 /* thread_quota.h */, + 46EB2E0001E240 /* threadpool.cc */, + 46EB2E0001E250 /* threadpool.h */, + 46EB2E0001DB40 /* time.cc */, + 46EB2E0001E830 /* time_averaged_stats.cc */, + 46EB2E0001E840 /* time_averaged_stats.h */, + 46EB2E0001DB50 /* time_posix.cc */, + 46EB2E0001DB60 /* time_precise.cc */, + 46EB2E0001DB70 /* time_precise.h */, + 46EB2E0001DE30 /* time_util.cc */, + 46EB2E0001DE40 /* time_util.h */, + 46EB2E0001DB80 /* time_windows.cc */, + 46EB2E0001F7C0 /* timeout_encoding.cc */, + 46EB2E0001F7D0 /* timeout_encoding.h */, + 46EB2E0001E1D0 /* timer.cc */, + 46EB2E0001E850 /* timer.cc */, + 46EB2E0001E860 /* timer.h */, + 46EB2E0001E870 /* timer_custom.cc */, + 46EB2E0001E880 /* timer_custom.h */, + 46EB2E0001E890 /* timer_generic.cc */, + 46EB2E0001E8A0 /* timer_generic.h */, + 46EB2E0001E8B0 /* timer_heap.cc */, + 46EB2E0001E8C0 /* timer_heap.h */, + 46EB2E0001E8D0 /* timer_manager.cc */, + 46EB2E0001E8E0 /* timer_manager.h */, + 46EB2E0001EA30 /* timers.h */, + 46EB2E0001C390 /* timestamp.upb.c */, + 46EB2E0001C3A0 /* timestamp.upb.h */, + 46EB2E0001D130 /* timestamp.upbdefs.c */, + 46EB2E0001D140 /* timestamp.upbdefs.h */, + 46EB2E0001DB90 /* tls.h */, + 46EB2E0001BEF0 /* tls.upb.c */, + 46EB2E0001BF00 /* tls.upb.h */, + 46EB2E0001CC90 /* tls.upbdefs.c */, + 46EB2E0001CCA0 /* tls.upbdefs.h */, + 46EB2E0001F0B0 /* tls_credentials.cc */, + 46EB2E0001F0C0 /* tls_credentials.h */, + 46EB2E0001F250 /* tls_security_connector.cc */, + 46EB2E0001F260 /* tls_security_connector.h */, + 46EB2E0001F0D0 /* tls_utils.cc */, + 46EB2E0001F0E0 /* tls_utils.h */, + 46EB2E0001DBA0 /* tmpfile.h */, + 46EB2E0001DBB0 /* tmpfile_msys.cc */, + 46EB2E0001DBC0 /* tmpfile_posix.cc */, + 46EB2E0001DBD0 /* tmpfile_windows.cc */, + 46EB2E0001FD80 /* tostring.cc */, + 46EB2E0001D8D0 /* trace.cc */, + 46EB2E0001EC30 /* trace.cc */, + 46EB2E0001D8E0 /* trace.h */, + 46EB2E0001EC40 /* trace.h */, + 46EB2E0001F7E0 /* transport.cc */, + 46EB2E0001F7F0 /* transport.h */, + 46EB2E0001F800 /* transport_impl.h */, + 46EB2E0001F810 /* transport_op_string.cc */, + 46EB2E0001FB60 /* transport_security.cc */, + 46EB2E0001FB70 /* transport_security.h */, + 46EB2E0001C430 /* transport_security_common.upb.c */, + 46EB2E0001C440 /* transport_security_common.upb.h */, + 46EB2E0001F9D0 /* transport_security_common_api.cc */, + 46EB2E0001F9E0 /* transport_security_common_api.h */, + 46EB2E0001FB80 /* transport_security_grpc.cc */, + 46EB2E0001FB90 /* transport_security_grpc.h */, + 46EB2E0001FBA0 /* transport_security_interface.h */, + 46EB2E0001F2E0 /* tsi_error.cc */, + 46EB2E0001F2F0 /* tsi_error.h */, + 46EB2E0001C670 /* typed_struct.upb.c */, + 46EB2E0001C680 /* typed_struct.upb.h */, + 46EB2E0001D330 /* typed_struct.upbdefs.c */, + 46EB2E0001D340 /* typed_struct.upbdefs.h */, + 46EB2E0001BCD0 /* udp_listener_config.upb.c */, + 46EB2E0001BCE0 /* udp_listener_config.upb.h */, + 46EB2E0001CA70 /* udp_listener_config.upbdefs.c */, + 46EB2E0001CA80 /* udp_listener_config.upbdefs.h */, + 46EB2E0001BBD0 /* udp_socket_config.upb.c */, + 46EB2E0001BBE0 /* udp_socket_config.upb.h */, + 46EB2E0001C970 /* udp_socket_config.upbdefs.c */, + 46EB2E0001C980 /* udp_socket_config.upbdefs.h */, + 46EB2E0001FD90 /* unicode_casefold.cc */, + 46EB2E0001FDA0 /* unicode_casefold.h */, + 46EB2E0001FDB0 /* unicode_groups.cc */, + 46EB2E0001FDC0 /* unicode_groups.h */, + 46EB2E0001E8F0 /* unix_sockets_posix.cc */, + 46EB2E0001E900 /* unix_sockets_posix.h */, + 46EB2E0001E910 /* unix_sockets_posix_noop.cc */, + 46EB2E00020020 /* upb.c */, + 46EB2E00020030 /* upb.h */, + 46EB2E00020040 /* upb.hpp */, + 46EB2E00020050 /* upb_internal.h */, + 46EB2E0001D3C0 /* upb_utils.h */, + 46EB2E0001F820 /* uri_parser.cc */, + 46EB2E0001F830 /* uri_parser.h */, + 46EB2E0001EEB0 /* url_external_account_credentials.cc */, + 46EB2E0001EEC0 /* url_external_account_credentials.h */, + 46EB2E0001DBE0 /* useful.h */, + 46EB2E0001FEA0 /* utf.h */, + 46EB2E0001FEB0 /* util.h */, + 46EB2E0001C550 /* validate.upb.c */, + 46EB2E0001C560 /* validate.upb.h */, + 46EB2E0001D230 /* validate.upbdefs.c */, + 46EB2E0001D240 /* validate.upbdefs.h */, + 46EB2E0001F690 /* validate_metadata.cc */, + 46EB2E0001F6A0 /* validate_metadata.h */, + 46EB2E0001C130 /* value.upb.c */, 46EB2E0001C2B0 /* value.upb.c */, - 46EB2E0001C430 /* value.upb.c */, + 46EB2E0001C140 /* value.upb.h */, 46EB2E0001C2C0 /* value.upb.h */, - 46EB2E0001C440 /* value.upb.h */, + 46EB2E0001CED0 /* value.upbdefs.c */, 46EB2E0001D050 /* value.upbdefs.c */, - 46EB2E0001D1D0 /* value.upbdefs.c */, + 46EB2E0001CEE0 /* value.upbdefs.h */, 46EB2E0001D060 /* value.upbdefs.h */, - 46EB2E0001D1E0 /* value.upbdefs.h */, - 46EB2E0001BA10 /* varint.cc */, - 46EB2E0001BA20 /* varint.h */, - 46EB2E0001F830 /* version.cc */, - 46EB2E0001C6B0 /* versioning.upb.c */, - 46EB2E0001C6C0 /* versioning.upb.h */, - 46EB2E0001D390 /* versioning.upbdefs.c */, - 46EB2E0001D3A0 /* versioning.upbdefs.h */, - 46EB2E0001EAA0 /* wakeup_fd_eventfd.cc */, - 46EB2E0001EAB0 /* wakeup_fd_nospecial.cc */, - 46EB2E0001EAC0 /* wakeup_fd_pipe.cc */, - 46EB2E0001EAD0 /* wakeup_fd_pipe.h */, - 46EB2E0001EAE0 /* wakeup_fd_posix.cc */, - 46EB2E0001EAF0 /* wakeup_fd_posix.h */, - 46EB2E0001FF50 /* walker-inl.h */, - 46EB2E0001B1A0 /* weighted_target.cc */, - 46EB2E0001EB00 /* work_serializer.cc */, - 46EB2E0001EB10 /* work_serializer.h */, - 46EB2E0001DD70 /* wrap_memcpy.cc */, - 46EB2E0001C530 /* wrappers.upb.c */, - 46EB2E0001C540 /* wrappers.upb.h */, - 46EB2E0001D2D0 /* wrappers.upbdefs.c */, - 46EB2E0001D2E0 /* wrappers.upbdefs.h */, - 46EB2E0001BA30 /* writing.cc */, - 46EB2E0001B1C0 /* xds.h */, - 46EB2E0001D550 /* xds_api.cc */, - 46EB2E0001D560 /* xds_api.h */, - 46EB2E0001D570 /* xds_bootstrap.cc */, - 46EB2E0001D580 /* xds_bootstrap.h */, - 46EB2E0001D590 /* xds_certificate_provider.cc */, - 46EB2E0001D5A0 /* xds_certificate_provider.h */, - 46EB2E0001B1D0 /* xds_channel_args.h */, - 46EB2E0001D5B0 /* xds_channel_args.h */, - 46EB2E0001D5C0 /* xds_channel_creds.cc */, - 46EB2E0001D5D0 /* xds_channel_creds.h */, - 46EB2E0001D5E0 /* xds_channel_stack_modifier.cc */, - 46EB2E0001D5F0 /* xds_channel_stack_modifier.h */, - 46EB2E0001D600 /* xds_client.cc */, - 46EB2E0001D610 /* xds_client.h */, - 46EB2E0001D620 /* xds_client_stats.cc */, - 46EB2E0001D630 /* xds_client_stats.h */, - 46EB2E0001D640 /* xds_cluster.cc */, - 46EB2E0001D650 /* xds_cluster.h */, - 46EB2E0001B1E0 /* xds_cluster_impl.cc */, - 46EB2E0001B1F0 /* xds_cluster_manager.cc */, - 46EB2E0001B200 /* xds_cluster_resolver.cc */, - 46EB2E0001D660 /* xds_common_types.cc */, - 46EB2E0001D670 /* xds_common_types.h */, - 46EB2E0001F270 /* xds_credentials.cc */, - 46EB2E0001F280 /* xds_credentials.h */, - 46EB2E0001D680 /* xds_endpoint.cc */, - 46EB2E0001D690 /* xds_endpoint.h */, - 46EB2E0001D6A0 /* xds_http_fault_filter.cc */, - 46EB2E0001D6B0 /* xds_http_fault_filter.h */, - 46EB2E0001D6C0 /* xds_http_filters.cc */, - 46EB2E0001D6D0 /* xds_http_filters.h */, - 46EB2E0001D6E0 /* xds_http_rbac_filter.cc */, - 46EB2E0001D6F0 /* xds_http_rbac_filter.h */, - 46EB2E0001D700 /* xds_listener.cc */, - 46EB2E0001D710 /* xds_listener.h */, - 46EB2E0001B3B0 /* xds_resolver.cc */, - 46EB2E0001B3C0 /* xds_resolver.h */, - 46EB2E0001D720 /* xds_resource_type.cc */, - 46EB2E0001D730 /* xds_resource_type.h */, - 46EB2E0001D740 /* xds_resource_type_impl.h */, - 46EB2E0001D750 /* xds_route_config.cc */, - 46EB2E0001D760 /* xds_route_config.h */, - 46EB2E0001D770 /* xds_routing.cc */, - 46EB2E0001D780 /* xds_routing.h */, - 46EB2E0001D790 /* xds_server_config_fetcher.cc */, - 46EB2E000201E0 /* xxhash.h */, + 46EB2E0001B890 /* varint.cc */, + 46EB2E0001B8A0 /* varint.h */, + 46EB2E0001F6B0 /* version.cc */, + 46EB2E0001C530 /* versioning.upb.c */, + 46EB2E0001C540 /* versioning.upb.h */, + 46EB2E0001D210 /* versioning.upbdefs.c */, + 46EB2E0001D220 /* versioning.upbdefs.h */, + 46EB2E0001E920 /* wakeup_fd_eventfd.cc */, + 46EB2E0001E930 /* wakeup_fd_nospecial.cc */, + 46EB2E0001E940 /* wakeup_fd_pipe.cc */, + 46EB2E0001E950 /* wakeup_fd_pipe.h */, + 46EB2E0001E960 /* wakeup_fd_posix.cc */, + 46EB2E0001E970 /* wakeup_fd_posix.h */, + 46EB2E0001FDD0 /* walker-inl.h */, + 46EB2E0001B020 /* weighted_target.cc */, + 46EB2E0001E980 /* work_serializer.cc */, + 46EB2E0001E990 /* work_serializer.h */, + 46EB2E0001DBF0 /* wrap_memcpy.cc */, + 46EB2E0001C3B0 /* wrappers.upb.c */, + 46EB2E0001C3C0 /* wrappers.upb.h */, + 46EB2E0001D150 /* wrappers.upbdefs.c */, + 46EB2E0001D160 /* wrappers.upbdefs.h */, + 46EB2E0001B8B0 /* writing.cc */, + 46EB2E0001B040 /* xds.h */, + 46EB2E0001D3D0 /* xds_api.cc */, + 46EB2E0001D3E0 /* xds_api.h */, + 46EB2E0001D3F0 /* xds_bootstrap.cc */, + 46EB2E0001D400 /* xds_bootstrap.h */, + 46EB2E0001D410 /* xds_certificate_provider.cc */, + 46EB2E0001D420 /* xds_certificate_provider.h */, + 46EB2E0001B050 /* xds_channel_args.h */, + 46EB2E0001D430 /* xds_channel_args.h */, + 46EB2E0001D440 /* xds_channel_creds.cc */, + 46EB2E0001D450 /* xds_channel_creds.h */, + 46EB2E0001D460 /* xds_channel_stack_modifier.cc */, + 46EB2E0001D470 /* xds_channel_stack_modifier.h */, + 46EB2E0001D480 /* xds_client.cc */, + 46EB2E0001D490 /* xds_client.h */, + 46EB2E0001D4A0 /* xds_client_stats.cc */, + 46EB2E0001D4B0 /* xds_client_stats.h */, + 46EB2E0001D4C0 /* xds_cluster.cc */, + 46EB2E0001D4D0 /* xds_cluster.h */, + 46EB2E0001B060 /* xds_cluster_impl.cc */, + 46EB2E0001B070 /* xds_cluster_manager.cc */, + 46EB2E0001B080 /* xds_cluster_resolver.cc */, + 46EB2E0001D4E0 /* xds_common_types.cc */, + 46EB2E0001D4F0 /* xds_common_types.h */, + 46EB2E0001F0F0 /* xds_credentials.cc */, + 46EB2E0001F100 /* xds_credentials.h */, + 46EB2E0001D500 /* xds_endpoint.cc */, + 46EB2E0001D510 /* xds_endpoint.h */, + 46EB2E0001D520 /* xds_http_fault_filter.cc */, + 46EB2E0001D530 /* xds_http_fault_filter.h */, + 46EB2E0001D540 /* xds_http_filters.cc */, + 46EB2E0001D550 /* xds_http_filters.h */, + 46EB2E0001D560 /* xds_http_rbac_filter.cc */, + 46EB2E0001D570 /* xds_http_rbac_filter.h */, + 46EB2E0001D580 /* xds_listener.cc */, + 46EB2E0001D590 /* xds_listener.h */, + 46EB2E0001B230 /* xds_resolver.cc */, + 46EB2E0001B240 /* xds_resolver.h */, + 46EB2E0001D5A0 /* xds_resource_type.cc */, + 46EB2E0001D5B0 /* xds_resource_type.h */, + 46EB2E0001D5C0 /* xds_resource_type_impl.h */, + 46EB2E0001D5D0 /* xds_route_config.cc */, + 46EB2E0001D5E0 /* xds_route_config.h */, + 46EB2E0001D5F0 /* xds_routing.cc */, + 46EB2E0001D600 /* xds_routing.h */, + 46EB2E0001D610 /* xds_server_config_fetcher.cc */, + 46EB2E00020060 /* xxhash.h */, ); name = Implementation; sourceTree = ""; }; - 46EB2E000201F0 /* Interface */ = { - isa = PBXGroup; - children = ( - 46EB2E000204A0 /* alloc.h */, - 46EB2E000202F0 /* atm.h */, - 46EB2E000204B0 /* atm.h */, - 46EB2E00020300 /* atm_gcc_atomic.h */, - 46EB2E000204C0 /* atm_gcc_atomic.h */, - 46EB2E00020310 /* atm_gcc_sync.h */, - 46EB2E000204D0 /* atm_gcc_sync.h */, - 46EB2E00020320 /* atm_windows.h */, - 46EB2E000204E0 /* atm_windows.h */, - 46EB2E00020200 /* byte_buffer.h */, - 46EB2E00020330 /* byte_buffer.h */, - 46EB2E00020210 /* byte_buffer_reader.h */, - 46EB2E00020340 /* byte_buffer_reader.h */, - 46EB2E00020220 /* census.h */, - 46EB2E00020230 /* compression.h */, - 46EB2E00020350 /* compression_types.h */, - 46EB2E00020360 /* connectivity_state.h */, - 46EB2E000204F0 /* cpu.h */, - 46EB2E00020240 /* endpoint_config.h */, - 46EB2E00020250 /* event_engine.h */, - 46EB2E000202A0 /* fork.h */, - 46EB2E00020370 /* fork.h */, - 46EB2E00020380 /* gpr_slice.h */, - 46EB2E00020390 /* gpr_types.h */, - 46EB2E000202B0 /* grpc.h */, - 46EB2E000202C0 /* grpc_posix.h */, - 46EB2E000202D0 /* grpc_security.h */, - 46EB2E000202E0 /* grpc_security_constants.h */, - 46EB2E000203A0 /* grpc_types.h */, - 46EB2E00020460 /* load_reporting.h */, - 46EB2E000203B0 /* log.h */, - 46EB2E00020500 /* log.h */, - 46EB2E00020510 /* log_windows.h */, - 46EB2E00020270 /* memory_allocator.h */, - 46EB2E00020260 /* memory_allocator_impl.h */, - 46EB2E00020280 /* memory_request.h */, - 46EB2E00020290 /* port.h */, - 46EB2E000203C0 /* port_platform.h */, - 46EB2E00020520 /* port_platform.h */, - 46EB2E000203D0 /* propagation_bits.h */, - 46EB2E000203E0 /* slice.h */, - 46EB2E00020470 /* slice.h */, - 46EB2E00020480 /* slice_buffer.h */, - 46EB2E000203F0 /* status.h */, - 46EB2E00020490 /* status.h */, - 46EB2E00020530 /* string_util.h */, - 46EB2E00020400 /* sync.h */, - 46EB2E00020540 /* sync.h */, - 46EB2E00020410 /* sync_abseil.h */, - 46EB2E00020550 /* sync_abseil.h */, - 46EB2E00020420 /* sync_custom.h */, - 46EB2E00020560 /* sync_custom.h */, - 46EB2E00020430 /* sync_generic.h */, - 46EB2E00020570 /* sync_generic.h */, - 46EB2E00020440 /* sync_posix.h */, - 46EB2E00020580 /* sync_posix.h */, - 46EB2E00020450 /* sync_windows.h */, - 46EB2E00020590 /* sync_windows.h */, - 46EB2E000205A0 /* thd_id.h */, - 46EB2E000205B0 /* time.h */, - 46EB2E000205C0 /* workaround_list.h */, + 46EB2E00020070 /* Interface */ = { + isa = PBXGroup; + children = ( + 46EB2E00020320 /* alloc.h */, + 46EB2E00020170 /* atm.h */, + 46EB2E00020330 /* atm.h */, + 46EB2E00020180 /* atm_gcc_atomic.h */, + 46EB2E00020340 /* atm_gcc_atomic.h */, + 46EB2E00020190 /* atm_gcc_sync.h */, + 46EB2E00020350 /* atm_gcc_sync.h */, + 46EB2E000201A0 /* atm_windows.h */, + 46EB2E00020360 /* atm_windows.h */, + 46EB2E00020080 /* byte_buffer.h */, + 46EB2E000201B0 /* byte_buffer.h */, + 46EB2E00020090 /* byte_buffer_reader.h */, + 46EB2E000201C0 /* byte_buffer_reader.h */, + 46EB2E000200A0 /* census.h */, + 46EB2E000200B0 /* compression.h */, + 46EB2E000201D0 /* compression_types.h */, + 46EB2E000201E0 /* connectivity_state.h */, + 46EB2E00020370 /* cpu.h */, + 46EB2E000200C0 /* endpoint_config.h */, + 46EB2E000200D0 /* event_engine.h */, + 46EB2E00020120 /* fork.h */, + 46EB2E000201F0 /* fork.h */, + 46EB2E00020200 /* gpr_slice.h */, + 46EB2E00020210 /* gpr_types.h */, + 46EB2E00020130 /* grpc.h */, + 46EB2E00020140 /* grpc_posix.h */, + 46EB2E00020150 /* grpc_security.h */, + 46EB2E00020160 /* grpc_security_constants.h */, + 46EB2E00020220 /* grpc_types.h */, + 46EB2E000202E0 /* load_reporting.h */, + 46EB2E00020230 /* log.h */, + 46EB2E00020380 /* log.h */, + 46EB2E00020390 /* log_windows.h */, + 46EB2E000200F0 /* memory_allocator.h */, + 46EB2E000200E0 /* memory_allocator_impl.h */, + 46EB2E00020100 /* memory_request.h */, + 46EB2E00020110 /* port.h */, + 46EB2E00020240 /* port_platform.h */, + 46EB2E000203A0 /* port_platform.h */, + 46EB2E00020250 /* propagation_bits.h */, + 46EB2E00020260 /* slice.h */, + 46EB2E000202F0 /* slice.h */, + 46EB2E00020300 /* slice_buffer.h */, + 46EB2E00020270 /* status.h */, + 46EB2E00020310 /* status.h */, + 46EB2E000203B0 /* string_util.h */, + 46EB2E00020280 /* sync.h */, + 46EB2E000203C0 /* sync.h */, + 46EB2E00020290 /* sync_abseil.h */, + 46EB2E000203D0 /* sync_abseil.h */, + 46EB2E000202A0 /* sync_custom.h */, + 46EB2E000203E0 /* sync_custom.h */, + 46EB2E000202B0 /* sync_generic.h */, + 46EB2E000203F0 /* sync_generic.h */, + 46EB2E000202C0 /* sync_posix.h */, + 46EB2E00020400 /* sync_posix.h */, + 46EB2E000202D0 /* sync_windows.h */, + 46EB2E00020410 /* sync_windows.h */, + 46EB2E00020420 /* thd_id.h */, + 46EB2E00020430 /* time.h */, + 46EB2E00020440 /* workaround_list.h */, ); name = Interface; sourceTree = ""; }; - 46EB2E00021120 /* demux */ = { + 46EB2E00020FA0 /* demux */ = { isa = PBXGroup; children = ( - 46EB2E00021130 /* anim_decode.c */, - 46EB2E00021140 /* demux.c */, - 46EB2E00021150 /* demux.h */, + 46EB2E00020FB0 /* anim_decode.c */, + 46EB2E00020FC0 /* demux.c */, + 46EB2E00020FD0 /* demux.h */, ); name = demux; sourceTree = ""; }; - 46EB2E00021160 /* mux */ = { + 46EB2E00020FE0 /* mux */ = { isa = PBXGroup; children = ( - 46EB2E00021180 /* anim_encode.c */, - 46EB2E00021170 /* animi.h */, - 46EB2E000211D0 /* mux.h */, - 46EB2E00021190 /* muxedit.c */, - 46EB2E000211A0 /* muxi.h */, - 46EB2E000211B0 /* muxinternal.c */, - 46EB2E000211C0 /* muxread.c */, + 46EB2E00021000 /* anim_encode.c */, + 46EB2E00020FF0 /* animi.h */, + 46EB2E00021050 /* mux.h */, + 46EB2E00021010 /* muxedit.c */, + 46EB2E00021020 /* muxi.h */, + 46EB2E00021030 /* muxinternal.c */, + 46EB2E00021040 /* muxread.c */, ); name = mux; sourceTree = ""; }; - 46EB2E000211E0 /* webp */ = { - isa = PBXGroup; - children = ( - 46EB2E00021890 /* alpha_dec.c */, - 46EB2E00021980 /* alpha_enc.c */, - 46EB2E000213E0 /* alpha_processing.c */, - 46EB2E000213F0 /* alpha_processing_mips_dsp_r2.c */, - 46EB2E00021400 /* alpha_processing_neon.c */, - 46EB2E00021410 /* alpha_processing_sse2.c */, - 46EB2E00021420 /* alpha_processing_sse41.c */, - 46EB2E00021880 /* alphai_dec.h */, - 46EB2E00021990 /* analysis_enc.c */, - 46EB2E000219A0 /* backward_references_cost_enc.c */, - 46EB2E000219B0 /* backward_references_enc.c */, - 46EB2E000219C0 /* backward_references_enc.h */, - 46EB2E00021240 /* bit_reader_inl_utils.h */, - 46EB2E00021250 /* bit_reader_utils.c */, - 46EB2E00021260 /* bit_reader_utils.h */, - 46EB2E00021270 /* bit_writer_utils.c */, - 46EB2E00021280 /* bit_writer_utils.h */, - 46EB2E000218A0 /* buffer_dec.c */, - 46EB2E00021290 /* color_cache_utils.c */, - 46EB2E000212A0 /* color_cache_utils.h */, - 46EB2E000218B0 /* common_dec.h */, - 46EB2E00021430 /* common_sse2.h */, - 46EB2E00021440 /* common_sse41.h */, - 46EB2E000219D0 /* config_enc.c */, - 46EB2E00021450 /* cost.c */, - 46EB2E000219E0 /* cost_enc.c */, - 46EB2E000219F0 /* cost_enc.h */, - 46EB2E00021460 /* cost_mips32.c */, - 46EB2E00021470 /* cost_mips_dsp_r2.c */, - 46EB2E00021480 /* cost_neon.c */, - 46EB2E00021490 /* cost_sse2.c */, - 46EB2E000214A0 /* cpu.c */, - 46EB2E000214B0 /* dec.c */, - 46EB2E000214C0 /* dec_clip_tables.c */, - 46EB2E000214D0 /* dec_mips32.c */, - 46EB2E000214E0 /* dec_mips_dsp_r2.c */, - 46EB2E000214F0 /* dec_msa.c */, - 46EB2E00021500 /* dec_neon.c */, - 46EB2E00021510 /* dec_sse2.c */, - 46EB2E00021520 /* dec_sse41.c */, - 46EB2E000211F0 /* decode.h */, - 46EB2E00021530 /* dsp.h */, - 46EB2E00021540 /* enc.c */, - 46EB2E00021550 /* enc_mips32.c */, - 46EB2E00021560 /* enc_mips_dsp_r2.c */, - 46EB2E00021570 /* enc_msa.c */, - 46EB2E00021580 /* enc_neon.c */, - 46EB2E00021590 /* enc_sse2.c */, - 46EB2E000215A0 /* enc_sse41.c */, - 46EB2E00021200 /* encode.h */, - 46EB2E000212B0 /* endian_inl_utils.h */, - 46EB2E00021A00 /* filter_enc.c */, - 46EB2E000215B0 /* filters.c */, - 46EB2E000215C0 /* filters_mips_dsp_r2.c */, - 46EB2E000215D0 /* filters_msa.c */, - 46EB2E000215E0 /* filters_neon.c */, - 46EB2E000215F0 /* filters_sse2.c */, - 46EB2E000212C0 /* filters_utils.c */, - 46EB2E000212D0 /* filters_utils.h */, - 46EB2E00021230 /* format_constants.h */, - 46EB2E000218C0 /* frame_dec.c */, - 46EB2E00021A10 /* frame_enc.c */, - 46EB2E00021A20 /* histogram_enc.c */, - 46EB2E00021A30 /* histogram_enc.h */, - 46EB2E000212E0 /* huffman_encode_utils.c */, - 46EB2E000212F0 /* huffman_encode_utils.h */, - 46EB2E00021300 /* huffman_utils.c */, - 46EB2E00021310 /* huffman_utils.h */, - 46EB2E000218D0 /* idec_dec.c */, - 46EB2E000218E0 /* io_dec.c */, - 46EB2E00021A40 /* iterator_enc.c */, - 46EB2E00021600 /* lossless.c */, - 46EB2E00021610 /* lossless.h */, - 46EB2E00021620 /* lossless_common.h */, - 46EB2E00021630 /* lossless_enc.c */, - 46EB2E00021640 /* lossless_enc_mips32.c */, - 46EB2E00021650 /* lossless_enc_mips_dsp_r2.c */, - 46EB2E00021660 /* lossless_enc_msa.c */, - 46EB2E00021670 /* lossless_enc_neon.c */, - 46EB2E00021680 /* lossless_enc_sse2.c */, - 46EB2E00021690 /* lossless_enc_sse41.c */, - 46EB2E000216A0 /* lossless_mips_dsp_r2.c */, - 46EB2E000216B0 /* lossless_msa.c */, - 46EB2E000216C0 /* lossless_neon.c */, - 46EB2E000216D0 /* lossless_sse2.c */, - 46EB2E000216E0 /* lossless_sse41.c */, - 46EB2E000216F0 /* mips_macro.h */, - 46EB2E00021700 /* msa_macro.h */, - 46EB2E00021220 /* mux_types.h */, - 46EB2E00021A50 /* near_lossless_enc.c */, - 46EB2E00021710 /* neon.h */, - 46EB2E00021A60 /* picture_csp_enc.c */, - 46EB2E00021A70 /* picture_enc.c */, - 46EB2E00021A80 /* picture_psnr_enc.c */, - 46EB2E00021A90 /* picture_rescale_enc.c */, - 46EB2E00021AA0 /* picture_tools_enc.c */, - 46EB2E00021AB0 /* predictor_enc.c */, - 46EB2E00021720 /* quant.h */, - 46EB2E000218F0 /* quant_dec.c */, - 46EB2E00021AC0 /* quant_enc.c */, - 46EB2E00021320 /* quant_levels_dec_utils.c */, - 46EB2E00021330 /* quant_levels_dec_utils.h */, - 46EB2E00021340 /* quant_levels_utils.c */, - 46EB2E00021350 /* quant_levels_utils.h */, - 46EB2E00021360 /* random_utils.c */, - 46EB2E00021370 /* random_utils.h */, - 46EB2E00021730 /* rescaler.c */, - 46EB2E00021740 /* rescaler_mips32.c */, - 46EB2E00021750 /* rescaler_mips_dsp_r2.c */, - 46EB2E00021760 /* rescaler_msa.c */, - 46EB2E00021770 /* rescaler_neon.c */, - 46EB2E00021780 /* rescaler_sse2.c */, - 46EB2E00021380 /* rescaler_utils.c */, - 46EB2E00021390 /* rescaler_utils.h */, - 46EB2E00021790 /* ssim.c */, - 46EB2E000217A0 /* ssim_sse2.c */, - 46EB2E00021AD0 /* syntax_enc.c */, - 46EB2E000213A0 /* thread_utils.c */, - 46EB2E000213B0 /* thread_utils.h */, - 46EB2E00021AE0 /* token_enc.c */, - 46EB2E00021900 /* tree_dec.c */, - 46EB2E00021AF0 /* tree_enc.c */, - 46EB2E00021210 /* types.h */, - 46EB2E000217B0 /* upsampling.c */, - 46EB2E000217C0 /* upsampling_mips_dsp_r2.c */, - 46EB2E000217D0 /* upsampling_msa.c */, - 46EB2E000217E0 /* upsampling_neon.c */, - 46EB2E000217F0 /* upsampling_sse2.c */, - 46EB2E00021800 /* upsampling_sse41.c */, - 46EB2E000213C0 /* utils.c */, - 46EB2E000213D0 /* utils.h */, - 46EB2E00021940 /* vp8_dec.c */, - 46EB2E00021950 /* vp8_dec.h */, - 46EB2E00021910 /* vp8i_dec.h */, - 46EB2E00021B00 /* vp8i_enc.h */, - 46EB2E00021930 /* vp8l_dec.c */, - 46EB2E00021B20 /* vp8l_enc.c */, - 46EB2E00021920 /* vp8li_dec.h */, - 46EB2E00021B10 /* vp8li_enc.h */, - 46EB2E00021970 /* webp_dec.c */, - 46EB2E00021B30 /* webp_enc.c */, - 46EB2E00021960 /* webpi_dec.h */, - 46EB2E00021810 /* yuv.c */, - 46EB2E00021820 /* yuv.h */, - 46EB2E00021830 /* yuv_mips32.c */, - 46EB2E00021840 /* yuv_mips_dsp_r2.c */, - 46EB2E00021850 /* yuv_neon.c */, - 46EB2E00021860 /* yuv_sse2.c */, - 46EB2E00021870 /* yuv_sse41.c */, + 46EB2E00021060 /* webp */ = { + isa = PBXGroup; + children = ( + 46EB2E00021710 /* alpha_dec.c */, + 46EB2E00021800 /* alpha_enc.c */, + 46EB2E00021260 /* alpha_processing.c */, + 46EB2E00021270 /* alpha_processing_mips_dsp_r2.c */, + 46EB2E00021280 /* alpha_processing_neon.c */, + 46EB2E00021290 /* alpha_processing_sse2.c */, + 46EB2E000212A0 /* alpha_processing_sse41.c */, + 46EB2E00021700 /* alphai_dec.h */, + 46EB2E00021810 /* analysis_enc.c */, + 46EB2E00021820 /* backward_references_cost_enc.c */, + 46EB2E00021830 /* backward_references_enc.c */, + 46EB2E00021840 /* backward_references_enc.h */, + 46EB2E000210C0 /* bit_reader_inl_utils.h */, + 46EB2E000210D0 /* bit_reader_utils.c */, + 46EB2E000210E0 /* bit_reader_utils.h */, + 46EB2E000210F0 /* bit_writer_utils.c */, + 46EB2E00021100 /* bit_writer_utils.h */, + 46EB2E00021720 /* buffer_dec.c */, + 46EB2E00021110 /* color_cache_utils.c */, + 46EB2E00021120 /* color_cache_utils.h */, + 46EB2E00021730 /* common_dec.h */, + 46EB2E000212B0 /* common_sse2.h */, + 46EB2E000212C0 /* common_sse41.h */, + 46EB2E00021850 /* config_enc.c */, + 46EB2E000212D0 /* cost.c */, + 46EB2E00021860 /* cost_enc.c */, + 46EB2E00021870 /* cost_enc.h */, + 46EB2E000212E0 /* cost_mips32.c */, + 46EB2E000212F0 /* cost_mips_dsp_r2.c */, + 46EB2E00021300 /* cost_neon.c */, + 46EB2E00021310 /* cost_sse2.c */, + 46EB2E00021320 /* cpu.c */, + 46EB2E00021330 /* dec.c */, + 46EB2E00021340 /* dec_clip_tables.c */, + 46EB2E00021350 /* dec_mips32.c */, + 46EB2E00021360 /* dec_mips_dsp_r2.c */, + 46EB2E00021370 /* dec_msa.c */, + 46EB2E00021380 /* dec_neon.c */, + 46EB2E00021390 /* dec_sse2.c */, + 46EB2E000213A0 /* dec_sse41.c */, + 46EB2E00021070 /* decode.h */, + 46EB2E000213B0 /* dsp.h */, + 46EB2E000213C0 /* enc.c */, + 46EB2E000213D0 /* enc_mips32.c */, + 46EB2E000213E0 /* enc_mips_dsp_r2.c */, + 46EB2E000213F0 /* enc_msa.c */, + 46EB2E00021400 /* enc_neon.c */, + 46EB2E00021410 /* enc_sse2.c */, + 46EB2E00021420 /* enc_sse41.c */, + 46EB2E00021080 /* encode.h */, + 46EB2E00021130 /* endian_inl_utils.h */, + 46EB2E00021880 /* filter_enc.c */, + 46EB2E00021430 /* filters.c */, + 46EB2E00021440 /* filters_mips_dsp_r2.c */, + 46EB2E00021450 /* filters_msa.c */, + 46EB2E00021460 /* filters_neon.c */, + 46EB2E00021470 /* filters_sse2.c */, + 46EB2E00021140 /* filters_utils.c */, + 46EB2E00021150 /* filters_utils.h */, + 46EB2E000210B0 /* format_constants.h */, + 46EB2E00021740 /* frame_dec.c */, + 46EB2E00021890 /* frame_enc.c */, + 46EB2E000218A0 /* histogram_enc.c */, + 46EB2E000218B0 /* histogram_enc.h */, + 46EB2E00021160 /* huffman_encode_utils.c */, + 46EB2E00021170 /* huffman_encode_utils.h */, + 46EB2E00021180 /* huffman_utils.c */, + 46EB2E00021190 /* huffman_utils.h */, + 46EB2E00021750 /* idec_dec.c */, + 46EB2E00021760 /* io_dec.c */, + 46EB2E000218C0 /* iterator_enc.c */, + 46EB2E00021480 /* lossless.c */, + 46EB2E00021490 /* lossless.h */, + 46EB2E000214A0 /* lossless_common.h */, + 46EB2E000214B0 /* lossless_enc.c */, + 46EB2E000214C0 /* lossless_enc_mips32.c */, + 46EB2E000214D0 /* lossless_enc_mips_dsp_r2.c */, + 46EB2E000214E0 /* lossless_enc_msa.c */, + 46EB2E000214F0 /* lossless_enc_neon.c */, + 46EB2E00021500 /* lossless_enc_sse2.c */, + 46EB2E00021510 /* lossless_enc_sse41.c */, + 46EB2E00021520 /* lossless_mips_dsp_r2.c */, + 46EB2E00021530 /* lossless_msa.c */, + 46EB2E00021540 /* lossless_neon.c */, + 46EB2E00021550 /* lossless_sse2.c */, + 46EB2E00021560 /* lossless_sse41.c */, + 46EB2E00021570 /* mips_macro.h */, + 46EB2E00021580 /* msa_macro.h */, + 46EB2E000210A0 /* mux_types.h */, + 46EB2E000218D0 /* near_lossless_enc.c */, + 46EB2E00021590 /* neon.h */, + 46EB2E000218E0 /* picture_csp_enc.c */, + 46EB2E000218F0 /* picture_enc.c */, + 46EB2E00021900 /* picture_psnr_enc.c */, + 46EB2E00021910 /* picture_rescale_enc.c */, + 46EB2E00021920 /* picture_tools_enc.c */, + 46EB2E00021930 /* predictor_enc.c */, + 46EB2E000215A0 /* quant.h */, + 46EB2E00021770 /* quant_dec.c */, + 46EB2E00021940 /* quant_enc.c */, + 46EB2E000211A0 /* quant_levels_dec_utils.c */, + 46EB2E000211B0 /* quant_levels_dec_utils.h */, + 46EB2E000211C0 /* quant_levels_utils.c */, + 46EB2E000211D0 /* quant_levels_utils.h */, + 46EB2E000211E0 /* random_utils.c */, + 46EB2E000211F0 /* random_utils.h */, + 46EB2E000215B0 /* rescaler.c */, + 46EB2E000215C0 /* rescaler_mips32.c */, + 46EB2E000215D0 /* rescaler_mips_dsp_r2.c */, + 46EB2E000215E0 /* rescaler_msa.c */, + 46EB2E000215F0 /* rescaler_neon.c */, + 46EB2E00021600 /* rescaler_sse2.c */, + 46EB2E00021200 /* rescaler_utils.c */, + 46EB2E00021210 /* rescaler_utils.h */, + 46EB2E00021610 /* ssim.c */, + 46EB2E00021620 /* ssim_sse2.c */, + 46EB2E00021950 /* syntax_enc.c */, + 46EB2E00021220 /* thread_utils.c */, + 46EB2E00021230 /* thread_utils.h */, + 46EB2E00021960 /* token_enc.c */, + 46EB2E00021780 /* tree_dec.c */, + 46EB2E00021970 /* tree_enc.c */, + 46EB2E00021090 /* types.h */, + 46EB2E00021630 /* upsampling.c */, + 46EB2E00021640 /* upsampling_mips_dsp_r2.c */, + 46EB2E00021650 /* upsampling_msa.c */, + 46EB2E00021660 /* upsampling_neon.c */, + 46EB2E00021670 /* upsampling_sse2.c */, + 46EB2E00021680 /* upsampling_sse41.c */, + 46EB2E00021240 /* utils.c */, + 46EB2E00021250 /* utils.h */, + 46EB2E000217C0 /* vp8_dec.c */, + 46EB2E000217D0 /* vp8_dec.h */, + 46EB2E00021790 /* vp8i_dec.h */, + 46EB2E00021980 /* vp8i_enc.h */, + 46EB2E000217B0 /* vp8l_dec.c */, + 46EB2E000219A0 /* vp8l_enc.c */, + 46EB2E000217A0 /* vp8li_dec.h */, + 46EB2E00021990 /* vp8li_enc.h */, + 46EB2E000217F0 /* webp_dec.c */, + 46EB2E000219B0 /* webp_enc.c */, + 46EB2E000217E0 /* webpi_dec.h */, + 46EB2E00021690 /* yuv.c */, + 46EB2E000216A0 /* yuv.h */, + 46EB2E000216B0 /* yuv_mips32.c */, + 46EB2E000216C0 /* yuv_mips_dsp_r2.c */, + 46EB2E000216D0 /* yuv_neon.c */, + 46EB2E000216E0 /* yuv_sse2.c */, + 46EB2E000216F0 /* yuv_sse41.c */, ); name = webp; sourceTree = ""; }; - 46EB2E00021BB0 /* decode */ = { + 46EB2E00021A30 /* decode */ = { isa = PBXGroup; children = ( ); name = decode; sourceTree = ""; }; - 46EB2E00021BC0 /* encode */ = { + 46EB2E00021A40 /* encode */ = { isa = PBXGroup; children = ( ); name = encode; sourceTree = ""; }; - 46EB2E00021BD0 /* App */ = { + 46EB2E00021A50 /* App */ = { isa = PBXGroup; children = ( - 46EB2E00021BE0 /* ReactNativeConfig.h */, - 46EB2E00021BF0 /* ReactNativeConfig.m */, - 46EB2E00021C00 /* ReactNativeConfigModule.h */, - 46EB2E00021C10 /* ReactNativeConfigModule.m */, + 46EB2E00021A60 /* ReactNativeConfig.h */, + 46EB2E00021A70 /* ReactNativeConfig.m */, + 46EB2E00021A80 /* ReactNativeConfigModule.h */, + 46EB2E00021A90 /* ReactNativeConfigModule.m */, ); name = App; sourceTree = ""; }; - 46EB2E00021E60 /* AdIdSupport */ = { + 46EB2E00021D40 /* AdIdSupport */ = { isa = PBXGroup; children = ( - 46EB2E00021E70 /* Frameworks */, + 46EB2E00021D50 /* Frameworks */, ); name = AdIdSupport; sourceTree = ""; }; - 46EB2E00021E70 /* Frameworks */ = { + 46EB2E00021D50 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021E80 /* FirebaseAnalytics.xcframework */, + 46EB2E00021D60 /* FirebaseAnalytics.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00021E90 /* Frameworks */ = { + 46EB2E00021D70 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021EA0 /* glog.xcframework */, + 46EB2E00021D80 /* glog.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00021EB0 /* AdIdSupport */ = { + 46EB2E00021D90 /* AdIdSupport */ = { isa = PBXGroup; children = ( - 46EB2E00021EC0 /* Frameworks */, + 46EB2E00021DA0 /* Frameworks */, ); name = AdIdSupport; sourceTree = ""; }; - 46EB2E00021EC0 /* Frameworks */ = { + 46EB2E00021DA0 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021ED0 /* GoogleAppMeasurementIdentitySupport.xcframework */, + 46EB2E00021DB0 /* GoogleAppMeasurementIdentitySupport.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00021EE0 /* WithoutAdIdSupport */ = { + 46EB2E00021DC0 /* WithoutAdIdSupport */ = { isa = PBXGroup; children = ( - 46EB2E00021EF0 /* Frameworks */, + 46EB2E00021DD0 /* Frameworks */, ); name = WithoutAdIdSupport; sourceTree = ""; }; - 46EB2E00021EF0 /* Frameworks */ = { + 46EB2E00021DD0 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021F00 /* GoogleAppMeasurement.xcframework */, + 46EB2E00021DE0 /* GoogleAppMeasurement.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00021F10 /* Frameworks */ = { + 46EB2E00021DF0 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021F20 /* OpenSSL.xcframework */, + 46EB2E00021E00 /* OpenSSL.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00021F30 /* Frameworks */ = { + 46EB2E00021E10 /* Frameworks */ = { isa = PBXGroup; children = ( - 46EB2E00021F40 /* hermes.xcframework */, + 46EB2E00021E20 /* hermes.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 46EB2E00022060 /* Resources */ = { + 46EB2E00021F40 /* Resources */ = { isa = PBXGroup; children = ( - 46EB2E00022070 /* roots.pem */, + 46EB2E00021F50 /* roots.pem */, ); name = Resources; sourceTree = ""; }; - 46EB2E00022080 /* Pod */ = { + 46EB2E00021F60 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022090 /* BVLinearGradient.podspec */, - 46EB2E000220A0 /* LICENSE */, - 46EB2E000220B0 /* README.md */, + 46EB2E00021F70 /* BVLinearGradient.podspec */, + 46EB2E00021F80 /* LICENSE */, + 46EB2E00021F90 /* README.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E000220C0 /* Pod */ = { + 46EB2E00021FA0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022100 /* api-android.md */, - 46EB2E00022110 /* api-ios.md */, - 46EB2E00022120 /* api-js.md */, - 46EB2E000220D0 /* CodePush.podspec */, - 46EB2E000220E0 /* LICENSE.md */, - 46EB2E00022130 /* multi-deployment-testing-android.md */, - 46EB2E00022140 /* multi-deployment-testing-ios.md */, - 46EB2E000220F0 /* README.md */, - 46EB2E00022150 /* setup-android.md */, - 46EB2E00022160 /* setup-ios.md */, - 46EB2E00022170 /* setup-windows.md */, + 46EB2E00021FE0 /* api-android.md */, + 46EB2E00021FF0 /* api-ios.md */, + 46EB2E00022000 /* api-js.md */, + 46EB2E00021FB0 /* CodePush.podspec */, + 46EB2E00021FC0 /* LICENSE.md */, + 46EB2E00022010 /* multi-deployment-testing-android.md */, + 46EB2E00022020 /* multi-deployment-testing-ios.md */, + 46EB2E00021FD0 /* README.md */, + 46EB2E00022030 /* setup-android.md */, + 46EB2E00022040 /* setup-ios.md */, + 46EB2E00022050 /* setup-windows.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022180 /* Pod */ = { + 46EB2E00022060 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022190 /* FBLazyVector.podspec */, + 46EB2E00022070 /* FBLazyVector.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000221A0 /* Pod */ = { + 46EB2E00022080 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000221B0 /* FBReactNativeSpec.podspec */, + 46EB2E00022090 /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000221C0 /* Pod */ = { + 46EB2E000220A0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000221D0 /* RCTRequired.podspec */, + 46EB2E000220B0 /* RCTRequired.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000221E0 /* Pod */ = { + 46EB2E000220C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000221F0 /* RCTTypeSafety.podspec */, + 46EB2E000220D0 /* RCTTypeSafety.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022200 /* Pod */ = { + 46EB2E000220E0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022210 /* LICENSE */, - 46EB2E00022220 /* README.md */, - 46EB2E00022230 /* RNCAsyncStorage.podspec */, + 46EB2E000220F0 /* LICENSE */, + 46EB2E00022100 /* README.md */, + 46EB2E00022110 /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022240 /* Pod */ = { + 46EB2E00022120 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022250 /* README.md */, - 46EB2E00022260 /* RNCMaskedView.podspec */, + 46EB2E00022130 /* README.md */, + 46EB2E00022140 /* RNCMaskedView.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022270 /* Pod */ = { + 46EB2E00022150 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022280 /* LICENSE */, - 46EB2E00022290 /* README.md */, - 46EB2E000222A0 /* RNCPicker.podspec */, + 46EB2E00022160 /* LICENSE */, + 46EB2E00022170 /* README.md */, + 46EB2E00022180 /* RNCPicker.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000222B0 /* Pod */ = { + 46EB2E00022190 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000222C0 /* LICENSE */, - 46EB2E000222D0 /* README.md */, - 46EB2E000222E0 /* RNDeviceInfo.podspec */, + 46EB2E000221A0 /* LICENSE */, + 46EB2E000221B0 /* README.md */, + 46EB2E000221C0 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000222F0 /* Pod */ = { + 46EB2E000221D0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022300 /* LICENSE */, - 46EB2E00022310 /* README.md */, - 46EB2E00022320 /* RNFBAnalytics.podspec */, + 46EB2E000221E0 /* LICENSE */, + 46EB2E000221F0 /* README.md */, + 46EB2E00022200 /* RNFBAnalytics.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022330 /* Pod */ = { + 46EB2E00022210 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022340 /* LICENSE */, - 46EB2E00022350 /* README.md */, - 46EB2E00022360 /* RNFBApp.podspec */, + 46EB2E00022220 /* LICENSE */, + 46EB2E00022230 /* README.md */, + 46EB2E00022240 /* RNFBApp.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022370 /* Pod */ = { + 46EB2E00022250 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022380 /* LICENSE */, - 46EB2E00022390 /* README.md */, - 46EB2E000223A0 /* RNFBAuth.podspec */, + 46EB2E00022260 /* LICENSE */, + 46EB2E00022270 /* README.md */, + 46EB2E00022280 /* RNFBAuth.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000223B0 /* Pod */ = { + 46EB2E00022290 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000223C0 /* LICENSE */, - 46EB2E000223D0 /* README.md */, - 46EB2E000223E0 /* RNFBCrashlytics.podspec */, + 46EB2E000222A0 /* LICENSE */, + 46EB2E000222B0 /* README.md */, + 46EB2E000222C0 /* RNFBCrashlytics.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000223F0 /* Pod */ = { + 46EB2E000222D0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022400 /* LICENSE */, - 46EB2E00022410 /* README.md */, - 46EB2E00022420 /* RNFBDatabase.podspec */, + 46EB2E000222E0 /* LICENSE */, + 46EB2E000222F0 /* README.md */, + 46EB2E00022300 /* RNFBDatabase.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022430 /* Pod */ = { + 46EB2E00022310 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022440 /* LICENSE */, - 46EB2E00022450 /* README.md */, - 46EB2E00022460 /* RNFBFirestore.podspec */, + 46EB2E00022320 /* LICENSE */, + 46EB2E00022330 /* README.md */, + 46EB2E00022340 /* RNFBFirestore.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022470 /* Pod */ = { + 46EB2E00022350 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022480 /* LICENSE */, - 46EB2E00022490 /* README.md */, - 46EB2E000224A0 /* RNFBMessaging.podspec */, + 46EB2E00022360 /* LICENSE */, + 46EB2E00022370 /* README.md */, + 46EB2E00022380 /* RNFBMessaging.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000224B0 /* Pod */ = { + 46EB2E00022390 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000224C0 /* LICENSE */, - 46EB2E000224D0 /* README.md */, - 46EB2E000224E0 /* RNFBRemoteConfig.podspec */, + 46EB2E000223A0 /* LICENSE */, + 46EB2E000223B0 /* README.md */, + 46EB2E000223C0 /* RNFBRemoteConfig.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000224F0 /* Pod */ = { + 46EB2E000223D0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022500 /* LICENSE */, - 46EB2E00022510 /* README.md */, - 46EB2E00022520 /* RNFastImage.podspec */, + 46EB2E000223E0 /* LICENSE */, + 46EB2E000223F0 /* README.md */, + 46EB2E00022400 /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022530 /* Pod */ = { + 46EB2E00022410 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022540 /* LICENSE */, - 46EB2E00022550 /* README.md */, - 46EB2E00022560 /* RNGestureHandler.podspec */, + 46EB2E00022420 /* LICENSE */, + 46EB2E00022430 /* README.md */, + 46EB2E00022440 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022570 /* Pod */ = { + 46EB2E00022450 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022580 /* README.md */, - 46EB2E00022590 /* RNRate.podspec */, + 46EB2E00022460 /* README.md */, + 46EB2E00022470 /* RNRate.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000225A0 /* Pod */ = { + 46EB2E00022480 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000225B0 /* LICENSE */, - 46EB2E000225C0 /* README.md */, - 46EB2E000225D0 /* RNReanimated.podspec */, + 46EB2E00022490 /* LICENSE */, + 46EB2E000224A0 /* README.md */, + 46EB2E000224B0 /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000225E0 /* Pod */ = { + 46EB2E000224C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000225F0 /* LICENSE */, - 46EB2E00022600 /* README.md */, - 46EB2E00022610 /* RNSVG.podspec */, + 46EB2E000224D0 /* LICENSE */, + 46EB2E000224E0 /* README.md */, + 46EB2E000224F0 /* RNSVG.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022620 /* Pod */ = { + 46EB2E00022500 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022630 /* LICENSE */, - 46EB2E00022640 /* README.md */, - 46EB2E00022650 /* RNScreens.podspec */, + 46EB2E00022510 /* LICENSE */, + 46EB2E00022520 /* README.md */, + 46EB2E00022530 /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022660 /* Pod */ = { + 46EB2E00022540 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022670 /* LICENSE */, - 46EB2E00022680 /* README.md */, - 46EB2E00022690 /* RNShare.podspec */, + 46EB2E00022550 /* LICENSE */, + 46EB2E00022560 /* README.md */, + 46EB2E00022570 /* RNShare.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000226A0 /* Pod */ = { + 46EB2E00022580 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000226B0 /* LICENSE */, - 46EB2E000226C0 /* README.md */, - 46EB2E000226D0 /* RNVectorIcons.podspec */, + 46EB2E00022590 /* LICENSE */, + 46EB2E000225A0 /* README.md */, + 46EB2E000225B0 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000226E0 /* Pod */ = { + 46EB2E000225C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000226F0 /* React.podspec */, + 46EB2E000225D0 /* React.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022700 /* Pod */ = { + 46EB2E000225E0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022710 /* React-Codegen.podspec.json */, + 46EB2E000225F0 /* React-Codegen.podspec.json */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022720 /* Pod */ = { + 46EB2E00022600 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022730 /* React-Core.podspec */, + 46EB2E00022610 /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022740 /* Pod */ = { + 46EB2E00022620 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022750 /* React-CoreModules.podspec */, + 46EB2E00022630 /* React-CoreModules.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022760 /* Pod */ = { + 46EB2E00022640 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022770 /* React-RCTActionSheet.podspec */, + 46EB2E00022650 /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022780 /* Pod */ = { + 46EB2E00022660 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022790 /* React-RCTAnimation.podspec */, + 46EB2E00022670 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000227A0 /* Pod */ = { + 46EB2E00022680 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000227B0 /* React-RCTBlob.podspec */, + 46EB2E00022690 /* React-RCTBlob.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000227C0 /* Pod */ = { + 46EB2E000226A0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000227D0 /* React-RCTImage.podspec */, + 46EB2E000226B0 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000227E0 /* Pod */ = { + 46EB2E000226C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000227F0 /* React-RCTLinking.podspec */, + 46EB2E000226D0 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022800 /* Pod */ = { + 46EB2E000226E0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022810 /* React-RCTNetwork.podspec */, + 46EB2E000226F0 /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022820 /* Pod */ = { + 46EB2E00022700 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022830 /* React-RCTSettings.podspec */, + 46EB2E00022710 /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022840 /* Pod */ = { + 46EB2E00022720 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022850 /* React-RCTText.podspec */, + 46EB2E00022730 /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022860 /* Pod */ = { + 46EB2E00022740 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022870 /* React-RCTVibration.podspec */, + 46EB2E00022750 /* React-RCTVibration.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022880 /* Pod */ = { + 46EB2E00022760 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022890 /* React-bridging.podspec */, + 46EB2E00022770 /* React-bridging.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000228A0 /* Pod */ = { + 46EB2E00022780 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000228B0 /* React-callinvoker.podspec */, + 46EB2E00022790 /* React-callinvoker.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000228C0 /* Pod */ = { + 46EB2E000227A0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000228D0 /* React-cxxreact.podspec */, + 46EB2E000227B0 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000228E0 /* Pod */ = { + 46EB2E000227C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000228F0 /* React-hermes.podspec */, + 46EB2E000227D0 /* React-hermes.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022900 /* Pod */ = { + 46EB2E000227E0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022910 /* React-jsi.podspec */, + 46EB2E000227F0 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022920 /* Pod */ = { + 46EB2E00022800 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022930 /* React-jsiexecutor.podspec */, + 46EB2E00022810 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022940 /* Pod */ = { + 46EB2E00022820 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022950 /* React-jsinspector.podspec */, + 46EB2E00022830 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022960 /* Pod */ = { + 46EB2E00022840 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022970 /* React-logger.podspec */, + 46EB2E00022850 /* React-logger.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022980 /* Pod */ = { + 46EB2E00022860 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022990 /* React-perflogger.podspec */, + 46EB2E00022870 /* React-perflogger.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000229A0 /* Pod */ = { + 46EB2E00022880 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000229B0 /* React-runtimeexecutor.podspec */, + 46EB2E00022890 /* React-runtimeexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000229C0 /* Pod */ = { + 46EB2E000228A0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000229D0 /* Yoga.podspec */, + 46EB2E000228B0 /* Yoga.podspec */, ); name = Pod; sourceTree = ""; }; - 46EB2E000229E0 /* Pod */ = { + 46EB2E000228C0 /* Pod */ = { + isa = PBXGroup; + children = ( + 46EB2E000228D0 /* LICENSE */, + 46EB2E000228F0 /* react-native-config.podspec */, + 46EB2E000228E0 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 46EB2E00022900 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E000229F0 /* LICENSE */, - 46EB2E00022A10 /* react-native-config.podspec */, - 46EB2E00022A00 /* README.md */, + 46EB2E00022910 /* LICENSE */, + 46EB2E00022930 /* react-native-flipper.podspec */, + 46EB2E00022920 /* README.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022A20 /* Pod */ = { + 46EB2E00022940 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022A30 /* LICENSE */, - 46EB2E00022A50 /* react-native-flipper.podspec */, - 46EB2E00022A40 /* README.md */, + 46EB2E00022950 /* LICENSE */, + 46EB2E00022970 /* react-native-pdf.podspec */, + 46EB2E00022960 /* README.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022A60 /* Pod */ = { + 46EB2E00022980 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022A70 /* LICENSE */, - 46EB2E00022A90 /* react-native-pdf.podspec */, - 46EB2E00022A80 /* README.md */, + 46EB2E00022990 /* LICENSE */, + 46EB2E000229B0 /* react-native-safe-area-context.podspec */, + 46EB2E000229A0 /* README.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022AA0 /* Pod */ = { + 46EB2E000229C0 /* Pod */ = { isa = PBXGroup; children = ( - 46EB2E00022AB0 /* LICENSE */, - 46EB2E00022AD0 /* react-native-safe-area-context.podspec */, - 46EB2E00022AC0 /* README.md */, + 46EB2E000229D0 /* LICENSE */, + 46EB2E000229F0 /* react-native-webview.podspec */, + 46EB2E000229E0 /* README.md */, ); name = Pod; sourceTree = ""; }; - 46EB2E00022BC0 /* Support Files */ = { + 46EB2E00022AE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00022C00 /* BVLinearGradient-dummy.m */, - 46EB2E00022BF0 /* BVLinearGradient-prefix.pch */, - 46EB2E00022BD0 /* BVLinearGradient.debug.xcconfig */, - 46EB2E00022BE0 /* BVLinearGradient.release.xcconfig */, + 46EB2E00022B20 /* BVLinearGradient-dummy.m */, + 46EB2E00022B10 /* BVLinearGradient-prefix.pch */, + 46EB2E00022AF0 /* BVLinearGradient.debug.xcconfig */, + 46EB2E00022B00 /* BVLinearGradient.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/BVLinearGradient"; sourceTree = ""; }; - 46EB2E00022CC0 /* Support Files */ = { + 46EB2E00022BE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00022D00 /* Base64-dummy.m */, - 46EB2E00022CF0 /* Base64-prefix.pch */, - 46EB2E00022CD0 /* Base64.debug.xcconfig */, - 46EB2E00022CE0 /* Base64.release.xcconfig */, + 46EB2E00022C20 /* Base64-dummy.m */, + 46EB2E00022C10 /* Base64-prefix.pch */, + 46EB2E00022BF0 /* Base64.debug.xcconfig */, + 46EB2E00022C00 /* Base64.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Base64"; sourceTree = ""; }; - 46EB2E00024B40 /* Support Files */ = { + 46EB2E00024A60 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00024B80 /* BoringSSL-GRPC-dummy.m */, - 46EB2E00024B70 /* BoringSSL-GRPC-prefix.pch */, - 46EB2E00024B50 /* BoringSSL-GRPC.debug.xcconfig */, - 46EB2E00024B60 /* BoringSSL-GRPC.release.xcconfig */, + 46EB2E00024AA0 /* BoringSSL-GRPC-dummy.m */, + 46EB2E00024A90 /* BoringSSL-GRPC-prefix.pch */, + 46EB2E00024A70 /* BoringSSL-GRPC.debug.xcconfig */, + 46EB2E00024A80 /* BoringSSL-GRPC.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/BoringSSL-GRPC"; sourceTree = ""; }; - 46EB2E00024C60 /* Support Files */ = { + 46EB2E00024B80 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00024CA0 /* CocoaAsyncSocket-dummy.m */, - 46EB2E00024C90 /* CocoaAsyncSocket-prefix.pch */, - 46EB2E00024C70 /* CocoaAsyncSocket.debug.xcconfig */, - 46EB2E00024C80 /* CocoaAsyncSocket.release.xcconfig */, + 46EB2E00024BC0 /* CocoaAsyncSocket-dummy.m */, + 46EB2E00024BB0 /* CocoaAsyncSocket-prefix.pch */, + 46EB2E00024B90 /* CocoaAsyncSocket.debug.xcconfig */, + 46EB2E00024BA0 /* CocoaAsyncSocket.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - 46EB2E00024DF0 /* Support Files */ = { + 46EB2E00024D10 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00024E30 /* CodePush-dummy.m */, - 46EB2E00024E20 /* CodePush-prefix.pch */, - 46EB2E00024E00 /* CodePush.debug.xcconfig */, - 46EB2E00024E10 /* CodePush.release.xcconfig */, + 46EB2E00024D50 /* CodePush-dummy.m */, + 46EB2E00024D40 /* CodePush-prefix.pch */, + 46EB2E00024D20 /* CodePush.debug.xcconfig */, + 46EB2E00024D30 /* CodePush.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/CodePush"; sourceTree = ""; }; - 46EB2E00024FF0 /* Support Files */ = { + 46EB2E00024F10 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00025030 /* DoubleConversion-dummy.m */, - 46EB2E00025020 /* DoubleConversion-prefix.pch */, - 46EB2E00025000 /* DoubleConversion.debug.xcconfig */, - 46EB2E00025010 /* DoubleConversion.release.xcconfig */, + 46EB2E00024F50 /* DoubleConversion-dummy.m */, + 46EB2E00024F40 /* DoubleConversion-prefix.pch */, + 46EB2E00024F20 /* DoubleConversion.debug.xcconfig */, + 46EB2E00024F30 /* DoubleConversion.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 46EB2E00025090 /* Support Files */ = { + 46EB2E00024FB0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000250A0 /* FBLazyVector.debug.xcconfig */, - 46EB2E000250B0 /* FBLazyVector.release.xcconfig */, + 46EB2E00024FC0 /* FBLazyVector.debug.xcconfig */, + 46EB2E00024FD0 /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - 46EB2E00025100 /* Support Files */ = { + 46EB2E00025020 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00025110 /* FBReactNativeSpec.debug.xcconfig */, - 46EB2E00025120 /* FBReactNativeSpec.release.xcconfig */, + 46EB2E00025030 /* FBReactNativeSpec.debug.xcconfig */, + 46EB2E00025040 /* FBReactNativeSpec.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 46EB2E00025170 /* Support Files */ = { + 46EB2E00025090 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00025180 /* Firebase.debug.xcconfig */, - 46EB2E00025190 /* Firebase.release.xcconfig */, + 46EB2E000250A0 /* Firebase.debug.xcconfig */, + 46EB2E000250B0 /* Firebase.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 46EB2E000253D0 /* Support Files */ = { + 46EB2E000252F0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00025400 /* FirebaseABTesting-dummy.m */, - 46EB2E000253E0 /* FirebaseABTesting.debug.xcconfig */, - 46EB2E000253F0 /* FirebaseABTesting.release.xcconfig */, + 46EB2E00025320 /* FirebaseABTesting-dummy.m */, + 46EB2E00025300 /* FirebaseABTesting.debug.xcconfig */, + 46EB2E00025310 /* FirebaseABTesting.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseABTesting"; sourceTree = ""; }; - 46EB2E00025460 /* Support Files */ = { + 46EB2E00025380 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00025470 /* FirebaseAnalytics-xcframeworks.sh */, - 46EB2E00025480 /* FirebaseAnalytics.debug.xcconfig */, - 46EB2E00025490 /* FirebaseAnalytics.release.xcconfig */, + 46EB2E00025390 /* FirebaseAnalytics-xcframeworks.sh */, + 46EB2E000253A0 /* FirebaseAnalytics.debug.xcconfig */, + 46EB2E000253B0 /* FirebaseAnalytics.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 46EB2E00026520 /* Support Files */ = { + 46EB2E00026440 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00026550 /* FirebaseAuth-dummy.m */, - 46EB2E00026530 /* FirebaseAuth.debug.xcconfig */, - 46EB2E00026540 /* FirebaseAuth.release.xcconfig */, + 46EB2E00026470 /* FirebaseAuth-dummy.m */, + 46EB2E00026450 /* FirebaseAuth.debug.xcconfig */, + 46EB2E00026460 /* FirebaseAuth.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseAuth"; sourceTree = ""; }; - 46EB2E00026890 /* Support Files */ = { + 46EB2E000267B0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000268C0 /* FirebaseCore.modulemap */, - 46EB2E000268F0 /* FirebaseCore-dummy.m */, - 46EB2E000268D0 /* FirebaseCore-umbrella.h */, - 46EB2E000268A0 /* FirebaseCore.debug.xcconfig */, - 46EB2E000268B0 /* FirebaseCore.release.xcconfig */, + 46EB2E000267E0 /* FirebaseCore.modulemap */, + 46EB2E00026810 /* FirebaseCore-dummy.m */, + 46EB2E000267F0 /* FirebaseCore-umbrella.h */, + 46EB2E000267C0 /* FirebaseCore.debug.xcconfig */, + 46EB2E000267D0 /* FirebaseCore.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 46EB2E000269F0 /* Support Files */ = { + 46EB2E00026910 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00026A20 /* FirebaseCoreDiagnostics-dummy.m */, - 46EB2E00026A00 /* FirebaseCoreDiagnostics.debug.xcconfig */, - 46EB2E00026A10 /* FirebaseCoreDiagnostics.release.xcconfig */, + 46EB2E00026940 /* FirebaseCoreDiagnostics-dummy.m */, + 46EB2E00026920 /* FirebaseCoreDiagnostics.debug.xcconfig */, + 46EB2E00026930 /* FirebaseCoreDiagnostics.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 46EB2E00026B90 /* Support Files */ = { + 46EB2E00026AB0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00026BD0 /* FirebaseCoreExtension-dummy.m */, - 46EB2E00026BC0 /* FirebaseCoreExtension-prefix.pch */, - 46EB2E00026BA0 /* FirebaseCoreExtension.debug.xcconfig */, - 46EB2E00026BB0 /* FirebaseCoreExtension.release.xcconfig */, + 46EB2E00026AF0 /* FirebaseCoreExtension-dummy.m */, + 46EB2E00026AE0 /* FirebaseCoreExtension-prefix.pch */, + 46EB2E00026AC0 /* FirebaseCoreExtension.debug.xcconfig */, + 46EB2E00026AD0 /* FirebaseCoreExtension.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseCoreExtension"; sourceTree = ""; }; - 46EB2E00026D20 /* Support Files */ = { + 46EB2E00026C40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00026D50 /* FirebaseCoreInternal.modulemap */, - 46EB2E00026DA0 /* FirebaseCoreInternal-dummy.m */, - 46EB2E00026D90 /* FirebaseCoreInternal-prefix.pch */, - 46EB2E00026D60 /* FirebaseCoreInternal-umbrella.h */, - 46EB2E00026D30 /* FirebaseCoreInternal.debug.xcconfig */, - 46EB2E00026D40 /* FirebaseCoreInternal.release.xcconfig */, + 46EB2E00026C70 /* FirebaseCoreInternal.modulemap */, + 46EB2E00026CC0 /* FirebaseCoreInternal-dummy.m */, + 46EB2E00026CB0 /* FirebaseCoreInternal-prefix.pch */, + 46EB2E00026C80 /* FirebaseCoreInternal-umbrella.h */, + 46EB2E00026C50 /* FirebaseCoreInternal.debug.xcconfig */, + 46EB2E00026C60 /* FirebaseCoreInternal.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseCoreInternal"; sourceTree = ""; }; - 46EB2E00027A60 /* Support Files */ = { + 46EB2E00027980 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00027A90 /* FirebaseCrashlytics-dummy.m */, - 46EB2E00027A70 /* FirebaseCrashlytics.debug.xcconfig */, - 46EB2E00027A80 /* FirebaseCrashlytics.release.xcconfig */, + 46EB2E000279B0 /* FirebaseCrashlytics-dummy.m */, + 46EB2E00027990 /* FirebaseCrashlytics.debug.xcconfig */, + 46EB2E000279A0 /* FirebaseCrashlytics.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = ""; }; - 46EB2E00028B40 /* Support Files */ = { + 46EB2E00028A60 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00028B70 /* FirebaseDatabase-dummy.m */, - 46EB2E00028B50 /* FirebaseDatabase.debug.xcconfig */, - 46EB2E00028B60 /* FirebaseDatabase.release.xcconfig */, + 46EB2E00028A90 /* FirebaseDatabase-dummy.m */, + 46EB2E00028A70 /* FirebaseDatabase.debug.xcconfig */, + 46EB2E00028A80 /* FirebaseDatabase.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseDatabase"; sourceTree = ""; }; - 46EB2E00029C00 /* Support Files */ = { + 46EB2E00029B20 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00029C30 /* FirebaseFirestore-dummy.m */, - 46EB2E00029C10 /* FirebaseFirestore.debug.xcconfig */, - 46EB2E00029C20 /* FirebaseFirestore.release.xcconfig */, + 46EB2E00029B50 /* FirebaseFirestore-dummy.m */, + 46EB2E00029B30 /* FirebaseFirestore.debug.xcconfig */, + 46EB2E00029B40 /* FirebaseFirestore.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseFirestore"; sourceTree = ""; }; - 46EB2E0002A000 /* Support Files */ = { + 46EB2E00029F20 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002A030 /* FirebaseInstallations-dummy.m */, - 46EB2E0002A010 /* FirebaseInstallations.debug.xcconfig */, - 46EB2E0002A020 /* FirebaseInstallations.release.xcconfig */, + 46EB2E00029F50 /* FirebaseInstallations-dummy.m */, + 46EB2E00029F30 /* FirebaseInstallations.debug.xcconfig */, + 46EB2E00029F40 /* FirebaseInstallations.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - 46EB2E0002A630 /* Support Files */ = { + 46EB2E0002A550 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002A660 /* FirebaseMessaging-dummy.m */, - 46EB2E0002A640 /* FirebaseMessaging.debug.xcconfig */, - 46EB2E0002A650 /* FirebaseMessaging.release.xcconfig */, + 46EB2E0002A580 /* FirebaseMessaging-dummy.m */, + 46EB2E0002A560 /* FirebaseMessaging.debug.xcconfig */, + 46EB2E0002A570 /* FirebaseMessaging.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseMessaging"; sourceTree = ""; }; - 46EB2E0002A9E0 /* Support Files */ = { + 46EB2E0002A900 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002AA10 /* FirebaseRemoteConfig-dummy.m */, - 46EB2E0002A9F0 /* FirebaseRemoteConfig.debug.xcconfig */, - 46EB2E0002AA00 /* FirebaseRemoteConfig.release.xcconfig */, + 46EB2E0002A930 /* FirebaseRemoteConfig-dummy.m */, + 46EB2E0002A910 /* FirebaseRemoteConfig.debug.xcconfig */, + 46EB2E0002A920 /* FirebaseRemoteConfig.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FirebaseRemoteConfig"; sourceTree = ""; }; - 46EB2E0002AD10 /* Support Files */ = { + 46EB2E0002AC30 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002AD50 /* Flipper-dummy.m */, - 46EB2E0002AD40 /* Flipper-prefix.pch */, - 46EB2E0002AD20 /* Flipper.debug.xcconfig */, - 46EB2E0002AD30 /* Flipper.release.xcconfig */, + 46EB2E0002AC70 /* Flipper-dummy.m */, + 46EB2E0002AC60 /* Flipper-prefix.pch */, + 46EB2E0002AC40 /* Flipper.debug.xcconfig */, + 46EB2E0002AC50 /* Flipper.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper"; sourceTree = ""; }; - 46EB2E0002AE20 /* Support Files */ = { + 46EB2E0002AD40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002AE60 /* Flipper-Boost-iOSX-dummy.m */, - 46EB2E0002AE50 /* Flipper-Boost-iOSX-prefix.pch */, - 46EB2E0002AE30 /* Flipper-Boost-iOSX.debug.xcconfig */, - 46EB2E0002AE40 /* Flipper-Boost-iOSX.release.xcconfig */, + 46EB2E0002AD80 /* Flipper-Boost-iOSX-dummy.m */, + 46EB2E0002AD70 /* Flipper-Boost-iOSX-prefix.pch */, + 46EB2E0002AD50 /* Flipper-Boost-iOSX.debug.xcconfig */, + 46EB2E0002AD60 /* Flipper-Boost-iOSX.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-Boost-iOSX"; sourceTree = ""; }; - 46EB2E0002B020 /* Support Files */ = { + 46EB2E0002AF40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002B060 /* Flipper-DoubleConversion-dummy.m */, - 46EB2E0002B050 /* Flipper-DoubleConversion-prefix.pch */, - 46EB2E0002B030 /* Flipper-DoubleConversion.debug.xcconfig */, - 46EB2E0002B040 /* Flipper-DoubleConversion.release.xcconfig */, + 46EB2E0002AF80 /* Flipper-DoubleConversion-dummy.m */, + 46EB2E0002AF70 /* Flipper-DoubleConversion-prefix.pch */, + 46EB2E0002AF50 /* Flipper-DoubleConversion.debug.xcconfig */, + 46EB2E0002AF60 /* Flipper-DoubleConversion.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - 46EB2E0002B1D0 /* Support Files */ = { + 46EB2E0002B0F0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002B210 /* Flipper-Fmt-dummy.m */, - 46EB2E0002B200 /* Flipper-Fmt-prefix.pch */, - 46EB2E0002B1E0 /* Flipper-Fmt.debug.xcconfig */, - 46EB2E0002B1F0 /* Flipper-Fmt.release.xcconfig */, + 46EB2E0002B130 /* Flipper-Fmt-dummy.m */, + 46EB2E0002B120 /* Flipper-Fmt-prefix.pch */, + 46EB2E0002B100 /* Flipper-Fmt.debug.xcconfig */, + 46EB2E0002B110 /* Flipper-Fmt.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-Fmt"; sourceTree = ""; }; - 46EB2E0002E8A0 /* Support Files */ = { + 46EB2E0002E7C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002E8E0 /* Flipper-Folly-dummy.m */, - 46EB2E0002E8D0 /* Flipper-Folly-prefix.pch */, - 46EB2E0002E8B0 /* Flipper-Folly.debug.xcconfig */, - 46EB2E0002E8C0 /* Flipper-Folly.release.xcconfig */, + 46EB2E0002E800 /* Flipper-Folly-dummy.m */, + 46EB2E0002E7F0 /* Flipper-Folly-prefix.pch */, + 46EB2E0002E7D0 /* Flipper-Folly.debug.xcconfig */, + 46EB2E0002E7E0 /* Flipper-Folly.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; - 46EB2E0002E940 /* Support Files */ = { + 46EB2E0002E860 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002E950 /* Flipper-Glog-xcframeworks.sh */, - 46EB2E0002E960 /* Flipper-Glog.debug.xcconfig */, - 46EB2E0002E970 /* Flipper-Glog.release.xcconfig */, + 46EB2E0002E870 /* Flipper-Glog-xcframeworks.sh */, + 46EB2E0002E880 /* Flipper-Glog.debug.xcconfig */, + 46EB2E0002E890 /* Flipper-Glog.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; - 46EB2E0002EA80 /* Support Files */ = { + 46EB2E0002E9A0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002EAC0 /* Flipper-PeerTalk-dummy.m */, - 46EB2E0002EAB0 /* Flipper-PeerTalk-prefix.pch */, - 46EB2E0002EA90 /* Flipper-PeerTalk.debug.xcconfig */, - 46EB2E0002EAA0 /* Flipper-PeerTalk.release.xcconfig */, + 46EB2E0002E9E0 /* Flipper-PeerTalk-dummy.m */, + 46EB2E0002E9D0 /* Flipper-PeerTalk-prefix.pch */, + 46EB2E0002E9B0 /* Flipper-PeerTalk.debug.xcconfig */, + 46EB2E0002E9C0 /* Flipper-PeerTalk.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - 46EB2E0002F530 /* Support Files */ = { + 46EB2E0002F450 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002F570 /* Flipper-RSocket-dummy.m */, - 46EB2E0002F560 /* Flipper-RSocket-prefix.pch */, - 46EB2E0002F540 /* Flipper-RSocket.debug.xcconfig */, - 46EB2E0002F550 /* Flipper-RSocket.release.xcconfig */, + 46EB2E0002F490 /* Flipper-RSocket-dummy.m */, + 46EB2E0002F480 /* Flipper-RSocket-prefix.pch */, + 46EB2E0002F460 /* Flipper-RSocket.debug.xcconfig */, + 46EB2E0002F470 /* Flipper-RSocket.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Flipper-RSocket"; sourceTree = ""; }; - 46EB2E0002FC90 /* Support Files */ = { + 46EB2E0002FBB0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002FCC0 /* FlipperKit.modulemap */, - 46EB2E0002FD00 /* FlipperKit-dummy.m */, - 46EB2E0002FCF0 /* FlipperKit-prefix.pch */, - 46EB2E0002FCD0 /* FlipperKit-umbrella.h */, - 46EB2E0002FCA0 /* FlipperKit.debug.xcconfig */, - 46EB2E0002FCB0 /* FlipperKit.release.xcconfig */, + 46EB2E0002FBE0 /* FlipperKit.modulemap */, + 46EB2E0002FC20 /* FlipperKit-dummy.m */, + 46EB2E0002FC10 /* FlipperKit-prefix.pch */, + 46EB2E0002FBF0 /* FlipperKit-umbrella.h */, + 46EB2E0002FBC0 /* FlipperKit.debug.xcconfig */, + 46EB2E0002FBD0 /* FlipperKit.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - 46EB2E0002FE20 /* Support Files */ = { + 46EB2E0002FD40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002FE50 /* GTMSessionFetcher-dummy.m */, - 46EB2E0002FE30 /* GTMSessionFetcher.debug.xcconfig */, - 46EB2E0002FE40 /* GTMSessionFetcher.release.xcconfig */, + 46EB2E0002FD70 /* GTMSessionFetcher-dummy.m */, + 46EB2E0002FD50 /* GTMSessionFetcher.debug.xcconfig */, + 46EB2E0002FD60 /* GTMSessionFetcher.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 46EB2E0002FEB0 /* Support Files */ = { + 46EB2E0002FDD0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0002FEC0 /* GoogleAppMeasurement-xcframeworks.sh */, - 46EB2E0002FED0 /* GoogleAppMeasurement.debug.xcconfig */, - 46EB2E0002FEE0 /* GoogleAppMeasurement.release.xcconfig */, + 46EB2E0002FDE0 /* GoogleAppMeasurement-xcframeworks.sh */, + 46EB2E0002FDF0 /* GoogleAppMeasurement.debug.xcconfig */, + 46EB2E0002FE00 /* GoogleAppMeasurement.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 46EB2E00030310 /* Support Files */ = { + 46EB2E00030230 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00030340 /* GoogleDataTransport-dummy.m */, - 46EB2E00030320 /* GoogleDataTransport.debug.xcconfig */, - 46EB2E00030330 /* GoogleDataTransport.release.xcconfig */, + 46EB2E00030260 /* GoogleDataTransport-dummy.m */, + 46EB2E00030240 /* GoogleDataTransport.debug.xcconfig */, + 46EB2E00030250 /* GoogleDataTransport.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 46EB2E00030860 /* Support Files */ = { + 46EB2E00030780 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00030890 /* GoogleUtilities.modulemap */, - 46EB2E000308C0 /* GoogleUtilities-dummy.m */, - 46EB2E000308A0 /* GoogleUtilities-umbrella.h */, - 46EB2E00030870 /* GoogleUtilities.debug.xcconfig */, - 46EB2E00030880 /* GoogleUtilities.release.xcconfig */, + 46EB2E000307B0 /* GoogleUtilities.modulemap */, + 46EB2E000307E0 /* GoogleUtilities-dummy.m */, + 46EB2E000307C0 /* GoogleUtilities-umbrella.h */, + 46EB2E00030790 /* GoogleUtilities.debug.xcconfig */, + 46EB2E000307A0 /* GoogleUtilities.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 46EB2E00030F10 /* Support Files */ = { + 46EB2E00030CA0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00030F50 /* JWT-dummy.m */, - 46EB2E00030F40 /* JWT-prefix.pch */, - 46EB2E00030F20 /* JWT.debug.xcconfig */, - 46EB2E00030F30 /* JWT.release.xcconfig */, + 46EB2E00030CE0 /* JWT-dummy.m */, + 46EB2E00030CD0 /* JWT-prefix.pch */, + 46EB2E00030CB0 /* JWT.debug.xcconfig */, + 46EB2E00030CC0 /* JWT.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/JWT"; sourceTree = ""; }; - 46EB2E000312E0 /* Support Files */ = { + 46EB2E00031070 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00031320 /* Libuv-gRPC-dummy.m */, - 46EB2E00031310 /* Libuv-gRPC-prefix.pch */, - 46EB2E000312F0 /* Libuv-gRPC.debug.xcconfig */, - 46EB2E00031300 /* Libuv-gRPC.release.xcconfig */, + 46EB2E000310B0 /* Libuv-gRPC-dummy.m */, + 46EB2E000310A0 /* Libuv-gRPC-prefix.pch */, + 46EB2E00031080 /* Libuv-gRPC.debug.xcconfig */, + 46EB2E00031090 /* Libuv-gRPC.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Libuv-gRPC"; sourceTree = ""; }; - 46EB2E00031380 /* Support Files */ = { + 46EB2E00031110 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00031390 /* OpenSSL-Universal-xcframeworks.sh */, - 46EB2E000313A0 /* OpenSSL-Universal.debug.xcconfig */, - 46EB2E000313B0 /* OpenSSL-Universal.release.xcconfig */, + 46EB2E00031120 /* OpenSSL-Universal-xcframeworks.sh */, + 46EB2E00031130 /* OpenSSL-Universal.debug.xcconfig */, + 46EB2E00031140 /* OpenSSL-Universal.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - 46EB2E000316C0 /* Support Files */ = { + 46EB2E00031450 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000316F0 /* PromisesObjC.modulemap */, - 46EB2E00031720 /* PromisesObjC-dummy.m */, - 46EB2E00031700 /* PromisesObjC-umbrella.h */, - 46EB2E000316D0 /* PromisesObjC.debug.xcconfig */, - 46EB2E000316E0 /* PromisesObjC.release.xcconfig */, + 46EB2E00031480 /* PromisesObjC.modulemap */, + 46EB2E000314B0 /* PromisesObjC-dummy.m */, + 46EB2E00031490 /* PromisesObjC-umbrella.h */, + 46EB2E00031460 /* PromisesObjC.debug.xcconfig */, + 46EB2E00031470 /* PromisesObjC.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 46EB2E00034390 /* Support Files */ = { + 46EB2E00034120 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000343C0 /* RCT-Folly.modulemap */, - 46EB2E00034400 /* RCT-Folly-dummy.m */, - 46EB2E000343F0 /* RCT-Folly-prefix.pch */, - 46EB2E000343D0 /* RCT-Folly-umbrella.h */, - 46EB2E000343A0 /* RCT-Folly.debug.xcconfig */, - 46EB2E000343B0 /* RCT-Folly.release.xcconfig */, + 46EB2E00034150 /* RCT-Folly.modulemap */, + 46EB2E00034190 /* RCT-Folly-dummy.m */, + 46EB2E00034180 /* RCT-Folly-prefix.pch */, + 46EB2E00034160 /* RCT-Folly-umbrella.h */, + 46EB2E00034130 /* RCT-Folly.debug.xcconfig */, + 46EB2E00034140 /* RCT-Folly.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/RCT-Folly"; sourceTree = ""; }; - 46EB2E00034460 /* Support Files */ = { + 46EB2E000341F0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034470 /* RCTRequired.debug.xcconfig */, - 46EB2E00034480 /* RCTRequired.release.xcconfig */, + 46EB2E00034200 /* RCTRequired.debug.xcconfig */, + 46EB2E00034210 /* RCTRequired.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 46EB2E00034550 /* Support Files */ = { + 46EB2E000342E0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034580 /* RCTTypeSafety.modulemap */, - 46EB2E000345C0 /* RCTTypeSafety-dummy.m */, - 46EB2E000345B0 /* RCTTypeSafety-prefix.pch */, - 46EB2E00034590 /* RCTTypeSafety-umbrella.h */, - 46EB2E00034560 /* RCTTypeSafety.debug.xcconfig */, - 46EB2E00034570 /* RCTTypeSafety.release.xcconfig */, + 46EB2E00034310 /* RCTTypeSafety.modulemap */, + 46EB2E00034350 /* RCTTypeSafety-dummy.m */, + 46EB2E00034340 /* RCTTypeSafety-prefix.pch */, + 46EB2E00034320 /* RCTTypeSafety-umbrella.h */, + 46EB2E000342F0 /* RCTTypeSafety.debug.xcconfig */, + 46EB2E00034300 /* RCTTypeSafety.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 46EB2E00034690 /* Support Files */ = { + 46EB2E00034420 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000346D0 /* RNCAsyncStorage-dummy.m */, - 46EB2E000346C0 /* RNCAsyncStorage-prefix.pch */, - 46EB2E000346A0 /* RNCAsyncStorage.debug.xcconfig */, - 46EB2E000346B0 /* RNCAsyncStorage.release.xcconfig */, + 46EB2E00034460 /* RNCAsyncStorage-dummy.m */, + 46EB2E00034450 /* RNCAsyncStorage-prefix.pch */, + 46EB2E00034430 /* RNCAsyncStorage.debug.xcconfig */, + 46EB2E00034440 /* RNCAsyncStorage.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; - 46EB2E000347B0 /* Support Files */ = { + 46EB2E00034540 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000347F0 /* RNCMaskedView-dummy.m */, - 46EB2E000347E0 /* RNCMaskedView-prefix.pch */, - 46EB2E000347C0 /* RNCMaskedView.debug.xcconfig */, - 46EB2E000347D0 /* RNCMaskedView.release.xcconfig */, + 46EB2E00034580 /* RNCMaskedView-dummy.m */, + 46EB2E00034570 /* RNCMaskedView-prefix.pch */, + 46EB2E00034550 /* RNCMaskedView.debug.xcconfig */, + 46EB2E00034560 /* RNCMaskedView.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; - 46EB2E000348F0 /* Support Files */ = { + 46EB2E00034680 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034930 /* RNCPicker-dummy.m */, - 46EB2E00034920 /* RNCPicker-prefix.pch */, - 46EB2E00034900 /* RNCPicker.debug.xcconfig */, - 46EB2E00034910 /* RNCPicker.release.xcconfig */, + 46EB2E000346C0 /* RNCPicker-dummy.m */, + 46EB2E000346B0 /* RNCPicker-prefix.pch */, + 46EB2E00034690 /* RNCPicker.debug.xcconfig */, + 46EB2E000346A0 /* RNCPicker.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNCPicker"; sourceTree = ""; }; - 46EB2E00034A30 /* Support Files */ = { + 46EB2E000347C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034A70 /* RNDeviceInfo-dummy.m */, - 46EB2E00034A60 /* RNDeviceInfo-prefix.pch */, - 46EB2E00034A40 /* RNDeviceInfo.debug.xcconfig */, - 46EB2E00034A50 /* RNDeviceInfo.release.xcconfig */, + 46EB2E00034800 /* RNDeviceInfo-dummy.m */, + 46EB2E000347F0 /* RNDeviceInfo-prefix.pch */, + 46EB2E000347D0 /* RNDeviceInfo.debug.xcconfig */, + 46EB2E000347E0 /* RNDeviceInfo.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 46EB2E00034B30 /* Support Files */ = { + 46EB2E000348C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034B70 /* RNFBAnalytics-dummy.m */, - 46EB2E00034B60 /* RNFBAnalytics-prefix.pch */, - 46EB2E00034B40 /* RNFBAnalytics.debug.xcconfig */, - 46EB2E00034B50 /* RNFBAnalytics.release.xcconfig */, + 46EB2E00034900 /* RNFBAnalytics-dummy.m */, + 46EB2E000348F0 /* RNFBAnalytics-prefix.pch */, + 46EB2E000348D0 /* RNFBAnalytics.debug.xcconfig */, + 46EB2E000348E0 /* RNFBAnalytics.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; sourceTree = ""; }; - 46EB2E00034D50 /* Support Files */ = { + 46EB2E00034AE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034D90 /* RNFBApp-dummy.m */, - 46EB2E00034D80 /* RNFBApp-prefix.pch */, - 46EB2E00034D60 /* RNFBApp.debug.xcconfig */, - 46EB2E00034D70 /* RNFBApp.release.xcconfig */, + 46EB2E00034B20 /* RNFBApp-dummy.m */, + 46EB2E00034B10 /* RNFBApp-prefix.pch */, + 46EB2E00034AF0 /* RNFBApp.debug.xcconfig */, + 46EB2E00034B00 /* RNFBApp.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBApp"; sourceTree = ""; }; - 46EB2E00034E50 /* Support Files */ = { + 46EB2E00034BE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034E90 /* RNFBAuth-dummy.m */, - 46EB2E00034E80 /* RNFBAuth-prefix.pch */, - 46EB2E00034E60 /* RNFBAuth.debug.xcconfig */, - 46EB2E00034E70 /* RNFBAuth.release.xcconfig */, + 46EB2E00034C20 /* RNFBAuth-dummy.m */, + 46EB2E00034C10 /* RNFBAuth-prefix.pch */, + 46EB2E00034BF0 /* RNFBAuth.debug.xcconfig */, + 46EB2E00034C00 /* RNFBAuth.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBAuth"; sourceTree = ""; }; - 46EB2E00034F90 /* Support Files */ = { + 46EB2E00034D20 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00034FD0 /* RNFBCrashlytics-dummy.m */, - 46EB2E00034FC0 /* RNFBCrashlytics-prefix.pch */, - 46EB2E00034FA0 /* RNFBCrashlytics.debug.xcconfig */, - 46EB2E00034FB0 /* RNFBCrashlytics.release.xcconfig */, + 46EB2E00034D60 /* RNFBCrashlytics-dummy.m */, + 46EB2E00034D50 /* RNFBCrashlytics-prefix.pch */, + 46EB2E00034D30 /* RNFBCrashlytics.debug.xcconfig */, + 46EB2E00034D40 /* RNFBCrashlytics.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; sourceTree = ""; }; - 46EB2E00035150 /* Support Files */ = { + 46EB2E00034EE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035190 /* RNFBDatabase-dummy.m */, - 46EB2E00035180 /* RNFBDatabase-prefix.pch */, - 46EB2E00035160 /* RNFBDatabase.debug.xcconfig */, - 46EB2E00035170 /* RNFBDatabase.release.xcconfig */, + 46EB2E00034F20 /* RNFBDatabase-dummy.m */, + 46EB2E00034F10 /* RNFBDatabase-prefix.pch */, + 46EB2E00034EF0 /* RNFBDatabase.debug.xcconfig */, + 46EB2E00034F00 /* RNFBDatabase.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBDatabase"; sourceTree = ""; }; - 46EB2E00035330 /* Support Files */ = { + 46EB2E000350C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035370 /* RNFBFirestore-dummy.m */, - 46EB2E00035360 /* RNFBFirestore-prefix.pch */, - 46EB2E00035340 /* RNFBFirestore.debug.xcconfig */, - 46EB2E00035350 /* RNFBFirestore.release.xcconfig */, + 46EB2E00035100 /* RNFBFirestore-dummy.m */, + 46EB2E000350F0 /* RNFBFirestore-prefix.pch */, + 46EB2E000350D0 /* RNFBFirestore.debug.xcconfig */, + 46EB2E000350E0 /* RNFBFirestore.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBFirestore"; sourceTree = ""; }; - 46EB2E000354D0 /* Support Files */ = { + 46EB2E00035260 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035510 /* RNFBMessaging-dummy.m */, - 46EB2E00035500 /* RNFBMessaging-prefix.pch */, - 46EB2E000354E0 /* RNFBMessaging.debug.xcconfig */, - 46EB2E000354F0 /* RNFBMessaging.release.xcconfig */, + 46EB2E000352A0 /* RNFBMessaging-dummy.m */, + 46EB2E00035290 /* RNFBMessaging-prefix.pch */, + 46EB2E00035270 /* RNFBMessaging.debug.xcconfig */, + 46EB2E00035280 /* RNFBMessaging.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBMessaging"; sourceTree = ""; }; - 46EB2E000355D0 /* Support Files */ = { + 46EB2E00035360 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035610 /* RNFBRemoteConfig-dummy.m */, - 46EB2E00035600 /* RNFBRemoteConfig-prefix.pch */, - 46EB2E000355E0 /* RNFBRemoteConfig.debug.xcconfig */, - 46EB2E000355F0 /* RNFBRemoteConfig.release.xcconfig */, + 46EB2E000353A0 /* RNFBRemoteConfig-dummy.m */, + 46EB2E00035390 /* RNFBRemoteConfig-prefix.pch */, + 46EB2E00035370 /* RNFBRemoteConfig.debug.xcconfig */, + 46EB2E00035380 /* RNFBRemoteConfig.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/RNFBRemoteConfig"; sourceTree = ""; }; - 46EB2E00035730 /* Support Files */ = { + 46EB2E000354C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035770 /* RNFastImage-dummy.m */, - 46EB2E00035760 /* RNFastImage-prefix.pch */, - 46EB2E00035740 /* RNFastImage.debug.xcconfig */, - 46EB2E00035750 /* RNFastImage.release.xcconfig */, + 46EB2E00035500 /* RNFastImage-dummy.m */, + 46EB2E000354F0 /* RNFastImage-prefix.pch */, + 46EB2E000354D0 /* RNFastImage.debug.xcconfig */, + 46EB2E000354E0 /* RNFastImage.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 46EB2E00035AF0 /* Support Files */ = { + 46EB2E00035880 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035B30 /* RNGestureHandler-dummy.m */, - 46EB2E00035B20 /* RNGestureHandler-prefix.pch */, - 46EB2E00035B00 /* RNGestureHandler.debug.xcconfig */, - 46EB2E00035B10 /* RNGestureHandler.release.xcconfig */, + 46EB2E000358C0 /* RNGestureHandler-dummy.m */, + 46EB2E000358B0 /* RNGestureHandler-prefix.pch */, + 46EB2E00035890 /* RNGestureHandler.debug.xcconfig */, + 46EB2E000358A0 /* RNGestureHandler.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - 46EB2E00035BF0 /* Support Files */ = { + 46EB2E00035980 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00035C30 /* RNRate-dummy.m */, - 46EB2E00035C20 /* RNRate-prefix.pch */, - 46EB2E00035C00 /* RNRate.debug.xcconfig */, - 46EB2E00035C10 /* RNRate.release.xcconfig */, + 46EB2E000359C0 /* RNRate-dummy.m */, + 46EB2E000359B0 /* RNRate-prefix.pch */, + 46EB2E00035990 /* RNRate.debug.xcconfig */, + 46EB2E000359A0 /* RNRate.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNRate"; sourceTree = ""; }; - 46EB2E000364B0 /* Support Files */ = { + 46EB2E00036240 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000364F0 /* RNReanimated-dummy.m */, - 46EB2E000364E0 /* RNReanimated-prefix.pch */, - 46EB2E000364C0 /* RNReanimated.debug.xcconfig */, - 46EB2E000364D0 /* RNReanimated.release.xcconfig */, + 46EB2E00036280 /* RNReanimated-dummy.m */, + 46EB2E00036270 /* RNReanimated-prefix.pch */, + 46EB2E00036250 /* RNReanimated.debug.xcconfig */, + 46EB2E00036260 /* RNReanimated.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - 46EB2E00036DE0 /* Support Files */ = { + 46EB2E00036B70 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00036E20 /* RNSVG-dummy.m */, - 46EB2E00036E10 /* RNSVG-prefix.pch */, - 46EB2E00036DF0 /* RNSVG.debug.xcconfig */, - 46EB2E00036E00 /* RNSVG.release.xcconfig */, + 46EB2E00036BB0 /* RNSVG-dummy.m */, + 46EB2E00036BA0 /* RNSVG-prefix.pch */, + 46EB2E00036B80 /* RNSVG.debug.xcconfig */, + 46EB2E00036B90 /* RNSVG.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNSVG"; sourceTree = ""; }; - 46EB2E000370B0 /* Support Files */ = { + 46EB2E00036E40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000370F0 /* RNScreens-dummy.m */, - 46EB2E000370E0 /* RNScreens-prefix.pch */, - 46EB2E000370C0 /* RNScreens.debug.xcconfig */, - 46EB2E000370D0 /* RNScreens.release.xcconfig */, + 46EB2E00036E80 /* RNScreens-dummy.m */, + 46EB2E00036E70 /* RNScreens-prefix.pch */, + 46EB2E00036E50 /* RNScreens.debug.xcconfig */, + 46EB2E00036E60 /* RNScreens.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 46EB2E00037310 /* Support Files */ = { + 46EB2E000370A0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00037350 /* RNShare-dummy.m */, - 46EB2E00037340 /* RNShare-prefix.pch */, - 46EB2E00037320 /* RNShare.debug.xcconfig */, - 46EB2E00037330 /* RNShare.release.xcconfig */, + 46EB2E000370E0 /* RNShare-dummy.m */, + 46EB2E000370D0 /* RNShare-prefix.pch */, + 46EB2E000370B0 /* RNShare.debug.xcconfig */, + 46EB2E000370C0 /* RNShare.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNShare"; sourceTree = ""; }; - 46EB2E00037410 /* Support Files */ = { + 46EB2E000371A0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00037450 /* RNVectorIcons-dummy.m */, - 46EB2E00037440 /* RNVectorIcons-prefix.pch */, - 46EB2E00037420 /* RNVectorIcons.debug.xcconfig */, - 46EB2E00037430 /* RNVectorIcons.release.xcconfig */, + 46EB2E000371E0 /* RNVectorIcons-dummy.m */, + 46EB2E000371D0 /* RNVectorIcons-prefix.pch */, + 46EB2E000371B0 /* RNVectorIcons.debug.xcconfig */, + 46EB2E000371C0 /* RNVectorIcons.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 46EB2E000374B0 /* Support Files */ = { + 46EB2E00037240 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000374C0 /* React.debug.xcconfig */, - 46EB2E000374D0 /* React.release.xcconfig */, + 46EB2E00037250 /* React.debug.xcconfig */, + 46EB2E00037260 /* React.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 46EB2E00037580 /* Support Files */ = { + 46EB2E00037310 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000375B0 /* React-Codegen.modulemap */, - 46EB2E000375F0 /* React-Codegen-dummy.m */, - 46EB2E000375E0 /* React-Codegen-prefix.pch */, - 46EB2E000375C0 /* React-Codegen-umbrella.h */, - 46EB2E00037590 /* React-Codegen.debug.xcconfig */, - 46EB2E000375A0 /* React-Codegen.release.xcconfig */, + 46EB2E00037340 /* React-Codegen.modulemap */, + 46EB2E00037380 /* React-Codegen-dummy.m */, + 46EB2E00037370 /* React-Codegen-prefix.pch */, + 46EB2E00037350 /* React-Codegen-umbrella.h */, + 46EB2E00037320 /* React-Codegen.debug.xcconfig */, + 46EB2E00037330 /* React-Codegen.release.xcconfig */, ); name = "Support Files"; path = "../../../Pods/Target Support Files/React-Codegen"; sourceTree = ""; }; - 46EB2E00037720 /* Support Files */ = { + 46EB2E000374B0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039060 /* React-Core.modulemap */, - 46EB2E000390A0 /* React-Core-dummy.m */, - 46EB2E00039090 /* React-Core-prefix.pch */, - 46EB2E00039070 /* React-Core-umbrella.h */, - 46EB2E00039040 /* React-Core.debug.xcconfig */, - 46EB2E00039050 /* React-Core.release.xcconfig */, - 46EB2E00037730 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + 46EB2E00038DF0 /* React-Core.modulemap */, + 46EB2E00038E30 /* React-Core-dummy.m */, + 46EB2E00038E20 /* React-Core-prefix.pch */, + 46EB2E00038E00 /* React-Core-umbrella.h */, + 46EB2E00038DD0 /* React-Core.debug.xcconfig */, + 46EB2E00038DE0 /* React-Core.release.xcconfig */, + 46EB2E000374C0 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - 46EB2E00039310 /* Support Files */ = { + 46EB2E000390A0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039350 /* React-CoreModules-dummy.m */, - 46EB2E00039340 /* React-CoreModules-prefix.pch */, - 46EB2E00039320 /* React-CoreModules.debug.xcconfig */, - 46EB2E00039330 /* React-CoreModules.release.xcconfig */, + 46EB2E000390E0 /* React-CoreModules-dummy.m */, + 46EB2E000390D0 /* React-CoreModules-prefix.pch */, + 46EB2E000390B0 /* React-CoreModules.debug.xcconfig */, + 46EB2E000390C0 /* React-CoreModules.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - 46EB2E000393B0 /* Support Files */ = { + 46EB2E00039140 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000393C0 /* React-RCTActionSheet.debug.xcconfig */, - 46EB2E000393D0 /* React-RCTActionSheet.release.xcconfig */, + 46EB2E00039150 /* React-RCTActionSheet.debug.xcconfig */, + 46EB2E00039160 /* React-RCTActionSheet.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 46EB2E00039750 /* Support Files */ = { + 46EB2E000394E0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039790 /* React-RCTAnimation-dummy.m */, - 46EB2E00039780 /* React-RCTAnimation-prefix.pch */, - 46EB2E00039760 /* React-RCTAnimation.debug.xcconfig */, - 46EB2E00039770 /* React-RCTAnimation.release.xcconfig */, + 46EB2E00039520 /* React-RCTAnimation-dummy.m */, + 46EB2E00039510 /* React-RCTAnimation-prefix.pch */, + 46EB2E000394F0 /* React-RCTAnimation.debug.xcconfig */, + 46EB2E00039500 /* React-RCTAnimation.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 46EB2E000398B0 /* Support Files */ = { + 46EB2E00039640 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000398F0 /* React-RCTBlob-dummy.m */, - 46EB2E000398E0 /* React-RCTBlob-prefix.pch */, - 46EB2E000398C0 /* React-RCTBlob.debug.xcconfig */, - 46EB2E000398D0 /* React-RCTBlob.release.xcconfig */, + 46EB2E00039680 /* React-RCTBlob-dummy.m */, + 46EB2E00039670 /* React-RCTBlob-prefix.pch */, + 46EB2E00039650 /* React-RCTBlob.debug.xcconfig */, + 46EB2E00039660 /* React-RCTBlob.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 46EB2E00039AA0 /* Support Files */ = { + 46EB2E00039830 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039AE0 /* React-RCTImage-dummy.m */, - 46EB2E00039AD0 /* React-RCTImage-prefix.pch */, - 46EB2E00039AB0 /* React-RCTImage.debug.xcconfig */, - 46EB2E00039AC0 /* React-RCTImage.release.xcconfig */, + 46EB2E00039870 /* React-RCTImage-dummy.m */, + 46EB2E00039860 /* React-RCTImage-prefix.pch */, + 46EB2E00039840 /* React-RCTImage.debug.xcconfig */, + 46EB2E00039850 /* React-RCTImage.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 46EB2E00039BA0 /* Support Files */ = { + 46EB2E00039930 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039BE0 /* React-RCTLinking-dummy.m */, - 46EB2E00039BD0 /* React-RCTLinking-prefix.pch */, - 46EB2E00039BB0 /* React-RCTLinking.debug.xcconfig */, - 46EB2E00039BC0 /* React-RCTLinking.release.xcconfig */, + 46EB2E00039970 /* React-RCTLinking-dummy.m */, + 46EB2E00039960 /* React-RCTLinking-prefix.pch */, + 46EB2E00039940 /* React-RCTLinking.debug.xcconfig */, + 46EB2E00039950 /* React-RCTLinking.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 46EB2E00039CE0 /* Support Files */ = { + 46EB2E00039A70 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039D20 /* React-RCTNetwork-dummy.m */, - 46EB2E00039D10 /* React-RCTNetwork-prefix.pch */, - 46EB2E00039CF0 /* React-RCTNetwork.debug.xcconfig */, - 46EB2E00039D00 /* React-RCTNetwork.release.xcconfig */, + 46EB2E00039AB0 /* React-RCTNetwork-dummy.m */, + 46EB2E00039AA0 /* React-RCTNetwork-prefix.pch */, + 46EB2E00039A80 /* React-RCTNetwork.debug.xcconfig */, + 46EB2E00039A90 /* React-RCTNetwork.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - 46EB2E00039DE0 /* Support Files */ = { + 46EB2E00039B70 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00039E20 /* React-RCTSettings-dummy.m */, - 46EB2E00039E10 /* React-RCTSettings-prefix.pch */, - 46EB2E00039DF0 /* React-RCTSettings.debug.xcconfig */, - 46EB2E00039E00 /* React-RCTSettings.release.xcconfig */, + 46EB2E00039BB0 /* React-RCTSettings-dummy.m */, + 46EB2E00039BA0 /* React-RCTSettings-prefix.pch */, + 46EB2E00039B80 /* React-RCTSettings.debug.xcconfig */, + 46EB2E00039B90 /* React-RCTSettings.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 46EB2E0003A250 /* Support Files */ = { + 46EB2E00039FE0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003A290 /* React-RCTText-dummy.m */, - 46EB2E0003A280 /* React-RCTText-prefix.pch */, - 46EB2E0003A260 /* React-RCTText.debug.xcconfig */, - 46EB2E0003A270 /* React-RCTText.release.xcconfig */, + 46EB2E0003A020 /* React-RCTText-dummy.m */, + 46EB2E0003A010 /* React-RCTText-prefix.pch */, + 46EB2E00039FF0 /* React-RCTText.debug.xcconfig */, + 46EB2E0003A000 /* React-RCTText.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 46EB2E0003A350 /* Support Files */ = { + 46EB2E0003A0E0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003A390 /* React-RCTVibration-dummy.m */, - 46EB2E0003A380 /* React-RCTVibration-prefix.pch */, - 46EB2E0003A360 /* React-RCTVibration.debug.xcconfig */, - 46EB2E0003A370 /* React-RCTVibration.release.xcconfig */, + 46EB2E0003A120 /* React-RCTVibration-dummy.m */, + 46EB2E0003A110 /* React-RCTVibration-prefix.pch */, + 46EB2E0003A0F0 /* React-RCTVibration.debug.xcconfig */, + 46EB2E0003A100 /* React-RCTVibration.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 46EB2E0003A530 /* Support Files */ = { + 46EB2E0003A2C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003A570 /* React-bridging-dummy.m */, - 46EB2E0003A560 /* React-bridging-prefix.pch */, - 46EB2E0003A540 /* React-bridging.debug.xcconfig */, - 46EB2E0003A550 /* React-bridging.release.xcconfig */, + 46EB2E0003A300 /* React-bridging-dummy.m */, + 46EB2E0003A2F0 /* React-bridging-prefix.pch */, + 46EB2E0003A2D0 /* React-bridging.debug.xcconfig */, + 46EB2E0003A2E0 /* React-bridging.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/React-bridging"; sourceTree = ""; }; - 46EB2E0003A5D0 /* Support Files */ = { + 46EB2E0003A360 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003A5E0 /* React-callinvoker.debug.xcconfig */, - 46EB2E0003A5F0 /* React-callinvoker.release.xcconfig */, + 46EB2E0003A370 /* React-callinvoker.debug.xcconfig */, + 46EB2E0003A380 /* React-callinvoker.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; sourceTree = ""; }; - 46EB2E0003A890 /* Support Files */ = { + 46EB2E0003A620 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003A8D0 /* React-cxxreact-dummy.m */, - 46EB2E0003A8C0 /* React-cxxreact-prefix.pch */, - 46EB2E0003A8A0 /* React-cxxreact.debug.xcconfig */, - 46EB2E0003A8B0 /* React-cxxreact.release.xcconfig */, + 46EB2E0003A660 /* React-cxxreact-dummy.m */, + 46EB2E0003A650 /* React-cxxreact-prefix.pch */, + 46EB2E0003A630 /* React-cxxreact.debug.xcconfig */, + 46EB2E0003A640 /* React-cxxreact.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - 46EB2E0003AB90 /* Support Files */ = { + 46EB2E0003A920 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003ABD0 /* React-hermes-dummy.m */, - 46EB2E0003ABC0 /* React-hermes-prefix.pch */, - 46EB2E0003ABA0 /* React-hermes.debug.xcconfig */, - 46EB2E0003ABB0 /* React-hermes.release.xcconfig */, + 46EB2E0003A960 /* React-hermes-dummy.m */, + 46EB2E0003A950 /* React-hermes-prefix.pch */, + 46EB2E0003A930 /* React-hermes.debug.xcconfig */, + 46EB2E0003A940 /* React-hermes.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-hermes"; sourceTree = ""; }; - 46EB2E0003AD40 /* Support Files */ = { + 46EB2E0003AAD0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003AD80 /* React-jsi-dummy.m */, - 46EB2E0003AD70 /* React-jsi-prefix.pch */, - 46EB2E0003AD50 /* React-jsi.debug.xcconfig */, - 46EB2E0003AD60 /* React-jsi.release.xcconfig */, + 46EB2E0003AB10 /* React-jsi-dummy.m */, + 46EB2E0003AB00 /* React-jsi-prefix.pch */, + 46EB2E0003AAE0 /* React-jsi.debug.xcconfig */, + 46EB2E0003AAF0 /* React-jsi.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 46EB2E0003AE60 /* Support Files */ = { + 46EB2E0003ABF0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003AEA0 /* React-jsiexecutor-dummy.m */, - 46EB2E0003AE90 /* React-jsiexecutor-prefix.pch */, - 46EB2E0003AE70 /* React-jsiexecutor.debug.xcconfig */, - 46EB2E0003AE80 /* React-jsiexecutor.release.xcconfig */, + 46EB2E0003AC30 /* React-jsiexecutor-dummy.m */, + 46EB2E0003AC20 /* React-jsiexecutor-prefix.pch */, + 46EB2E0003AC00 /* React-jsiexecutor.debug.xcconfig */, + 46EB2E0003AC10 /* React-jsiexecutor.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 46EB2E0003AF60 /* Support Files */ = { + 46EB2E0003ACF0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003AFA0 /* React-jsinspector-dummy.m */, - 46EB2E0003AF90 /* React-jsinspector-prefix.pch */, - 46EB2E0003AF70 /* React-jsinspector.debug.xcconfig */, - 46EB2E0003AF80 /* React-jsinspector.release.xcconfig */, + 46EB2E0003AD30 /* React-jsinspector-dummy.m */, + 46EB2E0003AD20 /* React-jsinspector-prefix.pch */, + 46EB2E0003AD00 /* React-jsinspector.debug.xcconfig */, + 46EB2E0003AD10 /* React-jsinspector.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 46EB2E0003B060 /* Support Files */ = { + 46EB2E0003ADF0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003B0A0 /* React-logger-dummy.m */, - 46EB2E0003B090 /* React-logger-prefix.pch */, - 46EB2E0003B070 /* React-logger.debug.xcconfig */, - 46EB2E0003B080 /* React-logger.release.xcconfig */, + 46EB2E0003AE30 /* React-logger-dummy.m */, + 46EB2E0003AE20 /* React-logger-prefix.pch */, + 46EB2E0003AE00 /* React-logger.debug.xcconfig */, + 46EB2E0003AE10 /* React-logger.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-logger"; sourceTree = ""; }; - 46EB2E0003B170 /* Support Files */ = { + 46EB2E0003AF00 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003B1B0 /* React-perflogger-dummy.m */, - 46EB2E0003B1A0 /* React-perflogger-prefix.pch */, - 46EB2E0003B180 /* React-perflogger.debug.xcconfig */, - 46EB2E0003B190 /* React-perflogger.release.xcconfig */, + 46EB2E0003AF40 /* React-perflogger-dummy.m */, + 46EB2E0003AF30 /* React-perflogger-prefix.pch */, + 46EB2E0003AF10 /* React-perflogger.debug.xcconfig */, + 46EB2E0003AF20 /* React-perflogger.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-perflogger"; sourceTree = ""; }; - 46EB2E0003B210 /* Support Files */ = { + 46EB2E0003AFA0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003B220 /* React-runtimeexecutor.debug.xcconfig */, - 46EB2E0003B230 /* React-runtimeexecutor.release.xcconfig */, + 46EB2E0003AFB0 /* React-runtimeexecutor.debug.xcconfig */, + 46EB2E0003AFC0 /* React-runtimeexecutor.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-runtimeexecutor"; sourceTree = ""; }; - 46EB2E0003B3D0 /* Support Files */ = { + 46EB2E0003B160 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003B400 /* ReactCommon.modulemap */, - 46EB2E0003B440 /* ReactCommon-dummy.m */, - 46EB2E0003B430 /* ReactCommon-prefix.pch */, - 46EB2E0003B410 /* ReactCommon-umbrella.h */, - 46EB2E0003B3E0 /* ReactCommon.debug.xcconfig */, - 46EB2E0003B3F0 /* ReactCommon.release.xcconfig */, + 46EB2E0003B190 /* ReactCommon.modulemap */, + 46EB2E0003B1D0 /* ReactCommon-dummy.m */, + 46EB2E0003B1C0 /* ReactCommon-prefix.pch */, + 46EB2E0003B1A0 /* ReactCommon-umbrella.h */, + 46EB2E0003B170 /* ReactCommon.debug.xcconfig */, + 46EB2E0003B180 /* ReactCommon.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 46EB2E0003BDC0 /* Support Files */ = { + 46EB2E0003BB50 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003BE00 /* SDWebImage-dummy.m */, - 46EB2E0003BDF0 /* SDWebImage-prefix.pch */, - 46EB2E0003BDD0 /* SDWebImage.debug.xcconfig */, - 46EB2E0003BDE0 /* SDWebImage.release.xcconfig */, + 46EB2E0003BB90 /* SDWebImage-dummy.m */, + 46EB2E0003BB80 /* SDWebImage-prefix.pch */, + 46EB2E0003BB60 /* SDWebImage.debug.xcconfig */, + 46EB2E0003BB70 /* SDWebImage.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 46EB2E0003BF10 /* Support Files */ = { + 46EB2E0003BCA0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003BF50 /* SDWebImageWebPCoder-dummy.m */, - 46EB2E0003BF40 /* SDWebImageWebPCoder-prefix.pch */, - 46EB2E0003BF20 /* SDWebImageWebPCoder.debug.xcconfig */, - 46EB2E0003BF30 /* SDWebImageWebPCoder.release.xcconfig */, + 46EB2E0003BCE0 /* SDWebImageWebPCoder-dummy.m */, + 46EB2E0003BCD0 /* SDWebImageWebPCoder-prefix.pch */, + 46EB2E0003BCB0 /* SDWebImageWebPCoder.debug.xcconfig */, + 46EB2E0003BCC0 /* SDWebImageWebPCoder.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 46EB2E0003C200 /* Support Files */ = { + 46EB2E0003BF90 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003C230 /* SSZipArchive.modulemap */, - 46EB2E0003C270 /* SSZipArchive-dummy.m */, - 46EB2E0003C260 /* SSZipArchive-prefix.pch */, - 46EB2E0003C240 /* SSZipArchive-umbrella.h */, - 46EB2E0003C210 /* SSZipArchive.debug.xcconfig */, - 46EB2E0003C220 /* SSZipArchive.release.xcconfig */, + 46EB2E0003BFC0 /* SSZipArchive.modulemap */, + 46EB2E0003C000 /* SSZipArchive-dummy.m */, + 46EB2E0003BFF0 /* SSZipArchive-prefix.pch */, + 46EB2E0003BFD0 /* SSZipArchive-umbrella.h */, + 46EB2E0003BFA0 /* SSZipArchive.debug.xcconfig */, + 46EB2E0003BFB0 /* SSZipArchive.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SSZipArchive"; sourceTree = ""; }; - 46EB2E0003C5A0 /* Support Files */ = { + 46EB2E0003C330 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003C5E0 /* SocketRocket-dummy.m */, - 46EB2E0003C5D0 /* SocketRocket-prefix.pch */, - 46EB2E0003C5B0 /* SocketRocket.debug.xcconfig */, - 46EB2E0003C5C0 /* SocketRocket.release.xcconfig */, + 46EB2E0003C370 /* SocketRocket-dummy.m */, + 46EB2E0003C360 /* SocketRocket-prefix.pch */, + 46EB2E0003C340 /* SocketRocket.debug.xcconfig */, + 46EB2E0003C350 /* SocketRocket.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SocketRocket"; sourceTree = ""; }; - 46EB2E0003C860 /* Support Files */ = { + 46EB2E0003C5F0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003C890 /* Yoga.modulemap */, - 46EB2E0003C8D0 /* Yoga-dummy.m */, - 46EB2E0003C8C0 /* Yoga-prefix.pch */, - 46EB2E0003C8A0 /* Yoga-umbrella.h */, - 46EB2E0003C870 /* Yoga.debug.xcconfig */, - 46EB2E0003C880 /* Yoga.release.xcconfig */, + 46EB2E0003C620 /* Yoga.modulemap */, + 46EB2E0003C660 /* Yoga-dummy.m */, + 46EB2E0003C650 /* Yoga-prefix.pch */, + 46EB2E0003C630 /* Yoga-umbrella.h */, + 46EB2E0003C600 /* Yoga.debug.xcconfig */, + 46EB2E0003C610 /* Yoga.release.xcconfig */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; - 46EB2E0003C9D0 /* Support Files */ = { + 46EB2E0003C760 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003CA00 /* YogaKit.modulemap */, - 46EB2E0003CA50 /* YogaKit-dummy.m */, - 46EB2E0003CA40 /* YogaKit-prefix.pch */, - 46EB2E0003CA10 /* YogaKit-umbrella.h */, - 46EB2E0003C9E0 /* YogaKit.debug.xcconfig */, - 46EB2E0003C9F0 /* YogaKit.release.xcconfig */, + 46EB2E0003C790 /* YogaKit.modulemap */, + 46EB2E0003C7E0 /* YogaKit-dummy.m */, + 46EB2E0003C7D0 /* YogaKit-prefix.pch */, + 46EB2E0003C7A0 /* YogaKit-umbrella.h */, + 46EB2E0003C770 /* YogaKit.debug.xcconfig */, + 46EB2E0003C780 /* YogaKit.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - 46EB2E0003DF10 /* Support Files */ = { + 46EB2E0003DCA0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003DF50 /* abseil-dummy.m */, - 46EB2E0003DF40 /* abseil-prefix.pch */, - 46EB2E0003DF20 /* abseil.debug.xcconfig */, - 46EB2E0003DF30 /* abseil.release.xcconfig */, + 46EB2E0003DCE0 /* abseil-dummy.m */, + 46EB2E0003DCD0 /* abseil-prefix.pch */, + 46EB2E0003DCB0 /* abseil.debug.xcconfig */, + 46EB2E0003DCC0 /* abseil.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/abseil"; sourceTree = ""; }; - 46EB2E0003DFB0 /* Support Files */ = { + 46EB2E0003DD40 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003DFC0 /* boost.debug.xcconfig */, - 46EB2E0003DFD0 /* boost.release.xcconfig */, + 46EB2E0003DD50 /* boost.debug.xcconfig */, + 46EB2E0003DD60 /* boost.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/boost"; sourceTree = ""; }; - 46EB2E0003E130 /* Support Files */ = { + 46EB2E0003DEC0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E0003E170 /* fmt-dummy.m */, - 46EB2E0003E160 /* fmt-prefix.pch */, - 46EB2E0003E140 /* fmt.debug.xcconfig */, - 46EB2E0003E150 /* fmt.release.xcconfig */, + 46EB2E0003DF00 /* fmt-dummy.m */, + 46EB2E0003DEF0 /* fmt-prefix.pch */, + 46EB2E0003DED0 /* fmt.debug.xcconfig */, + 46EB2E0003DEE0 /* fmt.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/fmt"; sourceTree = ""; }; - 46EB2E0003E2A0 /* Support Files */ = { + 46EB2E0003E030 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00041700 /* gRPC-C++-dummy.m */, - 46EB2E000416F0 /* gRPC-C++-prefix.pch */, - 46EB2E000416D0 /* gRPC-C++.debug.xcconfig */, - 46EB2E000416E0 /* gRPC-C++.release.xcconfig */, - 46EB2E0003E2B0 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, + 46EB2E00041490 /* gRPC-C++-dummy.m */, + 46EB2E00041480 /* gRPC-C++-prefix.pch */, + 46EB2E00041460 /* gRPC-C++.debug.xcconfig */, + 46EB2E00041470 /* gRPC-C++.release.xcconfig */, + 46EB2E0003E040 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/gRPC-C++"; sourceTree = ""; }; - 46EB2E00046EF0 /* Support Files */ = { + 46EB2E00046C80 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00046F30 /* gRPC-Core-dummy.m */, - 46EB2E00046F20 /* gRPC-Core-prefix.pch */, - 46EB2E00046F00 /* gRPC-Core.debug.xcconfig */, - 46EB2E00046F10 /* gRPC-Core.release.xcconfig */, + 46EB2E00046CC0 /* gRPC-Core-dummy.m */, + 46EB2E00046CB0 /* gRPC-Core-prefix.pch */, + 46EB2E00046C90 /* gRPC-Core.debug.xcconfig */, + 46EB2E00046CA0 /* gRPC-Core.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/gRPC-Core"; sourceTree = ""; }; - 46EB2E00047090 /* Support Files */ = { + 46EB2E00046E20 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E000470D0 /* glog-dummy.m */, - 46EB2E000470C0 /* glog-prefix.pch */, - 46EB2E000470A0 /* glog.debug.xcconfig */, - 46EB2E000470B0 /* glog.release.xcconfig */, + 46EB2E00046E60 /* glog-dummy.m */, + 46EB2E00046E50 /* glog-prefix.pch */, + 46EB2E00046E30 /* glog.debug.xcconfig */, + 46EB2E00046E40 /* glog.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/glog"; sourceTree = ""; }; - 46EB2E00047130 /* Support Files */ = { + 46EB2E00046EC0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00047140 /* hermes-engine-xcframeworks.sh */, - 46EB2E00047150 /* hermes-engine.debug.xcconfig */, - 46EB2E00047160 /* hermes-engine.release.xcconfig */, + 46EB2E00046ED0 /* hermes-engine-xcframeworks.sh */, + 46EB2E00046EE0 /* hermes-engine.debug.xcconfig */, + 46EB2E00046EF0 /* hermes-engine.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/hermes-engine"; sourceTree = ""; }; - 46EB2E000477E0 /* Support Files */ = { + 46EB2E00047570 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00047820 /* leveldb-library-dummy.m */, - 46EB2E00047810 /* leveldb-library-prefix.pch */, - 46EB2E000477F0 /* leveldb-library.debug.xcconfig */, - 46EB2E00047800 /* leveldb-library.release.xcconfig */, + 46EB2E000475B0 /* leveldb-library-dummy.m */, + 46EB2E000475A0 /* leveldb-library-prefix.pch */, + 46EB2E00047580 /* leveldb-library.debug.xcconfig */, + 46EB2E00047590 /* leveldb-library.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/leveldb-library"; sourceTree = ""; }; - 46EB2E00047BF0 /* Support Files */ = { + 46EB2E00047980 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00047C30 /* libevent-dummy.m */, - 46EB2E00047C20 /* libevent-prefix.pch */, - 46EB2E00047C00 /* libevent.debug.xcconfig */, - 46EB2E00047C10 /* libevent.release.xcconfig */, + 46EB2E000479C0 /* libevent-dummy.m */, + 46EB2E000479B0 /* libevent-prefix.pch */, + 46EB2E00047990 /* libevent.debug.xcconfig */, + 46EB2E000479A0 /* libevent.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/libevent"; sourceTree = ""; }; - 46EB2E000486C0 /* Support Files */ = { + 46EB2E00048450 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048700 /* libwebp-dummy.m */, - 46EB2E000486F0 /* libwebp-prefix.pch */, - 46EB2E000486D0 /* libwebp.debug.xcconfig */, - 46EB2E000486E0 /* libwebp.release.xcconfig */, + 46EB2E00048490 /* libwebp-dummy.m */, + 46EB2E00048480 /* libwebp-prefix.pch */, + 46EB2E00048460 /* libwebp.debug.xcconfig */, + 46EB2E00048470 /* libwebp.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 46EB2E00048810 /* Support Files */ = { + 46EB2E000485A0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048850 /* nanopb-dummy.m */, - 46EB2E00048840 /* nanopb-prefix.pch */, - 46EB2E00048820 /* nanopb.debug.xcconfig */, - 46EB2E00048830 /* nanopb.release.xcconfig */, + 46EB2E000485E0 /* nanopb-dummy.m */, + 46EB2E000485D0 /* nanopb-prefix.pch */, + 46EB2E000485B0 /* nanopb.debug.xcconfig */, + 46EB2E000485C0 /* nanopb.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 46EB2E00048930 /* Support Files */ = { + 46EB2E000486C0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048970 /* react-native-config-dummy.m */, - 46EB2E00048960 /* react-native-config-prefix.pch */, - 46EB2E00048940 /* react-native-config.debug.xcconfig */, - 46EB2E00048950 /* react-native-config.release.xcconfig */, + 46EB2E00048700 /* react-native-config-dummy.m */, + 46EB2E000486F0 /* react-native-config-prefix.pch */, + 46EB2E000486D0 /* react-native-config.debug.xcconfig */, + 46EB2E000486E0 /* react-native-config.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-config"; sourceTree = ""; }; - 46EB2E00048A70 /* Support Files */ = { + 46EB2E00048800 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048AB0 /* react-native-flipper-dummy.m */, - 46EB2E00048AA0 /* react-native-flipper-prefix.pch */, - 46EB2E00048A80 /* react-native-flipper.debug.xcconfig */, - 46EB2E00048A90 /* react-native-flipper.release.xcconfig */, + 46EB2E00048840 /* react-native-flipper-dummy.m */, + 46EB2E00048830 /* react-native-flipper-prefix.pch */, + 46EB2E00048810 /* react-native-flipper.debug.xcconfig */, + 46EB2E00048820 /* react-native-flipper.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-flipper"; sourceTree = ""; }; - 46EB2E00048BF0 /* Support Files */ = { + 46EB2E00048980 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048C30 /* react-native-pdf-dummy.m */, - 46EB2E00048C20 /* react-native-pdf-prefix.pch */, - 46EB2E00048C00 /* react-native-pdf.debug.xcconfig */, - 46EB2E00048C10 /* react-native-pdf.release.xcconfig */, + 46EB2E000489C0 /* react-native-pdf-dummy.m */, + 46EB2E000489B0 /* react-native-pdf-prefix.pch */, + 46EB2E00048990 /* react-native-pdf.debug.xcconfig */, + 46EB2E000489A0 /* react-native-pdf.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-pdf"; sourceTree = ""; }; - 46EB2E00048E10 /* Support Files */ = { + 46EB2E00048BA0 /* Support Files */ = { isa = PBXGroup; children = ( - 46EB2E00048E50 /* react-native-safe-area-context-dummy.m */, - 46EB2E00048E40 /* react-native-safe-area-context-prefix.pch */, - 46EB2E00048E20 /* react-native-safe-area-context.debug.xcconfig */, - 46EB2E00048E30 /* react-native-safe-area-context.release.xcconfig */, + 46EB2E00048BE0 /* react-native-safe-area-context-dummy.m */, + 46EB2E00048BD0 /* react-native-safe-area-context-prefix.pch */, + 46EB2E00048BB0 /* react-native-safe-area-context.debug.xcconfig */, + 46EB2E00048BC0 /* react-native-safe-area-context.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; - 46EB2E00048EF0 /* Pods-Hurt */ = { + 46EB2E00048CE0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 46EB2E00048D20 /* react-native-webview-dummy.m */, + 46EB2E00048D10 /* react-native-webview-prefix.pch */, + 46EB2E00048CF0 /* react-native-webview.debug.xcconfig */, + 46EB2E00048D00 /* react-native-webview.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + 46EB2E00048DC0 /* Pods-Hurt */ = { isa = PBXGroup; children = ( - 46EB2E00048F20 /* Pods-Hurt.modulemap */, - 46EB2E00048F80 /* Pods-Hurt-acknowledgements.markdown */, - 46EB2E00048F70 /* Pods-Hurt-acknowledgements.plist */, - 46EB2E00048F90 /* Pods-Hurt-dummy.m */, - 46EB2E00048F50 /* Pods-Hurt-frameworks.sh */, - 46EB2E00048F60 /* Pods-Hurt-resources.sh */, - 46EB2E00048F30 /* Pods-Hurt-umbrella.h */, - 46EB2E00048F10 /* Pods-Hurt.debug.xcconfig */, - 46EB2E00048F00 /* Pods-Hurt.release.xcconfig */, + 46EB2E00048DF0 /* Pods-Hurt.modulemap */, + 46EB2E00048E50 /* Pods-Hurt-acknowledgements.markdown */, + 46EB2E00048E40 /* Pods-Hurt-acknowledgements.plist */, + 46EB2E00048E60 /* Pods-Hurt-dummy.m */, + 46EB2E00048E20 /* Pods-Hurt-frameworks.sh */, + 46EB2E00048E30 /* Pods-Hurt-resources.sh */, + 46EB2E00048E00 /* Pods-Hurt-umbrella.h */, + 46EB2E00048DE0 /* Pods-Hurt.debug.xcconfig */, + 46EB2E00048DD0 /* Pods-Hurt.release.xcconfig */, ); name = "Pods-Hurt"; path = "Target Support Files/Pods-Hurt"; @@ -34521,5749 +34610,5746 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 46EB2E00022B30 /* Headers */ = { + 46EB2E00022A50 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00022B90 /* BVLinearGradient.h in Headers */, - 46EB2E00022BA0 /* BVLinearGradientLayer.h in Headers */, - 46EB2E00022BB0 /* BVLinearGradientManager.h in Headers */, + 46EB2E00022AB0 /* BVLinearGradient.h in Headers */, + 46EB2E00022AC0 /* BVLinearGradientLayer.h in Headers */, + 46EB2E00022AD0 /* BVLinearGradientManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022C70 /* Headers */ = { + 46EB2E00022B90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00022CB0 /* MF_Base64Additions.h in Headers */, + 46EB2E00022BD0 /* MF_Base64Additions.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022D70 /* Headers */ = { + 46EB2E00022C90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024630 /* aead.h in Headers */, - 46EB2E00024640 /* aes.h in Headers */, - 46EB2E00024650 /* arm_arch.h in Headers */, - 46EB2E00024660 /* asn1.h in Headers */, - 46EB2E00024680 /* asn1_mac.h in Headers */, - 46EB2E00024670 /* asn1t.h in Headers */, - 46EB2E00024690 /* base.h in Headers */, - 46EB2E000246A0 /* base64.h in Headers */, - 46EB2E000246B0 /* bio.h in Headers */, - 46EB2E000246C0 /* blake2.h in Headers */, - 46EB2E000246D0 /* blowfish.h in Headers */, - 46EB2E000246E0 /* bn.h in Headers */, - 46EB2E000246F0 /* boringssl_prefix_symbols.h in Headers */, - 46EB2E00024700 /* buf.h in Headers */, - 46EB2E00024710 /* buffer.h in Headers */, - 46EB2E00024720 /* bytestring.h in Headers */, - 46EB2E00024730 /* cast.h in Headers */, - 46EB2E00024740 /* chacha.h in Headers */, - 46EB2E00024310 /* charmap.h in Headers */, - 46EB2E00024750 /* cipher.h in Headers */, - 46EB2E00024760 /* cmac.h in Headers */, - 46EB2E00024770 /* conf.h in Headers */, - 46EB2E00024370 /* conf_def.h in Headers */, - 46EB2E00024780 /* cpu.h in Headers */, - 46EB2E000242F0 /* cpu-arm-linux.h in Headers */, - 46EB2E00024790 /* crypto.h in Headers */, - 46EB2E000247A0 /* curve25519.h in Headers */, - 46EB2E000245F0 /* curve25519_32.h in Headers */, - 46EB2E00024600 /* curve25519_64.h in Headers */, - 46EB2E00024390 /* curve25519_tables.h in Headers */, - 46EB2E00024430 /* delocate.h in Headers */, - 46EB2E000247B0 /* des.h in Headers */, - 46EB2E000247C0 /* dh.h in Headers */, - 46EB2E000247D0 /* digest.h in Headers */, - 46EB2E000247E0 /* dsa.h in Headers */, - 46EB2E000247F0 /* dtls1.h in Headers */, - 46EB2E00024890 /* e_os2.h in Headers */, - 46EB2E00024800 /* ec.h in Headers */, - 46EB2E00024830 /* ec_key.h in Headers */, - 46EB2E00024810 /* ecdh.h in Headers */, - 46EB2E00024820 /* ecdsa.h in Headers */, - 46EB2E00024840 /* engine.h in Headers */, - 46EB2E00024850 /* err.h in Headers */, - 46EB2E00024860 /* evp.h in Headers */, - 46EB2E00024870 /* evp_errors.h in Headers */, - 46EB2E00024880 /* ex_data.h in Headers */, - 46EB2E000245D0 /* ext_dat.h in Headers */, - 46EB2E000244E0 /* fork_detect.h in Headers */, - 46EB2E000244F0 /* getrandom_fillin.h in Headers */, - 46EB2E000248A0 /* hkdf.h in Headers */, - 46EB2E000248B0 /* hmac.h in Headers */, - 46EB2E000248C0 /* hpke.h in Headers */, - 46EB2E000248D0 /* hrss.h in Headers */, + 46EB2E00024550 /* aead.h in Headers */, + 46EB2E00024560 /* aes.h in Headers */, + 46EB2E00024570 /* arm_arch.h in Headers */, + 46EB2E00024580 /* asn1.h in Headers */, + 46EB2E000245A0 /* asn1_mac.h in Headers */, + 46EB2E00024590 /* asn1t.h in Headers */, + 46EB2E000245B0 /* base.h in Headers */, + 46EB2E000245C0 /* base64.h in Headers */, + 46EB2E000245D0 /* bio.h in Headers */, + 46EB2E000245E0 /* blake2.h in Headers */, + 46EB2E000245F0 /* blowfish.h in Headers */, + 46EB2E00024600 /* bn.h in Headers */, + 46EB2E00024610 /* boringssl_prefix_symbols.h in Headers */, + 46EB2E00024620 /* buf.h in Headers */, + 46EB2E00024630 /* buffer.h in Headers */, + 46EB2E00024640 /* bytestring.h in Headers */, + 46EB2E00024650 /* cast.h in Headers */, + 46EB2E00024660 /* chacha.h in Headers */, + 46EB2E00024230 /* charmap.h in Headers */, + 46EB2E00024670 /* cipher.h in Headers */, + 46EB2E00024680 /* cmac.h in Headers */, + 46EB2E00024690 /* conf.h in Headers */, + 46EB2E00024290 /* conf_def.h in Headers */, + 46EB2E000246A0 /* cpu.h in Headers */, + 46EB2E00024210 /* cpu-arm-linux.h in Headers */, + 46EB2E000246B0 /* crypto.h in Headers */, + 46EB2E000246C0 /* curve25519.h in Headers */, + 46EB2E00024510 /* curve25519_32.h in Headers */, + 46EB2E00024520 /* curve25519_64.h in Headers */, + 46EB2E000242B0 /* curve25519_tables.h in Headers */, + 46EB2E00024350 /* delocate.h in Headers */, + 46EB2E000246D0 /* des.h in Headers */, + 46EB2E000246E0 /* dh.h in Headers */, + 46EB2E000246F0 /* digest.h in Headers */, + 46EB2E00024700 /* dsa.h in Headers */, + 46EB2E00024710 /* dtls1.h in Headers */, + 46EB2E000247B0 /* e_os2.h in Headers */, + 46EB2E00024720 /* ec.h in Headers */, + 46EB2E00024750 /* ec_key.h in Headers */, + 46EB2E00024730 /* ecdh.h in Headers */, + 46EB2E00024740 /* ecdsa.h in Headers */, + 46EB2E00024760 /* engine.h in Headers */, + 46EB2E00024770 /* err.h in Headers */, + 46EB2E00024780 /* evp.h in Headers */, + 46EB2E00024790 /* evp_errors.h in Headers */, + 46EB2E000247A0 /* ex_data.h in Headers */, + 46EB2E000244F0 /* ext_dat.h in Headers */, + 46EB2E00024400 /* fork_detect.h in Headers */, + 46EB2E00024410 /* getrandom_fillin.h in Headers */, + 46EB2E000247C0 /* hkdf.h in Headers */, + 46EB2E000247D0 /* hmac.h in Headers */, + 46EB2E000247E0 /* hpke.h in Headers */, + 46EB2E000247F0 /* hrss.h in Headers */, + 46EB2E00024240 /* internal.h in Headers */, + 46EB2E00024250 /* internal.h in Headers */, + 46EB2E00024260 /* internal.h in Headers */, + 46EB2E00024270 /* internal.h in Headers */, + 46EB2E00024280 /* internal.h in Headers */, + 46EB2E000242A0 /* internal.h in Headers */, + 46EB2E000242C0 /* internal.h in Headers */, + 46EB2E000242D0 /* internal.h in Headers */, + 46EB2E000242E0 /* internal.h in Headers */, + 46EB2E000242F0 /* internal.h in Headers */, + 46EB2E00024300 /* internal.h in Headers */, + 46EB2E00024310 /* internal.h in Headers */, 46EB2E00024320 /* internal.h in Headers */, - 46EB2E00024330 /* internal.h in Headers */, 46EB2E00024340 /* internal.h in Headers */, - 46EB2E00024350 /* internal.h in Headers */, 46EB2E00024360 /* internal.h in Headers */, - 46EB2E00024380 /* internal.h in Headers */, - 46EB2E000243A0 /* internal.h in Headers */, - 46EB2E000243B0 /* internal.h in Headers */, - 46EB2E000243C0 /* internal.h in Headers */, + 46EB2E00024370 /* internal.h in Headers */, + 46EB2E00024390 /* internal.h in Headers */, 46EB2E000243D0 /* internal.h in Headers */, 46EB2E000243E0 /* internal.h in Headers */, 46EB2E000243F0 /* internal.h in Headers */, - 46EB2E00024400 /* internal.h in Headers */, 46EB2E00024420 /* internal.h in Headers */, + 46EB2E00024430 /* internal.h in Headers */, 46EB2E00024440 /* internal.h in Headers */, 46EB2E00024450 /* internal.h in Headers */, + 46EB2E00024460 /* internal.h in Headers */, + 46EB2E00024220 /* internal.h in Headers */, 46EB2E00024470 /* internal.h in Headers */, + 46EB2E00024490 /* internal.h in Headers */, + 46EB2E000244A0 /* internal.h in Headers */, 46EB2E000244B0 /* internal.h in Headers */, 46EB2E000244C0 /* internal.h in Headers */, 46EB2E000244D0 /* internal.h in Headers */, + 46EB2E000244E0 /* internal.h in Headers */, 46EB2E00024500 /* internal.h in Headers */, - 46EB2E00024510 /* internal.h in Headers */, - 46EB2E00024520 /* internal.h in Headers */, - 46EB2E00024530 /* internal.h in Headers */, - 46EB2E00024540 /* internal.h in Headers */, - 46EB2E00024300 /* internal.h in Headers */, - 46EB2E00024550 /* internal.h in Headers */, - 46EB2E00024570 /* internal.h in Headers */, - 46EB2E00024580 /* internal.h in Headers */, - 46EB2E00024590 /* internal.h in Headers */, - 46EB2E000245A0 /* internal.h in Headers */, - 46EB2E000245B0 /* internal.h in Headers */, - 46EB2E000245C0 /* internal.h in Headers */, - 46EB2E000245E0 /* internal.h in Headers */, - 46EB2E000242E0 /* internal.h in Headers */, - 46EB2E000248E0 /* is_boringssl.h in Headers */, - 46EB2E000248F0 /* lhash.h in Headers */, - 46EB2E00024460 /* md32_common.h in Headers */, - 46EB2E00024900 /* md4.h in Headers */, - 46EB2E00024910 /* md5.h in Headers */, - 46EB2E00024920 /* mem.h in Headers */, - 46EB2E00024930 /* nid.h in Headers */, - 46EB2E00024940 /* obj.h in Headers */, - 46EB2E00024560 /* obj_dat.h in Headers */, - 46EB2E00024960 /* obj_mac.h in Headers */, - 46EB2E00024950 /* objects.h in Headers */, - 46EB2E00024970 /* opensslconf.h in Headers */, - 46EB2E00024980 /* opensslv.h in Headers */, - 46EB2E00024990 /* ossl_typ.h in Headers */, - 46EB2E00024490 /* p256-x86_64.h in Headers */, - 46EB2E00024480 /* p256-x86_64-table.h in Headers */, - 46EB2E00024610 /* p256_32.h in Headers */, - 46EB2E00024620 /* p256_64.h in Headers */, - 46EB2E000244A0 /* p256_table.h in Headers */, - 46EB2E000249A0 /* pem.h in Headers */, - 46EB2E000249B0 /* pkcs12.h in Headers */, - 46EB2E000249C0 /* pkcs7.h in Headers */, - 46EB2E000249D0 /* pkcs8.h in Headers */, - 46EB2E000249E0 /* poly1305.h in Headers */, - 46EB2E000249F0 /* pool.h in Headers */, - 46EB2E00024A00 /* rand.h in Headers */, - 46EB2E00024A10 /* rc4.h in Headers */, - 46EB2E00024A20 /* ripemd.h in Headers */, - 46EB2E00024A30 /* rsa.h in Headers */, - 46EB2E00024410 /* rsaz_exp.h in Headers */, - 46EB2E00024A40 /* safestack.h in Headers */, - 46EB2E00024A50 /* sha.h in Headers */, - 46EB2E00024A60 /* siphash.h in Headers */, - 46EB2E00024A70 /* span.h in Headers */, - 46EB2E00024A80 /* srtp.h in Headers */, - 46EB2E00024A90 /* ssl.h in Headers */, - 46EB2E00024AA0 /* ssl3.h in Headers */, - 46EB2E00024AB0 /* stack.h in Headers */, - 46EB2E00024AC0 /* thread.h in Headers */, - 46EB2E00024AD0 /* tls1.h in Headers */, - 46EB2E00024AE0 /* trust_token.h in Headers */, - 46EB2E00024AF0 /* type_check.h in Headers */, - 46EB2E00024B00 /* umbrella.h in Headers */, - 46EB2E00024B10 /* x509.h in Headers */, - 46EB2E00024B30 /* x509_vfy.h in Headers */, - 46EB2E00024B20 /* x509v3.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00024BF0 /* Headers */ = { + 46EB2E00024200 /* internal.h in Headers */, + 46EB2E00024800 /* is_boringssl.h in Headers */, + 46EB2E00024810 /* lhash.h in Headers */, + 46EB2E00024380 /* md32_common.h in Headers */, + 46EB2E00024820 /* md4.h in Headers */, + 46EB2E00024830 /* md5.h in Headers */, + 46EB2E00024840 /* mem.h in Headers */, + 46EB2E00024850 /* nid.h in Headers */, + 46EB2E00024860 /* obj.h in Headers */, + 46EB2E00024480 /* obj_dat.h in Headers */, + 46EB2E00024880 /* obj_mac.h in Headers */, + 46EB2E00024870 /* objects.h in Headers */, + 46EB2E00024890 /* opensslconf.h in Headers */, + 46EB2E000248A0 /* opensslv.h in Headers */, + 46EB2E000248B0 /* ossl_typ.h in Headers */, + 46EB2E000243B0 /* p256-x86_64.h in Headers */, + 46EB2E000243A0 /* p256-x86_64-table.h in Headers */, + 46EB2E00024530 /* p256_32.h in Headers */, + 46EB2E00024540 /* p256_64.h in Headers */, + 46EB2E000243C0 /* p256_table.h in Headers */, + 46EB2E000248C0 /* pem.h in Headers */, + 46EB2E000248D0 /* pkcs12.h in Headers */, + 46EB2E000248E0 /* pkcs7.h in Headers */, + 46EB2E000248F0 /* pkcs8.h in Headers */, + 46EB2E00024900 /* poly1305.h in Headers */, + 46EB2E00024910 /* pool.h in Headers */, + 46EB2E00024920 /* rand.h in Headers */, + 46EB2E00024930 /* rc4.h in Headers */, + 46EB2E00024940 /* ripemd.h in Headers */, + 46EB2E00024950 /* rsa.h in Headers */, + 46EB2E00024330 /* rsaz_exp.h in Headers */, + 46EB2E00024960 /* safestack.h in Headers */, + 46EB2E00024970 /* sha.h in Headers */, + 46EB2E00024980 /* siphash.h in Headers */, + 46EB2E00024990 /* span.h in Headers */, + 46EB2E000249A0 /* srtp.h in Headers */, + 46EB2E000249B0 /* ssl.h in Headers */, + 46EB2E000249C0 /* ssl3.h in Headers */, + 46EB2E000249D0 /* stack.h in Headers */, + 46EB2E000249E0 /* thread.h in Headers */, + 46EB2E000249F0 /* tls1.h in Headers */, + 46EB2E00024A00 /* trust_token.h in Headers */, + 46EB2E00024A10 /* type_check.h in Headers */, + 46EB2E00024A20 /* umbrella.h in Headers */, + 46EB2E00024A30 /* x509.h in Headers */, + 46EB2E00024A50 /* x509_vfy.h in Headers */, + 46EB2E00024A40 /* x509v3.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00024B10 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024C40 /* GCDAsyncSocket.h in Headers */, - 46EB2E00024C50 /* GCDAsyncUdpSocket.h in Headers */, + 46EB2E00024B60 /* GCDAsyncSocket.h in Headers */, + 46EB2E00024B70 /* GCDAsyncUdpSocket.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024D10 /* Headers */ = { + 46EB2E00024C30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024DE0 /* CodePush.h in Headers */, + 46EB2E00024D00 /* CodePush.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024EA0 /* Headers */ = { + 46EB2E00024DC0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024F60 /* bignum.h in Headers */, - 46EB2E00024F50 /* bignum-dtoa.h in Headers */, - 46EB2E00024F70 /* cached-powers.h in Headers */, - 46EB2E00024F80 /* diy-fp.h in Headers */, - 46EB2E00024F90 /* double-conversion.h in Headers */, - 46EB2E00024FA0 /* fast-dtoa.h in Headers */, - 46EB2E00024FB0 /* fixed-dtoa.h in Headers */, - 46EB2E00024FC0 /* ieee.h in Headers */, - 46EB2E00024FD0 /* strtod.h in Headers */, - 46EB2E00024FE0 /* utils.h in Headers */, + 46EB2E00024E80 /* bignum.h in Headers */, + 46EB2E00024E70 /* bignum-dtoa.h in Headers */, + 46EB2E00024E90 /* cached-powers.h in Headers */, + 46EB2E00024EA0 /* diy-fp.h in Headers */, + 46EB2E00024EB0 /* double-conversion.h in Headers */, + 46EB2E00024EC0 /* fast-dtoa.h in Headers */, + 46EB2E00024ED0 /* fixed-dtoa.h in Headers */, + 46EB2E00024EE0 /* ieee.h in Headers */, + 46EB2E00024EF0 /* strtod.h in Headers */, + 46EB2E00024F00 /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000251F0 /* Headers */ = { + 46EB2E00025110 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00025260 /* ABTConditionalUserPropertyController.h in Headers */, - 46EB2E00025270 /* ABTConstants.h in Headers */, - 46EB2E00025280 /* ABTExperimentPayload.h in Headers */, - 46EB2E000252D0 /* FIRAnalyticsInterop.h in Headers */, - 46EB2E000252E0 /* FIRAnalyticsInteropListener.h in Headers */, - 46EB2E00025310 /* FIRAppInternal.h in Headers */, - 46EB2E00025320 /* FIRComponent.h in Headers */, - 46EB2E00025330 /* FIRComponentContainer.h in Headers */, - 46EB2E00025340 /* FIRComponentType.h in Headers */, - 46EB2E00025350 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00025360 /* FIRDependency.h in Headers */, - 46EB2E000252A0 /* FirebaseABTesting.h in Headers */, - 46EB2E00025290 /* FirebaseABTestingInternal.h in Headers */, - 46EB2E00025370 /* FirebaseCoreInternal.h in Headers */, - 46EB2E000252B0 /* FIRExperimentController.h in Headers */, - 46EB2E00025380 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00025390 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E000252F0 /* FIRInteropEventNames.h in Headers */, - 46EB2E00025300 /* FIRInteropParameterNames.h in Headers */, - 46EB2E000253A0 /* FIRLibrary.h in Headers */, - 46EB2E000252C0 /* FIRLifecycleEvents.h in Headers */, - 46EB2E000253B0 /* FIRLogger.h in Headers */, - 46EB2E000253C0 /* FIROptionsInternal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000254F0 /* Headers */ = { + 46EB2E00025180 /* ABTConditionalUserPropertyController.h in Headers */, + 46EB2E00025190 /* ABTConstants.h in Headers */, + 46EB2E000251A0 /* ABTExperimentPayload.h in Headers */, + 46EB2E000251F0 /* FIRAnalyticsInterop.h in Headers */, + 46EB2E00025200 /* FIRAnalyticsInteropListener.h in Headers */, + 46EB2E00025230 /* FIRAppInternal.h in Headers */, + 46EB2E00025240 /* FIRComponent.h in Headers */, + 46EB2E00025250 /* FIRComponentContainer.h in Headers */, + 46EB2E00025260 /* FIRComponentType.h in Headers */, + 46EB2E00025270 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00025280 /* FIRDependency.h in Headers */, + 46EB2E000251C0 /* FirebaseABTesting.h in Headers */, + 46EB2E000251B0 /* FirebaseABTestingInternal.h in Headers */, + 46EB2E00025290 /* FirebaseCoreInternal.h in Headers */, + 46EB2E000251D0 /* FIRExperimentController.h in Headers */, + 46EB2E000252A0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E000252B0 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00025210 /* FIRInteropEventNames.h in Headers */, + 46EB2E00025220 /* FIRInteropParameterNames.h in Headers */, + 46EB2E000252C0 /* FIRLibrary.h in Headers */, + 46EB2E000251E0 /* FIRLifecycleEvents.h in Headers */, + 46EB2E000252D0 /* FIRLogger.h in Headers */, + 46EB2E000252E0 /* FIROptionsInternal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00025410 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000260E0 /* FIRActionCodeSettings.h in Headers */, - 46EB2E000260F0 /* FIRAdditionalUserInfo.h in Headers */, - 46EB2E00026380 /* FIRAdditionalUserInfo_Internal.h in Headers */, - 46EB2E00026450 /* FIRAppInternal.h in Headers */, - 46EB2E00026100 /* FIRAuth.h in Headers */, - 46EB2E00025C50 /* FIRAuth_Internal.h in Headers */, - 46EB2E00026310 /* FIRAuthAPNSToken.h in Headers */, - 46EB2E00026320 /* FIRAuthAPNSTokenManager.h in Headers */, - 46EB2E00026110 /* FIRAuthAPNSTokenType.h in Headers */, - 46EB2E00026330 /* FIRAuthAppCredential.h in Headers */, - 46EB2E00026340 /* FIRAuthAppCredentialManager.h in Headers */, - 46EB2E00025D00 /* FIRAuthBackend.h in Headers */, - 46EB2E00025CF0 /* FIRAuthBackend+MultiFactor.h in Headers */, - 46EB2E00026120 /* FIRAuthCredential.h in Headers */, - 46EB2E00025C80 /* FIRAuthCredential_Internal.h in Headers */, - 46EB2E00026130 /* FIRAuthDataResult.h in Headers */, - 46EB2E00025BF0 /* FIRAuthDataResult_Internal.h in Headers */, - 46EB2E000263C0 /* FIRAuthDefaultUIDelegate.h in Headers */, - 46EB2E00025C00 /* FIRAuthDispatcher.h in Headers */, - 46EB2E00026140 /* FIRAuthErrors.h in Headers */, - 46EB2E000263D0 /* FIRAuthErrorUtils.h in Headers */, - 46EB2E000263E0 /* FIRAuthExceptionUtils.h in Headers */, - 46EB2E00025C10 /* FIRAuthGlobalWorkQueue.h in Headers */, - 46EB2E000263F0 /* FIRAuthInternalErrors.h in Headers */, - 46EB2E00026510 /* FIRAuthInterop.h in Headers */, - 46EB2E000262F0 /* FIRAuthKeychainServices.h in Headers */, - 46EB2E00026350 /* FIRAuthNotificationManager.h in Headers */, - 46EB2E00025C20 /* FIRAuthOperationType.h in Headers */, - 46EB2E00026010 /* FIRAuthProto.h in Headers */, - 46EB2E00026030 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */, - 46EB2E00026040 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */, - 46EB2E00026020 /* FIRAuthProtoMFAEnrollment.h in Headers */, - 46EB2E00026050 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */, - 46EB2E00026060 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */, - 46EB2E00025D10 /* FIRAuthRequestConfiguration.h in Headers */, - 46EB2E00025D20 /* FIRAuthRPCRequest.h in Headers */, - 46EB2E00025D30 /* FIRAuthRPCResponse.h in Headers */, - 46EB2E00025C30 /* FIRAuthSerialTaskQueue.h in Headers */, - 46EB2E00026150 /* FIRAuthSettings.h in Headers */, - 46EB2E00026360 /* FIRAuthStoredUserManager.h in Headers */, - 46EB2E00026160 /* FIRAuthTokenResult.h in Headers */, - 46EB2E00025C40 /* FIRAuthTokenResult_Internal.h in Headers */, - 46EB2E00026170 /* FIRAuthUIDelegate.h in Headers */, - 46EB2E00026400 /* FIRAuthURLPresenter.h in Headers */, - 46EB2E00026300 /* FIRAuthUserDefaults.h in Headers */, - 46EB2E00026410 /* FIRAuthWebUtils.h in Headers */, - 46EB2E00026420 /* FIRAuthWebView.h in Headers */, - 46EB2E00026430 /* FIRAuthWebViewController.h in Headers */, - 46EB2E00026460 /* FIRComponent.h in Headers */, - 46EB2E00026470 /* FIRComponentContainer.h in Headers */, - 46EB2E00026480 /* FIRComponentType.h in Headers */, - 46EB2E00026490 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00025D50 /* FIRCreateAuthURIRequest.h in Headers */, - 46EB2E00025D60 /* FIRCreateAuthURIResponse.h in Headers */, - 46EB2E00025D70 /* FIRDeleteAccountRequest.h in Headers */, - 46EB2E00025D80 /* FIRDeleteAccountResponse.h in Headers */, - 46EB2E000264A0 /* FIRDependency.h in Headers */, - 46EB2E00026180 /* FirebaseAuth.h in Headers */, - 46EB2E000264B0 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00026190 /* FIREmailAuthProvider.h in Headers */, - 46EB2E00025D90 /* FIREmailLinkSignInRequest.h in Headers */, - 46EB2E00025DA0 /* FIREmailLinkSignInResponse.h in Headers */, - 46EB2E00025C60 /* FIREmailPasswordAuthCredential.h in Headers */, - 46EB2E00025C70 /* FIRFacebookAuthCredential.h in Headers */, - 46EB2E000261A0 /* FIRFacebookAuthProvider.h in Headers */, - 46EB2E000261B0 /* FIRFederatedAuthProvider.h in Headers */, - 46EB2E00025F70 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */, - 46EB2E00025F80 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */, - 46EB2E00025FB0 /* FIRFinalizeMFASignInRequest.h in Headers */, - 46EB2E00025FC0 /* FIRFinalizeMFASignInResponse.h in Headers */, - 46EB2E00025C90 /* FIRGameCenterAuthCredential.h in Headers */, - 46EB2E000261C0 /* FIRGameCenterAuthProvider.h in Headers */, - 46EB2E00025DB0 /* FIRGetAccountInfoRequest.h in Headers */, - 46EB2E00025DC0 /* FIRGetAccountInfoResponse.h in Headers */, - 46EB2E00025DD0 /* FIRGetOOBConfirmationCodeRequest.h in Headers */, - 46EB2E00025DE0 /* FIRGetOOBConfirmationCodeResponse.h in Headers */, - 46EB2E00025DF0 /* FIRGetProjectConfigRequest.h in Headers */, - 46EB2E00025E00 /* FIRGetProjectConfigResponse.h in Headers */, - 46EB2E00025CA0 /* FIRGitHubAuthCredential.h in Headers */, - 46EB2E000261D0 /* FIRGitHubAuthProvider.h in Headers */, - 46EB2E00025CB0 /* FIRGoogleAuthCredential.h in Headers */, - 46EB2E000261E0 /* FIRGoogleAuthProvider.h in Headers */, - 46EB2E000264C0 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E000264D0 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00025D40 /* FIRIdentityToolkitRequest.h in Headers */, - 46EB2E000264E0 /* FIRLibrary.h in Headers */, - 46EB2E000264F0 /* FIRLogger.h in Headers */, - 46EB2E000261F0 /* FIRMultiFactor.h in Headers */, - 46EB2E00026070 /* FIRMultiFactor+Internal.h in Headers */, - 46EB2E00026200 /* FIRMultiFactorAssertion.h in Headers */, - 46EB2E00026080 /* FIRMultiFactorAssertion+Internal.h in Headers */, - 46EB2E00026210 /* FIRMultiFactorInfo.h in Headers */, - 46EB2E00026090 /* FIRMultiFactorInfo+Internal.h in Headers */, - 46EB2E00026220 /* FIRMultiFactorResolver.h in Headers */, - 46EB2E000260A0 /* FIRMultiFactorResolver+Internal.h in Headers */, - 46EB2E00026230 /* FIRMultiFactorSession.h in Headers */, - 46EB2E000260B0 /* FIRMultiFactorSession+Internal.h in Headers */, - 46EB2E00026240 /* FIROAuthCredential.h in Headers */, - 46EB2E00025CC0 /* FIROAuthCredential_Internal.h in Headers */, - 46EB2E00026250 /* FIROAuthProvider.h in Headers */, - 46EB2E00026500 /* FIROptionsInternal.h in Headers */, - 46EB2E00026260 /* FIRPhoneAuthCredential.h in Headers */, - 46EB2E00025CD0 /* FIRPhoneAuthCredential_Internal.h in Headers */, - 46EB2E00026270 /* FIRPhoneAuthProvider.h in Headers */, - 46EB2E00026280 /* FIRPhoneMultiFactorAssertion.h in Headers */, - 46EB2E000260C0 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */, - 46EB2E00026290 /* FIRPhoneMultiFactorGenerator.h in Headers */, - 46EB2E000262A0 /* FIRPhoneMultiFactorInfo.h in Headers */, - 46EB2E000260D0 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */, - 46EB2E00025E10 /* FIRResetPasswordRequest.h in Headers */, - 46EB2E00025E20 /* FIRResetPasswordResponse.h in Headers */, - 46EB2E00025E30 /* FIRSecureTokenRequest.h in Headers */, - 46EB2E00025E40 /* FIRSecureTokenResponse.h in Headers */, - 46EB2E00026370 /* FIRSecureTokenService.h in Headers */, - 46EB2E00025E50 /* FIRSendVerificationCodeRequest.h in Headers */, - 46EB2E00025E60 /* FIRSendVerificationCodeResponse.h in Headers */, - 46EB2E00025E70 /* FIRSetAccountInfoRequest.h in Headers */, - 46EB2E00025E80 /* FIRSetAccountInfoResponse.h in Headers */, - 46EB2E00025E90 /* FIRSignInWithGameCenterRequest.h in Headers */, - 46EB2E00025EA0 /* FIRSignInWithGameCenterResponse.h in Headers */, - 46EB2E00025EB0 /* FIRSignUpNewUserRequest.h in Headers */, - 46EB2E00025EC0 /* FIRSignUpNewUserResponse.h in Headers */, - 46EB2E00025F90 /* FIRStartMFAEnrollmentRequest.h in Headers */, - 46EB2E00025FA0 /* FIRStartMFAEnrollmentResponse.h in Headers */, - 46EB2E00025FD0 /* FIRStartMFASignInRequest.h in Headers */, - 46EB2E00025FE0 /* FIRStartMFASignInResponse.h in Headers */, - 46EB2E00025CE0 /* FIRTwitterAuthCredential.h in Headers */, - 46EB2E000262B0 /* FIRTwitterAuthProvider.h in Headers */, - 46EB2E000262C0 /* FIRUser.h in Headers */, - 46EB2E000263B0 /* FIRUser_Internal.h in Headers */, - 46EB2E000262D0 /* FIRUserInfo.h in Headers */, - 46EB2E00026390 /* FIRUserInfoImpl.h in Headers */, - 46EB2E000262E0 /* FIRUserMetadata.h in Headers */, - 46EB2E000263A0 /* FIRUserMetadata_Internal.h in Headers */, - 46EB2E00025ED0 /* FIRVerifyAssertionRequest.h in Headers */, - 46EB2E00025EE0 /* FIRVerifyAssertionResponse.h in Headers */, - 46EB2E00025EF0 /* FIRVerifyClientRequest.h in Headers */, - 46EB2E00025F00 /* FIRVerifyClientResponse.h in Headers */, - 46EB2E00025F10 /* FIRVerifyCustomTokenRequest.h in Headers */, - 46EB2E00025F20 /* FIRVerifyCustomTokenResponse.h in Headers */, - 46EB2E00025F30 /* FIRVerifyPasswordRequest.h in Headers */, - 46EB2E00025F40 /* FIRVerifyPasswordResponse.h in Headers */, - 46EB2E00025F50 /* FIRVerifyPhoneNumberRequest.h in Headers */, - 46EB2E00025F60 /* FIRVerifyPhoneNumberResponse.h in Headers */, - 46EB2E00025FF0 /* FIRWithdrawMFARequest.h in Headers */, - 46EB2E00026000 /* FIRWithdrawMFAResponse.h in Headers */, - 46EB2E00026440 /* NSData+FIRBase64.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000265C0 /* Headers */ = { + 46EB2E00026000 /* FIRActionCodeSettings.h in Headers */, + 46EB2E00026010 /* FIRAdditionalUserInfo.h in Headers */, + 46EB2E000262A0 /* FIRAdditionalUserInfo_Internal.h in Headers */, + 46EB2E00026370 /* FIRAppInternal.h in Headers */, + 46EB2E00026020 /* FIRAuth.h in Headers */, + 46EB2E00025B70 /* FIRAuth_Internal.h in Headers */, + 46EB2E00026230 /* FIRAuthAPNSToken.h in Headers */, + 46EB2E00026240 /* FIRAuthAPNSTokenManager.h in Headers */, + 46EB2E00026030 /* FIRAuthAPNSTokenType.h in Headers */, + 46EB2E00026250 /* FIRAuthAppCredential.h in Headers */, + 46EB2E00026260 /* FIRAuthAppCredentialManager.h in Headers */, + 46EB2E00025C20 /* FIRAuthBackend.h in Headers */, + 46EB2E00025C10 /* FIRAuthBackend+MultiFactor.h in Headers */, + 46EB2E00026040 /* FIRAuthCredential.h in Headers */, + 46EB2E00025BA0 /* FIRAuthCredential_Internal.h in Headers */, + 46EB2E00026050 /* FIRAuthDataResult.h in Headers */, + 46EB2E00025B10 /* FIRAuthDataResult_Internal.h in Headers */, + 46EB2E000262E0 /* FIRAuthDefaultUIDelegate.h in Headers */, + 46EB2E00025B20 /* FIRAuthDispatcher.h in Headers */, + 46EB2E00026060 /* FIRAuthErrors.h in Headers */, + 46EB2E000262F0 /* FIRAuthErrorUtils.h in Headers */, + 46EB2E00026300 /* FIRAuthExceptionUtils.h in Headers */, + 46EB2E00025B30 /* FIRAuthGlobalWorkQueue.h in Headers */, + 46EB2E00026310 /* FIRAuthInternalErrors.h in Headers */, + 46EB2E00026430 /* FIRAuthInterop.h in Headers */, + 46EB2E00026210 /* FIRAuthKeychainServices.h in Headers */, + 46EB2E00026270 /* FIRAuthNotificationManager.h in Headers */, + 46EB2E00025B40 /* FIRAuthOperationType.h in Headers */, + 46EB2E00025F30 /* FIRAuthProto.h in Headers */, + 46EB2E00025F50 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */, + 46EB2E00025F60 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */, + 46EB2E00025F40 /* FIRAuthProtoMFAEnrollment.h in Headers */, + 46EB2E00025F70 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */, + 46EB2E00025F80 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */, + 46EB2E00025C30 /* FIRAuthRequestConfiguration.h in Headers */, + 46EB2E00025C40 /* FIRAuthRPCRequest.h in Headers */, + 46EB2E00025C50 /* FIRAuthRPCResponse.h in Headers */, + 46EB2E00025B50 /* FIRAuthSerialTaskQueue.h in Headers */, + 46EB2E00026070 /* FIRAuthSettings.h in Headers */, + 46EB2E00026280 /* FIRAuthStoredUserManager.h in Headers */, + 46EB2E00026080 /* FIRAuthTokenResult.h in Headers */, + 46EB2E00025B60 /* FIRAuthTokenResult_Internal.h in Headers */, + 46EB2E00026090 /* FIRAuthUIDelegate.h in Headers */, + 46EB2E00026320 /* FIRAuthURLPresenter.h in Headers */, + 46EB2E00026220 /* FIRAuthUserDefaults.h in Headers */, + 46EB2E00026330 /* FIRAuthWebUtils.h in Headers */, + 46EB2E00026340 /* FIRAuthWebView.h in Headers */, + 46EB2E00026350 /* FIRAuthWebViewController.h in Headers */, + 46EB2E00026380 /* FIRComponent.h in Headers */, + 46EB2E00026390 /* FIRComponentContainer.h in Headers */, + 46EB2E000263A0 /* FIRComponentType.h in Headers */, + 46EB2E000263B0 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00025C70 /* FIRCreateAuthURIRequest.h in Headers */, + 46EB2E00025C80 /* FIRCreateAuthURIResponse.h in Headers */, + 46EB2E00025C90 /* FIRDeleteAccountRequest.h in Headers */, + 46EB2E00025CA0 /* FIRDeleteAccountResponse.h in Headers */, + 46EB2E000263C0 /* FIRDependency.h in Headers */, + 46EB2E000260A0 /* FirebaseAuth.h in Headers */, + 46EB2E000263D0 /* FirebaseCoreInternal.h in Headers */, + 46EB2E000260B0 /* FIREmailAuthProvider.h in Headers */, + 46EB2E00025CB0 /* FIREmailLinkSignInRequest.h in Headers */, + 46EB2E00025CC0 /* FIREmailLinkSignInResponse.h in Headers */, + 46EB2E00025B80 /* FIREmailPasswordAuthCredential.h in Headers */, + 46EB2E00025B90 /* FIRFacebookAuthCredential.h in Headers */, + 46EB2E000260C0 /* FIRFacebookAuthProvider.h in Headers */, + 46EB2E000260D0 /* FIRFederatedAuthProvider.h in Headers */, + 46EB2E00025E90 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */, + 46EB2E00025EA0 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */, + 46EB2E00025ED0 /* FIRFinalizeMFASignInRequest.h in Headers */, + 46EB2E00025EE0 /* FIRFinalizeMFASignInResponse.h in Headers */, + 46EB2E00025BB0 /* FIRGameCenterAuthCredential.h in Headers */, + 46EB2E000260E0 /* FIRGameCenterAuthProvider.h in Headers */, + 46EB2E00025CD0 /* FIRGetAccountInfoRequest.h in Headers */, + 46EB2E00025CE0 /* FIRGetAccountInfoResponse.h in Headers */, + 46EB2E00025CF0 /* FIRGetOOBConfirmationCodeRequest.h in Headers */, + 46EB2E00025D00 /* FIRGetOOBConfirmationCodeResponse.h in Headers */, + 46EB2E00025D10 /* FIRGetProjectConfigRequest.h in Headers */, + 46EB2E00025D20 /* FIRGetProjectConfigResponse.h in Headers */, + 46EB2E00025BC0 /* FIRGitHubAuthCredential.h in Headers */, + 46EB2E000260F0 /* FIRGitHubAuthProvider.h in Headers */, + 46EB2E00025BD0 /* FIRGoogleAuthCredential.h in Headers */, + 46EB2E00026100 /* FIRGoogleAuthProvider.h in Headers */, + 46EB2E000263E0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E000263F0 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00025C60 /* FIRIdentityToolkitRequest.h in Headers */, + 46EB2E00026400 /* FIRLibrary.h in Headers */, + 46EB2E00026410 /* FIRLogger.h in Headers */, + 46EB2E00026110 /* FIRMultiFactor.h in Headers */, + 46EB2E00025F90 /* FIRMultiFactor+Internal.h in Headers */, + 46EB2E00026120 /* FIRMultiFactorAssertion.h in Headers */, + 46EB2E00025FA0 /* FIRMultiFactorAssertion+Internal.h in Headers */, + 46EB2E00026130 /* FIRMultiFactorInfo.h in Headers */, + 46EB2E00025FB0 /* FIRMultiFactorInfo+Internal.h in Headers */, + 46EB2E00026140 /* FIRMultiFactorResolver.h in Headers */, + 46EB2E00025FC0 /* FIRMultiFactorResolver+Internal.h in Headers */, + 46EB2E00026150 /* FIRMultiFactorSession.h in Headers */, + 46EB2E00025FD0 /* FIRMultiFactorSession+Internal.h in Headers */, + 46EB2E00026160 /* FIROAuthCredential.h in Headers */, + 46EB2E00025BE0 /* FIROAuthCredential_Internal.h in Headers */, + 46EB2E00026170 /* FIROAuthProvider.h in Headers */, + 46EB2E00026420 /* FIROptionsInternal.h in Headers */, + 46EB2E00026180 /* FIRPhoneAuthCredential.h in Headers */, + 46EB2E00025BF0 /* FIRPhoneAuthCredential_Internal.h in Headers */, + 46EB2E00026190 /* FIRPhoneAuthProvider.h in Headers */, + 46EB2E000261A0 /* FIRPhoneMultiFactorAssertion.h in Headers */, + 46EB2E00025FE0 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */, + 46EB2E000261B0 /* FIRPhoneMultiFactorGenerator.h in Headers */, + 46EB2E000261C0 /* FIRPhoneMultiFactorInfo.h in Headers */, + 46EB2E00025FF0 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */, + 46EB2E00025D30 /* FIRResetPasswordRequest.h in Headers */, + 46EB2E00025D40 /* FIRResetPasswordResponse.h in Headers */, + 46EB2E00025D50 /* FIRSecureTokenRequest.h in Headers */, + 46EB2E00025D60 /* FIRSecureTokenResponse.h in Headers */, + 46EB2E00026290 /* FIRSecureTokenService.h in Headers */, + 46EB2E00025D70 /* FIRSendVerificationCodeRequest.h in Headers */, + 46EB2E00025D80 /* FIRSendVerificationCodeResponse.h in Headers */, + 46EB2E00025D90 /* FIRSetAccountInfoRequest.h in Headers */, + 46EB2E00025DA0 /* FIRSetAccountInfoResponse.h in Headers */, + 46EB2E00025DB0 /* FIRSignInWithGameCenterRequest.h in Headers */, + 46EB2E00025DC0 /* FIRSignInWithGameCenterResponse.h in Headers */, + 46EB2E00025DD0 /* FIRSignUpNewUserRequest.h in Headers */, + 46EB2E00025DE0 /* FIRSignUpNewUserResponse.h in Headers */, + 46EB2E00025EB0 /* FIRStartMFAEnrollmentRequest.h in Headers */, + 46EB2E00025EC0 /* FIRStartMFAEnrollmentResponse.h in Headers */, + 46EB2E00025EF0 /* FIRStartMFASignInRequest.h in Headers */, + 46EB2E00025F00 /* FIRStartMFASignInResponse.h in Headers */, + 46EB2E00025C00 /* FIRTwitterAuthCredential.h in Headers */, + 46EB2E000261D0 /* FIRTwitterAuthProvider.h in Headers */, + 46EB2E000261E0 /* FIRUser.h in Headers */, + 46EB2E000262D0 /* FIRUser_Internal.h in Headers */, + 46EB2E000261F0 /* FIRUserInfo.h in Headers */, + 46EB2E000262B0 /* FIRUserInfoImpl.h in Headers */, + 46EB2E00026200 /* FIRUserMetadata.h in Headers */, + 46EB2E000262C0 /* FIRUserMetadata_Internal.h in Headers */, + 46EB2E00025DF0 /* FIRVerifyAssertionRequest.h in Headers */, + 46EB2E00025E00 /* FIRVerifyAssertionResponse.h in Headers */, + 46EB2E00025E10 /* FIRVerifyClientRequest.h in Headers */, + 46EB2E00025E20 /* FIRVerifyClientResponse.h in Headers */, + 46EB2E00025E30 /* FIRVerifyCustomTokenRequest.h in Headers */, + 46EB2E00025E40 /* FIRVerifyCustomTokenResponse.h in Headers */, + 46EB2E00025E50 /* FIRVerifyPasswordRequest.h in Headers */, + 46EB2E00025E60 /* FIRVerifyPasswordResponse.h in Headers */, + 46EB2E00025E70 /* FIRVerifyPhoneNumberRequest.h in Headers */, + 46EB2E00025E80 /* FIRVerifyPhoneNumberResponse.h in Headers */, + 46EB2E00025F10 /* FIRWithdrawMFARequest.h in Headers */, + 46EB2E00025F20 /* FIRWithdrawMFAResponse.h in Headers */, + 46EB2E00026360 /* NSData+FIRBase64.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000264E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000266F0 /* FIRAnalyticsConfiguration.h in Headers */, - 46EB2E00026750 /* FIRApp.h in Headers */, - 46EB2E000267B0 /* FIRAppInternal.h in Headers */, - 46EB2E00026700 /* FIRBundleUtil.h in Headers */, - 46EB2E000267C0 /* FIRComponent.h in Headers */, - 46EB2E000267D0 /* FIRComponentContainer.h in Headers */, - 46EB2E00026710 /* FIRComponentContainerInternal.h in Headers */, - 46EB2E000267E0 /* FIRComponentType.h in Headers */, - 46EB2E00026760 /* FIRConfiguration.h in Headers */, - 46EB2E00026720 /* FIRConfigurationInternal.h in Headers */, - 46EB2E000267F0 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00026870 /* FIRCoreDiagnosticsData.h in Headers */, - 46EB2E00026880 /* FIRCoreDiagnosticsInterop.h in Headers */, - 46EB2E00026800 /* FIRDependency.h in Headers */, - 46EB2E00026730 /* FIRDiagnosticsData.h in Headers */, - 46EB2E00026770 /* FirebaseCore.h in Headers */, - 46EB2E000268E0 /* FirebaseCore-umbrella.h in Headers */, - 46EB2E00026810 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00026740 /* FIRFirebaseUserAgent.h in Headers */, - 46EB2E00026820 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00026830 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00026840 /* FIRLibrary.h in Headers */, - 46EB2E00026850 /* FIRLogger.h in Headers */, - 46EB2E00026780 /* FIRLoggerLevel.h in Headers */, - 46EB2E00026790 /* FIROptions.h in Headers */, - 46EB2E00026860 /* FIROptionsInternal.h in Headers */, - 46EB2E000267A0 /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00026960 /* Headers */ = { + 46EB2E00026610 /* FIRAnalyticsConfiguration.h in Headers */, + 46EB2E00026670 /* FIRApp.h in Headers */, + 46EB2E000266D0 /* FIRAppInternal.h in Headers */, + 46EB2E00026620 /* FIRBundleUtil.h in Headers */, + 46EB2E000266E0 /* FIRComponent.h in Headers */, + 46EB2E000266F0 /* FIRComponentContainer.h in Headers */, + 46EB2E00026630 /* FIRComponentContainerInternal.h in Headers */, + 46EB2E00026700 /* FIRComponentType.h in Headers */, + 46EB2E00026680 /* FIRConfiguration.h in Headers */, + 46EB2E00026640 /* FIRConfigurationInternal.h in Headers */, + 46EB2E00026710 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00026790 /* FIRCoreDiagnosticsData.h in Headers */, + 46EB2E000267A0 /* FIRCoreDiagnosticsInterop.h in Headers */, + 46EB2E00026720 /* FIRDependency.h in Headers */, + 46EB2E00026650 /* FIRDiagnosticsData.h in Headers */, + 46EB2E00026690 /* FirebaseCore.h in Headers */, + 46EB2E00026800 /* FirebaseCore-umbrella.h in Headers */, + 46EB2E00026730 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00026660 /* FIRFirebaseUserAgent.h in Headers */, + 46EB2E00026740 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E00026750 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00026760 /* FIRLibrary.h in Headers */, + 46EB2E00026770 /* FIRLogger.h in Headers */, + 46EB2E000266A0 /* FIRLoggerLevel.h in Headers */, + 46EB2E000266B0 /* FIROptions.h in Headers */, + 46EB2E00026780 /* FIROptionsInternal.h in Headers */, + 46EB2E000266C0 /* FIRVersion.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00026880 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000269C0 /* FIRCoreDiagnostics.h in Headers */, - 46EB2E000269D0 /* FIRCoreDiagnosticsData.h in Headers */, - 46EB2E000269E0 /* FIRCoreDiagnosticsInterop.h in Headers */, - 46EB2E000269B0 /* firebasecore.nanopb.h in Headers */, + 46EB2E000268E0 /* FIRCoreDiagnostics.h in Headers */, + 46EB2E000268F0 /* FIRCoreDiagnosticsData.h in Headers */, + 46EB2E00026900 /* FIRCoreDiagnosticsInterop.h in Headers */, + 46EB2E000268D0 /* firebasecore.nanopb.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026A90 /* Headers */ = { + 46EB2E000269B0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00026AD0 /* FIRAppInternal.h in Headers */, - 46EB2E00026AE0 /* FIRComponent.h in Headers */, - 46EB2E00026AF0 /* FIRComponentContainer.h in Headers */, - 46EB2E00026B00 /* FIRComponentType.h in Headers */, - 46EB2E00026B10 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00026B20 /* FIRDependency.h in Headers */, - 46EB2E00026B30 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00026B40 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00026B50 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00026B60 /* FIRLibrary.h in Headers */, - 46EB2E00026B70 /* FIRLogger.h in Headers */, - 46EB2E00026B80 /* FIROptionsInternal.h in Headers */, + 46EB2E000269F0 /* FIRAppInternal.h in Headers */, + 46EB2E00026A00 /* FIRComponent.h in Headers */, + 46EB2E00026A10 /* FIRComponentContainer.h in Headers */, + 46EB2E00026A20 /* FIRComponentType.h in Headers */, + 46EB2E00026A30 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00026A40 /* FIRDependency.h in Headers */, + 46EB2E00026A50 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00026A60 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E00026A70 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00026A80 /* FIRLibrary.h in Headers */, + 46EB2E00026A90 /* FIRLogger.h in Headers */, + 46EB2E00026AA0 /* FIROptionsInternal.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026C40 /* Headers */ = { + 46EB2E00026B60 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00026D70 /* FirebaseCoreInternal-umbrella.h in Headers */, + 46EB2E00026C90 /* FirebaseCoreInternal-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026E10 /* Headers */ = { + 46EB2E00026D30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00027820 /* crashlytics.nanopb.h in Headers */, - 46EB2E00027940 /* dwarf.h in Headers */, - 46EB2E00027A20 /* FIRAnalyticsInterop.h in Headers */, - 46EB2E00027A30 /* FIRAnalyticsInteropListener.h in Headers */, - 46EB2E00027950 /* FIRAppInternal.h in Headers */, - 46EB2E000274C0 /* FIRCLSAllocate.h in Headers */, - 46EB2E000273B0 /* FIRCLSAnalyticsManager.h in Headers */, - 46EB2E00027330 /* FIRCLSApplication.h in Headers */, - 46EB2E00027760 /* FIRCLSApplicationIdentifierModel.h in Headers */, - 46EB2E00027640 /* FIRCLSAsyncOperation.h in Headers */, - 46EB2E00027650 /* FIRCLSAsyncOperation_Private.h in Headers */, - 46EB2E00027340 /* FIRCLSBinaryImage.h in Headers */, - 46EB2E00027830 /* FIRCLSByteUtility.h in Headers */, - 46EB2E000274D0 /* FIRCLSCallStackTree.h in Headers */, - 46EB2E00027860 /* FIRCLSCodeMapping.h in Headers */, - 46EB2E00027790 /* FIRCLSCompactUnwind.h in Headers */, - 46EB2E000277A0 /* FIRCLSCompactUnwind_Private.h in Headers */, - 46EB2E000278F0 /* FIRCLSCompoundOperation.h in Headers */, - 46EB2E00027840 /* FIRCLSConstants.h in Headers */, - 46EB2E00027350 /* FIRCLSContext.h in Headers */, - 46EB2E00027360 /* FIRCLSCrashedMarkerFile.h in Headers */, - 46EB2E00027440 /* FIRCLSDataCollectionArbiter.h in Headers */, - 46EB2E00027450 /* FIRCLSDataCollectionToken.h in Headers */, - 46EB2E000277B0 /* FIRCLSDataParsing.h in Headers */, - 46EB2E000274E0 /* FIRCLSDefines.h in Headers */, - 46EB2E00027670 /* FIRCLSDemangleOperation.h in Headers */, - 46EB2E00027770 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, - 46EB2E00027870 /* FIRCLSdSYM.h in Headers */, - 46EB2E000277C0 /* FIRCLSDwarfExpressionMachine.h in Headers */, - 46EB2E000277D0 /* FIRCLSDwarfUnwind.h in Headers */, - 46EB2E000277E0 /* FIRCLSDwarfUnwindRegisters.h in Headers */, - 46EB2E00027480 /* FIRCLSException.h in Headers */, - 46EB2E00027560 /* FIRCLSExecutionIdentifierModel.h in Headers */, - 46EB2E000273C0 /* FIRCLSExistingReportManager.h in Headers */, - 46EB2E000276B0 /* FIRCLSExistingReportManager_Private.h in Headers */, - 46EB2E00027900 /* FIRCLSFABAsyncOperation.h in Headers */, - 46EB2E00027910 /* FIRCLSFABAsyncOperation_Private.h in Headers */, - 46EB2E00027850 /* FIRCLSFABHost.h in Headers */, - 46EB2E000278B0 /* FIRCLSFABNetworkClient.h in Headers */, - 46EB2E000274F0 /* FIRCLSFeatures.h in Headers */, - 46EB2E00027500 /* FIRCLSFile.h in Headers */, - 46EB2E00027570 /* FIRCLSFileManager.h in Headers */, - 46EB2E00027370 /* FIRCLSGlobals.h in Headers */, - 46EB2E00027490 /* FIRCLSHandler.h in Headers */, - 46EB2E00027380 /* FIRCLSHost.h in Headers */, - 46EB2E00027580 /* FIRCLSInstallIdentifierModel.h in Headers */, - 46EB2E00027510 /* FIRCLSInternalLogging.h in Headers */, - 46EB2E00027590 /* FIRCLSInternalReport.h in Headers */, - 46EB2E000275A0 /* FIRCLSLaunchMarkerModel.h in Headers */, - 46EB2E00027520 /* FIRCLSLogger.h in Headers */, - 46EB2E000274A0 /* FIRCLSMachException.h in Headers */, - 46EB2E00027880 /* FIRCLSMachO.h in Headers */, - 46EB2E00027890 /* FIRCLSMachOBinary.h in Headers */, - 46EB2E000278A0 /* FIRCLSMachOSlice.h in Headers */, - 46EB2E000273D0 /* FIRCLSManagerData.h in Headers */, - 46EB2E000273E0 /* FIRCLSMetricKitManager.h in Headers */, - 46EB2E000278C0 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, - 46EB2E00027780 /* FIRCLSNetworkOperation.h in Headers */, - 46EB2E000278D0 /* FIRCLSNetworkResponseHandler.h in Headers */, - 46EB2E000273F0 /* FIRCLSNotificationManager.h in Headers */, - 46EB2E000275B0 /* FIRCLSOnDemandModel.h in Headers */, - 46EB2E000276C0 /* FIRCLSOnDemandModel_Private.h in Headers */, - 46EB2E00027920 /* FIRCLSOperation.h in Headers */, - 46EB2E00027390 /* FIRCLSProcess.h in Headers */, - 46EB2E00027660 /* FIRCLSProcessReportOperation.h in Headers */, - 46EB2E00027530 /* FIRCLSProfiling.h in Headers */, - 46EB2E000275E0 /* FIRCLSRecordApplication.h in Headers */, - 46EB2E000275F0 /* FIRCLSRecordBase.h in Headers */, - 46EB2E00027600 /* FIRCLSRecordHost.h in Headers */, - 46EB2E00027610 /* FIRCLSRecordIdentity.h in Headers */, - 46EB2E00027620 /* FIRCLSReportAdapter.h in Headers */, - 46EB2E00027630 /* FIRCLSReportAdapter_Private.h in Headers */, - 46EB2E00027400 /* FIRCLSReportManager.h in Headers */, - 46EB2E00027410 /* FIRCLSReportManager_Private.h in Headers */, - 46EB2E00027420 /* FIRCLSReportUploader.h in Headers */, - 46EB2E00027430 /* FIRCLSReportUploader_Private.h in Headers */, - 46EB2E00027680 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, - 46EB2E000275C0 /* FIRCLSSettings.h in Headers */, - 46EB2E00027750 /* FIRCLSSettingsManager.h in Headers */, - 46EB2E000274B0 /* FIRCLSSignal.h in Headers */, - 46EB2E00027690 /* FIRCLSSymbolicationOperation.h in Headers */, - 46EB2E000275D0 /* FIRCLSSymbolResolver.h in Headers */, - 46EB2E000276A0 /* FIRCLSThreadArrayOperation.h in Headers */, - 46EB2E00027540 /* FIRCLSThreadState.h in Headers */, - 46EB2E000277F0 /* FIRCLSUnwind.h in Headers */, - 46EB2E00027800 /* FIRCLSUnwind_arch.h in Headers */, - 46EB2E00027810 /* FIRCLSUnwind_x86.h in Headers */, - 46EB2E000278E0 /* FIRCLSURLBuilder.h in Headers */, - 46EB2E00027460 /* FIRCLSUserDefaults.h in Headers */, - 46EB2E00027470 /* FIRCLSUserDefaults_private.h in Headers */, - 46EB2E000273A0 /* FIRCLSUserLogging.h in Headers */, - 46EB2E00027550 /* FIRCLSUtility.h in Headers */, - 46EB2E00027930 /* FIRCLSUUID.h in Headers */, - 46EB2E00027960 /* FIRComponent.h in Headers */, - 46EB2E00027970 /* FIRComponentContainer.h in Headers */, - 46EB2E00027980 /* FIRComponentType.h in Headers */, - 46EB2E00027990 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00027700 /* FIRCrashlytics.h in Headers */, - 46EB2E00027710 /* FIRCrashlyticsReport.h in Headers */, - 46EB2E000276D0 /* FIRCrashlyticsReport_Private.h in Headers */, - 46EB2E000279A0 /* FIRDependency.h in Headers */, - 46EB2E000279B0 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00027720 /* FirebaseCrashlytics.h in Headers */, - 46EB2E00027A10 /* FirebaseInstallationsInternal.h in Headers */, - 46EB2E00027730 /* FIRExceptionModel.h in Headers */, - 46EB2E000276E0 /* FIRExceptionModel_Private.h in Headers */, - 46EB2E000279C0 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E000279D0 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00027A40 /* FIRInteropEventNames.h in Headers */, - 46EB2E00027A50 /* FIRInteropParameterNames.h in Headers */, - 46EB2E000279E0 /* FIRLibrary.h in Headers */, - 46EB2E000279F0 /* FIRLogger.h in Headers */, - 46EB2E00027A00 /* FIROptionsInternal.h in Headers */, - 46EB2E00027740 /* FIRStackFrame.h in Headers */, - 46EB2E000276F0 /* FIRStackFrame_Private.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00027B00 /* Headers */ = { + 46EB2E00027740 /* crashlytics.nanopb.h in Headers */, + 46EB2E00027860 /* dwarf.h in Headers */, + 46EB2E00027940 /* FIRAnalyticsInterop.h in Headers */, + 46EB2E00027950 /* FIRAnalyticsInteropListener.h in Headers */, + 46EB2E00027870 /* FIRAppInternal.h in Headers */, + 46EB2E000273E0 /* FIRCLSAllocate.h in Headers */, + 46EB2E000272D0 /* FIRCLSAnalyticsManager.h in Headers */, + 46EB2E00027250 /* FIRCLSApplication.h in Headers */, + 46EB2E00027680 /* FIRCLSApplicationIdentifierModel.h in Headers */, + 46EB2E00027560 /* FIRCLSAsyncOperation.h in Headers */, + 46EB2E00027570 /* FIRCLSAsyncOperation_Private.h in Headers */, + 46EB2E00027260 /* FIRCLSBinaryImage.h in Headers */, + 46EB2E00027750 /* FIRCLSByteUtility.h in Headers */, + 46EB2E000273F0 /* FIRCLSCallStackTree.h in Headers */, + 46EB2E00027780 /* FIRCLSCodeMapping.h in Headers */, + 46EB2E000276B0 /* FIRCLSCompactUnwind.h in Headers */, + 46EB2E000276C0 /* FIRCLSCompactUnwind_Private.h in Headers */, + 46EB2E00027810 /* FIRCLSCompoundOperation.h in Headers */, + 46EB2E00027760 /* FIRCLSConstants.h in Headers */, + 46EB2E00027270 /* FIRCLSContext.h in Headers */, + 46EB2E00027280 /* FIRCLSCrashedMarkerFile.h in Headers */, + 46EB2E00027360 /* FIRCLSDataCollectionArbiter.h in Headers */, + 46EB2E00027370 /* FIRCLSDataCollectionToken.h in Headers */, + 46EB2E000276D0 /* FIRCLSDataParsing.h in Headers */, + 46EB2E00027400 /* FIRCLSDefines.h in Headers */, + 46EB2E00027590 /* FIRCLSDemangleOperation.h in Headers */, + 46EB2E00027690 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, + 46EB2E00027790 /* FIRCLSdSYM.h in Headers */, + 46EB2E000276E0 /* FIRCLSDwarfExpressionMachine.h in Headers */, + 46EB2E000276F0 /* FIRCLSDwarfUnwind.h in Headers */, + 46EB2E00027700 /* FIRCLSDwarfUnwindRegisters.h in Headers */, + 46EB2E000273A0 /* FIRCLSException.h in Headers */, + 46EB2E00027480 /* FIRCLSExecutionIdentifierModel.h in Headers */, + 46EB2E000272E0 /* FIRCLSExistingReportManager.h in Headers */, + 46EB2E000275D0 /* FIRCLSExistingReportManager_Private.h in Headers */, + 46EB2E00027820 /* FIRCLSFABAsyncOperation.h in Headers */, + 46EB2E00027830 /* FIRCLSFABAsyncOperation_Private.h in Headers */, + 46EB2E00027770 /* FIRCLSFABHost.h in Headers */, + 46EB2E000277D0 /* FIRCLSFABNetworkClient.h in Headers */, + 46EB2E00027410 /* FIRCLSFeatures.h in Headers */, + 46EB2E00027420 /* FIRCLSFile.h in Headers */, + 46EB2E00027490 /* FIRCLSFileManager.h in Headers */, + 46EB2E00027290 /* FIRCLSGlobals.h in Headers */, + 46EB2E000273B0 /* FIRCLSHandler.h in Headers */, + 46EB2E000272A0 /* FIRCLSHost.h in Headers */, + 46EB2E000274A0 /* FIRCLSInstallIdentifierModel.h in Headers */, + 46EB2E00027430 /* FIRCLSInternalLogging.h in Headers */, + 46EB2E000274B0 /* FIRCLSInternalReport.h in Headers */, + 46EB2E000274C0 /* FIRCLSLaunchMarkerModel.h in Headers */, + 46EB2E00027440 /* FIRCLSLogger.h in Headers */, + 46EB2E000273C0 /* FIRCLSMachException.h in Headers */, + 46EB2E000277A0 /* FIRCLSMachO.h in Headers */, + 46EB2E000277B0 /* FIRCLSMachOBinary.h in Headers */, + 46EB2E000277C0 /* FIRCLSMachOSlice.h in Headers */, + 46EB2E000272F0 /* FIRCLSManagerData.h in Headers */, + 46EB2E00027300 /* FIRCLSMetricKitManager.h in Headers */, + 46EB2E000277E0 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, + 46EB2E000276A0 /* FIRCLSNetworkOperation.h in Headers */, + 46EB2E000277F0 /* FIRCLSNetworkResponseHandler.h in Headers */, + 46EB2E00027310 /* FIRCLSNotificationManager.h in Headers */, + 46EB2E000274D0 /* FIRCLSOnDemandModel.h in Headers */, + 46EB2E000275E0 /* FIRCLSOnDemandModel_Private.h in Headers */, + 46EB2E00027840 /* FIRCLSOperation.h in Headers */, + 46EB2E000272B0 /* FIRCLSProcess.h in Headers */, + 46EB2E00027580 /* FIRCLSProcessReportOperation.h in Headers */, + 46EB2E00027450 /* FIRCLSProfiling.h in Headers */, + 46EB2E00027500 /* FIRCLSRecordApplication.h in Headers */, + 46EB2E00027510 /* FIRCLSRecordBase.h in Headers */, + 46EB2E00027520 /* FIRCLSRecordHost.h in Headers */, + 46EB2E00027530 /* FIRCLSRecordIdentity.h in Headers */, + 46EB2E00027540 /* FIRCLSReportAdapter.h in Headers */, + 46EB2E00027550 /* FIRCLSReportAdapter_Private.h in Headers */, + 46EB2E00027320 /* FIRCLSReportManager.h in Headers */, + 46EB2E00027330 /* FIRCLSReportManager_Private.h in Headers */, + 46EB2E00027340 /* FIRCLSReportUploader.h in Headers */, + 46EB2E00027350 /* FIRCLSReportUploader_Private.h in Headers */, + 46EB2E000275A0 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, + 46EB2E000274E0 /* FIRCLSSettings.h in Headers */, + 46EB2E00027670 /* FIRCLSSettingsManager.h in Headers */, + 46EB2E000273D0 /* FIRCLSSignal.h in Headers */, + 46EB2E000275B0 /* FIRCLSSymbolicationOperation.h in Headers */, + 46EB2E000274F0 /* FIRCLSSymbolResolver.h in Headers */, + 46EB2E000275C0 /* FIRCLSThreadArrayOperation.h in Headers */, + 46EB2E00027460 /* FIRCLSThreadState.h in Headers */, + 46EB2E00027710 /* FIRCLSUnwind.h in Headers */, + 46EB2E00027720 /* FIRCLSUnwind_arch.h in Headers */, + 46EB2E00027730 /* FIRCLSUnwind_x86.h in Headers */, + 46EB2E00027800 /* FIRCLSURLBuilder.h in Headers */, + 46EB2E00027380 /* FIRCLSUserDefaults.h in Headers */, + 46EB2E00027390 /* FIRCLSUserDefaults_private.h in Headers */, + 46EB2E000272C0 /* FIRCLSUserLogging.h in Headers */, + 46EB2E00027470 /* FIRCLSUtility.h in Headers */, + 46EB2E00027850 /* FIRCLSUUID.h in Headers */, + 46EB2E00027880 /* FIRComponent.h in Headers */, + 46EB2E00027890 /* FIRComponentContainer.h in Headers */, + 46EB2E000278A0 /* FIRComponentType.h in Headers */, + 46EB2E000278B0 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00027620 /* FIRCrashlytics.h in Headers */, + 46EB2E00027630 /* FIRCrashlyticsReport.h in Headers */, + 46EB2E000275F0 /* FIRCrashlyticsReport_Private.h in Headers */, + 46EB2E000278C0 /* FIRDependency.h in Headers */, + 46EB2E000278D0 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00027640 /* FirebaseCrashlytics.h in Headers */, + 46EB2E00027930 /* FirebaseInstallationsInternal.h in Headers */, + 46EB2E00027650 /* FIRExceptionModel.h in Headers */, + 46EB2E00027600 /* FIRExceptionModel_Private.h in Headers */, + 46EB2E000278E0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E000278F0 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00027960 /* FIRInteropEventNames.h in Headers */, + 46EB2E00027970 /* FIRInteropParameterNames.h in Headers */, + 46EB2E00027900 /* FIRLibrary.h in Headers */, + 46EB2E00027910 /* FIRLogger.h in Headers */, + 46EB2E00027920 /* FIROptionsInternal.h in Headers */, + 46EB2E00027660 /* FIRStackFrame.h in Headers */, + 46EB2E00027610 /* FIRStackFrame_Private.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00027A20 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000288E0 /* APLevelDB.h in Headers */, - 46EB2E000283E0 /* FAckUserWrite.h in Headers */, - 46EB2E00028830 /* FArraySortedDictionary.h in Headers */, - 46EB2E000288F0 /* FAtomicNumber.h in Headers */, - 46EB2E000288B0 /* fbase64.h in Headers */, - 46EB2E00028480 /* FCacheNode.h in Headers */, - 46EB2E00028690 /* FCachePolicy.h in Headers */, - 46EB2E00028490 /* FCancelEvent.h in Headers */, - 46EB2E000284A0 /* FChange.h in Headers */, - 46EB2E00028500 /* FChildChangeAccumulator.h in Headers */, - 46EB2E000284B0 /* FChildEventRegistration.h in Headers */, - 46EB2E000287C0 /* FChildrenNode.h in Headers */, - 46EB2E00028590 /* FClock.h in Headers */, - 46EB2E00028510 /* FCompleteChildSource.h in Headers */, - 46EB2E000282C0 /* FCompoundHash.h in Headers */, - 46EB2E000287D0 /* FCompoundWrite.h in Headers */, - 46EB2E000287A0 /* FConnection.h in Headers */, - 46EB2E000282B0 /* FConstants.h in Headers */, - 46EB2E000284C0 /* FDataEvent.h in Headers */, - 46EB2E000287E0 /* FEmptyNode.h in Headers */, - 46EB2E000284D0 /* FEvent.h in Headers */, - 46EB2E00028900 /* FEventEmitter.h in Headers */, - 46EB2E000285A0 /* FEventGenerator.h in Headers */, - 46EB2E000284E0 /* FEventRaiser.h in Headers */, - 46EB2E000284F0 /* FEventRegistration.h in Headers */, - 46EB2E00028840 /* FImmutableSortedDictionary.h in Headers */, - 46EB2E00028850 /* FImmutableSortedSet.h in Headers */, - 46EB2E00028430 /* FImmutableTree.h in Headers */, - 46EB2E000285B0 /* FIndex.h in Headers */, - 46EB2E00028520 /* FIndexedFilter.h in Headers */, - 46EB2E000287F0 /* FIndexedNode.h in Headers */, - 46EB2E00028A60 /* FIRAppCheckInterop.h in Headers */, - 46EB2E00028A70 /* FIRAppCheckTokenResultInterop.h in Headers */, - 46EB2E00028A80 /* FIRAppInternal.h in Headers */, - 46EB2E00028A50 /* FIRAuthInterop.h in Headers */, - 46EB2E00028A90 /* FIRComponent.h in Headers */, - 46EB2E00028AA0 /* FIRComponentContainer.h in Headers */, - 46EB2E00028AB0 /* FIRComponentType.h in Headers */, - 46EB2E00028AC0 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00028710 /* FIRDatabase.h in Headers */, - 46EB2E00028260 /* FIRDatabase_Private.h in Headers */, - 46EB2E00028220 /* FIRDatabaseComponent.h in Headers */, - 46EB2E00028230 /* FIRDatabaseConfig.h in Headers */, - 46EB2E000285C0 /* FIRDatabaseConfig_Private.h in Headers */, - 46EB2E00028680 /* FIRDatabaseConnectionContextProvider.h in Headers */, - 46EB2E00028720 /* FIRDatabaseQuery.h in Headers */, - 46EB2E00028240 /* FIRDatabaseQuery_Private.h in Headers */, - 46EB2E00028730 /* FIRDatabaseReference.h in Headers */, - 46EB2E00028250 /* FIRDatabaseReference_Private.h in Headers */, - 46EB2E00028740 /* FIRDataEventType.h in Headers */, - 46EB2E00028750 /* FIRDataSnapshot.h in Headers */, - 46EB2E00028270 /* FIRDataSnapshot_Private.h in Headers */, - 46EB2E00028AD0 /* FIRDependency.h in Headers */, - 46EB2E00028AE0 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00028760 /* FirebaseDatabase.h in Headers */, - 46EB2E00028AF0 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00028B00 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00028B10 /* FIRLibrary.h in Headers */, - 46EB2E00028B20 /* FIRLogger.h in Headers */, - 46EB2E00028770 /* FIRMutableData.h in Headers */, - 46EB2E00028280 /* FIRMutableData_Private.h in Headers */, - 46EB2E00028B30 /* FIROptionsInternal.h in Headers */, - 46EB2E00028440 /* FIRRetryHelper.h in Headers */, - 46EB2E00028780 /* FIRServerValue.h in Headers */, - 46EB2E00028790 /* FIRTransactionResult.h in Headers */, - 46EB2E00028290 /* FIRTransactionResult_Private.h in Headers */, - 46EB2E00028550 /* FKeepSyncedEventRegistration.h in Headers */, - 46EB2E000285D0 /* FKeyIndex.h in Headers */, - 46EB2E00028800 /* FLeafNode.h in Headers */, - 46EB2E000286A0 /* FLevelDBStorageEngine.h in Headers */, - 46EB2E00028530 /* FLimitedFilter.h in Headers */, - 46EB2E000285E0 /* FListenComplete.h in Headers */, - 46EB2E000282D0 /* FListenProvider.h in Headers */, - 46EB2E00028860 /* FLLRBEmptyNode.h in Headers */, - 46EB2E00028870 /* FLLRBNode.h in Headers */, - 46EB2E00028880 /* FLLRBValueNode.h in Headers */, - 46EB2E000285F0 /* FMaxNode.h in Headers */, - 46EB2E000283F0 /* FMerge.h in Headers */, - 46EB2E00028600 /* FNamedNode.h in Headers */, - 46EB2E00028910 /* FNextPushId.h in Headers */, - 46EB2E00028810 /* FNode.h in Headers */, - 46EB2E00028540 /* FNodeFilter.h in Headers */, - 46EB2E00028400 /* FOperation.h in Headers */, - 46EB2E00028410 /* FOperationSource.h in Headers */, - 46EB2E00028420 /* FOverwrite.h in Headers */, - 46EB2E00028920 /* FParsedUrl.h in Headers */, - 46EB2E00028450 /* FPath.h in Headers */, - 46EB2E00028610 /* FPathIndex.h in Headers */, - 46EB2E000286B0 /* FPendingPut.h in Headers */, - 46EB2E000286C0 /* FPersistenceManager.h in Headers */, - 46EB2E000282E0 /* FPersistentConnection.h in Headers */, - 46EB2E00028620 /* FPriorityIndex.h in Headers */, - 46EB2E000286D0 /* FPruneForest.h in Headers */, - 46EB2E000282F0 /* FQueryParams.h in Headers */, - 46EB2E00028300 /* FQuerySpec.h in Headers */, - 46EB2E00028630 /* FRangedFilter.h in Headers */, - 46EB2E00028310 /* FRangeMerge.h in Headers */, - 46EB2E00028320 /* FRepo.h in Headers */, - 46EB2E00028350 /* FRepo_Private.h in Headers */, - 46EB2E00028330 /* FRepoInfo.h in Headers */, - 46EB2E00028340 /* FRepoManager.h in Headers */, - 46EB2E00028360 /* FServerValues.h in Headers */, - 46EB2E00028370 /* FSnapshotHolder.h in Headers */, - 46EB2E00028820 /* FSnapshotUtilities.h in Headers */, - 46EB2E00028380 /* FSparseSnapshotTree.h in Headers */, - 46EB2E000288C0 /* FSRWebSocket.h in Headers */, - 46EB2E000286E0 /* FStorageEngine.h in Headers */, - 46EB2E00028930 /* FStringUtilities.h in Headers */, - 46EB2E00028390 /* FSyncPoint.h in Headers */, - 46EB2E000283A0 /* FSyncTree.h in Headers */, - 46EB2E000286F0 /* FTrackedQuery.h in Headers */, - 46EB2E00028700 /* FTrackedQueryManager.h in Headers */, - 46EB2E00028640 /* FTransformedEnumerator.h in Headers */, - 46EB2E00028460 /* FTree.h in Headers */, - 46EB2E00028470 /* FTreeNode.h in Headers */, - 46EB2E00028890 /* FTreeSortedDictionary.h in Headers */, - 46EB2E000288A0 /* FTreeSortedDictionaryEnumerator.h in Headers */, - 46EB2E00028970 /* FTupleBoolBlock.h in Headers */, - 46EB2E00028980 /* FTupleCallbackStatus.h in Headers */, - 46EB2E00028990 /* FTupleFirebase.h in Headers */, - 46EB2E000289A0 /* FTupleNodePath.h in Headers */, - 46EB2E000289B0 /* FTupleObjectNode.h in Headers */, - 46EB2E000289C0 /* FTupleObjects.h in Headers */, - 46EB2E000289D0 /* FTupleOnDisconnect.h in Headers */, - 46EB2E000289E0 /* FTuplePathValue.h in Headers */, - 46EB2E000289F0 /* FTupleRemovedQueriesEvents.h in Headers */, - 46EB2E00028A00 /* FTupleSetIdPath.h in Headers */, - 46EB2E00028A10 /* FTupleStringNode.h in Headers */, - 46EB2E00028A20 /* FTupleTransaction.h in Headers */, - 46EB2E00028A30 /* FTupleTSN.h in Headers */, - 46EB2E00028A40 /* FTupleUserCallback.h in Headers */, - 46EB2E00028940 /* FTypedefs.h in Headers */, - 46EB2E000282A0 /* FTypedefs_Private.h in Headers */, - 46EB2E00028950 /* FUtilities.h in Headers */, - 46EB2E00028960 /* FValidation.h in Headers */, - 46EB2E00028560 /* FValueEventRegistration.h in Headers */, - 46EB2E00028650 /* FValueIndex.h in Headers */, - 46EB2E00028570 /* FView.h in Headers */, - 46EB2E00028580 /* FViewCache.h in Headers */, - 46EB2E00028660 /* FViewProcessor.h in Headers */, - 46EB2E00028670 /* FViewProcessorResult.h in Headers */, - 46EB2E000287B0 /* FWebSocketConnection.h in Headers */, - 46EB2E000283B0 /* FWriteRecord.h in Headers */, - 46EB2E000283C0 /* FWriteTree.h in Headers */, - 46EB2E000283D0 /* FWriteTreeRef.h in Headers */, - 46EB2E000288D0 /* NSData+SRB64Additions.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00028BE0 /* Headers */ = { + 46EB2E00028800 /* APLevelDB.h in Headers */, + 46EB2E00028300 /* FAckUserWrite.h in Headers */, + 46EB2E00028750 /* FArraySortedDictionary.h in Headers */, + 46EB2E00028810 /* FAtomicNumber.h in Headers */, + 46EB2E000287D0 /* fbase64.h in Headers */, + 46EB2E000283A0 /* FCacheNode.h in Headers */, + 46EB2E000285B0 /* FCachePolicy.h in Headers */, + 46EB2E000283B0 /* FCancelEvent.h in Headers */, + 46EB2E000283C0 /* FChange.h in Headers */, + 46EB2E00028420 /* FChildChangeAccumulator.h in Headers */, + 46EB2E000283D0 /* FChildEventRegistration.h in Headers */, + 46EB2E000286E0 /* FChildrenNode.h in Headers */, + 46EB2E000284B0 /* FClock.h in Headers */, + 46EB2E00028430 /* FCompleteChildSource.h in Headers */, + 46EB2E000281E0 /* FCompoundHash.h in Headers */, + 46EB2E000286F0 /* FCompoundWrite.h in Headers */, + 46EB2E000286C0 /* FConnection.h in Headers */, + 46EB2E000281D0 /* FConstants.h in Headers */, + 46EB2E000283E0 /* FDataEvent.h in Headers */, + 46EB2E00028700 /* FEmptyNode.h in Headers */, + 46EB2E000283F0 /* FEvent.h in Headers */, + 46EB2E00028820 /* FEventEmitter.h in Headers */, + 46EB2E000284C0 /* FEventGenerator.h in Headers */, + 46EB2E00028400 /* FEventRaiser.h in Headers */, + 46EB2E00028410 /* FEventRegistration.h in Headers */, + 46EB2E00028760 /* FImmutableSortedDictionary.h in Headers */, + 46EB2E00028770 /* FImmutableSortedSet.h in Headers */, + 46EB2E00028350 /* FImmutableTree.h in Headers */, + 46EB2E000284D0 /* FIndex.h in Headers */, + 46EB2E00028440 /* FIndexedFilter.h in Headers */, + 46EB2E00028710 /* FIndexedNode.h in Headers */, + 46EB2E00028980 /* FIRAppCheckInterop.h in Headers */, + 46EB2E00028990 /* FIRAppCheckTokenResultInterop.h in Headers */, + 46EB2E000289A0 /* FIRAppInternal.h in Headers */, + 46EB2E00028970 /* FIRAuthInterop.h in Headers */, + 46EB2E000289B0 /* FIRComponent.h in Headers */, + 46EB2E000289C0 /* FIRComponentContainer.h in Headers */, + 46EB2E000289D0 /* FIRComponentType.h in Headers */, + 46EB2E000289E0 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00028630 /* FIRDatabase.h in Headers */, + 46EB2E00028180 /* FIRDatabase_Private.h in Headers */, + 46EB2E00028140 /* FIRDatabaseComponent.h in Headers */, + 46EB2E00028150 /* FIRDatabaseConfig.h in Headers */, + 46EB2E000284E0 /* FIRDatabaseConfig_Private.h in Headers */, + 46EB2E000285A0 /* FIRDatabaseConnectionContextProvider.h in Headers */, + 46EB2E00028640 /* FIRDatabaseQuery.h in Headers */, + 46EB2E00028160 /* FIRDatabaseQuery_Private.h in Headers */, + 46EB2E00028650 /* FIRDatabaseReference.h in Headers */, + 46EB2E00028170 /* FIRDatabaseReference_Private.h in Headers */, + 46EB2E00028660 /* FIRDataEventType.h in Headers */, + 46EB2E00028670 /* FIRDataSnapshot.h in Headers */, + 46EB2E00028190 /* FIRDataSnapshot_Private.h in Headers */, + 46EB2E000289F0 /* FIRDependency.h in Headers */, + 46EB2E00028A00 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00028680 /* FirebaseDatabase.h in Headers */, + 46EB2E00028A10 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E00028A20 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00028A30 /* FIRLibrary.h in Headers */, + 46EB2E00028A40 /* FIRLogger.h in Headers */, + 46EB2E00028690 /* FIRMutableData.h in Headers */, + 46EB2E000281A0 /* FIRMutableData_Private.h in Headers */, + 46EB2E00028A50 /* FIROptionsInternal.h in Headers */, + 46EB2E00028360 /* FIRRetryHelper.h in Headers */, + 46EB2E000286A0 /* FIRServerValue.h in Headers */, + 46EB2E000286B0 /* FIRTransactionResult.h in Headers */, + 46EB2E000281B0 /* FIRTransactionResult_Private.h in Headers */, + 46EB2E00028470 /* FKeepSyncedEventRegistration.h in Headers */, + 46EB2E000284F0 /* FKeyIndex.h in Headers */, + 46EB2E00028720 /* FLeafNode.h in Headers */, + 46EB2E000285C0 /* FLevelDBStorageEngine.h in Headers */, + 46EB2E00028450 /* FLimitedFilter.h in Headers */, + 46EB2E00028500 /* FListenComplete.h in Headers */, + 46EB2E000281F0 /* FListenProvider.h in Headers */, + 46EB2E00028780 /* FLLRBEmptyNode.h in Headers */, + 46EB2E00028790 /* FLLRBNode.h in Headers */, + 46EB2E000287A0 /* FLLRBValueNode.h in Headers */, + 46EB2E00028510 /* FMaxNode.h in Headers */, + 46EB2E00028310 /* FMerge.h in Headers */, + 46EB2E00028520 /* FNamedNode.h in Headers */, + 46EB2E00028830 /* FNextPushId.h in Headers */, + 46EB2E00028730 /* FNode.h in Headers */, + 46EB2E00028460 /* FNodeFilter.h in Headers */, + 46EB2E00028320 /* FOperation.h in Headers */, + 46EB2E00028330 /* FOperationSource.h in Headers */, + 46EB2E00028340 /* FOverwrite.h in Headers */, + 46EB2E00028840 /* FParsedUrl.h in Headers */, + 46EB2E00028370 /* FPath.h in Headers */, + 46EB2E00028530 /* FPathIndex.h in Headers */, + 46EB2E000285D0 /* FPendingPut.h in Headers */, + 46EB2E000285E0 /* FPersistenceManager.h in Headers */, + 46EB2E00028200 /* FPersistentConnection.h in Headers */, + 46EB2E00028540 /* FPriorityIndex.h in Headers */, + 46EB2E000285F0 /* FPruneForest.h in Headers */, + 46EB2E00028210 /* FQueryParams.h in Headers */, + 46EB2E00028220 /* FQuerySpec.h in Headers */, + 46EB2E00028550 /* FRangedFilter.h in Headers */, + 46EB2E00028230 /* FRangeMerge.h in Headers */, + 46EB2E00028240 /* FRepo.h in Headers */, + 46EB2E00028270 /* FRepo_Private.h in Headers */, + 46EB2E00028250 /* FRepoInfo.h in Headers */, + 46EB2E00028260 /* FRepoManager.h in Headers */, + 46EB2E00028280 /* FServerValues.h in Headers */, + 46EB2E00028290 /* FSnapshotHolder.h in Headers */, + 46EB2E00028740 /* FSnapshotUtilities.h in Headers */, + 46EB2E000282A0 /* FSparseSnapshotTree.h in Headers */, + 46EB2E000287E0 /* FSRWebSocket.h in Headers */, + 46EB2E00028600 /* FStorageEngine.h in Headers */, + 46EB2E00028850 /* FStringUtilities.h in Headers */, + 46EB2E000282B0 /* FSyncPoint.h in Headers */, + 46EB2E000282C0 /* FSyncTree.h in Headers */, + 46EB2E00028610 /* FTrackedQuery.h in Headers */, + 46EB2E00028620 /* FTrackedQueryManager.h in Headers */, + 46EB2E00028560 /* FTransformedEnumerator.h in Headers */, + 46EB2E00028380 /* FTree.h in Headers */, + 46EB2E00028390 /* FTreeNode.h in Headers */, + 46EB2E000287B0 /* FTreeSortedDictionary.h in Headers */, + 46EB2E000287C0 /* FTreeSortedDictionaryEnumerator.h in Headers */, + 46EB2E00028890 /* FTupleBoolBlock.h in Headers */, + 46EB2E000288A0 /* FTupleCallbackStatus.h in Headers */, + 46EB2E000288B0 /* FTupleFirebase.h in Headers */, + 46EB2E000288C0 /* FTupleNodePath.h in Headers */, + 46EB2E000288D0 /* FTupleObjectNode.h in Headers */, + 46EB2E000288E0 /* FTupleObjects.h in Headers */, + 46EB2E000288F0 /* FTupleOnDisconnect.h in Headers */, + 46EB2E00028900 /* FTuplePathValue.h in Headers */, + 46EB2E00028910 /* FTupleRemovedQueriesEvents.h in Headers */, + 46EB2E00028920 /* FTupleSetIdPath.h in Headers */, + 46EB2E00028930 /* FTupleStringNode.h in Headers */, + 46EB2E00028940 /* FTupleTransaction.h in Headers */, + 46EB2E00028950 /* FTupleTSN.h in Headers */, + 46EB2E00028960 /* FTupleUserCallback.h in Headers */, + 46EB2E00028860 /* FTypedefs.h in Headers */, + 46EB2E000281C0 /* FTypedefs_Private.h in Headers */, + 46EB2E00028870 /* FUtilities.h in Headers */, + 46EB2E00028880 /* FValidation.h in Headers */, + 46EB2E00028480 /* FValueEventRegistration.h in Headers */, + 46EB2E00028570 /* FValueIndex.h in Headers */, + 46EB2E00028490 /* FView.h in Headers */, + 46EB2E000284A0 /* FViewCache.h in Headers */, + 46EB2E00028580 /* FViewProcessor.h in Headers */, + 46EB2E00028590 /* FViewProcessorResult.h in Headers */, + 46EB2E000286D0 /* FWebSocketConnection.h in Headers */, + 46EB2E000282D0 /* FWriteRecord.h in Headers */, + 46EB2E000282E0 /* FWriteTree.h in Headers */, + 46EB2E000282F0 /* FWriteTreeRef.h in Headers */, + 46EB2E000287F0 /* NSData+SRB64Additions.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00028B00 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000299C0 /* FIRAppCheckInterop.h in Headers */, - 46EB2E000299D0 /* FIRAppCheckTokenResultInterop.h in Headers */, - 46EB2E000299E0 /* FIRAppInternal.h in Headers */, - 46EB2E00029BF0 /* FIRAuthInterop.h in Headers */, - 46EB2E00029AA0 /* FIRCollectionReference.h in Headers */, - 46EB2E000299F0 /* FIRComponent.h in Headers */, - 46EB2E00029A00 /* FIRComponentContainer.h in Headers */, - 46EB2E00029A10 /* FIRComponentType.h in Headers */, - 46EB2E00029A20 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00029A30 /* FIRDependency.h in Headers */, - 46EB2E00029AB0 /* FIRDocumentChange.h in Headers */, - 46EB2E00029AC0 /* FIRDocumentReference.h in Headers */, - 46EB2E00029AD0 /* FIRDocumentSnapshot.h in Headers */, - 46EB2E00029A40 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00029AE0 /* FirebaseFirestore.h in Headers */, - 46EB2E00029AF0 /* FIRFieldPath.h in Headers */, - 46EB2E00029B00 /* FIRFieldValue.h in Headers */, - 46EB2E00029B10 /* FIRFirestore.h in Headers */, - 46EB2E00029B20 /* FIRFirestoreErrors.h in Headers */, - 46EB2E00029B30 /* FIRFirestoreSettings.h in Headers */, - 46EB2E00029B40 /* FIRFirestoreSource.h in Headers */, - 46EB2E00029B50 /* FIRGeoPoint.h in Headers */, - 46EB2E00029A50 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00029A60 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00029A70 /* FIRLibrary.h in Headers */, - 46EB2E00029B60 /* FIRListenerRegistration.h in Headers */, - 46EB2E00029B70 /* FIRLoadBundleTask.h in Headers */, - 46EB2E00029A80 /* FIRLogger.h in Headers */, - 46EB2E00029A90 /* FIROptionsInternal.h in Headers */, - 46EB2E00029B80 /* FIRQuery.h in Headers */, - 46EB2E00029B90 /* FIRQuerySnapshot.h in Headers */, - 46EB2E00029BA0 /* FIRSnapshotMetadata.h in Headers */, - 46EB2E00029BB0 /* FIRTimestamp.h in Headers */, - 46EB2E00029BC0 /* FIRTransaction.h in Headers */, - 46EB2E00029BD0 /* FIRTransactionOptions.h in Headers */, - 46EB2E00029BE0 /* FIRWriteBatch.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00029CA0 /* Headers */ = { + 46EB2E000298E0 /* FIRAppCheckInterop.h in Headers */, + 46EB2E000298F0 /* FIRAppCheckTokenResultInterop.h in Headers */, + 46EB2E00029900 /* FIRAppInternal.h in Headers */, + 46EB2E00029B10 /* FIRAuthInterop.h in Headers */, + 46EB2E000299C0 /* FIRCollectionReference.h in Headers */, + 46EB2E00029910 /* FIRComponent.h in Headers */, + 46EB2E00029920 /* FIRComponentContainer.h in Headers */, + 46EB2E00029930 /* FIRComponentType.h in Headers */, + 46EB2E00029940 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00029950 /* FIRDependency.h in Headers */, + 46EB2E000299D0 /* FIRDocumentChange.h in Headers */, + 46EB2E000299E0 /* FIRDocumentReference.h in Headers */, + 46EB2E000299F0 /* FIRDocumentSnapshot.h in Headers */, + 46EB2E00029960 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00029A00 /* FirebaseFirestore.h in Headers */, + 46EB2E00029A10 /* FIRFieldPath.h in Headers */, + 46EB2E00029A20 /* FIRFieldValue.h in Headers */, + 46EB2E00029A30 /* FIRFirestore.h in Headers */, + 46EB2E00029A40 /* FIRFirestoreErrors.h in Headers */, + 46EB2E00029A50 /* FIRFirestoreSettings.h in Headers */, + 46EB2E00029A60 /* FIRFirestoreSource.h in Headers */, + 46EB2E00029A70 /* FIRGeoPoint.h in Headers */, + 46EB2E00029970 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E00029980 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00029990 /* FIRLibrary.h in Headers */, + 46EB2E00029A80 /* FIRListenerRegistration.h in Headers */, + 46EB2E00029A90 /* FIRLoadBundleTask.h in Headers */, + 46EB2E000299A0 /* FIRLogger.h in Headers */, + 46EB2E000299B0 /* FIROptionsInternal.h in Headers */, + 46EB2E00029AA0 /* FIRQuery.h in Headers */, + 46EB2E00029AB0 /* FIRQuerySnapshot.h in Headers */, + 46EB2E00029AC0 /* FIRSnapshotMetadata.h in Headers */, + 46EB2E00029AD0 /* FIRTimestamp.h in Headers */, + 46EB2E00029AE0 /* FIRTransaction.h in Headers */, + 46EB2E00029AF0 /* FIRTransactionOptions.h in Headers */, + 46EB2E00029B00 /* FIRWriteBatch.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00029BC0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00029F40 /* FIRAppInternal.h in Headers */, - 46EB2E00029F50 /* FIRComponent.h in Headers */, - 46EB2E00029F60 /* FIRComponentContainer.h in Headers */, - 46EB2E00029F70 /* FIRComponentType.h in Headers */, - 46EB2E00029F80 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E00029E70 /* FIRCurrentDateProvider.h in Headers */, - 46EB2E00029F90 /* FIRDependency.h in Headers */, - 46EB2E00029FA0 /* FirebaseCoreInternal.h in Headers */, - 46EB2E00029F00 /* FirebaseInstallations.h in Headers */, - 46EB2E00029EF0 /* FirebaseInstallationsInternal.h in Headers */, - 46EB2E00029FB0 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E00029FC0 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E00029F10 /* FIRInstallations.h in Headers */, - 46EB2E00029E50 /* FIRInstallationsAPIService.h in Headers */, - 46EB2E00029F20 /* FIRInstallationsAuthTokenResult.h in Headers */, - 46EB2E00029E00 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - 46EB2E00029E80 /* FIRInstallationsBackoffController.h in Headers */, - 46EB2E00029F30 /* FIRInstallationsErrors.h in Headers */, - 46EB2E00029DE0 /* FIRInstallationsErrorUtil.h in Headers */, - 46EB2E00029DF0 /* FIRInstallationsHTTPError.h in Headers */, - 46EB2E00029E90 /* FIRInstallationsIDController.h in Headers */, - 46EB2E00029E30 /* FIRInstallationsIIDStore.h in Headers */, - 46EB2E00029E40 /* FIRInstallationsIIDTokenStore.h in Headers */, - 46EB2E00029E10 /* FIRInstallationsItem.h in Headers */, - 46EB2E00029E60 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - 46EB2E00029E20 /* FIRInstallationsLogger.h in Headers */, - 46EB2E00029EA0 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - 46EB2E00029EB0 /* FIRInstallationsStatus.h in Headers */, - 46EB2E00029EC0 /* FIRInstallationsStore.h in Headers */, - 46EB2E00029ED0 /* FIRInstallationsStoredAuthToken.h in Headers */, - 46EB2E00029EE0 /* FIRInstallationsStoredItem.h in Headers */, - 46EB2E00029FD0 /* FIRLibrary.h in Headers */, - 46EB2E00029FE0 /* FIRLogger.h in Headers */, - 46EB2E00029FF0 /* FIROptionsInternal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002A0A0 /* Headers */ = { + 46EB2E00029E60 /* FIRAppInternal.h in Headers */, + 46EB2E00029E70 /* FIRComponent.h in Headers */, + 46EB2E00029E80 /* FIRComponentContainer.h in Headers */, + 46EB2E00029E90 /* FIRComponentType.h in Headers */, + 46EB2E00029EA0 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E00029D90 /* FIRCurrentDateProvider.h in Headers */, + 46EB2E00029EB0 /* FIRDependency.h in Headers */, + 46EB2E00029EC0 /* FirebaseCoreInternal.h in Headers */, + 46EB2E00029E20 /* FirebaseInstallations.h in Headers */, + 46EB2E00029E10 /* FirebaseInstallationsInternal.h in Headers */, + 46EB2E00029ED0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E00029EE0 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E00029E30 /* FIRInstallations.h in Headers */, + 46EB2E00029D70 /* FIRInstallationsAPIService.h in Headers */, + 46EB2E00029E40 /* FIRInstallationsAuthTokenResult.h in Headers */, + 46EB2E00029D20 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + 46EB2E00029DA0 /* FIRInstallationsBackoffController.h in Headers */, + 46EB2E00029E50 /* FIRInstallationsErrors.h in Headers */, + 46EB2E00029D00 /* FIRInstallationsErrorUtil.h in Headers */, + 46EB2E00029D10 /* FIRInstallationsHTTPError.h in Headers */, + 46EB2E00029DB0 /* FIRInstallationsIDController.h in Headers */, + 46EB2E00029D50 /* FIRInstallationsIIDStore.h in Headers */, + 46EB2E00029D60 /* FIRInstallationsIIDTokenStore.h in Headers */, + 46EB2E00029D30 /* FIRInstallationsItem.h in Headers */, + 46EB2E00029D80 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + 46EB2E00029D40 /* FIRInstallationsLogger.h in Headers */, + 46EB2E00029DC0 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + 46EB2E00029DD0 /* FIRInstallationsStatus.h in Headers */, + 46EB2E00029DE0 /* FIRInstallationsStore.h in Headers */, + 46EB2E00029DF0 /* FIRInstallationsStoredAuthToken.h in Headers */, + 46EB2E00029E00 /* FIRInstallationsStoredItem.h in Headers */, + 46EB2E00029EF0 /* FIRLibrary.h in Headers */, + 46EB2E00029F00 /* FIRLogger.h in Headers */, + 46EB2E00029F10 /* FIROptionsInternal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00029FC0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002A520 /* FIRAnalyticsInterop.h in Headers */, - 46EB2E0002A530 /* FIRAnalyticsInteropListener.h in Headers */, - 46EB2E0002A560 /* FIRAppInternal.h in Headers */, - 46EB2E0002A570 /* FIRComponent.h in Headers */, - 46EB2E0002A580 /* FIRComponentContainer.h in Headers */, - 46EB2E0002A590 /* FIRComponentType.h in Headers */, - 46EB2E0002A5A0 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E0002A5B0 /* FIRDependency.h in Headers */, - 46EB2E0002A5C0 /* FirebaseCoreInternal.h in Headers */, - 46EB2E0002A620 /* FirebaseInstallationsInternal.h in Headers */, - 46EB2E0002A2C0 /* FirebaseMessaging.h in Headers */, - 46EB2E0002A400 /* FirebaseMessaging.h in Headers */, - 46EB2E0002A5D0 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E0002A5E0 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E0002A540 /* FIRInteropEventNames.h in Headers */, - 46EB2E0002A550 /* FIRInteropParameterNames.h in Headers */, - 46EB2E0002A5F0 /* FIRLibrary.h in Headers */, - 46EB2E0002A600 /* FIRLogger.h in Headers */, - 46EB2E0002A410 /* FIRMessaging.h in Headers */, - 46EB2E0002A3C0 /* FIRMessaging_Private.h in Headers */, - 46EB2E0002A2D0 /* FIRMessagingAnalytics.h in Headers */, - 46EB2E0002A430 /* FIRMessagingAPNSInfo.h in Headers */, - 46EB2E0002A440 /* FIRMessagingAuthKeychain.h in Headers */, - 46EB2E0002A450 /* FIRMessagingAuthService.h in Headers */, - 46EB2E0002A460 /* FIRMessagingBackupExcludedPlist.h in Headers */, - 46EB2E0002A470 /* FIRMessagingCheckinPreferences.h in Headers */, - 46EB2E0002A480 /* FIRMessagingCheckinService.h in Headers */, - 46EB2E0002A490 /* FIRMessagingCheckinStore.h in Headers */, - 46EB2E0002A2E0 /* FIRMessagingCode.h in Headers */, - 46EB2E0002A2F0 /* FIRMessagingConstants.h in Headers */, - 46EB2E0002A300 /* FIRMessagingContextManagerService.h in Headers */, - 46EB2E0002A310 /* FIRMessagingDefines.h in Headers */, - 46EB2E0002A420 /* FIRMessagingExtensionHelper.h in Headers */, - 46EB2E0002A510 /* FIRMessagingInterop.h in Headers */, - 46EB2E0002A4A0 /* FIRMessagingKeychain.h in Headers */, - 46EB2E0002A320 /* FIRMessagingLogger.h in Headers */, - 46EB2E0002A330 /* FIRMessagingPendingTopicsList.h in Headers */, - 46EB2E0002A340 /* FIRMessagingPersistentSyncMessage.h in Headers */, - 46EB2E0002A350 /* FIRMessagingPubSub.h in Headers */, - 46EB2E0002A360 /* FIRMessagingRemoteNotificationsProxy.h in Headers */, - 46EB2E0002A370 /* FIRMessagingRmqManager.h in Headers */, - 46EB2E0002A380 /* FIRMessagingSyncMessageManager.h in Headers */, - 46EB2E0002A4B0 /* FIRMessagingTokenDeleteOperation.h in Headers */, - 46EB2E0002A4C0 /* FIRMessagingTokenFetchOperation.h in Headers */, - 46EB2E0002A4D0 /* FIRMessagingTokenInfo.h in Headers */, - 46EB2E0002A4E0 /* FIRMessagingTokenManager.h in Headers */, - 46EB2E0002A4F0 /* FIRMessagingTokenOperation.h in Headers */, - 46EB2E0002A500 /* FIRMessagingTokenStore.h in Headers */, - 46EB2E0002A390 /* FIRMessagingTopicOperation.h in Headers */, - 46EB2E0002A3A0 /* FIRMessagingTopicsCommon.h in Headers */, - 46EB2E0002A3B0 /* FIRMessagingUtilities.h in Headers */, - 46EB2E0002A610 /* FIROptionsInternal.h in Headers */, - 46EB2E0002A3F0 /* me.nanopb.h in Headers */, - 46EB2E0002A3D0 /* NSDictionary+FIRMessaging.h in Headers */, - 46EB2E0002A3E0 /* NSError+FIRMessaging.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002A6D0 /* Headers */ = { + 46EB2E0002A440 /* FIRAnalyticsInterop.h in Headers */, + 46EB2E0002A450 /* FIRAnalyticsInteropListener.h in Headers */, + 46EB2E0002A480 /* FIRAppInternal.h in Headers */, + 46EB2E0002A490 /* FIRComponent.h in Headers */, + 46EB2E0002A4A0 /* FIRComponentContainer.h in Headers */, + 46EB2E0002A4B0 /* FIRComponentType.h in Headers */, + 46EB2E0002A4C0 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E0002A4D0 /* FIRDependency.h in Headers */, + 46EB2E0002A4E0 /* FirebaseCoreInternal.h in Headers */, + 46EB2E0002A540 /* FirebaseInstallationsInternal.h in Headers */, + 46EB2E0002A1E0 /* FirebaseMessaging.h in Headers */, + 46EB2E0002A320 /* FirebaseMessaging.h in Headers */, + 46EB2E0002A4F0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E0002A500 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E0002A460 /* FIRInteropEventNames.h in Headers */, + 46EB2E0002A470 /* FIRInteropParameterNames.h in Headers */, + 46EB2E0002A510 /* FIRLibrary.h in Headers */, + 46EB2E0002A520 /* FIRLogger.h in Headers */, + 46EB2E0002A330 /* FIRMessaging.h in Headers */, + 46EB2E0002A2E0 /* FIRMessaging_Private.h in Headers */, + 46EB2E0002A1F0 /* FIRMessagingAnalytics.h in Headers */, + 46EB2E0002A350 /* FIRMessagingAPNSInfo.h in Headers */, + 46EB2E0002A360 /* FIRMessagingAuthKeychain.h in Headers */, + 46EB2E0002A370 /* FIRMessagingAuthService.h in Headers */, + 46EB2E0002A380 /* FIRMessagingBackupExcludedPlist.h in Headers */, + 46EB2E0002A390 /* FIRMessagingCheckinPreferences.h in Headers */, + 46EB2E0002A3A0 /* FIRMessagingCheckinService.h in Headers */, + 46EB2E0002A3B0 /* FIRMessagingCheckinStore.h in Headers */, + 46EB2E0002A200 /* FIRMessagingCode.h in Headers */, + 46EB2E0002A210 /* FIRMessagingConstants.h in Headers */, + 46EB2E0002A220 /* FIRMessagingContextManagerService.h in Headers */, + 46EB2E0002A230 /* FIRMessagingDefines.h in Headers */, + 46EB2E0002A340 /* FIRMessagingExtensionHelper.h in Headers */, + 46EB2E0002A430 /* FIRMessagingInterop.h in Headers */, + 46EB2E0002A3C0 /* FIRMessagingKeychain.h in Headers */, + 46EB2E0002A240 /* FIRMessagingLogger.h in Headers */, + 46EB2E0002A250 /* FIRMessagingPendingTopicsList.h in Headers */, + 46EB2E0002A260 /* FIRMessagingPersistentSyncMessage.h in Headers */, + 46EB2E0002A270 /* FIRMessagingPubSub.h in Headers */, + 46EB2E0002A280 /* FIRMessagingRemoteNotificationsProxy.h in Headers */, + 46EB2E0002A290 /* FIRMessagingRmqManager.h in Headers */, + 46EB2E0002A2A0 /* FIRMessagingSyncMessageManager.h in Headers */, + 46EB2E0002A3D0 /* FIRMessagingTokenDeleteOperation.h in Headers */, + 46EB2E0002A3E0 /* FIRMessagingTokenFetchOperation.h in Headers */, + 46EB2E0002A3F0 /* FIRMessagingTokenInfo.h in Headers */, + 46EB2E0002A400 /* FIRMessagingTokenManager.h in Headers */, + 46EB2E0002A410 /* FIRMessagingTokenOperation.h in Headers */, + 46EB2E0002A420 /* FIRMessagingTokenStore.h in Headers */, + 46EB2E0002A2B0 /* FIRMessagingTopicOperation.h in Headers */, + 46EB2E0002A2C0 /* FIRMessagingTopicsCommon.h in Headers */, + 46EB2E0002A2D0 /* FIRMessagingUtilities.h in Headers */, + 46EB2E0002A530 /* FIROptionsInternal.h in Headers */, + 46EB2E0002A310 /* me.nanopb.h in Headers */, + 46EB2E0002A2F0 /* NSDictionary+FIRMessaging.h in Headers */, + 46EB2E0002A300 /* NSError+FIRMessaging.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002A5F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002A8F0 /* ABTExperimentPayload.h in Headers */, - 46EB2E0002A8B0 /* FIRAnalyticsInterop.h in Headers */, - 46EB2E0002A8C0 /* FIRAnalyticsInteropListener.h in Headers */, - 46EB2E0002A910 /* FIRAppInternal.h in Headers */, - 46EB2E0002A920 /* FIRComponent.h in Headers */, - 46EB2E0002A930 /* FIRComponentContainer.h in Headers */, - 46EB2E0002A940 /* FIRComponentType.h in Headers */, - 46EB2E0002A950 /* FIRCoreDiagnosticsConnector.h in Headers */, - 46EB2E0002A960 /* FIRDependency.h in Headers */, - 46EB2E0002A900 /* FirebaseABTestingInternal.h in Headers */, - 46EB2E0002A970 /* FirebaseCoreInternal.h in Headers */, - 46EB2E0002A9D0 /* FirebaseInstallationsInternal.h in Headers */, - 46EB2E0002A800 /* FirebaseRemoteConfig.h in Headers */, - 46EB2E0002A980 /* FIRHeartbeatInfo.h in Headers */, - 46EB2E0002A990 /* FIRHeartbeatLogger.h in Headers */, - 46EB2E0002A8D0 /* FIRInteropEventNames.h in Headers */, - 46EB2E0002A8E0 /* FIRInteropParameterNames.h in Headers */, - 46EB2E0002A9A0 /* FIRLibrary.h in Headers */, - 46EB2E0002A9B0 /* FIRLogger.h in Headers */, - 46EB2E0002A9C0 /* FIROptionsInternal.h in Headers */, - 46EB2E0002A810 /* FIRRemoteConfig.h in Headers */, - 46EB2E0002A7D0 /* FIRRemoteConfig_Private.h in Headers */, - 46EB2E0002A7C0 /* FIRRemoteConfigComponent.h in Headers */, - 46EB2E0002A820 /* RCNConfigConstants.h in Headers */, - 46EB2E0002A830 /* RCNConfigContent.h in Headers */, - 46EB2E0002A840 /* RCNConfigDBManager.h in Headers */, - 46EB2E0002A850 /* RCNConfigDefines.h in Headers */, - 46EB2E0002A860 /* RCNConfigExperiment.h in Headers */, - 46EB2E0002A7E0 /* RCNConfigFetch.h in Headers */, - 46EB2E0002A7F0 /* RCNConfigSettings.h in Headers */, - 46EB2E0002A870 /* RCNConfigValue_Internal.h in Headers */, - 46EB2E0002A880 /* RCNDevice.h in Headers */, - 46EB2E0002A890 /* RCNPersonalization.h in Headers */, - 46EB2E0002A8A0 /* RCNUserDefaultsManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002AA80 /* Headers */ = { + 46EB2E0002A810 /* ABTExperimentPayload.h in Headers */, + 46EB2E0002A7D0 /* FIRAnalyticsInterop.h in Headers */, + 46EB2E0002A7E0 /* FIRAnalyticsInteropListener.h in Headers */, + 46EB2E0002A830 /* FIRAppInternal.h in Headers */, + 46EB2E0002A840 /* FIRComponent.h in Headers */, + 46EB2E0002A850 /* FIRComponentContainer.h in Headers */, + 46EB2E0002A860 /* FIRComponentType.h in Headers */, + 46EB2E0002A870 /* FIRCoreDiagnosticsConnector.h in Headers */, + 46EB2E0002A880 /* FIRDependency.h in Headers */, + 46EB2E0002A820 /* FirebaseABTestingInternal.h in Headers */, + 46EB2E0002A890 /* FirebaseCoreInternal.h in Headers */, + 46EB2E0002A8F0 /* FirebaseInstallationsInternal.h in Headers */, + 46EB2E0002A720 /* FirebaseRemoteConfig.h in Headers */, + 46EB2E0002A8A0 /* FIRHeartbeatInfo.h in Headers */, + 46EB2E0002A8B0 /* FIRHeartbeatLogger.h in Headers */, + 46EB2E0002A7F0 /* FIRInteropEventNames.h in Headers */, + 46EB2E0002A800 /* FIRInteropParameterNames.h in Headers */, + 46EB2E0002A8C0 /* FIRLibrary.h in Headers */, + 46EB2E0002A8D0 /* FIRLogger.h in Headers */, + 46EB2E0002A8E0 /* FIROptionsInternal.h in Headers */, + 46EB2E0002A730 /* FIRRemoteConfig.h in Headers */, + 46EB2E0002A6F0 /* FIRRemoteConfig_Private.h in Headers */, + 46EB2E0002A6E0 /* FIRRemoteConfigComponent.h in Headers */, + 46EB2E0002A740 /* RCNConfigConstants.h in Headers */, + 46EB2E0002A750 /* RCNConfigContent.h in Headers */, + 46EB2E0002A760 /* RCNConfigDBManager.h in Headers */, + 46EB2E0002A770 /* RCNConfigDefines.h in Headers */, + 46EB2E0002A780 /* RCNConfigExperiment.h in Headers */, + 46EB2E0002A700 /* RCNConfigFetch.h in Headers */, + 46EB2E0002A710 /* RCNConfigSettings.h in Headers */, + 46EB2E0002A790 /* RCNConfigValue_Internal.h in Headers */, + 46EB2E0002A7A0 /* RCNDevice.h in Headers */, + 46EB2E0002A7B0 /* RCNPersonalization.h in Headers */, + 46EB2E0002A7C0 /* RCNUserDefaultsManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002A9A0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002AD00 /* CallstackHelper.h in Headers */, - 46EB2E0002AB70 /* CertificateUtils.h in Headers */, - 46EB2E0002AB80 /* ConnectionContextStore.h in Headers */, - 46EB2E0002AB90 /* FireAndForgetBasedFlipperResponder.h in Headers */, - 46EB2E0002ABA0 /* FlipperBase64.h in Headers */, - 46EB2E0002ABB0 /* FlipperCertificateExchangeMedium.h in Headers */, - 46EB2E0002ABC0 /* FlipperCertificateProvider.h in Headers */, - 46EB2E0002ABD0 /* FlipperClient.h in Headers */, - 46EB2E0002ABE0 /* FlipperConnection.h in Headers */, - 46EB2E0002ABF0 /* FlipperConnectionImpl.h in Headers */, - 46EB2E0002AC00 /* FlipperConnectionManager.h in Headers */, - 46EB2E0002AC10 /* FlipperConnectionManagerImpl.h in Headers */, - 46EB2E0002AC20 /* FlipperInitConfig.h in Headers */, - 46EB2E0002AC30 /* FlipperPlugin.h in Headers */, - 46EB2E0002AC40 /* FlipperResponder.h in Headers */, - 46EB2E0002AC50 /* FlipperResponderImpl.h in Headers */, - 46EB2E0002AC60 /* FlipperRSocket.h in Headers */, - 46EB2E0002AC70 /* FlipperRSocketResponder.h in Headers */, - 46EB2E0002AC80 /* FlipperSocket.h in Headers */, - 46EB2E0002AC90 /* FlipperSocketProvider.h in Headers */, - 46EB2E0002ACA0 /* FlipperState.h in Headers */, - 46EB2E0002ACB0 /* FlipperStateUpdateListener.h in Headers */, - 46EB2E0002ACC0 /* FlipperStep.h in Headers */, - 46EB2E0002ACD0 /* FlipperTransportTypes.h in Headers */, - 46EB2E0002ACE0 /* FlipperURLSerializer.h in Headers */, - 46EB2E0002ACF0 /* Log.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002ADC0 /* Headers */ = { + 46EB2E0002AC20 /* CallstackHelper.h in Headers */, + 46EB2E0002AA90 /* CertificateUtils.h in Headers */, + 46EB2E0002AAA0 /* ConnectionContextStore.h in Headers */, + 46EB2E0002AAB0 /* FireAndForgetBasedFlipperResponder.h in Headers */, + 46EB2E0002AAC0 /* FlipperBase64.h in Headers */, + 46EB2E0002AAD0 /* FlipperCertificateExchangeMedium.h in Headers */, + 46EB2E0002AAE0 /* FlipperCertificateProvider.h in Headers */, + 46EB2E0002AAF0 /* FlipperClient.h in Headers */, + 46EB2E0002AB00 /* FlipperConnection.h in Headers */, + 46EB2E0002AB10 /* FlipperConnectionImpl.h in Headers */, + 46EB2E0002AB20 /* FlipperConnectionManager.h in Headers */, + 46EB2E0002AB30 /* FlipperConnectionManagerImpl.h in Headers */, + 46EB2E0002AB40 /* FlipperInitConfig.h in Headers */, + 46EB2E0002AB50 /* FlipperPlugin.h in Headers */, + 46EB2E0002AB60 /* FlipperResponder.h in Headers */, + 46EB2E0002AB70 /* FlipperResponderImpl.h in Headers */, + 46EB2E0002AB80 /* FlipperRSocket.h in Headers */, + 46EB2E0002AB90 /* FlipperRSocketResponder.h in Headers */, + 46EB2E0002ABA0 /* FlipperSocket.h in Headers */, + 46EB2E0002ABB0 /* FlipperSocketProvider.h in Headers */, + 46EB2E0002ABC0 /* FlipperState.h in Headers */, + 46EB2E0002ABD0 /* FlipperStateUpdateListener.h in Headers */, + 46EB2E0002ABE0 /* FlipperStep.h in Headers */, + 46EB2E0002ABF0 /* FlipperTransportTypes.h in Headers */, + 46EB2E0002AC00 /* FlipperURLSerializer.h in Headers */, + 46EB2E0002AC10 /* Log.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002ACE0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002AED0 /* Headers */ = { + 46EB2E0002ADF0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002AF90 /* bignum.h in Headers */, - 46EB2E0002AF80 /* bignum-dtoa.h in Headers */, - 46EB2E0002AFA0 /* cached-powers.h in Headers */, - 46EB2E0002AFB0 /* diy-fp.h in Headers */, - 46EB2E0002AFC0 /* double-conversion.h in Headers */, - 46EB2E0002AFD0 /* fast-dtoa.h in Headers */, - 46EB2E0002AFE0 /* fixed-dtoa.h in Headers */, - 46EB2E0002AFF0 /* ieee.h in Headers */, - 46EB2E0002B000 /* strtod.h in Headers */, - 46EB2E0002B010 /* utils.h in Headers */, + 46EB2E0002AEB0 /* bignum.h in Headers */, + 46EB2E0002AEA0 /* bignum-dtoa.h in Headers */, + 46EB2E0002AEC0 /* cached-powers.h in Headers */, + 46EB2E0002AED0 /* diy-fp.h in Headers */, + 46EB2E0002AEE0 /* double-conversion.h in Headers */, + 46EB2E0002AEF0 /* fast-dtoa.h in Headers */, + 46EB2E0002AF00 /* fixed-dtoa.h in Headers */, + 46EB2E0002AF10 /* ieee.h in Headers */, + 46EB2E0002AF20 /* strtod.h in Headers */, + 46EB2E0002AF30 /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B0D0 /* Headers */ = { + 46EB2E0002AFF0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002B110 /* args.h in Headers */, - 46EB2E0002B120 /* chrono.h in Headers */, - 46EB2E0002B130 /* color.h in Headers */, - 46EB2E0002B140 /* compile.h in Headers */, - 46EB2E0002B150 /* core.h in Headers */, - 46EB2E0002B170 /* format.h in Headers */, - 46EB2E0002B160 /* format-inl.h in Headers */, - 46EB2E0002B180 /* locale.h in Headers */, - 46EB2E0002B190 /* os.h in Headers */, - 46EB2E0002B1A0 /* ostream.h in Headers */, - 46EB2E0002B1B0 /* printf.h in Headers */, - 46EB2E0002B1C0 /* ranges.h in Headers */, + 46EB2E0002B030 /* args.h in Headers */, + 46EB2E0002B040 /* chrono.h in Headers */, + 46EB2E0002B050 /* color.h in Headers */, + 46EB2E0002B060 /* compile.h in Headers */, + 46EB2E0002B070 /* core.h in Headers */, + 46EB2E0002B090 /* format.h in Headers */, + 46EB2E0002B080 /* format-inl.h in Headers */, + 46EB2E0002B0A0 /* locale.h in Headers */, + 46EB2E0002B0B0 /* os.h in Headers */, + 46EB2E0002B0C0 /* ostream.h in Headers */, + 46EB2E0002B0D0 /* printf.h in Headers */, + 46EB2E0002B0E0 /* ranges.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B280 /* Headers */ = { + 46EB2E0002B1A0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002C7D0 /* Access.h in Headers */, - 46EB2E0002DD70 /* Accumulate.h in Headers */, - 46EB2E0002DD60 /* Accumulate-inl.h in Headers */, - 46EB2E0002E130 /* AddTasks.h in Headers */, - 46EB2E0002E120 /* AddTasks-inl.h in Headers */, - 46EB2E0002D650 /* Align.h in Headers */, - 46EB2E0002D660 /* Aligned.h in Headers */, - 46EB2E0002D040 /* ApplyTuple.h in Headers */, - 46EB2E0002D7F0 /* Arena.h in Headers */, - 46EB2E0002D7E0 /* Arena-inl.h in Headers */, - 46EB2E0002C7E0 /* Array.h in Headers */, - 46EB2E0002E660 /* Asm.h in Headers */, - 46EB2E0002D680 /* Assume.h in Headers */, - 46EB2E0002D670 /* Assume-inl.h in Headers */, - 46EB2E0002D9A0 /* AsymmetricMemoryBarrier.h in Headers */, - 46EB2E0002CB40 /* Async.h in Headers */, - 46EB2E0002E390 /* AsyncFileWriter.h in Headers */, - 46EB2E0002DD80 /* AsyncGenerator.h in Headers */, - 46EB2E0002E3A0 /* AsyncLogWriter.h in Headers */, - 46EB2E0002DD90 /* AsyncPipe.h in Headers */, - 46EB2E0002D380 /* AsyncPipe.h in Headers */, - 46EB2E0002DDA0 /* AsyncScope.h in Headers */, - 46EB2E0002D390 /* AsyncServerSocket.h in Headers */, - 46EB2E0002D3A0 /* AsyncSignalHandler.h in Headers */, - 46EB2E0002D3B0 /* AsyncSocket.h in Headers */, - 46EB2E0002D3C0 /* AsyncSocketBase.h in Headers */, - 46EB2E0002D3D0 /* AsyncSocketException.h in Headers */, - 46EB2E0002D3E0 /* AsyncSSLSocket.h in Headers */, - 46EB2E0002DDB0 /* AsyncStack.h in Headers */, - 46EB2E0002DD00 /* AsyncStack.h in Headers */, - 46EB2E0002DCF0 /* AsyncStack-inl.h in Headers */, - 46EB2E0002D3F0 /* AsyncTimeout.h in Headers */, - 46EB2E0002C970 /* AsyncTrace.h in Headers */, - 46EB2E0002D400 /* AsyncTransport.h in Headers */, - 46EB2E0002D410 /* AsyncTransportCertificate.h in Headers */, - 46EB2E0002D420 /* AsyncUDPServerSocket.h in Headers */, - 46EB2E0002D430 /* AsyncUDPSocket.h in Headers */, - 46EB2E0002C980 /* AtFork.h in Headers */, - 46EB2E0002E150 /* AtomicBatchDispatcher.h in Headers */, - 46EB2E0002E140 /* AtomicBatchDispatcher-inl.h in Headers */, - 46EB2E0002C000 /* AtomicHashArray.h in Headers */, - 46EB2E0002BFF0 /* AtomicHashArray-inl.h in Headers */, - 46EB2E0002C020 /* AtomicHashMap.h in Headers */, - 46EB2E0002C010 /* AtomicHashMap-inl.h in Headers */, - 46EB2E0002C990 /* AtomicHashUtils.h in Headers */, - 46EB2E0002C030 /* AtomicIntrusiveLinkedList.h in Headers */, - 46EB2E0002C040 /* AtomicLinkedList.h in Headers */, - 46EB2E0002D9C0 /* AtomicNotification.h in Headers */, - 46EB2E0002D9B0 /* AtomicNotification-inl.h in Headers */, - 46EB2E0002D450 /* AtomicNotificationQueue.h in Headers */, - 46EB2E0002D440 /* AtomicNotificationQueue-inl.h in Headers */, - 46EB2E0002CD80 /* AtomicReadMostlyMainPtr.h in Headers */, - 46EB2E0002D9D0 /* AtomicRef.h in Headers */, - 46EB2E0002C750 /* AtomicSharedPtr.h in Headers */, - 46EB2E0002D9E0 /* AtomicStruct.h in Headers */, - 46EB2E0002C050 /* AtomicUnorderedMap.h in Headers */, - 46EB2E0002C9A0 /* AtomicUnorderedMapUtils.h in Headers */, - 46EB2E0002DA00 /* AtomicUtil.h in Headers */, - 46EB2E0002D9F0 /* AtomicUtil-inl.h in Headers */, - 46EB2E0002DBF0 /* AtomicUtils.h in Headers */, - 46EB2E0002CD90 /* AutoTimer.h in Headers */, - 46EB2E0002E580 /* Barrier.h in Headers */, - 46EB2E0002D070 /* Barrier.h in Headers */, - 46EB2E0002E590 /* BarrierTask.h in Headers */, - 46EB2E0002D180 /* Base.h in Headers */, - 46EB2E0002D170 /* Base-inl.h in Headers */, - 46EB2E0002D600 /* BasicTransportCertificate.h in Headers */, - 46EB2E0002E160 /* BatchDispatcher.h in Headers */, - 46EB2E0002E170 /* BatchSemaphore.h in Headers */, - 46EB2E0002DDC0 /* Baton.h in Headers */, - 46EB2E0002E190 /* Baton.h in Headers */, - 46EB2E0002DA10 /* Baton.h in Headers */, - 46EB2E0002E180 /* Baton-inl.h in Headers */, - 46EB2E0002C060 /* Benchmark.h in Headers */, - 46EB2E0002C070 /* BenchmarkUtil.h in Headers */, - 46EB2E0002C7F0 /* BitIterator.h in Headers */, - 46EB2E0002C8E0 /* BitIteratorDetail.h in Headers */, - 46EB2E0002C080 /* Bits.h in Headers */, - 46EB2E0002CDA0 /* Bits.h in Headers */, - 46EB2E0002D690 /* Bits.h in Headers */, - 46EB2E0002CDB0 /* BitVectorCoding.h in Headers */, - 46EB2E0002CCB0 /* BlockingQueue.h in Headers */, - 46EB2E0002DDD0 /* BlockingWait.h in Headers */, - 46EB2E0002E1A0 /* BoostContextCompatibility.h in Headers */, - 46EB2E0002E3B0 /* BridgeFromGoogleLogging.h in Headers */, - 46EB2E0002E630 /* Builtins.h in Headers */, - 46EB2E0002D6A0 /* Byte.h in Headers */, - 46EB2E0002C760 /* CacheLocality.h in Headers */, - 46EB2E0002E1B0 /* CallOnce.h in Headers */, - 46EB2E0002DA20 /* CallOnce.h in Headers */, - 46EB2E0002C0A0 /* CancellationToken.h in Headers */, - 46EB2E0002C090 /* CancellationToken-inl.h in Headers */, - 46EB2E0002D6B0 /* CArray.h in Headers */, - 46EB2E0002D6C0 /* Cast.h in Headers */, - 46EB2E0002D460 /* CertificateIdentityVerifier.h in Headers */, - 46EB2E0002D6D0 /* CheckedMath.h in Headers */, - 46EB2E0002D260 /* Checksum.h in Headers */, - 46EB2E0002D2B0 /* ChecksumDetail.h in Headers */, - 46EB2E0002C0B0 /* Chrono.h in Headers */, - 46EB2E0002CDC0 /* Cleanup.h in Headers */, - 46EB2E0002C0C0 /* ClockGettimeWrappers.h in Headers */, - 46EB2E0002CB50 /* Codel.h in Headers */, - 46EB2E0002CDD0 /* CodingDetail.h in Headers */, - 46EB2E0002DDF0 /* Collect.h in Headers */, - 46EB2E0002DDE0 /* Collect-inl.h in Headers */, - 46EB2E0002D1A0 /* Combine.h in Headers */, - 46EB2E0002D190 /* Combine-inl.h in Headers */, - 46EB2E0002DE10 /* Concat.h in Headers */, - 46EB2E0002DE00 /* Concat-inl.h in Headers */, - 46EB2E0002C0D0 /* ConcurrentBitSet.h in Headers */, - 46EB2E0002C770 /* ConcurrentHashMap.h in Headers */, - 46EB2E0002C0E0 /* ConcurrentLazy.h in Headers */, - 46EB2E0002C100 /* ConcurrentSkipList.h in Headers */, - 46EB2E0002C0F0 /* ConcurrentSkipList-inl.h in Headers */, - 46EB2E0002E610 /* Config.h in Headers */, - 46EB2E0002E620 /* Constexpr.h in Headers */, - 46EB2E0002C110 /* ConstexprMath.h in Headers */, - 46EB2E0002C120 /* ConstructorCallback.h in Headers */, - 46EB2E0002DD40 /* Conv.h in Headers */, - 46EB2E0002C130 /* Conv.h in Headers */, - 46EB2E0002E870 /* Core.h in Headers */, - 46EB2E0002D150 /* Core.h in Headers */, - 46EB2E0002D1C0 /* Core.h in Headers */, - 46EB2E0002D1B0 /* Core-inl.h in Headers */, - 46EB2E0002C780 /* CoreCachedSharedPtr.h in Headers */, - 46EB2E0002DE20 /* Coroutine.h in Headers */, - 46EB2E0002C140 /* CPortability.h in Headers */, - 46EB2E0002C150 /* CppAttributes.h in Headers */, - 46EB2E0002C160 /* CpuId.h in Headers */, - 46EB2E0002CB60 /* CPUThreadPoolExecutor.h in Headers */, - 46EB2E0002D6E0 /* CString.h in Headers */, - 46EB2E0002E5A0 /* CurrentAsyncFrame.h in Headers */, - 46EB2E0002DE30 /* CurrentExecutor.h in Headers */, - 46EB2E0002D2F0 /* Cursor.h in Headers */, - 46EB2E0002D2E0 /* Cursor-inl.h in Headers */, - 46EB2E0002D6F0 /* CustomizationPoint.h in Headers */, - 46EB2E0002E3C0 /* CustomLogFormatter.h in Headers */, - 46EB2E0002E380 /* Debug.h in Headers */, - 46EB2E0002D470 /* DecoratedAsyncTransportWrapper.h in Headers */, - 46EB2E0002C170 /* DefaultKeepAliveExecutor.h in Headers */, - 46EB2E0002D480 /* DelayedDestruction.h in Headers */, - 46EB2E0002D490 /* DelayedDestructionBase.h in Headers */, - 46EB2E0002DA30 /* DelayedInit.h in Headers */, - 46EB2E0002C180 /* Demangle.h in Headers */, - 46EB2E0002DE50 /* Dematerialize.h in Headers */, - 46EB2E0002DE40 /* Dematerialize-inl.h in Headers */, - 46EB2E0002D4A0 /* DestructorCheck.h in Headers */, - 46EB2E0002DE60 /* DetachOnCancel.h in Headers */, - 46EB2E0002C190 /* DiscriminatedPtr.h in Headers */, - 46EB2E0002C9B0 /* DiscriminatedPtrDetail.h in Headers */, - 46EB2E0002DA50 /* DistributedMutex.h in Headers */, - 46EB2E0002DA40 /* DistributedMutex-inl.h in Headers */, - 46EB2E0002DA60 /* DistributedMutexSpecializations.h in Headers */, - 46EB2E0002CB70 /* DrivableExecutor.h in Headers */, - 46EB2E0002E080 /* Dwarf.h in Headers */, - 46EB2E0002C1B0 /* dynamic.h in Headers */, - 46EB2E0002C1A0 /* dynamic-inl.h in Headers */, - 46EB2E0002C790 /* DynamicBoundedQueue.h in Headers */, - 46EB2E0002C1C0 /* DynamicConverter.h in Headers */, - 46EB2E0002CDF0 /* DynamicParser.h in Headers */, - 46EB2E0002CDE0 /* DynamicParser-inl.h in Headers */, - 46EB2E0002CB80 /* EDFThreadPoolExecutor.h in Headers */, - 46EB2E0002E0A0 /* Elf.h in Headers */, - 46EB2E0002E090 /* Elf-inl.h in Headers */, - 46EB2E0002E0B0 /* ElfCache.h in Headers */, - 46EB2E0002CE00 /* EliasFanoCoding.h in Headers */, - 46EB2E0002D800 /* EnableSharedFromThis.h in Headers */, - 46EB2E0002C800 /* Enumerate.h in Headers */, - 46EB2E0002CE10 /* EnvUtil.h in Headers */, - 46EB2E0002E6B0 /* Event.h in Headers */, - 46EB2E0002D4B0 /* EventBase.h in Headers */, - 46EB2E0002D4D0 /* EventBaseAtomicNotificationQueue.h in Headers */, - 46EB2E0002D4C0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */, - 46EB2E0002D4E0 /* EventBaseBackendBase.h in Headers */, - 46EB2E0002D4F0 /* EventBaseLocal.h in Headers */, - 46EB2E0002E1D0 /* EventBaseLoopController.h in Headers */, - 46EB2E0002E1C0 /* EventBaseLoopController-inl.h in Headers */, - 46EB2E0002D500 /* EventBaseManager.h in Headers */, - 46EB2E0002D510 /* EventBaseThread.h in Headers */, - 46EB2E0002CE20 /* EventCount.h in Headers */, - 46EB2E0002D520 /* EventFDWrapper.h in Headers */, - 46EB2E0002D530 /* EventHandler.h in Headers */, - 46EB2E0002D540 /* EventUtil.h in Headers */, - 46EB2E0002C810 /* EvictingCacheMap.h in Headers */, - 46EB2E0002C1D0 /* Exception.h in Headers */, - 46EB2E0002D700 /* Exception.h in Headers */, - 46EB2E0002C1E0 /* ExceptionString.h in Headers */, - 46EB2E0002C200 /* ExceptionWrapper.h in Headers */, - 46EB2E0002C1F0 /* ExceptionWrapper-inl.h in Headers */, - 46EB2E0002CE30 /* ExecutionObserver.h in Headers */, - 46EB2E0002C210 /* Executor.h in Headers */, - 46EB2E0002E1E0 /* ExecutorBasedLoopController.h in Headers */, - 46EB2E0002E200 /* ExecutorLoopController.h in Headers */, - 46EB2E0002E1F0 /* ExecutorLoopController-inl.h in Headers */, - 46EB2E0002CBA0 /* ExecutorWithPriority.h in Headers */, - 46EB2E0002CB90 /* ExecutorWithPriority-inl.h in Headers */, - 46EB2E0002C220 /* Expected.h in Headers */, - 46EB2E0002D710 /* Extern.h in Headers */, - 46EB2E0002C8F0 /* F14Defaults.h in Headers */, - 46EB2E0002C900 /* F14IntrinsicsAvailability.h in Headers */, - 46EB2E0002C830 /* F14Map.h in Headers */, - 46EB2E0002C820 /* F14Map-fwd.h in Headers */, - 46EB2E0002C910 /* F14MapFallback.h in Headers */, - 46EB2E0002C920 /* F14Mask.h in Headers */, - 46EB2E0002C930 /* F14Policy.h in Headers */, - 46EB2E0002C850 /* F14Set.h in Headers */, - 46EB2E0002C840 /* F14Set-fwd.h in Headers */, - 46EB2E0002C940 /* F14SetFallback.h in Headers */, - 46EB2E0002C950 /* F14Table.h in Headers */, - 46EB2E0002D270 /* FarmHash.h in Headers */, - 46EB2E0002C230 /* FBString.h in Headers */, - 46EB2E0002C240 /* FBVector.h in Headers */, - 46EB2E0002E820 /* Fcntl.h in Headers */, - 46EB2E0002E220 /* Fiber.h in Headers */, - 46EB2E0002E210 /* Fiber-inl.h in Headers */, - 46EB2E0002CBB0 /* FiberIOExecutor.h in Headers */, - 46EB2E0002E240 /* FiberManager.h in Headers */, - 46EB2E0002E230 /* FiberManager-inl.h in Headers */, - 46EB2E0002E260 /* FiberManagerInternal.h in Headers */, - 46EB2E0002E250 /* FiberManagerInternal-inl.h in Headers */, - 46EB2E0002E280 /* FiberManagerMap.h in Headers */, - 46EB2E0002E270 /* FiberManagerMap-inl.h in Headers */, - 46EB2E0002C250 /* File.h in Headers */, - 46EB2E0002D1E0 /* File.h in Headers */, - 46EB2E0002D1D0 /* File-inl.h in Headers */, - 46EB2E0002E3D0 /* FileHandlerFactory.h in Headers */, - 46EB2E0002C260 /* FileUtil.h in Headers */, - 46EB2E0002C9C0 /* FileUtilDetail.h in Headers */, - 46EB2E0002C9D0 /* FileUtilVectorDetail.h in Headers */, - 46EB2E0002E3E0 /* FileWriterFactory.h in Headers */, - 46EB2E0002DE80 /* Filter.h in Headers */, - 46EB2E0002DE70 /* Filter-inl.h in Headers */, - 46EB2E0002C270 /* Fingerprint.h in Headers */, - 46EB2E0002C9E0 /* FingerprintPolynomial.h in Headers */, - 46EB2E0002C280 /* FixedString.h in Headers */, - 46EB2E0002CE40 /* FlatCombiningPriorityQueue.h in Headers */, - 46EB2E0002E850 /* FmtCompile.h in Headers */, - 46EB2E0002C290 /* FollyMemcpy.h in Headers */, - 46EB2E0002C870 /* Foreach.h in Headers */, - 46EB2E0002E2A0 /* ForEach.h in Headers */, - 46EB2E0002C860 /* Foreach-inl.h in Headers */, - 46EB2E0002E290 /* ForEach-inl.h in Headers */, - 46EB2E0002C2B0 /* Format.h in Headers */, - 46EB2E0002C2A0 /* Format-inl.h in Headers */, - 46EB2E0002C2C0 /* FormatArg.h in Headers */, - 46EB2E0002C2D0 /* FormatTraits.h in Headers */, - 46EB2E0002C2E0 /* Function.h in Headers */, - 46EB2E0002CE50 /* FunctionScheduler.h in Headers */, - 46EB2E0002CA00 /* Futex.h in Headers */, - 46EB2E0002C9F0 /* Futex-inl.h in Headers */, - 46EB2E0002D0A0 /* Future.h in Headers */, - 46EB2E0002D080 /* Future-inl.h in Headers */, - 46EB2E0002D090 /* Future-pre.h in Headers */, - 46EB2E0002CE60 /* FutureDAG.h in Headers */, - 46EB2E0002CBC0 /* FutureExecutor.h in Headers */, - 46EB2E0002D0B0 /* FutureSplitter.h in Headers */, - 46EB2E0002DE90 /* FutureUtil.h in Headers */, - 46EB2E0002DEA0 /* Generator.h in Headers */, - 46EB2E0002E2B0 /* GenericBaton.h in Headers */, - 46EB2E0002E780 /* GFlags.h in Headers */, - 46EB2E0002CBD0 /* GlobalExecutor.h in Headers */, - 46EB2E0002D300 /* GlobalShutdownSocketSet.h in Headers */, - 46EB2E0002CBE0 /* GlobalThreadPoolList.h in Headers */, - 46EB2E0002C2F0 /* GLog.h in Headers */, - 46EB2E0002E3F0 /* GlogStyleFormatter.h in Headers */, - 46EB2E0002DEB0 /* GmockHelpers.h in Headers */, - 46EB2E0002E880 /* GraphCycleDetector.h in Headers */, - 46EB2E0002C300 /* GroupVarint.h in Headers */, - 46EB2E0002CA10 /* GroupVarintDetail.h in Headers */, - 46EB2E0002DEC0 /* GtestHelpers.h in Headers */, - 46EB2E0002E2C0 /* GuardPageAllocator.h in Headers */, - 46EB2E0002DD50 /* Hardware.h in Headers */, - 46EB2E0002DC00 /* Hardware.h in Headers */, - 46EB2E0002DC90 /* HardwareConcurrency.h in Headers */, - 46EB2E0002C310 /* Hash.h in Headers */, - 46EB2E0002D280 /* Hash.h in Headers */, - 46EB2E0002DA80 /* Hazptr.h in Headers */, - 46EB2E0002DA70 /* Hazptr-fwd.h in Headers */, - 46EB2E0002DA90 /* HazptrDomain.h in Headers */, - 46EB2E0002DAA0 /* HazptrHolder.h in Headers */, - 46EB2E0002DAB0 /* HazptrObj.h in Headers */, - 46EB2E0002DAC0 /* HazptrObjLinked.h in Headers */, - 46EB2E0002DAD0 /* HazptrRec.h in Headers */, - 46EB2E0002DAE0 /* HazptrThreadPoolExecutor.h in Headers */, - 46EB2E0002DAF0 /* HazptrThrLocal.h in Headers */, - 46EB2E0002DC10 /* HazptrUtils.h in Headers */, - 46EB2E0002E5B0 /* Helpers.h in Headers */, - 46EB2E0002C890 /* HeterogeneousAccess.h in Headers */, - 46EB2E0002C880 /* HeterogeneousAccess-fwd.h in Headers */, - 46EB2E0002D560 /* HHWheelTimer.h in Headers */, - 46EB2E0002D550 /* HHWheelTimer-fwd.h in Headers */, - 46EB2E0002E400 /* ImmediateFileWriter.h in Headers */, - 46EB2E0002C320 /* Indestructible.h in Headers */, - 46EB2E0002C330 /* IndexedMemPool.h in Headers */, - 46EB2E0002D2C0 /* Init.h in Headers */, - 46EB2E0002E410 /* Init.h in Headers */, - 46EB2E0002D900 /* Init.h in Headers */, - 46EB2E0002CD20 /* InitThreadFactory.h in Headers */, - 46EB2E0002CBF0 /* InlineExecutor.h in Headers */, - 46EB2E0002DC20 /* InlineFunctionRef.h in Headers */, - 46EB2E0002E5C0 /* InlineTask.h in Headers */, - 46EB2E0002CE70 /* Instructions.h in Headers */, - 46EB2E0002C340 /* IntrusiveList.h in Headers */, - 46EB2E0002DED0 /* Invoke.h in Headers */, - 46EB2E0002D050 /* Invoke.h in Headers */, - 46EB2E0002D310 /* IOBuf.h in Headers */, - 46EB2E0002D320 /* IOBufQueue.h in Headers */, - 46EB2E0002CC00 /* IOExecutor.h in Headers */, - 46EB2E0002CC10 /* IOObjectCache.h in Headers */, - 46EB2E0002CC20 /* IOThreadPoolExecutor.h in Headers */, - 46EB2E0002E760 /* IOVec.h in Headers */, - 46EB2E0002CA20 /* IPAddress.h in Headers */, - 46EB2E0002C350 /* IPAddress.h in Headers */, - 46EB2E0002C360 /* IPAddressException.h in Headers */, - 46EB2E0002CA30 /* IPAddressSource.h in Headers */, - 46EB2E0002C370 /* IPAddressV4.h in Headers */, - 46EB2E0002C380 /* IPAddressV6.h in Headers */, - 46EB2E0002D1F0 /* IStream.h in Headers */, - 46EB2E0002C8A0 /* Iterator.h in Headers */, - 46EB2E0002CA40 /* Iterators.h in Headers */, - 46EB2E0002CE80 /* JemallocHugePageAllocator.h in Headers */, - 46EB2E0002CE90 /* JemallocNodumpAllocator.h in Headers */, - 46EB2E0002C390 /* json.h in Headers */, - 46EB2E0002C3A0 /* json_patch.h in Headers */, - 46EB2E0002C3B0 /* json_pointer.h in Headers */, - 46EB2E0002CEA0 /* JSONSchema.h in Headers */, - 46EB2E0002D720 /* Keep.h in Headers */, - 46EB2E0002D730 /* Launder.h in Headers */, - 46EB2E0002C3C0 /* Lazy.h in Headers */, - 46EB2E0002DB00 /* LifoSem.h in Headers */, - 46EB2E0002CCC0 /* LifoSemMPMCQueue.h in Headers */, - 46EB2E0002C3D0 /* Likely.h in Headers */, - 46EB2E0002E0C0 /* LineReader.h in Headers */, - 46EB2E0002DB10 /* Lock.h in Headers */, - 46EB2E0002CEB0 /* LockFreeRingBuffer.h in Headers */, - 46EB2E0002C3E0 /* LockTraits.h in Headers */, - 46EB2E0002E420 /* LogCategory.h in Headers */, - 46EB2E0002E430 /* LogCategoryConfig.h in Headers */, - 46EB2E0002E440 /* LogConfig.h in Headers */, - 46EB2E0002E450 /* LogConfigParser.h in Headers */, - 46EB2E0002E460 /* LogFormatter.h in Headers */, - 46EB2E0002E470 /* Logger.h in Headers */, - 46EB2E0002E480 /* LoggerDB.h in Headers */, - 46EB2E0002E490 /* LogHandler.h in Headers */, - 46EB2E0002E4A0 /* LogHandlerConfig.h in Headers */, - 46EB2E0002E4B0 /* LogHandlerFactory.h in Headers */, - 46EB2E0002E4C0 /* LogLevel.h in Headers */, - 46EB2E0002E4D0 /* LogMessage.h in Headers */, - 46EB2E0002E4E0 /* LogName.h in Headers */, - 46EB2E0002E4F0 /* LogStream.h in Headers */, - 46EB2E0002E500 /* LogStreamProcessor.h in Headers */, - 46EB2E0002E510 /* LogWriter.h in Headers */, - 46EB2E0002E2D0 /* LoopController.h in Headers */, - 46EB2E0002C3F0 /* MacAddress.h in Headers */, - 46EB2E0002D810 /* MallctlHelper.h in Headers */, - 46EB2E0002E5D0 /* Malloc.h in Headers */, - 46EB2E0002D820 /* Malloc.h in Headers */, - 46EB2E0002E640 /* Malloc.h in Headers */, - 46EB2E0002D8B0 /* MallocImpl.h in Headers */, - 46EB2E0002CC30 /* ManualExecutor.h in Headers */, - 46EB2E0002E5E0 /* ManualLifetime.h in Headers */, - 46EB2E0002D0C0 /* ManualTimekeeper.h in Headers */, - 46EB2E0002C400 /* MapUtil.h in Headers */, - 46EB2E0002DEF0 /* Materialize.h in Headers */, - 46EB2E0002DEE0 /* Materialize-inl.h in Headers */, - 46EB2E0002C410 /* Math.h in Headers */, - 46EB2E0002E650 /* Math.h in Headers */, - 46EB2E0002C420 /* Memory.h in Headers */, - 46EB2E0002CA50 /* MemoryIdler.h in Headers */, - 46EB2E0002DCA0 /* MemoryMapping.h in Headers */, - 46EB2E0002D830 /* MemoryResource.h in Headers */, - 46EB2E0002C8B0 /* Merge.h in Headers */, - 46EB2E0002DF10 /* Merge.h in Headers */, - 46EB2E0002DF00 /* Merge-inl.h in Headers */, - 46EB2E0002CC40 /* MeteredExecutor.h in Headers */, - 46EB2E0002C430 /* MicroLock.h in Headers */, - 46EB2E0002C440 /* MicroSpinLock.h in Headers */, - 46EB2E0002DB20 /* MicroSpinLock.h in Headers */, - 46EB2E0002C450 /* MoveWrapper.h in Headers */, - 46EB2E0002C460 /* MPMCPipeline.h in Headers */, - 46EB2E0002CA60 /* MPMCPipelineDetail.h in Headers */, - 46EB2E0002C470 /* MPMCQueue.h in Headers */, - 46EB2E0002DF30 /* Multiplex.h in Headers */, - 46EB2E0002DF20 /* Multiplex-inl.h in Headers */, - 46EB2E0002DF40 /* Mutex.h in Headers */, - 46EB2E0002CD30 /* NamedThreadFactory.h in Headers */, - 46EB2E0002DB30 /* NativeSemaphore.h in Headers */, - 46EB2E0002CEC0 /* NestedCommandLineApp.h in Headers */, - 46EB2E0002D8C0 /* NetOps.h in Headers */, - 46EB2E0002D8D0 /* NetOpsDispatcher.h in Headers */, - 46EB2E0002D8E0 /* NetworkSocket.h in Headers */, - 46EB2E0002D850 /* not_null.h in Headers */, - 46EB2E0002D840 /* not_null-inl.h in Headers */, - 46EB2E0002D570 /* NotificationQueue.h in Headers */, - 46EB2E0002E520 /* ObjectToString.h in Headers */, - 46EB2E0002E6D0 /* Observable.h in Headers */, - 46EB2E0002E6C0 /* Observable-inl.h in Headers */, - 46EB2E0002E700 /* Observer.h in Headers */, - 46EB2E0002E6E0 /* Observer-inl.h in Headers */, - 46EB2E0002E6F0 /* Observer-pre.h in Headers */, - 46EB2E0002E890 /* ObserverManager.h in Headers */, - 46EB2E0002E670 /* OpenSSL.h in Headers */, - 46EB2E0002D910 /* OpenSSLCertUtils.h in Headers */, - 46EB2E0002D920 /* OpenSSLHash.h in Headers */, - 46EB2E0002D930 /* OpenSSLLockTypes.h in Headers */, - 46EB2E0002D940 /* OpenSSLPtrTypes.h in Headers */, - 46EB2E0002D980 /* OpenSSLSession.h in Headers */, - 46EB2E0002D990 /* OpenSSLThreading.h in Headers */, - 46EB2E0002D610 /* OpenSSLTransportCertificate.h in Headers */, - 46EB2E0002D620 /* OpenSSLUtils.h in Headers */, - 46EB2E0002D950 /* OpenSSLVersionFinder.h in Headers */, - 46EB2E0002C480 /* Optional.h in Headers */, - 46EB2E0002D740 /* Ordering.h in Headers */, - 46EB2E0002C490 /* Overload.h in Headers */, - 46EB2E0002C4A0 /* PackedSyncPtr.h in Headers */, - 46EB2E0002C4B0 /* Padded.h in Headers */, - 46EB2E0002D210 /* Parallel.h in Headers */, - 46EB2E0002D200 /* Parallel-inl.h in Headers */, - 46EB2E0002D230 /* ParallelMap.h in Headers */, - 46EB2E0002D220 /* ParallelMap-inl.h in Headers */, - 46EB2E0002DB40 /* ParkingLot.h in Headers */, - 46EB2E0002D060 /* Partial.h in Headers */, - 46EB2E0002D580 /* PasswordInFile.h in Headers */, - 46EB2E0002D2D0 /* Phase.h in Headers */, - 46EB2E0002DB50 /* PicoSpinLock.h in Headers */, - 46EB2E0002DCB0 /* Pid.h in Headers */, - 46EB2E0002C4D0 /* Poly.h in Headers */, - 46EB2E0002C4C0 /* Poly-inl.h in Headers */, - 46EB2E0002CA70 /* PolyDetail.h in Headers */, - 46EB2E0002C4E0 /* PolyException.h in Headers */, - 46EB2E0002D0D0 /* Portability.h in Headers */, - 46EB2E0002C4F0 /* Portability.h in Headers */, - 46EB2E0002C500 /* Preprocessor.h in Headers */, - 46EB2E0002D750 /* Pretty.h in Headers */, - 46EB2E0002CED0 /* PrimaryPtr.h in Headers */, - 46EB2E0002CCD0 /* PriorityLifoSemMPMCQueue.h in Headers */, - 46EB2E0002CD40 /* PriorityThreadFactory.h in Headers */, - 46EB2E0002CCE0 /* PriorityUnboundedBlockingQueue.h in Headers */, - 46EB2E0002C7A0 /* PriorityUnboundedQueueSet.h in Headers */, - 46EB2E0002C510 /* ProducerConsumerQueue.h in Headers */, - 46EB2E0002CEE0 /* ProgramOptions.h in Headers */, - 46EB2E0002E2F0 /* Promise.h in Headers */, - 46EB2E0002D0F0 /* Promise.h in Headers */, - 46EB2E0002E2E0 /* Promise-inl.h in Headers */, - 46EB2E0002D0E0 /* Promise-inl.h in Headers */, - 46EB2E0002D760 /* PropagateConst.h in Headers */, - 46EB2E0002DC40 /* ProxyLockable.h in Headers */, - 46EB2E0002DC30 /* ProxyLockable-inl.h in Headers */, - 46EB2E0002E680 /* PThread.h in Headers */, - 46EB2E0002CC50 /* QueuedImmediateExecutor.h in Headers */, - 46EB2E0002C7B0 /* QueueObserver.h in Headers */, - 46EB2E0002CF00 /* QuotientMultiSet.h in Headers */, - 46EB2E0002CEF0 /* QuotientMultiSet-inl.h in Headers */, - 46EB2E0002C530 /* Random.h in Headers */, - 46EB2E0002C520 /* Random-inl.h in Headers */, - 46EB2E0002C540 /* Range.h in Headers */, - 46EB2E0002CA80 /* RangeCommon.h in Headers */, - 46EB2E0002CA90 /* RangeSse42.h in Headers */, - 46EB2E0002E530 /* RateLimiter.h in Headers */, - 46EB2E0002DB70 /* Rcu.h in Headers */, - 46EB2E0002DB60 /* Rcu-inl.h in Headers */, - 46EB2E0002CF10 /* ReadMostlySharedPtr.h in Headers */, - 46EB2E0002D340 /* RecordIO.h in Headers */, - 46EB2E0002D330 /* RecordIO-inl.h in Headers */, - 46EB2E0002D860 /* ReentrantAllocator.h in Headers */, - 46EB2E0002CF20 /* RelaxedConcurrentPriorityQueue.h in Headers */, - 46EB2E0002C550 /* Replaceable.h in Headers */, - 46EB2E0002D590 /* Request.h in Headers */, - 46EB2E0002DF50 /* Result.h in Headers */, - 46EB2E0002DF60 /* Retry.h in Headers */, - 46EB2E0002D100 /* Retrying.h in Headers */, - 46EB2E0002DF70 /* RustAdaptors.h in Headers */, - 46EB2E0002D770 /* RValueReferenceWrapper.h in Headers */, - 46EB2E0002C560 /* RWSpinLock.h in Headers */, - 46EB2E0002DB80 /* RWSpinLock.h in Headers */, - 46EB2E0002D780 /* SafeAssert.h in Headers */, - 46EB2E0002D870 /* SanitizeAddress.h in Headers */, - 46EB2E0002D880 /* SanitizeLeak.h in Headers */, - 46EB2E0002DB90 /* SanitizeThread.h in Headers */, - 46EB2E0002DBA0 /* SaturatingSemaphore.h in Headers */, - 46EB2E0002E860 /* Sched.h in Headers */, - 46EB2E0002CC60 /* ScheduledExecutor.h in Headers */, - 46EB2E0002D5A0 /* ScopedEventBaseThread.h in Headers */, - 46EB2E0002DD10 /* ScopedTraceSection.h in Headers */, - 46EB2E0002C570 /* ScopeGuard.h in Headers */, - 46EB2E0002CF30 /* Select64.h in Headers */, - 46EB2E0002E300 /* Semaphore.h in Headers */, - 46EB2E0002E310 /* SemaphoreBase.h in Headers */, - 46EB2E0002CC70 /* SequencedExecutor.h in Headers */, - 46EB2E0002CC80 /* SerialExecutor.h in Headers */, - 46EB2E0002DF80 /* SharedLock.h in Headers */, - 46EB2E0002DF90 /* SharedMutex.h in Headers */, - 46EB2E0002C580 /* SharedMutex.h in Headers */, - 46EB2E0002D120 /* SharedPromise.h in Headers */, - 46EB2E0002D110 /* SharedPromise-inl.h in Headers */, - 46EB2E0002DCC0 /* Shell.h in Headers */, - 46EB2E0002D350 /* ShutdownSocketSet.h in Headers */, - 46EB2E0002E0D0 /* SignalHandler.h in Headers */, - 46EB2E0002E320 /* SimpleLoopController.h in Headers */, - 46EB2E0002E720 /* SimpleObservable.h in Headers */, - 46EB2E0002E710 /* SimpleObservable-inl.h in Headers */, - 46EB2E0002CAA0 /* Singleton.h in Headers */, - 46EB2E0002C5A0 /* Singleton.h in Headers */, - 46EB2E0002C590 /* Singleton-inl.h in Headers */, - 46EB2E0002CF40 /* SingletonRelaxedCounter.h in Headers */, - 46EB2E0002CAB0 /* SingletonStackTrace.h in Headers */, - 46EB2E0002C5B0 /* SingletonThreadLocal.h in Headers */, - 46EB2E0002CF50 /* SingleWriterFixedHashMap.h in Headers */, - 46EB2E0002DFB0 /* Sleep.h in Headers */, - 46EB2E0002DFA0 /* Sleep-inl.h in Headers */, - 46EB2E0002DC50 /* Sleeper.h in Headers */, - 46EB2E0002CAC0 /* SlowFingerprint.h in Headers */, - 46EB2E0002C5C0 /* small_vector.h in Headers */, - 46EB2E0002DBB0 /* SmallLocks.h in Headers */, - 46EB2E0002C5D0 /* SocketAddress.h in Headers */, - 46EB2E0002CAD0 /* SocketFastOpen.h in Headers */, - 46EB2E0002D8F0 /* SocketFileDescriptorMap.h in Headers */, - 46EB2E0002D360 /* SocketOptionMap.h in Headers */, - 46EB2E0002E7E0 /* Sockets.h in Headers */, - 46EB2E0002CC90 /* SoftRealTimeExecutor.h in Headers */, - 46EB2E0002C5E0 /* sorted_vector_types.h in Headers */, - 46EB2E0002C8C0 /* SparseByteSet.h in Headers */, - 46EB2E0002DC60 /* Spin.h in Headers */, - 46EB2E0002C5F0 /* SpinLock.h in Headers */, - 46EB2E0002D290 /* SpookyHashV1.h in Headers */, - 46EB2E0002D2A0 /* SpookyHashV2.h in Headers */, - 46EB2E0002CAE0 /* Sse.h in Headers */, - 46EB2E0002D5B0 /* SSLContext.h in Headers */, - 46EB2E0002D630 /* SSLErrors.h in Headers */, - 46EB2E0002D5C0 /* SSLOptions.h in Headers */, - 46EB2E0002D960 /* SSLSession.h in Headers */, - 46EB2E0002D970 /* SSLSessionManager.h in Headers */, - 46EB2E0002E0E0 /* StackTrace.h in Headers */, - 46EB2E0002CF60 /* StampedPtr.h in Headers */, - 46EB2E0002E540 /* StandardLogHandler.h in Headers */, - 46EB2E0002E550 /* StandardLogHandlerFactory.h in Headers */, - 46EB2E0002D790 /* StaticConst.h in Headers */, - 46EB2E0002CAF0 /* StaticSingletonManager.h in Headers */, - 46EB2E0002DD30 /* StaticTracepoint.h in Headers */, - 46EB2E0002DD20 /* StaticTracepoint-ELFx86.h in Headers */, - 46EB2E0002E840 /* Stdio.h in Headers */, - 46EB2E0002E830 /* Stdlib.h in Headers */, - 46EB2E0002C600 /* stop_watch.h in Headers */, - 46EB2E0002CCA0 /* StrandExecutor.h in Headers */, - 46EB2E0002E560 /* StreamHandlerFactory.h in Headers */, - 46EB2E0002D250 /* String.h in Headers */, - 46EB2E0002E810 /* String.h in Headers */, - 46EB2E0002C620 /* String.h in Headers */, - 46EB2E0002D240 /* String-inl.h in Headers */, - 46EB2E0002C610 /* String-inl.h in Headers */, - 46EB2E0002CF70 /* StringKeyedCommon.h in Headers */, - 46EB2E0002CF80 /* StringKeyedMap.h in Headers */, - 46EB2E0002CF90 /* StringKeyedSet.h in Headers */, - 46EB2E0002CFA0 /* StringKeyedUnorderedMap.h in Headers */, - 46EB2E0002CFB0 /* StringKeyedUnorderedSet.h in Headers */, - 46EB2E0002CFC0 /* STTimerFDTimeoutManager.h in Headers */, - 46EB2E0002C630 /* Subprocess.h in Headers */, - 46EB2E0002E0F0 /* SymbolizedFrame.h in Headers */, - 46EB2E0002E100 /* SymbolizePrinter.h in Headers */, - 46EB2E0002E110 /* Symbolizer.h in Headers */, - 46EB2E0002C640 /* Synchronized.h in Headers */, - 46EB2E0002C650 /* SynchronizedPtr.h in Headers */, - 46EB2E0002E800 /* SysFile.h in Headers */, - 46EB2E0002E7F0 /* SysMembarrier.h in Headers */, - 46EB2E0002E7D0 /* SysMman.h in Headers */, - 46EB2E0002E6A0 /* SysResource.h in Headers */, - 46EB2E0002E7C0 /* SysStat.h in Headers */, - 46EB2E0002E790 /* SysSyscall.h in Headers */, - 46EB2E0002E7B0 /* SysTime.h in Headers */, - 46EB2E0002E770 /* SysTypes.h in Headers */, - 46EB2E0002E7A0 /* SysUio.h in Headers */, - 46EB2E0002DFC0 /* Task.h in Headers */, - 46EB2E0002DBC0 /* Tearable.h in Headers */, - 46EB2E0002CFD0 /* TestUtil.h in Headers */, - 46EB2E0002D890 /* ThreadCachedArena.h in Headers */, - 46EB2E0002C660 /* ThreadCachedInt.h in Headers */, - 46EB2E0002DC70 /* ThreadCachedInts.h in Headers */, - 46EB2E0002DC80 /* ThreadCachedLists.h in Headers */, - 46EB2E0002CD00 /* ThreadedExecutor.h in Headers */, - 46EB2E0002CFE0 /* ThreadedRepeatingFunctionRunner.h in Headers */, - 46EB2E0002CD50 /* ThreadFactory.h in Headers */, - 46EB2E0002DCD0 /* ThreadId.h in Headers */, - 46EB2E0002C670 /* ThreadLocal.h in Headers */, - 46EB2E0002CB00 /* ThreadLocalDetail.h in Headers */, - 46EB2E0002DCE0 /* ThreadName.h in Headers */, - 46EB2E0002CD10 /* ThreadPoolExecutor.h in Headers */, - 46EB2E0002D130 /* ThreadWheelTimekeeper.h in Headers */, - 46EB2E0002CFF0 /* ThreadWheelTimekeeperHighRes.h in Headers */, - 46EB2E0002D7A0 /* Thunk.h in Headers */, - 46EB2E0002E750 /* Time.h in Headers */, - 46EB2E0002CD60 /* TimedDrivableExecutor.h in Headers */, - 46EB2E0002E340 /* TimedMutex.h in Headers */, - 46EB2E0002E330 /* TimedMutex-inl.h in Headers */, - 46EB2E0002DFD0 /* TimedWait.h in Headers */, - 46EB2E0002CD70 /* TimekeeperScheduledExecutor.h in Headers */, - 46EB2E0002DFF0 /* Timeout.h in Headers */, - 46EB2E0002DFE0 /* Timeout-inl.h in Headers */, - 46EB2E0002D5D0 /* TimeoutManager.h in Headers */, - 46EB2E0002C680 /* TimeoutQueue.h in Headers */, - 46EB2E0002D000 /* TimerFD.h in Headers */, - 46EB2E0002D010 /* TimerFDTimeoutManager.h in Headers */, - 46EB2E0002D020 /* TLRefCount.h in Headers */, - 46EB2E0002D640 /* TLSDefinitions.h in Headers */, - 46EB2E0002D7B0 /* ToAscii.h in Headers */, - 46EB2E0002C690 /* TokenBucket.h in Headers */, - 46EB2E0002E5F0 /* Traits.h in Headers */, - 46EB2E0002E000 /* Traits.h in Headers */, - 46EB2E0002E350 /* traits.h in Headers */, - 46EB2E0002C6A0 /* Traits.h in Headers */, - 46EB2E0002E020 /* Transform.h in Headers */, - 46EB2E0002E010 /* Transform-inl.h in Headers */, - 46EB2E0002C6C0 /* Try.h in Headers */, - 46EB2E0002C6B0 /* Try-inl.h in Headers */, - 46EB2E0002D030 /* TupleOps.h in Headers */, - 46EB2E0002CB10 /* TurnSequencer.h in Headers */, - 46EB2E0002D370 /* TypedIOBuf.h in Headers */, - 46EB2E0002D7C0 /* TypeInfo.h in Headers */, - 46EB2E0002CB20 /* TypeList.h in Headers */, - 46EB2E0002D160 /* Types.h in Headers */, - 46EB2E0002CCF0 /* UnboundedBlockingQueue.h in Headers */, - 46EB2E0002C7C0 /* UnboundedQueue.h in Headers */, - 46EB2E0002E030 /* UnboundedQueue.h in Headers */, - 46EB2E0002D7D0 /* UncaughtExceptions.h in Headers */, - 46EB2E0002C6D0 /* Unicode.h in Headers */, - 46EB2E0002D8A0 /* UninitializedMemoryHacks.h in Headers */, - 46EB2E0002CB30 /* UniqueInstance.h in Headers */, - 46EB2E0002E600 /* Unistd.h in Headers */, - 46EB2E0002C6E0 /* Unit.h in Headers */, - 46EB2E0002C700 /* Uri.h in Headers */, - 46EB2E0002C6F0 /* Uri-inl.h in Headers */, - 46EB2E0002C710 /* UTF8String.h in Headers */, - 46EB2E0002C960 /* Util.h in Headers */, - 46EB2E0002DBD0 /* Utility.h in Headers */, - 46EB2E0002C720 /* Utility.h in Headers */, - 46EB2E0002C730 /* Varint.h in Headers */, - 46EB2E0002E040 /* ViaIfAsync.h in Headers */, - 46EB2E0002C8D0 /* View.h in Headers */, - 46EB2E0002D5E0 /* VirtualEventBase.h in Headers */, - 46EB2E0002C740 /* VirtualExecutor.h in Headers */, - 46EB2E0002E050 /* Wait.h in Headers */, - 46EB2E0002DBE0 /* WaitOptions.h in Headers */, - 46EB2E0002E370 /* WhenN.h in Headers */, - 46EB2E0002E360 /* WhenN-inl.h in Headers */, - 46EB2E0002E690 /* Windows.h in Headers */, - 46EB2E0002E060 /* WithAsyncStack.h in Headers */, - 46EB2E0002E070 /* WithCancellation.h in Headers */, - 46EB2E0002E740 /* WithJitter.h in Headers */, - 46EB2E0002E730 /* WithJitter-inl.h in Headers */, - 46EB2E0002D5F0 /* WriteChainAsyncTransportWrapper.h in Headers */, - 46EB2E0002D140 /* WTCallback.h in Headers */, - 46EB2E0002E570 /* xlog.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002E9D0 /* Headers */ = { + 46EB2E0002C6F0 /* Access.h in Headers */, + 46EB2E0002DC90 /* Accumulate.h in Headers */, + 46EB2E0002DC80 /* Accumulate-inl.h in Headers */, + 46EB2E0002E050 /* AddTasks.h in Headers */, + 46EB2E0002E040 /* AddTasks-inl.h in Headers */, + 46EB2E0002D570 /* Align.h in Headers */, + 46EB2E0002D580 /* Aligned.h in Headers */, + 46EB2E0002CF60 /* ApplyTuple.h in Headers */, + 46EB2E0002D710 /* Arena.h in Headers */, + 46EB2E0002D700 /* Arena-inl.h in Headers */, + 46EB2E0002C700 /* Array.h in Headers */, + 46EB2E0002E580 /* Asm.h in Headers */, + 46EB2E0002D5A0 /* Assume.h in Headers */, + 46EB2E0002D590 /* Assume-inl.h in Headers */, + 46EB2E0002D8C0 /* AsymmetricMemoryBarrier.h in Headers */, + 46EB2E0002CA60 /* Async.h in Headers */, + 46EB2E0002E2B0 /* AsyncFileWriter.h in Headers */, + 46EB2E0002DCA0 /* AsyncGenerator.h in Headers */, + 46EB2E0002E2C0 /* AsyncLogWriter.h in Headers */, + 46EB2E0002DCB0 /* AsyncPipe.h in Headers */, + 46EB2E0002D2A0 /* AsyncPipe.h in Headers */, + 46EB2E0002DCC0 /* AsyncScope.h in Headers */, + 46EB2E0002D2B0 /* AsyncServerSocket.h in Headers */, + 46EB2E0002D2C0 /* AsyncSignalHandler.h in Headers */, + 46EB2E0002D2D0 /* AsyncSocket.h in Headers */, + 46EB2E0002D2E0 /* AsyncSocketBase.h in Headers */, + 46EB2E0002D2F0 /* AsyncSocketException.h in Headers */, + 46EB2E0002D300 /* AsyncSSLSocket.h in Headers */, + 46EB2E0002DCD0 /* AsyncStack.h in Headers */, + 46EB2E0002DC20 /* AsyncStack.h in Headers */, + 46EB2E0002DC10 /* AsyncStack-inl.h in Headers */, + 46EB2E0002D310 /* AsyncTimeout.h in Headers */, + 46EB2E0002C890 /* AsyncTrace.h in Headers */, + 46EB2E0002D320 /* AsyncTransport.h in Headers */, + 46EB2E0002D330 /* AsyncTransportCertificate.h in Headers */, + 46EB2E0002D340 /* AsyncUDPServerSocket.h in Headers */, + 46EB2E0002D350 /* AsyncUDPSocket.h in Headers */, + 46EB2E0002C8A0 /* AtFork.h in Headers */, + 46EB2E0002E070 /* AtomicBatchDispatcher.h in Headers */, + 46EB2E0002E060 /* AtomicBatchDispatcher-inl.h in Headers */, + 46EB2E0002BF20 /* AtomicHashArray.h in Headers */, + 46EB2E0002BF10 /* AtomicHashArray-inl.h in Headers */, + 46EB2E0002BF40 /* AtomicHashMap.h in Headers */, + 46EB2E0002BF30 /* AtomicHashMap-inl.h in Headers */, + 46EB2E0002C8B0 /* AtomicHashUtils.h in Headers */, + 46EB2E0002BF50 /* AtomicIntrusiveLinkedList.h in Headers */, + 46EB2E0002BF60 /* AtomicLinkedList.h in Headers */, + 46EB2E0002D8E0 /* AtomicNotification.h in Headers */, + 46EB2E0002D8D0 /* AtomicNotification-inl.h in Headers */, + 46EB2E0002D370 /* AtomicNotificationQueue.h in Headers */, + 46EB2E0002D360 /* AtomicNotificationQueue-inl.h in Headers */, + 46EB2E0002CCA0 /* AtomicReadMostlyMainPtr.h in Headers */, + 46EB2E0002D8F0 /* AtomicRef.h in Headers */, + 46EB2E0002C670 /* AtomicSharedPtr.h in Headers */, + 46EB2E0002D900 /* AtomicStruct.h in Headers */, + 46EB2E0002BF70 /* AtomicUnorderedMap.h in Headers */, + 46EB2E0002C8C0 /* AtomicUnorderedMapUtils.h in Headers */, + 46EB2E0002D920 /* AtomicUtil.h in Headers */, + 46EB2E0002D910 /* AtomicUtil-inl.h in Headers */, + 46EB2E0002DB10 /* AtomicUtils.h in Headers */, + 46EB2E0002CCB0 /* AutoTimer.h in Headers */, + 46EB2E0002E4A0 /* Barrier.h in Headers */, + 46EB2E0002CF90 /* Barrier.h in Headers */, + 46EB2E0002E4B0 /* BarrierTask.h in Headers */, + 46EB2E0002D0A0 /* Base.h in Headers */, + 46EB2E0002D090 /* Base-inl.h in Headers */, + 46EB2E0002D520 /* BasicTransportCertificate.h in Headers */, + 46EB2E0002E080 /* BatchDispatcher.h in Headers */, + 46EB2E0002E090 /* BatchSemaphore.h in Headers */, + 46EB2E0002DCE0 /* Baton.h in Headers */, + 46EB2E0002E0B0 /* Baton.h in Headers */, + 46EB2E0002D930 /* Baton.h in Headers */, + 46EB2E0002E0A0 /* Baton-inl.h in Headers */, + 46EB2E0002BF80 /* Benchmark.h in Headers */, + 46EB2E0002BF90 /* BenchmarkUtil.h in Headers */, + 46EB2E0002C710 /* BitIterator.h in Headers */, + 46EB2E0002C800 /* BitIteratorDetail.h in Headers */, + 46EB2E0002BFA0 /* Bits.h in Headers */, + 46EB2E0002CCC0 /* Bits.h in Headers */, + 46EB2E0002D5B0 /* Bits.h in Headers */, + 46EB2E0002CCD0 /* BitVectorCoding.h in Headers */, + 46EB2E0002CBD0 /* BlockingQueue.h in Headers */, + 46EB2E0002DCF0 /* BlockingWait.h in Headers */, + 46EB2E0002E0C0 /* BoostContextCompatibility.h in Headers */, + 46EB2E0002E2D0 /* BridgeFromGoogleLogging.h in Headers */, + 46EB2E0002E550 /* Builtins.h in Headers */, + 46EB2E0002D5C0 /* Byte.h in Headers */, + 46EB2E0002C680 /* CacheLocality.h in Headers */, + 46EB2E0002E0D0 /* CallOnce.h in Headers */, + 46EB2E0002D940 /* CallOnce.h in Headers */, + 46EB2E0002BFC0 /* CancellationToken.h in Headers */, + 46EB2E0002BFB0 /* CancellationToken-inl.h in Headers */, + 46EB2E0002D5D0 /* CArray.h in Headers */, + 46EB2E0002D5E0 /* Cast.h in Headers */, + 46EB2E0002D380 /* CertificateIdentityVerifier.h in Headers */, + 46EB2E0002D5F0 /* CheckedMath.h in Headers */, + 46EB2E0002D180 /* Checksum.h in Headers */, + 46EB2E0002D1D0 /* ChecksumDetail.h in Headers */, + 46EB2E0002BFD0 /* Chrono.h in Headers */, + 46EB2E0002CCE0 /* Cleanup.h in Headers */, + 46EB2E0002BFE0 /* ClockGettimeWrappers.h in Headers */, + 46EB2E0002CA70 /* Codel.h in Headers */, + 46EB2E0002CCF0 /* CodingDetail.h in Headers */, + 46EB2E0002DD10 /* Collect.h in Headers */, + 46EB2E0002DD00 /* Collect-inl.h in Headers */, + 46EB2E0002D0C0 /* Combine.h in Headers */, + 46EB2E0002D0B0 /* Combine-inl.h in Headers */, + 46EB2E0002DD30 /* Concat.h in Headers */, + 46EB2E0002DD20 /* Concat-inl.h in Headers */, + 46EB2E0002BFF0 /* ConcurrentBitSet.h in Headers */, + 46EB2E0002C690 /* ConcurrentHashMap.h in Headers */, + 46EB2E0002C000 /* ConcurrentLazy.h in Headers */, + 46EB2E0002C020 /* ConcurrentSkipList.h in Headers */, + 46EB2E0002C010 /* ConcurrentSkipList-inl.h in Headers */, + 46EB2E0002E530 /* Config.h in Headers */, + 46EB2E0002E540 /* Constexpr.h in Headers */, + 46EB2E0002C030 /* ConstexprMath.h in Headers */, + 46EB2E0002C040 /* ConstructorCallback.h in Headers */, + 46EB2E0002DC60 /* Conv.h in Headers */, + 46EB2E0002C050 /* Conv.h in Headers */, + 46EB2E0002E790 /* Core.h in Headers */, + 46EB2E0002D070 /* Core.h in Headers */, + 46EB2E0002D0E0 /* Core.h in Headers */, + 46EB2E0002D0D0 /* Core-inl.h in Headers */, + 46EB2E0002C6A0 /* CoreCachedSharedPtr.h in Headers */, + 46EB2E0002DD40 /* Coroutine.h in Headers */, + 46EB2E0002C060 /* CPortability.h in Headers */, + 46EB2E0002C070 /* CppAttributes.h in Headers */, + 46EB2E0002C080 /* CpuId.h in Headers */, + 46EB2E0002CA80 /* CPUThreadPoolExecutor.h in Headers */, + 46EB2E0002D600 /* CString.h in Headers */, + 46EB2E0002E4C0 /* CurrentAsyncFrame.h in Headers */, + 46EB2E0002DD50 /* CurrentExecutor.h in Headers */, + 46EB2E0002D210 /* Cursor.h in Headers */, + 46EB2E0002D200 /* Cursor-inl.h in Headers */, + 46EB2E0002D610 /* CustomizationPoint.h in Headers */, + 46EB2E0002E2E0 /* CustomLogFormatter.h in Headers */, + 46EB2E0002E2A0 /* Debug.h in Headers */, + 46EB2E0002D390 /* DecoratedAsyncTransportWrapper.h in Headers */, + 46EB2E0002C090 /* DefaultKeepAliveExecutor.h in Headers */, + 46EB2E0002D3A0 /* DelayedDestruction.h in Headers */, + 46EB2E0002D3B0 /* DelayedDestructionBase.h in Headers */, + 46EB2E0002D950 /* DelayedInit.h in Headers */, + 46EB2E0002C0A0 /* Demangle.h in Headers */, + 46EB2E0002DD70 /* Dematerialize.h in Headers */, + 46EB2E0002DD60 /* Dematerialize-inl.h in Headers */, + 46EB2E0002D3C0 /* DestructorCheck.h in Headers */, + 46EB2E0002DD80 /* DetachOnCancel.h in Headers */, + 46EB2E0002C0B0 /* DiscriminatedPtr.h in Headers */, + 46EB2E0002C8D0 /* DiscriminatedPtrDetail.h in Headers */, + 46EB2E0002D970 /* DistributedMutex.h in Headers */, + 46EB2E0002D960 /* DistributedMutex-inl.h in Headers */, + 46EB2E0002D980 /* DistributedMutexSpecializations.h in Headers */, + 46EB2E0002CA90 /* DrivableExecutor.h in Headers */, + 46EB2E0002DFA0 /* Dwarf.h in Headers */, + 46EB2E0002C0D0 /* dynamic.h in Headers */, + 46EB2E0002C0C0 /* dynamic-inl.h in Headers */, + 46EB2E0002C6B0 /* DynamicBoundedQueue.h in Headers */, + 46EB2E0002C0E0 /* DynamicConverter.h in Headers */, + 46EB2E0002CD10 /* DynamicParser.h in Headers */, + 46EB2E0002CD00 /* DynamicParser-inl.h in Headers */, + 46EB2E0002CAA0 /* EDFThreadPoolExecutor.h in Headers */, + 46EB2E0002DFC0 /* Elf.h in Headers */, + 46EB2E0002DFB0 /* Elf-inl.h in Headers */, + 46EB2E0002DFD0 /* ElfCache.h in Headers */, + 46EB2E0002CD20 /* EliasFanoCoding.h in Headers */, + 46EB2E0002D720 /* EnableSharedFromThis.h in Headers */, + 46EB2E0002C720 /* Enumerate.h in Headers */, + 46EB2E0002CD30 /* EnvUtil.h in Headers */, + 46EB2E0002E5D0 /* Event.h in Headers */, + 46EB2E0002D3D0 /* EventBase.h in Headers */, + 46EB2E0002D3F0 /* EventBaseAtomicNotificationQueue.h in Headers */, + 46EB2E0002D3E0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */, + 46EB2E0002D400 /* EventBaseBackendBase.h in Headers */, + 46EB2E0002D410 /* EventBaseLocal.h in Headers */, + 46EB2E0002E0F0 /* EventBaseLoopController.h in Headers */, + 46EB2E0002E0E0 /* EventBaseLoopController-inl.h in Headers */, + 46EB2E0002D420 /* EventBaseManager.h in Headers */, + 46EB2E0002D430 /* EventBaseThread.h in Headers */, + 46EB2E0002CD40 /* EventCount.h in Headers */, + 46EB2E0002D440 /* EventFDWrapper.h in Headers */, + 46EB2E0002D450 /* EventHandler.h in Headers */, + 46EB2E0002D460 /* EventUtil.h in Headers */, + 46EB2E0002C730 /* EvictingCacheMap.h in Headers */, + 46EB2E0002C0F0 /* Exception.h in Headers */, + 46EB2E0002D620 /* Exception.h in Headers */, + 46EB2E0002C100 /* ExceptionString.h in Headers */, + 46EB2E0002C120 /* ExceptionWrapper.h in Headers */, + 46EB2E0002C110 /* ExceptionWrapper-inl.h in Headers */, + 46EB2E0002CD50 /* ExecutionObserver.h in Headers */, + 46EB2E0002C130 /* Executor.h in Headers */, + 46EB2E0002E100 /* ExecutorBasedLoopController.h in Headers */, + 46EB2E0002E120 /* ExecutorLoopController.h in Headers */, + 46EB2E0002E110 /* ExecutorLoopController-inl.h in Headers */, + 46EB2E0002CAC0 /* ExecutorWithPriority.h in Headers */, + 46EB2E0002CAB0 /* ExecutorWithPriority-inl.h in Headers */, + 46EB2E0002C140 /* Expected.h in Headers */, + 46EB2E0002D630 /* Extern.h in Headers */, + 46EB2E0002C810 /* F14Defaults.h in Headers */, + 46EB2E0002C820 /* F14IntrinsicsAvailability.h in Headers */, + 46EB2E0002C750 /* F14Map.h in Headers */, + 46EB2E0002C740 /* F14Map-fwd.h in Headers */, + 46EB2E0002C830 /* F14MapFallback.h in Headers */, + 46EB2E0002C840 /* F14Mask.h in Headers */, + 46EB2E0002C850 /* F14Policy.h in Headers */, + 46EB2E0002C770 /* F14Set.h in Headers */, + 46EB2E0002C760 /* F14Set-fwd.h in Headers */, + 46EB2E0002C860 /* F14SetFallback.h in Headers */, + 46EB2E0002C870 /* F14Table.h in Headers */, + 46EB2E0002D190 /* FarmHash.h in Headers */, + 46EB2E0002C150 /* FBString.h in Headers */, + 46EB2E0002C160 /* FBVector.h in Headers */, + 46EB2E0002E740 /* Fcntl.h in Headers */, + 46EB2E0002E140 /* Fiber.h in Headers */, + 46EB2E0002E130 /* Fiber-inl.h in Headers */, + 46EB2E0002CAD0 /* FiberIOExecutor.h in Headers */, + 46EB2E0002E160 /* FiberManager.h in Headers */, + 46EB2E0002E150 /* FiberManager-inl.h in Headers */, + 46EB2E0002E180 /* FiberManagerInternal.h in Headers */, + 46EB2E0002E170 /* FiberManagerInternal-inl.h in Headers */, + 46EB2E0002E1A0 /* FiberManagerMap.h in Headers */, + 46EB2E0002E190 /* FiberManagerMap-inl.h in Headers */, + 46EB2E0002C170 /* File.h in Headers */, + 46EB2E0002D100 /* File.h in Headers */, + 46EB2E0002D0F0 /* File-inl.h in Headers */, + 46EB2E0002E2F0 /* FileHandlerFactory.h in Headers */, + 46EB2E0002C180 /* FileUtil.h in Headers */, + 46EB2E0002C8E0 /* FileUtilDetail.h in Headers */, + 46EB2E0002C8F0 /* FileUtilVectorDetail.h in Headers */, + 46EB2E0002E300 /* FileWriterFactory.h in Headers */, + 46EB2E0002DDA0 /* Filter.h in Headers */, + 46EB2E0002DD90 /* Filter-inl.h in Headers */, + 46EB2E0002C190 /* Fingerprint.h in Headers */, + 46EB2E0002C900 /* FingerprintPolynomial.h in Headers */, + 46EB2E0002C1A0 /* FixedString.h in Headers */, + 46EB2E0002CD60 /* FlatCombiningPriorityQueue.h in Headers */, + 46EB2E0002E770 /* FmtCompile.h in Headers */, + 46EB2E0002C1B0 /* FollyMemcpy.h in Headers */, + 46EB2E0002C790 /* Foreach.h in Headers */, + 46EB2E0002E1C0 /* ForEach.h in Headers */, + 46EB2E0002C780 /* Foreach-inl.h in Headers */, + 46EB2E0002E1B0 /* ForEach-inl.h in Headers */, + 46EB2E0002C1D0 /* Format.h in Headers */, + 46EB2E0002C1C0 /* Format-inl.h in Headers */, + 46EB2E0002C1E0 /* FormatArg.h in Headers */, + 46EB2E0002C1F0 /* FormatTraits.h in Headers */, + 46EB2E0002C200 /* Function.h in Headers */, + 46EB2E0002CD70 /* FunctionScheduler.h in Headers */, + 46EB2E0002C920 /* Futex.h in Headers */, + 46EB2E0002C910 /* Futex-inl.h in Headers */, + 46EB2E0002CFC0 /* Future.h in Headers */, + 46EB2E0002CFA0 /* Future-inl.h in Headers */, + 46EB2E0002CFB0 /* Future-pre.h in Headers */, + 46EB2E0002CD80 /* FutureDAG.h in Headers */, + 46EB2E0002CAE0 /* FutureExecutor.h in Headers */, + 46EB2E0002CFD0 /* FutureSplitter.h in Headers */, + 46EB2E0002DDB0 /* FutureUtil.h in Headers */, + 46EB2E0002DDC0 /* Generator.h in Headers */, + 46EB2E0002E1D0 /* GenericBaton.h in Headers */, + 46EB2E0002E6A0 /* GFlags.h in Headers */, + 46EB2E0002CAF0 /* GlobalExecutor.h in Headers */, + 46EB2E0002D220 /* GlobalShutdownSocketSet.h in Headers */, + 46EB2E0002CB00 /* GlobalThreadPoolList.h in Headers */, + 46EB2E0002C210 /* GLog.h in Headers */, + 46EB2E0002E310 /* GlogStyleFormatter.h in Headers */, + 46EB2E0002DDD0 /* GmockHelpers.h in Headers */, + 46EB2E0002E7A0 /* GraphCycleDetector.h in Headers */, + 46EB2E0002C220 /* GroupVarint.h in Headers */, + 46EB2E0002C930 /* GroupVarintDetail.h in Headers */, + 46EB2E0002DDE0 /* GtestHelpers.h in Headers */, + 46EB2E0002E1E0 /* GuardPageAllocator.h in Headers */, + 46EB2E0002DC70 /* Hardware.h in Headers */, + 46EB2E0002DB20 /* Hardware.h in Headers */, + 46EB2E0002DBB0 /* HardwareConcurrency.h in Headers */, + 46EB2E0002C230 /* Hash.h in Headers */, + 46EB2E0002D1A0 /* Hash.h in Headers */, + 46EB2E0002D9A0 /* Hazptr.h in Headers */, + 46EB2E0002D990 /* Hazptr-fwd.h in Headers */, + 46EB2E0002D9B0 /* HazptrDomain.h in Headers */, + 46EB2E0002D9C0 /* HazptrHolder.h in Headers */, + 46EB2E0002D9D0 /* HazptrObj.h in Headers */, + 46EB2E0002D9E0 /* HazptrObjLinked.h in Headers */, + 46EB2E0002D9F0 /* HazptrRec.h in Headers */, + 46EB2E0002DA00 /* HazptrThreadPoolExecutor.h in Headers */, + 46EB2E0002DA10 /* HazptrThrLocal.h in Headers */, + 46EB2E0002DB30 /* HazptrUtils.h in Headers */, + 46EB2E0002E4D0 /* Helpers.h in Headers */, + 46EB2E0002C7B0 /* HeterogeneousAccess.h in Headers */, + 46EB2E0002C7A0 /* HeterogeneousAccess-fwd.h in Headers */, + 46EB2E0002D480 /* HHWheelTimer.h in Headers */, + 46EB2E0002D470 /* HHWheelTimer-fwd.h in Headers */, + 46EB2E0002E320 /* ImmediateFileWriter.h in Headers */, + 46EB2E0002C240 /* Indestructible.h in Headers */, + 46EB2E0002C250 /* IndexedMemPool.h in Headers */, + 46EB2E0002D1E0 /* Init.h in Headers */, + 46EB2E0002E330 /* Init.h in Headers */, + 46EB2E0002D820 /* Init.h in Headers */, + 46EB2E0002CC40 /* InitThreadFactory.h in Headers */, + 46EB2E0002CB10 /* InlineExecutor.h in Headers */, + 46EB2E0002DB40 /* InlineFunctionRef.h in Headers */, + 46EB2E0002E4E0 /* InlineTask.h in Headers */, + 46EB2E0002CD90 /* Instructions.h in Headers */, + 46EB2E0002C260 /* IntrusiveList.h in Headers */, + 46EB2E0002DDF0 /* Invoke.h in Headers */, + 46EB2E0002CF70 /* Invoke.h in Headers */, + 46EB2E0002D230 /* IOBuf.h in Headers */, + 46EB2E0002D240 /* IOBufQueue.h in Headers */, + 46EB2E0002CB20 /* IOExecutor.h in Headers */, + 46EB2E0002CB30 /* IOObjectCache.h in Headers */, + 46EB2E0002CB40 /* IOThreadPoolExecutor.h in Headers */, + 46EB2E0002E680 /* IOVec.h in Headers */, + 46EB2E0002C940 /* IPAddress.h in Headers */, + 46EB2E0002C270 /* IPAddress.h in Headers */, + 46EB2E0002C280 /* IPAddressException.h in Headers */, + 46EB2E0002C950 /* IPAddressSource.h in Headers */, + 46EB2E0002C290 /* IPAddressV4.h in Headers */, + 46EB2E0002C2A0 /* IPAddressV6.h in Headers */, + 46EB2E0002D110 /* IStream.h in Headers */, + 46EB2E0002C7C0 /* Iterator.h in Headers */, + 46EB2E0002C960 /* Iterators.h in Headers */, + 46EB2E0002CDA0 /* JemallocHugePageAllocator.h in Headers */, + 46EB2E0002CDB0 /* JemallocNodumpAllocator.h in Headers */, + 46EB2E0002C2B0 /* json.h in Headers */, + 46EB2E0002C2C0 /* json_patch.h in Headers */, + 46EB2E0002C2D0 /* json_pointer.h in Headers */, + 46EB2E0002CDC0 /* JSONSchema.h in Headers */, + 46EB2E0002D640 /* Keep.h in Headers */, + 46EB2E0002D650 /* Launder.h in Headers */, + 46EB2E0002C2E0 /* Lazy.h in Headers */, + 46EB2E0002DA20 /* LifoSem.h in Headers */, + 46EB2E0002CBE0 /* LifoSemMPMCQueue.h in Headers */, + 46EB2E0002C2F0 /* Likely.h in Headers */, + 46EB2E0002DFE0 /* LineReader.h in Headers */, + 46EB2E0002DA30 /* Lock.h in Headers */, + 46EB2E0002CDD0 /* LockFreeRingBuffer.h in Headers */, + 46EB2E0002C300 /* LockTraits.h in Headers */, + 46EB2E0002E340 /* LogCategory.h in Headers */, + 46EB2E0002E350 /* LogCategoryConfig.h in Headers */, + 46EB2E0002E360 /* LogConfig.h in Headers */, + 46EB2E0002E370 /* LogConfigParser.h in Headers */, + 46EB2E0002E380 /* LogFormatter.h in Headers */, + 46EB2E0002E390 /* Logger.h in Headers */, + 46EB2E0002E3A0 /* LoggerDB.h in Headers */, + 46EB2E0002E3B0 /* LogHandler.h in Headers */, + 46EB2E0002E3C0 /* LogHandlerConfig.h in Headers */, + 46EB2E0002E3D0 /* LogHandlerFactory.h in Headers */, + 46EB2E0002E3E0 /* LogLevel.h in Headers */, + 46EB2E0002E3F0 /* LogMessage.h in Headers */, + 46EB2E0002E400 /* LogName.h in Headers */, + 46EB2E0002E410 /* LogStream.h in Headers */, + 46EB2E0002E420 /* LogStreamProcessor.h in Headers */, + 46EB2E0002E430 /* LogWriter.h in Headers */, + 46EB2E0002E1F0 /* LoopController.h in Headers */, + 46EB2E0002C310 /* MacAddress.h in Headers */, + 46EB2E0002D730 /* MallctlHelper.h in Headers */, + 46EB2E0002E4F0 /* Malloc.h in Headers */, + 46EB2E0002D740 /* Malloc.h in Headers */, + 46EB2E0002E560 /* Malloc.h in Headers */, + 46EB2E0002D7D0 /* MallocImpl.h in Headers */, + 46EB2E0002CB50 /* ManualExecutor.h in Headers */, + 46EB2E0002E500 /* ManualLifetime.h in Headers */, + 46EB2E0002CFE0 /* ManualTimekeeper.h in Headers */, + 46EB2E0002C320 /* MapUtil.h in Headers */, + 46EB2E0002DE10 /* Materialize.h in Headers */, + 46EB2E0002DE00 /* Materialize-inl.h in Headers */, + 46EB2E0002C330 /* Math.h in Headers */, + 46EB2E0002E570 /* Math.h in Headers */, + 46EB2E0002C340 /* Memory.h in Headers */, + 46EB2E0002C970 /* MemoryIdler.h in Headers */, + 46EB2E0002DBC0 /* MemoryMapping.h in Headers */, + 46EB2E0002D750 /* MemoryResource.h in Headers */, + 46EB2E0002C7D0 /* Merge.h in Headers */, + 46EB2E0002DE30 /* Merge.h in Headers */, + 46EB2E0002DE20 /* Merge-inl.h in Headers */, + 46EB2E0002CB60 /* MeteredExecutor.h in Headers */, + 46EB2E0002C350 /* MicroLock.h in Headers */, + 46EB2E0002C360 /* MicroSpinLock.h in Headers */, + 46EB2E0002DA40 /* MicroSpinLock.h in Headers */, + 46EB2E0002C370 /* MoveWrapper.h in Headers */, + 46EB2E0002C380 /* MPMCPipeline.h in Headers */, + 46EB2E0002C980 /* MPMCPipelineDetail.h in Headers */, + 46EB2E0002C390 /* MPMCQueue.h in Headers */, + 46EB2E0002DE50 /* Multiplex.h in Headers */, + 46EB2E0002DE40 /* Multiplex-inl.h in Headers */, + 46EB2E0002DE60 /* Mutex.h in Headers */, + 46EB2E0002CC50 /* NamedThreadFactory.h in Headers */, + 46EB2E0002DA50 /* NativeSemaphore.h in Headers */, + 46EB2E0002CDE0 /* NestedCommandLineApp.h in Headers */, + 46EB2E0002D7E0 /* NetOps.h in Headers */, + 46EB2E0002D7F0 /* NetOpsDispatcher.h in Headers */, + 46EB2E0002D800 /* NetworkSocket.h in Headers */, + 46EB2E0002D770 /* not_null.h in Headers */, + 46EB2E0002D760 /* not_null-inl.h in Headers */, + 46EB2E0002D490 /* NotificationQueue.h in Headers */, + 46EB2E0002E440 /* ObjectToString.h in Headers */, + 46EB2E0002E5F0 /* Observable.h in Headers */, + 46EB2E0002E5E0 /* Observable-inl.h in Headers */, + 46EB2E0002E620 /* Observer.h in Headers */, + 46EB2E0002E600 /* Observer-inl.h in Headers */, + 46EB2E0002E610 /* Observer-pre.h in Headers */, + 46EB2E0002E7B0 /* ObserverManager.h in Headers */, + 46EB2E0002E590 /* OpenSSL.h in Headers */, + 46EB2E0002D830 /* OpenSSLCertUtils.h in Headers */, + 46EB2E0002D840 /* OpenSSLHash.h in Headers */, + 46EB2E0002D850 /* OpenSSLLockTypes.h in Headers */, + 46EB2E0002D860 /* OpenSSLPtrTypes.h in Headers */, + 46EB2E0002D8A0 /* OpenSSLSession.h in Headers */, + 46EB2E0002D8B0 /* OpenSSLThreading.h in Headers */, + 46EB2E0002D530 /* OpenSSLTransportCertificate.h in Headers */, + 46EB2E0002D540 /* OpenSSLUtils.h in Headers */, + 46EB2E0002D870 /* OpenSSLVersionFinder.h in Headers */, + 46EB2E0002C3A0 /* Optional.h in Headers */, + 46EB2E0002D660 /* Ordering.h in Headers */, + 46EB2E0002C3B0 /* Overload.h in Headers */, + 46EB2E0002C3C0 /* PackedSyncPtr.h in Headers */, + 46EB2E0002C3D0 /* Padded.h in Headers */, + 46EB2E0002D130 /* Parallel.h in Headers */, + 46EB2E0002D120 /* Parallel-inl.h in Headers */, + 46EB2E0002D150 /* ParallelMap.h in Headers */, + 46EB2E0002D140 /* ParallelMap-inl.h in Headers */, + 46EB2E0002DA60 /* ParkingLot.h in Headers */, + 46EB2E0002CF80 /* Partial.h in Headers */, + 46EB2E0002D4A0 /* PasswordInFile.h in Headers */, + 46EB2E0002D1F0 /* Phase.h in Headers */, + 46EB2E0002DA70 /* PicoSpinLock.h in Headers */, + 46EB2E0002DBD0 /* Pid.h in Headers */, + 46EB2E0002C3F0 /* Poly.h in Headers */, + 46EB2E0002C3E0 /* Poly-inl.h in Headers */, + 46EB2E0002C990 /* PolyDetail.h in Headers */, + 46EB2E0002C400 /* PolyException.h in Headers */, + 46EB2E0002CFF0 /* Portability.h in Headers */, + 46EB2E0002C410 /* Portability.h in Headers */, + 46EB2E0002C420 /* Preprocessor.h in Headers */, + 46EB2E0002D670 /* Pretty.h in Headers */, + 46EB2E0002CDF0 /* PrimaryPtr.h in Headers */, + 46EB2E0002CBF0 /* PriorityLifoSemMPMCQueue.h in Headers */, + 46EB2E0002CC60 /* PriorityThreadFactory.h in Headers */, + 46EB2E0002CC00 /* PriorityUnboundedBlockingQueue.h in Headers */, + 46EB2E0002C6C0 /* PriorityUnboundedQueueSet.h in Headers */, + 46EB2E0002C430 /* ProducerConsumerQueue.h in Headers */, + 46EB2E0002CE00 /* ProgramOptions.h in Headers */, + 46EB2E0002E210 /* Promise.h in Headers */, + 46EB2E0002D010 /* Promise.h in Headers */, + 46EB2E0002E200 /* Promise-inl.h in Headers */, + 46EB2E0002D000 /* Promise-inl.h in Headers */, + 46EB2E0002D680 /* PropagateConst.h in Headers */, + 46EB2E0002DB60 /* ProxyLockable.h in Headers */, + 46EB2E0002DB50 /* ProxyLockable-inl.h in Headers */, + 46EB2E0002E5A0 /* PThread.h in Headers */, + 46EB2E0002CB70 /* QueuedImmediateExecutor.h in Headers */, + 46EB2E0002C6D0 /* QueueObserver.h in Headers */, + 46EB2E0002CE20 /* QuotientMultiSet.h in Headers */, + 46EB2E0002CE10 /* QuotientMultiSet-inl.h in Headers */, + 46EB2E0002C450 /* Random.h in Headers */, + 46EB2E0002C440 /* Random-inl.h in Headers */, + 46EB2E0002C460 /* Range.h in Headers */, + 46EB2E0002C9A0 /* RangeCommon.h in Headers */, + 46EB2E0002C9B0 /* RangeSse42.h in Headers */, + 46EB2E0002E450 /* RateLimiter.h in Headers */, + 46EB2E0002DA90 /* Rcu.h in Headers */, + 46EB2E0002DA80 /* Rcu-inl.h in Headers */, + 46EB2E0002CE30 /* ReadMostlySharedPtr.h in Headers */, + 46EB2E0002D260 /* RecordIO.h in Headers */, + 46EB2E0002D250 /* RecordIO-inl.h in Headers */, + 46EB2E0002D780 /* ReentrantAllocator.h in Headers */, + 46EB2E0002CE40 /* RelaxedConcurrentPriorityQueue.h in Headers */, + 46EB2E0002C470 /* Replaceable.h in Headers */, + 46EB2E0002D4B0 /* Request.h in Headers */, + 46EB2E0002DE70 /* Result.h in Headers */, + 46EB2E0002DE80 /* Retry.h in Headers */, + 46EB2E0002D020 /* Retrying.h in Headers */, + 46EB2E0002DE90 /* RustAdaptors.h in Headers */, + 46EB2E0002D690 /* RValueReferenceWrapper.h in Headers */, + 46EB2E0002C480 /* RWSpinLock.h in Headers */, + 46EB2E0002DAA0 /* RWSpinLock.h in Headers */, + 46EB2E0002D6A0 /* SafeAssert.h in Headers */, + 46EB2E0002D790 /* SanitizeAddress.h in Headers */, + 46EB2E0002D7A0 /* SanitizeLeak.h in Headers */, + 46EB2E0002DAB0 /* SanitizeThread.h in Headers */, + 46EB2E0002DAC0 /* SaturatingSemaphore.h in Headers */, + 46EB2E0002E780 /* Sched.h in Headers */, + 46EB2E0002CB80 /* ScheduledExecutor.h in Headers */, + 46EB2E0002D4C0 /* ScopedEventBaseThread.h in Headers */, + 46EB2E0002DC30 /* ScopedTraceSection.h in Headers */, + 46EB2E0002C490 /* ScopeGuard.h in Headers */, + 46EB2E0002CE50 /* Select64.h in Headers */, + 46EB2E0002E220 /* Semaphore.h in Headers */, + 46EB2E0002E230 /* SemaphoreBase.h in Headers */, + 46EB2E0002CB90 /* SequencedExecutor.h in Headers */, + 46EB2E0002CBA0 /* SerialExecutor.h in Headers */, + 46EB2E0002DEA0 /* SharedLock.h in Headers */, + 46EB2E0002DEB0 /* SharedMutex.h in Headers */, + 46EB2E0002C4A0 /* SharedMutex.h in Headers */, + 46EB2E0002D040 /* SharedPromise.h in Headers */, + 46EB2E0002D030 /* SharedPromise-inl.h in Headers */, + 46EB2E0002DBE0 /* Shell.h in Headers */, + 46EB2E0002D270 /* ShutdownSocketSet.h in Headers */, + 46EB2E0002DFF0 /* SignalHandler.h in Headers */, + 46EB2E0002E240 /* SimpleLoopController.h in Headers */, + 46EB2E0002E640 /* SimpleObservable.h in Headers */, + 46EB2E0002E630 /* SimpleObservable-inl.h in Headers */, + 46EB2E0002C9C0 /* Singleton.h in Headers */, + 46EB2E0002C4C0 /* Singleton.h in Headers */, + 46EB2E0002C4B0 /* Singleton-inl.h in Headers */, + 46EB2E0002CE60 /* SingletonRelaxedCounter.h in Headers */, + 46EB2E0002C9D0 /* SingletonStackTrace.h in Headers */, + 46EB2E0002C4D0 /* SingletonThreadLocal.h in Headers */, + 46EB2E0002CE70 /* SingleWriterFixedHashMap.h in Headers */, + 46EB2E0002DED0 /* Sleep.h in Headers */, + 46EB2E0002DEC0 /* Sleep-inl.h in Headers */, + 46EB2E0002DB70 /* Sleeper.h in Headers */, + 46EB2E0002C9E0 /* SlowFingerprint.h in Headers */, + 46EB2E0002C4E0 /* small_vector.h in Headers */, + 46EB2E0002DAD0 /* SmallLocks.h in Headers */, + 46EB2E0002C4F0 /* SocketAddress.h in Headers */, + 46EB2E0002C9F0 /* SocketFastOpen.h in Headers */, + 46EB2E0002D810 /* SocketFileDescriptorMap.h in Headers */, + 46EB2E0002D280 /* SocketOptionMap.h in Headers */, + 46EB2E0002E700 /* Sockets.h in Headers */, + 46EB2E0002CBB0 /* SoftRealTimeExecutor.h in Headers */, + 46EB2E0002C500 /* sorted_vector_types.h in Headers */, + 46EB2E0002C7E0 /* SparseByteSet.h in Headers */, + 46EB2E0002DB80 /* Spin.h in Headers */, + 46EB2E0002C510 /* SpinLock.h in Headers */, + 46EB2E0002D1B0 /* SpookyHashV1.h in Headers */, + 46EB2E0002D1C0 /* SpookyHashV2.h in Headers */, + 46EB2E0002CA00 /* Sse.h in Headers */, + 46EB2E0002D4D0 /* SSLContext.h in Headers */, + 46EB2E0002D550 /* SSLErrors.h in Headers */, + 46EB2E0002D4E0 /* SSLOptions.h in Headers */, + 46EB2E0002D880 /* SSLSession.h in Headers */, + 46EB2E0002D890 /* SSLSessionManager.h in Headers */, + 46EB2E0002E000 /* StackTrace.h in Headers */, + 46EB2E0002CE80 /* StampedPtr.h in Headers */, + 46EB2E0002E460 /* StandardLogHandler.h in Headers */, + 46EB2E0002E470 /* StandardLogHandlerFactory.h in Headers */, + 46EB2E0002D6B0 /* StaticConst.h in Headers */, + 46EB2E0002CA10 /* StaticSingletonManager.h in Headers */, + 46EB2E0002DC50 /* StaticTracepoint.h in Headers */, + 46EB2E0002DC40 /* StaticTracepoint-ELFx86.h in Headers */, + 46EB2E0002E760 /* Stdio.h in Headers */, + 46EB2E0002E750 /* Stdlib.h in Headers */, + 46EB2E0002C520 /* stop_watch.h in Headers */, + 46EB2E0002CBC0 /* StrandExecutor.h in Headers */, + 46EB2E0002E480 /* StreamHandlerFactory.h in Headers */, + 46EB2E0002D170 /* String.h in Headers */, + 46EB2E0002E730 /* String.h in Headers */, + 46EB2E0002C540 /* String.h in Headers */, + 46EB2E0002D160 /* String-inl.h in Headers */, + 46EB2E0002C530 /* String-inl.h in Headers */, + 46EB2E0002CE90 /* StringKeyedCommon.h in Headers */, + 46EB2E0002CEA0 /* StringKeyedMap.h in Headers */, + 46EB2E0002CEB0 /* StringKeyedSet.h in Headers */, + 46EB2E0002CEC0 /* StringKeyedUnorderedMap.h in Headers */, + 46EB2E0002CED0 /* StringKeyedUnorderedSet.h in Headers */, + 46EB2E0002CEE0 /* STTimerFDTimeoutManager.h in Headers */, + 46EB2E0002C550 /* Subprocess.h in Headers */, + 46EB2E0002E010 /* SymbolizedFrame.h in Headers */, + 46EB2E0002E020 /* SymbolizePrinter.h in Headers */, + 46EB2E0002E030 /* Symbolizer.h in Headers */, + 46EB2E0002C560 /* Synchronized.h in Headers */, + 46EB2E0002C570 /* SynchronizedPtr.h in Headers */, + 46EB2E0002E720 /* SysFile.h in Headers */, + 46EB2E0002E710 /* SysMembarrier.h in Headers */, + 46EB2E0002E6F0 /* SysMman.h in Headers */, + 46EB2E0002E5C0 /* SysResource.h in Headers */, + 46EB2E0002E6E0 /* SysStat.h in Headers */, + 46EB2E0002E6B0 /* SysSyscall.h in Headers */, + 46EB2E0002E6D0 /* SysTime.h in Headers */, + 46EB2E0002E690 /* SysTypes.h in Headers */, + 46EB2E0002E6C0 /* SysUio.h in Headers */, + 46EB2E0002DEE0 /* Task.h in Headers */, + 46EB2E0002DAE0 /* Tearable.h in Headers */, + 46EB2E0002CEF0 /* TestUtil.h in Headers */, + 46EB2E0002D7B0 /* ThreadCachedArena.h in Headers */, + 46EB2E0002C580 /* ThreadCachedInt.h in Headers */, + 46EB2E0002DB90 /* ThreadCachedInts.h in Headers */, + 46EB2E0002DBA0 /* ThreadCachedLists.h in Headers */, + 46EB2E0002CC20 /* ThreadedExecutor.h in Headers */, + 46EB2E0002CF00 /* ThreadedRepeatingFunctionRunner.h in Headers */, + 46EB2E0002CC70 /* ThreadFactory.h in Headers */, + 46EB2E0002DBF0 /* ThreadId.h in Headers */, + 46EB2E0002C590 /* ThreadLocal.h in Headers */, + 46EB2E0002CA20 /* ThreadLocalDetail.h in Headers */, + 46EB2E0002DC00 /* ThreadName.h in Headers */, + 46EB2E0002CC30 /* ThreadPoolExecutor.h in Headers */, + 46EB2E0002D050 /* ThreadWheelTimekeeper.h in Headers */, + 46EB2E0002CF10 /* ThreadWheelTimekeeperHighRes.h in Headers */, + 46EB2E0002D6C0 /* Thunk.h in Headers */, + 46EB2E0002E670 /* Time.h in Headers */, + 46EB2E0002CC80 /* TimedDrivableExecutor.h in Headers */, + 46EB2E0002E260 /* TimedMutex.h in Headers */, + 46EB2E0002E250 /* TimedMutex-inl.h in Headers */, + 46EB2E0002DEF0 /* TimedWait.h in Headers */, + 46EB2E0002CC90 /* TimekeeperScheduledExecutor.h in Headers */, + 46EB2E0002DF10 /* Timeout.h in Headers */, + 46EB2E0002DF00 /* Timeout-inl.h in Headers */, + 46EB2E0002D4F0 /* TimeoutManager.h in Headers */, + 46EB2E0002C5A0 /* TimeoutQueue.h in Headers */, + 46EB2E0002CF20 /* TimerFD.h in Headers */, + 46EB2E0002CF30 /* TimerFDTimeoutManager.h in Headers */, + 46EB2E0002CF40 /* TLRefCount.h in Headers */, + 46EB2E0002D560 /* TLSDefinitions.h in Headers */, + 46EB2E0002D6D0 /* ToAscii.h in Headers */, + 46EB2E0002C5B0 /* TokenBucket.h in Headers */, + 46EB2E0002E510 /* Traits.h in Headers */, + 46EB2E0002DF20 /* Traits.h in Headers */, + 46EB2E0002E270 /* traits.h in Headers */, + 46EB2E0002C5C0 /* Traits.h in Headers */, + 46EB2E0002DF40 /* Transform.h in Headers */, + 46EB2E0002DF30 /* Transform-inl.h in Headers */, + 46EB2E0002C5E0 /* Try.h in Headers */, + 46EB2E0002C5D0 /* Try-inl.h in Headers */, + 46EB2E0002CF50 /* TupleOps.h in Headers */, + 46EB2E0002CA30 /* TurnSequencer.h in Headers */, + 46EB2E0002D290 /* TypedIOBuf.h in Headers */, + 46EB2E0002D6E0 /* TypeInfo.h in Headers */, + 46EB2E0002CA40 /* TypeList.h in Headers */, + 46EB2E0002D080 /* Types.h in Headers */, + 46EB2E0002CC10 /* UnboundedBlockingQueue.h in Headers */, + 46EB2E0002C6E0 /* UnboundedQueue.h in Headers */, + 46EB2E0002DF50 /* UnboundedQueue.h in Headers */, + 46EB2E0002D6F0 /* UncaughtExceptions.h in Headers */, + 46EB2E0002C5F0 /* Unicode.h in Headers */, + 46EB2E0002D7C0 /* UninitializedMemoryHacks.h in Headers */, + 46EB2E0002CA50 /* UniqueInstance.h in Headers */, + 46EB2E0002E520 /* Unistd.h in Headers */, + 46EB2E0002C600 /* Unit.h in Headers */, + 46EB2E0002C620 /* Uri.h in Headers */, + 46EB2E0002C610 /* Uri-inl.h in Headers */, + 46EB2E0002C630 /* UTF8String.h in Headers */, + 46EB2E0002C880 /* Util.h in Headers */, + 46EB2E0002DAF0 /* Utility.h in Headers */, + 46EB2E0002C640 /* Utility.h in Headers */, + 46EB2E0002C650 /* Varint.h in Headers */, + 46EB2E0002DF60 /* ViaIfAsync.h in Headers */, + 46EB2E0002C7F0 /* View.h in Headers */, + 46EB2E0002D500 /* VirtualEventBase.h in Headers */, + 46EB2E0002C660 /* VirtualExecutor.h in Headers */, + 46EB2E0002DF70 /* Wait.h in Headers */, + 46EB2E0002DB00 /* WaitOptions.h in Headers */, + 46EB2E0002E290 /* WhenN.h in Headers */, + 46EB2E0002E280 /* WhenN-inl.h in Headers */, + 46EB2E0002E5B0 /* Windows.h in Headers */, + 46EB2E0002DF80 /* WithAsyncStack.h in Headers */, + 46EB2E0002DF90 /* WithCancellation.h in Headers */, + 46EB2E0002E660 /* WithJitter.h in Headers */, + 46EB2E0002E650 /* WithJitter-inl.h in Headers */, + 46EB2E0002D510 /* WriteChainAsyncTransportWrapper.h in Headers */, + 46EB2E0002D060 /* WTCallback.h in Headers */, + 46EB2E0002E490 /* xlog.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002E8F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002EA30 /* Peertalk.h in Headers */, - 46EB2E0002EA40 /* PTChannel.h in Headers */, - 46EB2E0002EA50 /* PTPrivate.h in Headers */, - 46EB2E0002EA60 /* PTProtocol.h in Headers */, - 46EB2E0002EA70 /* PTUSBHub.h in Headers */, + 46EB2E0002E950 /* Peertalk.h in Headers */, + 46EB2E0002E960 /* PTChannel.h in Headers */, + 46EB2E0002E970 /* PTPrivate.h in Headers */, + 46EB2E0002E980 /* PTProtocol.h in Headers */, + 46EB2E0002E990 /* PTUSBHub.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002EB30 /* Headers */ = { + 46EB2E0002EA50 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002F080 /* Allowance.h in Headers */, - 46EB2E0002F300 /* AsyncGeneratorShim.h in Headers */, - 46EB2E0002F310 /* CancelingSubscriber.h in Headers */, - 46EB2E0002F160 /* ChannelRequester.h in Headers */, - 46EB2E0002F170 /* ChannelResponder.h in Headers */, - 46EB2E0002F090 /* ClientResumeStatusCallback.h in Headers */, - 46EB2E0002F410 /* ColdResumeHandler.h in Headers */, - 46EB2E0002F0A0 /* Common.h in Headers */, - 46EB2E0002F420 /* ConnectionAcceptor.h in Headers */, - 46EB2E0002F430 /* ConnectionFactory.h in Headers */, - 46EB2E0002F0B0 /* ConnectionSet.h in Headers */, - 46EB2E0002F180 /* ConsumerBase.h in Headers */, - 46EB2E0002F320 /* DeferFlowable.h in Headers */, - 46EB2E0002F270 /* DeferObservable.h in Headers */, - 46EB2E0002F440 /* DuplexConnection.h in Headers */, - 46EB2E0002F330 /* EmitterFlowable.h in Headers */, - 46EB2E0002EF70 /* ErrorCode.h in Headers */, - 46EB2E0002F190 /* FireAndForgetResponder.h in Headers */, - 46EB2E0002EF40 /* Fixture.h in Headers */, - 46EB2E0002F340 /* Flowable.h in Headers */, - 46EB2E0002F3B0 /* Flowable_FromObservable.h in Headers */, - 46EB2E0002F350 /* FlowableConcatOperators.h in Headers */, - 46EB2E0002F360 /* FlowableDoOperator.h in Headers */, - 46EB2E0002F370 /* FlowableObserveOnOperator.h in Headers */, - 46EB2E0002F380 /* FlowableOperator.h in Headers */, - 46EB2E0002F390 /* Flowables.h in Headers */, - 46EB2E0002F3A0 /* FlowableTimeoutOperator.h in Headers */, - 46EB2E0002EF80 /* Frame.h in Headers */, - 46EB2E0002EF90 /* FramedDuplexConnection.h in Headers */, - 46EB2E0002EFA0 /* FramedReader.h in Headers */, - 46EB2E0002EFB0 /* FrameFlags.h in Headers */, - 46EB2E0002EFC0 /* FrameHeader.h in Headers */, - 46EB2E0002EFD0 /* FrameProcessor.h in Headers */, - 46EB2E0002EFE0 /* Framer.h in Headers */, - 46EB2E0002EFF0 /* FrameSerializer.h in Headers */, - 46EB2E0002F000 /* FrameSerializer_v1_0.h in Headers */, - 46EB2E0002F010 /* FrameTransport.h in Headers */, - 46EB2E0002F020 /* FrameTransportImpl.h in Headers */, - 46EB2E0002F030 /* FrameType.h in Headers */, - 46EB2E0002F0C0 /* KeepaliveTimer.h in Headers */, - 46EB2E0002EF50 /* Latch.h in Headers */, - 46EB2E0002F280 /* Observable.h in Headers */, - 46EB2E0002F290 /* ObservableConcatOperators.h in Headers */, - 46EB2E0002F2A0 /* ObservableDoOperator.h in Headers */, - 46EB2E0002F2B0 /* ObservableOperator.h in Headers */, - 46EB2E0002F2C0 /* Observables.h in Headers */, - 46EB2E0002F2D0 /* Observer.h in Headers */, - 46EB2E0002F450 /* Payload.h in Headers */, - 46EB2E0002F040 /* ProtocolVersion.h in Headers */, - 46EB2E0002F1A0 /* PublisherBase.h in Headers */, - 46EB2E0002F3C0 /* PublishProcessor.h in Headers */, - 46EB2E0002F1B0 /* RequestResponseRequester.h in Headers */, - 46EB2E0002F1C0 /* RequestResponseResponder.h in Headers */, - 46EB2E0002F050 /* ResumeIdentificationToken.h in Headers */, - 46EB2E0002F460 /* ResumeManager.h in Headers */, - 46EB2E0002F470 /* RSocket.h in Headers */, - 46EB2E0002F480 /* RSocketClient.h in Headers */, - 46EB2E0002F490 /* RSocketConnectionEvents.h in Headers */, - 46EB2E0002F4A0 /* RSocketErrors.h in Headers */, - 46EB2E0002F4B0 /* RSocketException.h in Headers */, - 46EB2E0002F4C0 /* RSocketParameters.h in Headers */, - 46EB2E0002F4D0 /* RSocketRequester.h in Headers */, - 46EB2E0002F4E0 /* RSocketResponder.h in Headers */, - 46EB2E0002F4F0 /* RSocketServer.h in Headers */, - 46EB2E0002F500 /* RSocketServerState.h in Headers */, - 46EB2E0002F510 /* RSocketServiceHandler.h in Headers */, - 46EB2E0002F1D0 /* RSocketStateMachine.h in Headers */, - 46EB2E0002F520 /* RSocketStats.h in Headers */, - 46EB2E0002F230 /* RSocketTransport.h in Headers */, - 46EB2E0002F060 /* ScheduledFrameProcessor.h in Headers */, - 46EB2E0002F070 /* ScheduledFrameTransport.h in Headers */, - 46EB2E0002F0D0 /* ScheduledRSocketResponder.h in Headers */, - 46EB2E0002F0E0 /* ScheduledSingleObserver.h in Headers */, - 46EB2E0002F0F0 /* ScheduledSingleSubscription.h in Headers */, - 46EB2E0002F100 /* ScheduledSubscriber.h in Headers */, - 46EB2E0002F110 /* ScheduledSubscription.h in Headers */, - 46EB2E0002F120 /* SetupResumeAcceptor.h in Headers */, - 46EB2E0002F130 /* StackTraceUtils.h in Headers */, - 46EB2E0002F1E0 /* StreamFragmentAccumulator.h in Headers */, - 46EB2E0002F1F0 /* StreamRequester.h in Headers */, - 46EB2E0002F200 /* StreamResponder.h in Headers */, - 46EB2E0002F210 /* StreamStateMachineBase.h in Headers */, - 46EB2E0002F220 /* StreamsWriter.h in Headers */, - 46EB2E0002F3D0 /* Subscriber.h in Headers */, - 46EB2E0002F3E0 /* Subscription.h in Headers */, - 46EB2E0002F2E0 /* Subscription.h in Headers */, - 46EB2E0002F140 /* SwappableEventBase.h in Headers */, - 46EB2E0002F240 /* TcpConnectionAcceptor.h in Headers */, - 46EB2E0002F250 /* TcpConnectionFactory.h in Headers */, - 46EB2E0002F260 /* TcpDuplexConnection.h in Headers */, - 46EB2E0002F2F0 /* TestObserver.h in Headers */, - 46EB2E0002F3F0 /* TestSubscriber.h in Headers */, - 46EB2E0002F400 /* ThriftStreamShim.h in Headers */, - 46EB2E0002EF60 /* Throughput.h in Headers */, - 46EB2E0002F150 /* WarmResumeManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002F5E0 /* Headers */ = { + 46EB2E0002EFA0 /* Allowance.h in Headers */, + 46EB2E0002F220 /* AsyncGeneratorShim.h in Headers */, + 46EB2E0002F230 /* CancelingSubscriber.h in Headers */, + 46EB2E0002F080 /* ChannelRequester.h in Headers */, + 46EB2E0002F090 /* ChannelResponder.h in Headers */, + 46EB2E0002EFB0 /* ClientResumeStatusCallback.h in Headers */, + 46EB2E0002F330 /* ColdResumeHandler.h in Headers */, + 46EB2E0002EFC0 /* Common.h in Headers */, + 46EB2E0002F340 /* ConnectionAcceptor.h in Headers */, + 46EB2E0002F350 /* ConnectionFactory.h in Headers */, + 46EB2E0002EFD0 /* ConnectionSet.h in Headers */, + 46EB2E0002F0A0 /* ConsumerBase.h in Headers */, + 46EB2E0002F240 /* DeferFlowable.h in Headers */, + 46EB2E0002F190 /* DeferObservable.h in Headers */, + 46EB2E0002F360 /* DuplexConnection.h in Headers */, + 46EB2E0002F250 /* EmitterFlowable.h in Headers */, + 46EB2E0002EE90 /* ErrorCode.h in Headers */, + 46EB2E0002F0B0 /* FireAndForgetResponder.h in Headers */, + 46EB2E0002EE60 /* Fixture.h in Headers */, + 46EB2E0002F260 /* Flowable.h in Headers */, + 46EB2E0002F2D0 /* Flowable_FromObservable.h in Headers */, + 46EB2E0002F270 /* FlowableConcatOperators.h in Headers */, + 46EB2E0002F280 /* FlowableDoOperator.h in Headers */, + 46EB2E0002F290 /* FlowableObserveOnOperator.h in Headers */, + 46EB2E0002F2A0 /* FlowableOperator.h in Headers */, + 46EB2E0002F2B0 /* Flowables.h in Headers */, + 46EB2E0002F2C0 /* FlowableTimeoutOperator.h in Headers */, + 46EB2E0002EEA0 /* Frame.h in Headers */, + 46EB2E0002EEB0 /* FramedDuplexConnection.h in Headers */, + 46EB2E0002EEC0 /* FramedReader.h in Headers */, + 46EB2E0002EED0 /* FrameFlags.h in Headers */, + 46EB2E0002EEE0 /* FrameHeader.h in Headers */, + 46EB2E0002EEF0 /* FrameProcessor.h in Headers */, + 46EB2E0002EF00 /* Framer.h in Headers */, + 46EB2E0002EF10 /* FrameSerializer.h in Headers */, + 46EB2E0002EF20 /* FrameSerializer_v1_0.h in Headers */, + 46EB2E0002EF30 /* FrameTransport.h in Headers */, + 46EB2E0002EF40 /* FrameTransportImpl.h in Headers */, + 46EB2E0002EF50 /* FrameType.h in Headers */, + 46EB2E0002EFE0 /* KeepaliveTimer.h in Headers */, + 46EB2E0002EE70 /* Latch.h in Headers */, + 46EB2E0002F1A0 /* Observable.h in Headers */, + 46EB2E0002F1B0 /* ObservableConcatOperators.h in Headers */, + 46EB2E0002F1C0 /* ObservableDoOperator.h in Headers */, + 46EB2E0002F1D0 /* ObservableOperator.h in Headers */, + 46EB2E0002F1E0 /* Observables.h in Headers */, + 46EB2E0002F1F0 /* Observer.h in Headers */, + 46EB2E0002F370 /* Payload.h in Headers */, + 46EB2E0002EF60 /* ProtocolVersion.h in Headers */, + 46EB2E0002F0C0 /* PublisherBase.h in Headers */, + 46EB2E0002F2E0 /* PublishProcessor.h in Headers */, + 46EB2E0002F0D0 /* RequestResponseRequester.h in Headers */, + 46EB2E0002F0E0 /* RequestResponseResponder.h in Headers */, + 46EB2E0002EF70 /* ResumeIdentificationToken.h in Headers */, + 46EB2E0002F380 /* ResumeManager.h in Headers */, + 46EB2E0002F390 /* RSocket.h in Headers */, + 46EB2E0002F3A0 /* RSocketClient.h in Headers */, + 46EB2E0002F3B0 /* RSocketConnectionEvents.h in Headers */, + 46EB2E0002F3C0 /* RSocketErrors.h in Headers */, + 46EB2E0002F3D0 /* RSocketException.h in Headers */, + 46EB2E0002F3E0 /* RSocketParameters.h in Headers */, + 46EB2E0002F3F0 /* RSocketRequester.h in Headers */, + 46EB2E0002F400 /* RSocketResponder.h in Headers */, + 46EB2E0002F410 /* RSocketServer.h in Headers */, + 46EB2E0002F420 /* RSocketServerState.h in Headers */, + 46EB2E0002F430 /* RSocketServiceHandler.h in Headers */, + 46EB2E0002F0F0 /* RSocketStateMachine.h in Headers */, + 46EB2E0002F440 /* RSocketStats.h in Headers */, + 46EB2E0002F150 /* RSocketTransport.h in Headers */, + 46EB2E0002EF80 /* ScheduledFrameProcessor.h in Headers */, + 46EB2E0002EF90 /* ScheduledFrameTransport.h in Headers */, + 46EB2E0002EFF0 /* ScheduledRSocketResponder.h in Headers */, + 46EB2E0002F000 /* ScheduledSingleObserver.h in Headers */, + 46EB2E0002F010 /* ScheduledSingleSubscription.h in Headers */, + 46EB2E0002F020 /* ScheduledSubscriber.h in Headers */, + 46EB2E0002F030 /* ScheduledSubscription.h in Headers */, + 46EB2E0002F040 /* SetupResumeAcceptor.h in Headers */, + 46EB2E0002F050 /* StackTraceUtils.h in Headers */, + 46EB2E0002F100 /* StreamFragmentAccumulator.h in Headers */, + 46EB2E0002F110 /* StreamRequester.h in Headers */, + 46EB2E0002F120 /* StreamResponder.h in Headers */, + 46EB2E0002F130 /* StreamStateMachineBase.h in Headers */, + 46EB2E0002F140 /* StreamsWriter.h in Headers */, + 46EB2E0002F2F0 /* Subscriber.h in Headers */, + 46EB2E0002F300 /* Subscription.h in Headers */, + 46EB2E0002F200 /* Subscription.h in Headers */, + 46EB2E0002F060 /* SwappableEventBase.h in Headers */, + 46EB2E0002F160 /* TcpConnectionAcceptor.h in Headers */, + 46EB2E0002F170 /* TcpConnectionFactory.h in Headers */, + 46EB2E0002F180 /* TcpDuplexConnection.h in Headers */, + 46EB2E0002F210 /* TestObserver.h in Headers */, + 46EB2E0002F310 /* TestSubscriber.h in Headers */, + 46EB2E0002F320 /* ThriftStreamShim.h in Headers */, + 46EB2E0002EE80 /* Throughput.h in Headers */, + 46EB2E0002F070 /* WarmResumeManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002F500 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002F7B0 /* FBCxxFollyDynamicConvert.h in Headers */, - 46EB2E0002F7C0 /* FBDefines.h in Headers */, - 46EB2E0002F7E0 /* FKPortForwardingCommon.h in Headers */, - 46EB2E0002F7F0 /* FKPortForwardingServer.h in Headers */, - 46EB2E0002FAC0 /* FKTextSearchable.h in Headers */, - 46EB2E0002FBD0 /* FKUserDefaultsPlugin.h in Headers */, - 46EB2E0002FBE0 /* FKUserDefaultsSwizzleUtility.h in Headers */, - 46EB2E0002FC40 /* FLEXNetworkObserver.h in Headers */, - 46EB2E0002FC50 /* FLEXNetworkRecorder.h in Headers */, - 46EB2E0002FC60 /* FLEXNetworkTransaction.h in Headers */, - 46EB2E0002FC70 /* FLEXUtility.h in Headers */, - 46EB2E0002F6B0 /* FlipperClient.h in Headers */, - 46EB2E0002F6A0 /* FlipperClient+Testing.h in Headers */, - 46EB2E0002F6C0 /* FlipperConnection.h in Headers */, - 46EB2E0002F770 /* FlipperCppBridgingConnection.h in Headers */, - 46EB2E0002F780 /* FlipperCppBridgingResponder.h in Headers */, - 46EB2E0002F790 /* FlipperCppWrapperPlugin.h in Headers */, - 46EB2E0002F6D0 /* FlipperDiagnosticsViewController.h in Headers */, - 46EB2E0002FCE0 /* FlipperKit-umbrella.h in Headers */, - 46EB2E0002F6E0 /* FlipperKitCertificateProvider.h in Headers */, - 46EB2E0002F8E0 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */, - 46EB2E0002FAA0 /* FlipperKitLayoutPlugin.h in Headers */, - 46EB2E0002FB10 /* FlipperKitNetworkPlugin.h in Headers */, - 46EB2E0002FBA0 /* FlipperKitReactPlugin.h in Headers */, - 46EB2E0002F6F0 /* FlipperPlatformWebSocket.h in Headers */, - 46EB2E0002F700 /* FlipperPlugin.h in Headers */, - 46EB2E0002F710 /* FlipperResponder.h in Headers */, - 46EB2E0002F720 /* FlipperStateUpdateListener.h in Headers */, - 46EB2E0002F730 /* FlipperWebSocket.h in Headers */, - 46EB2E0002FA30 /* SKApplicationDescriptor.h in Headers */, - 46EB2E0002FB30 /* SKBufferingPlugin.h in Headers */, - 46EB2E0002FB20 /* SKBufferingPlugin+CPPInitialization.h in Headers */, - 46EB2E0002FA40 /* SKButtonDescriptor.h in Headers */, - 46EB2E0002FAB0 /* SKDescriptorMapper.h in Headers */, - 46EB2E0002FB40 /* SKDispatchQueue.h in Headers */, - 46EB2E0002F740 /* SKEnvironmentVariables.h in Headers */, - 46EB2E0002F8F0 /* SKHiddenWindow.h in Headers */, - 46EB2E0002F810 /* SKHighlightOverlay.h in Headers */, - 46EB2E0002F900 /* SKInvalidation.h in Headers */, - 46EB2E0002FC80 /* SKIOSNetworkAdapter.h in Headers */, - 46EB2E0002F750 /* SKMacros.h in Headers */, - 46EB2E0002F910 /* SKNamed.h in Headers */, - 46EB2E0002FB50 /* SKNetworkReporter.h in Headers */, - 46EB2E0002F920 /* SKNodeDescriptor.h in Headers */, - 46EB2E0002F930 /* SKObject.h in Headers */, - 46EB2E0002F940 /* SKObjectHash.h in Headers */, - 46EB2E0002FB60 /* SKRequestInfo.h in Headers */, - 46EB2E0002FB70 /* SKResponseInfo.h in Headers */, - 46EB2E0002FA50 /* SKScrollViewDescriptor.h in Headers */, - 46EB2E0002F950 /* SKSearchResultNode.h in Headers */, - 46EB2E0002F760 /* SKStateUpdateCPPWrapper.h in Headers */, - 46EB2E0002F960 /* SKSwizzle.h in Headers */, - 46EB2E0002F970 /* SKTapListener.h in Headers */, - 46EB2E0002F980 /* SKTapListenerImpl.h in Headers */, - 46EB2E0002F990 /* SKTouch.h in Headers */, - 46EB2E0002FA60 /* SKViewControllerDescriptor.h in Headers */, - 46EB2E0002FA70 /* SKViewDescriptor.h in Headers */, - 46EB2E0002F9A0 /* SKYogaKitHelper.h in Headers */, - 46EB2E0002FB80 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */, - 46EB2E0002F9B0 /* UICollectionView+SKInvalidation.h in Headers */, - 46EB2E0002F9C0 /* UIColor+SKSonarValueCoder.h in Headers */, - 46EB2E0002F9D0 /* UIView+SKInvalidation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002FD70 /* Headers */ = { + 46EB2E0002F6D0 /* FBCxxFollyDynamicConvert.h in Headers */, + 46EB2E0002F6E0 /* FBDefines.h in Headers */, + 46EB2E0002F700 /* FKPortForwardingCommon.h in Headers */, + 46EB2E0002F710 /* FKPortForwardingServer.h in Headers */, + 46EB2E0002F9E0 /* FKTextSearchable.h in Headers */, + 46EB2E0002FAF0 /* FKUserDefaultsPlugin.h in Headers */, + 46EB2E0002FB00 /* FKUserDefaultsSwizzleUtility.h in Headers */, + 46EB2E0002FB60 /* FLEXNetworkObserver.h in Headers */, + 46EB2E0002FB70 /* FLEXNetworkRecorder.h in Headers */, + 46EB2E0002FB80 /* FLEXNetworkTransaction.h in Headers */, + 46EB2E0002FB90 /* FLEXUtility.h in Headers */, + 46EB2E0002F5D0 /* FlipperClient.h in Headers */, + 46EB2E0002F5C0 /* FlipperClient+Testing.h in Headers */, + 46EB2E0002F5E0 /* FlipperConnection.h in Headers */, + 46EB2E0002F690 /* FlipperCppBridgingConnection.h in Headers */, + 46EB2E0002F6A0 /* FlipperCppBridgingResponder.h in Headers */, + 46EB2E0002F6B0 /* FlipperCppWrapperPlugin.h in Headers */, + 46EB2E0002F5F0 /* FlipperDiagnosticsViewController.h in Headers */, + 46EB2E0002FC00 /* FlipperKit-umbrella.h in Headers */, + 46EB2E0002F600 /* FlipperKitCertificateProvider.h in Headers */, + 46EB2E0002F800 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */, + 46EB2E0002F9C0 /* FlipperKitLayoutPlugin.h in Headers */, + 46EB2E0002FA30 /* FlipperKitNetworkPlugin.h in Headers */, + 46EB2E0002FAC0 /* FlipperKitReactPlugin.h in Headers */, + 46EB2E0002F610 /* FlipperPlatformWebSocket.h in Headers */, + 46EB2E0002F620 /* FlipperPlugin.h in Headers */, + 46EB2E0002F630 /* FlipperResponder.h in Headers */, + 46EB2E0002F640 /* FlipperStateUpdateListener.h in Headers */, + 46EB2E0002F650 /* FlipperWebSocket.h in Headers */, + 46EB2E0002F950 /* SKApplicationDescriptor.h in Headers */, + 46EB2E0002FA50 /* SKBufferingPlugin.h in Headers */, + 46EB2E0002FA40 /* SKBufferingPlugin+CPPInitialization.h in Headers */, + 46EB2E0002F960 /* SKButtonDescriptor.h in Headers */, + 46EB2E0002F9D0 /* SKDescriptorMapper.h in Headers */, + 46EB2E0002FA60 /* SKDispatchQueue.h in Headers */, + 46EB2E0002F660 /* SKEnvironmentVariables.h in Headers */, + 46EB2E0002F810 /* SKHiddenWindow.h in Headers */, + 46EB2E0002F730 /* SKHighlightOverlay.h in Headers */, + 46EB2E0002F820 /* SKInvalidation.h in Headers */, + 46EB2E0002FBA0 /* SKIOSNetworkAdapter.h in Headers */, + 46EB2E0002F670 /* SKMacros.h in Headers */, + 46EB2E0002F830 /* SKNamed.h in Headers */, + 46EB2E0002FA70 /* SKNetworkReporter.h in Headers */, + 46EB2E0002F840 /* SKNodeDescriptor.h in Headers */, + 46EB2E0002F850 /* SKObject.h in Headers */, + 46EB2E0002F860 /* SKObjectHash.h in Headers */, + 46EB2E0002FA80 /* SKRequestInfo.h in Headers */, + 46EB2E0002FA90 /* SKResponseInfo.h in Headers */, + 46EB2E0002F970 /* SKScrollViewDescriptor.h in Headers */, + 46EB2E0002F870 /* SKSearchResultNode.h in Headers */, + 46EB2E0002F680 /* SKStateUpdateCPPWrapper.h in Headers */, + 46EB2E0002F880 /* SKSwizzle.h in Headers */, + 46EB2E0002F890 /* SKTapListener.h in Headers */, + 46EB2E0002F8A0 /* SKTapListenerImpl.h in Headers */, + 46EB2E0002F8B0 /* SKTouch.h in Headers */, + 46EB2E0002F980 /* SKViewControllerDescriptor.h in Headers */, + 46EB2E0002F990 /* SKViewDescriptor.h in Headers */, + 46EB2E0002F8C0 /* SKYogaKitHelper.h in Headers */, + 46EB2E0002FAA0 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */, + 46EB2E0002F8D0 /* UICollectionView+SKInvalidation.h in Headers */, + 46EB2E0002F8E0 /* UIColor+SKSonarValueCoder.h in Headers */, + 46EB2E0002F8F0 /* UIView+SKInvalidation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002FC90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002FDE0 /* GTMSessionFetcher.h in Headers */, - 46EB2E0002FDF0 /* GTMSessionFetcherLogging.h in Headers */, - 46EB2E0002FE00 /* GTMSessionFetcherService.h in Headers */, - 46EB2E0002FE10 /* GTMSessionUploadFetcher.h in Headers */, + 46EB2E0002FD00 /* GTMSessionFetcher.h in Headers */, + 46EB2E0002FD10 /* GTMSessionFetcherLogging.h in Headers */, + 46EB2E0002FD20 /* GTMSessionFetcherService.h in Headers */, + 46EB2E0002FD30 /* GTMSessionUploadFetcher.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002FF40 /* Headers */ = { + 46EB2E0002FE60 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000302F0 /* cct.nanopb.h in Headers */, - 46EB2E000302B0 /* GDTCCTCompressionHelper.h in Headers */, - 46EB2E000302C0 /* GDTCCTNanopbHelpers.h in Headers */, - 46EB2E000302D0 /* GDTCCTUploader.h in Headers */, - 46EB2E000302E0 /* GDTCCTUploadOperation.h in Headers */, - 46EB2E000300E0 /* GDTCORAssert.h in Headers */, - 46EB2E00030220 /* GDTCORClock.h in Headers */, - 46EB2E00030230 /* GDTCORConsoleLogger.h in Headers */, - 46EB2E000300F0 /* GDTCORDirectorySizeTracker.h in Headers */, - 46EB2E00030240 /* GDTCOREndpoints.h in Headers */, - 46EB2E00030170 /* GDTCOREndpoints_Private.h in Headers */, - 46EB2E00030250 /* GDTCOREvent.h in Headers */, - 46EB2E00030300 /* GDTCOREvent+GDTCCTSupport.h in Headers */, - 46EB2E00030180 /* GDTCOREvent_Private.h in Headers */, - 46EB2E00030260 /* GDTCOREventDataObject.h in Headers */, - 46EB2E00030270 /* GDTCOREventTransformer.h in Headers */, - 46EB2E000301A0 /* GDTCORFlatFileStorage.h in Headers */, - 46EB2E00030190 /* GDTCORFlatFileStorage+Promises.h in Headers */, - 46EB2E00030100 /* GDTCORLifecycle.h in Headers */, - 46EB2E00030110 /* GDTCORPlatform.h in Headers */, - 46EB2E00030120 /* GDTCORReachability.h in Headers */, - 46EB2E000301B0 /* GDTCORReachability_Private.h in Headers */, - 46EB2E00030130 /* GDTCORRegistrar.h in Headers */, - 46EB2E000301C0 /* GDTCORRegistrar_Private.h in Headers */, - 46EB2E00030140 /* GDTCORStorageEventSelector.h in Headers */, - 46EB2E00030150 /* GDTCORStorageProtocol.h in Headers */, - 46EB2E00030280 /* GDTCORTargets.h in Headers */, - 46EB2E000301D0 /* GDTCORTransformer.h in Headers */, - 46EB2E000301E0 /* GDTCORTransformer_Private.h in Headers */, - 46EB2E00030290 /* GDTCORTransport.h in Headers */, - 46EB2E000301F0 /* GDTCORTransport_Private.h in Headers */, - 46EB2E00030200 /* GDTCORUploadBatch.h in Headers */, - 46EB2E00030210 /* GDTCORUploadCoordinator.h in Headers */, - 46EB2E00030160 /* GDTCORUploader.h in Headers */, - 46EB2E000302A0 /* GoogleDataTransport.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000303B0 /* Headers */ = { + 46EB2E00030210 /* cct.nanopb.h in Headers */, + 46EB2E000301D0 /* GDTCCTCompressionHelper.h in Headers */, + 46EB2E000301E0 /* GDTCCTNanopbHelpers.h in Headers */, + 46EB2E000301F0 /* GDTCCTUploader.h in Headers */, + 46EB2E00030200 /* GDTCCTUploadOperation.h in Headers */, + 46EB2E00030000 /* GDTCORAssert.h in Headers */, + 46EB2E00030140 /* GDTCORClock.h in Headers */, + 46EB2E00030150 /* GDTCORConsoleLogger.h in Headers */, + 46EB2E00030010 /* GDTCORDirectorySizeTracker.h in Headers */, + 46EB2E00030160 /* GDTCOREndpoints.h in Headers */, + 46EB2E00030090 /* GDTCOREndpoints_Private.h in Headers */, + 46EB2E00030170 /* GDTCOREvent.h in Headers */, + 46EB2E00030220 /* GDTCOREvent+GDTCCTSupport.h in Headers */, + 46EB2E000300A0 /* GDTCOREvent_Private.h in Headers */, + 46EB2E00030180 /* GDTCOREventDataObject.h in Headers */, + 46EB2E00030190 /* GDTCOREventTransformer.h in Headers */, + 46EB2E000300C0 /* GDTCORFlatFileStorage.h in Headers */, + 46EB2E000300B0 /* GDTCORFlatFileStorage+Promises.h in Headers */, + 46EB2E00030020 /* GDTCORLifecycle.h in Headers */, + 46EB2E00030030 /* GDTCORPlatform.h in Headers */, + 46EB2E00030040 /* GDTCORReachability.h in Headers */, + 46EB2E000300D0 /* GDTCORReachability_Private.h in Headers */, + 46EB2E00030050 /* GDTCORRegistrar.h in Headers */, + 46EB2E000300E0 /* GDTCORRegistrar_Private.h in Headers */, + 46EB2E00030060 /* GDTCORStorageEventSelector.h in Headers */, + 46EB2E00030070 /* GDTCORStorageProtocol.h in Headers */, + 46EB2E000301A0 /* GDTCORTargets.h in Headers */, + 46EB2E000300F0 /* GDTCORTransformer.h in Headers */, + 46EB2E00030100 /* GDTCORTransformer_Private.h in Headers */, + 46EB2E000301B0 /* GDTCORTransport.h in Headers */, + 46EB2E00030110 /* GDTCORTransport_Private.h in Headers */, + 46EB2E00030120 /* GDTCORUploadBatch.h in Headers */, + 46EB2E00030130 /* GDTCORUploadCoordinator.h in Headers */, + 46EB2E00030080 /* GDTCORUploader.h in Headers */, + 46EB2E000301C0 /* GoogleDataTransport.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000302D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000308B0 /* GoogleUtilities-umbrella.h in Headers */, - 46EB2E00030420 /* GULAppDelegateSwizzler.h in Headers */, - 46EB2E00030400 /* GULAppDelegateSwizzler_Private.h in Headers */, - 46EB2E000304E0 /* GULAppEnvironmentUtil.h in Headers */, - 46EB2E00030430 /* GULApplication.h in Headers */, - 46EB2E000304F0 /* GULHeartbeatDateStorable.h in Headers */, - 46EB2E00030500 /* GULHeartbeatDateStorage.h in Headers */, - 46EB2E00030510 /* GULHeartbeatDateStorageUserDefaults.h in Headers */, - 46EB2E00030520 /* GULKeychainStorage.h in Headers */, - 46EB2E00030530 /* GULKeychainUtils.h in Headers */, - 46EB2E000305D0 /* GULLogger.h in Headers */, - 46EB2E00030450 /* GULLoggerCodes.h in Headers */, - 46EB2E000305E0 /* GULLoggerLevel.h in Headers */, - 46EB2E00030690 /* GULMutableDictionary.h in Headers */, - 46EB2E000306A0 /* GULNetwork.h in Headers */, - 46EB2E000306B0 /* GULNetworkConstants.h in Headers */, - 46EB2E00030680 /* GULNetworkInternal.h in Headers */, - 46EB2E000306C0 /* GULNetworkLoggerProtocol.h in Headers */, - 46EB2E000306D0 /* GULNetworkMessageCode.h in Headers */, - 46EB2E000306E0 /* GULNetworkURLSession.h in Headers */, - 46EB2E00030630 /* GULNSData+zlib.h in Headers */, - 46EB2E000305A0 /* GULObjectSwizzler.h in Headers */, - 46EB2E00030590 /* GULObjectSwizzler+Internal.h in Headers */, - 46EB2E00030600 /* GULOriginalIMPConvenienceMacros.h in Headers */, - 46EB2E000307B0 /* GULProxy.h in Headers */, - 46EB2E00030720 /* GULReachabilityChecker.h in Headers */, - 46EB2E00030700 /* GULReachabilityChecker+Internal.h in Headers */, - 46EB2E00030710 /* GULReachabilityMessageCode.h in Headers */, - 46EB2E000307C0 /* GULRuntimeClassDiff.h in Headers */, - 46EB2E000307D0 /* GULRuntimeClassSnapshot.h in Headers */, - 46EB2E000307E0 /* GULRuntimeDiff.h in Headers */, - 46EB2E000307F0 /* GULRuntimeSnapshot.h in Headers */, - 46EB2E00030800 /* GULRuntimeStateHelper.h in Headers */, - 46EB2E00030440 /* GULSceneDelegateSwizzler.h in Headers */, - 46EB2E00030410 /* GULSceneDelegateSwizzler_Private.h in Headers */, - 46EB2E00030540 /* GULSecureCoding.h in Headers */, - 46EB2E000305B0 /* GULSwizzledObject.h in Headers */, - 46EB2E00030610 /* GULSwizzler.h in Headers */, - 46EB2E00030830 /* GULSwizzler+Unswizzle.h in Headers */, - 46EB2E00030810 /* GULSwizzlingCache.h in Headers */, - 46EB2E00030820 /* GULSwizzlingCache_Private.h in Headers */, - 46EB2E00030550 /* GULURLSessionDataResponse.h in Headers */, - 46EB2E00030850 /* GULUserDefaults.h in Headers */, - 46EB2E00030560 /* NSURLSession+GULPromises.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00030930 /* Headers */ = { + 46EB2E000307D0 /* GoogleUtilities-umbrella.h in Headers */, + 46EB2E00030340 /* GULAppDelegateSwizzler.h in Headers */, + 46EB2E00030320 /* GULAppDelegateSwizzler_Private.h in Headers */, + 46EB2E00030400 /* GULAppEnvironmentUtil.h in Headers */, + 46EB2E00030350 /* GULApplication.h in Headers */, + 46EB2E00030410 /* GULHeartbeatDateStorable.h in Headers */, + 46EB2E00030420 /* GULHeartbeatDateStorage.h in Headers */, + 46EB2E00030430 /* GULHeartbeatDateStorageUserDefaults.h in Headers */, + 46EB2E00030440 /* GULKeychainStorage.h in Headers */, + 46EB2E00030450 /* GULKeychainUtils.h in Headers */, + 46EB2E000304F0 /* GULLogger.h in Headers */, + 46EB2E00030370 /* GULLoggerCodes.h in Headers */, + 46EB2E00030500 /* GULLoggerLevel.h in Headers */, + 46EB2E000305B0 /* GULMutableDictionary.h in Headers */, + 46EB2E000305C0 /* GULNetwork.h in Headers */, + 46EB2E000305D0 /* GULNetworkConstants.h in Headers */, + 46EB2E000305A0 /* GULNetworkInternal.h in Headers */, + 46EB2E000305E0 /* GULNetworkLoggerProtocol.h in Headers */, + 46EB2E000305F0 /* GULNetworkMessageCode.h in Headers */, + 46EB2E00030600 /* GULNetworkURLSession.h in Headers */, + 46EB2E00030550 /* GULNSData+zlib.h in Headers */, + 46EB2E000304C0 /* GULObjectSwizzler.h in Headers */, + 46EB2E000304B0 /* GULObjectSwizzler+Internal.h in Headers */, + 46EB2E00030520 /* GULOriginalIMPConvenienceMacros.h in Headers */, + 46EB2E000306D0 /* GULProxy.h in Headers */, + 46EB2E00030640 /* GULReachabilityChecker.h in Headers */, + 46EB2E00030620 /* GULReachabilityChecker+Internal.h in Headers */, + 46EB2E00030630 /* GULReachabilityMessageCode.h in Headers */, + 46EB2E000306E0 /* GULRuntimeClassDiff.h in Headers */, + 46EB2E000306F0 /* GULRuntimeClassSnapshot.h in Headers */, + 46EB2E00030700 /* GULRuntimeDiff.h in Headers */, + 46EB2E00030710 /* GULRuntimeSnapshot.h in Headers */, + 46EB2E00030720 /* GULRuntimeStateHelper.h in Headers */, + 46EB2E00030360 /* GULSceneDelegateSwizzler.h in Headers */, + 46EB2E00030330 /* GULSceneDelegateSwizzler_Private.h in Headers */, + 46EB2E00030460 /* GULSecureCoding.h in Headers */, + 46EB2E000304D0 /* GULSwizzledObject.h in Headers */, + 46EB2E00030530 /* GULSwizzler.h in Headers */, + 46EB2E00030750 /* GULSwizzler+Unswizzle.h in Headers */, + 46EB2E00030730 /* GULSwizzlingCache.h in Headers */, + 46EB2E00030740 /* GULSwizzlingCache_Private.h in Headers */, + 46EB2E00030470 /* GULURLSessionDataResponse.h in Headers */, + 46EB2E00030770 /* GULUserDefaults.h in Headers */, + 46EB2E00030480 /* NSURLSession+GULPromises.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00030850 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00030ED0 /* JWT.h in Headers */, - 46EB2E00030C10 /* JWTAlgorithm.h in Headers */, - 46EB2E00030C60 /* JWTAlgorithmAsymmetricBase.h in Headers */, - 46EB2E00030C90 /* JWTAlgorithmDataHolder.h in Headers */, - 46EB2E00030C80 /* JWTAlgorithmDataHolder+FluentStyle.h in Headers */, - 46EB2E00030CA0 /* JWTAlgorithmDataHolderChain.h in Headers */, - 46EB2E00030C30 /* JWTAlgorithmErrorDescription.h in Headers */, - 46EB2E00030C20 /* JWTAlgorithmErrorDescription+Subclass.h in Headers */, - 46EB2E00030C70 /* JWTAlgorithmESBase.h in Headers */, - 46EB2E00030C40 /* JWTAlgorithmFactory.h in Headers */, - 46EB2E00030CB0 /* JWTAlgorithmHSBase.h in Headers */, - 46EB2E00030C50 /* JWTAlgorithmNone.h in Headers */, - 46EB2E00030CC0 /* JWTAlgorithmRSBase.h in Headers */, - 46EB2E00030EE0 /* JWTBase64Coder.h in Headers */, - 46EB2E00030E60 /* JWTBuilder+FluentStyle.h in Headers */, - 46EB2E00030D50 /* JWTClaim.h in Headers */, - 46EB2E00030D60 /* JWTClaimBase.h in Headers */, - 46EB2E00030D70 /* JWTClaimSerializerBase.h in Headers */, - 46EB2E00030D80 /* JWTClaimSerializerVariations.h in Headers */, - 46EB2E00030D90 /* JWTClaimsProviderBase.h in Headers */, - 46EB2E00030DA0 /* JWTClaimsSet.h in Headers */, - 46EB2E00030DB0 /* JWTClaimsSetBase.h in Headers */, - 46EB2E00030DC0 /* JWTClaimsSetCoordinatorBase.h in Headers */, - 46EB2E00030DD0 /* JWTClaimsSetDSLBase.h in Headers */, - 46EB2E00030DE0 /* JWTClaimsSetSerializer.h in Headers */, - 46EB2E00030DF0 /* JWTClaimsSetSerializerBase.h in Headers */, - 46EB2E00030E00 /* JWTClaimsSetsProtocols.h in Headers */, - 46EB2E00030E10 /* JWTClaimsSetVerifier.h in Headers */, - 46EB2E00030E20 /* JWTClaimsSetVerifierBase.h in Headers */, - 46EB2E00030E30 /* JWTClaimVariations.h in Headers */, - 46EB2E00030E40 /* JWTClaimVerifierBase.h in Headers */, - 46EB2E00030E50 /* JWTClaimVerifierVariations.h in Headers */, - 46EB2E00030EB0 /* JWTCoding.h in Headers */, - 46EB2E00030E70 /* JWTCoding+ResultTypes.h in Headers */, - 46EB2E00030E80 /* JWTCoding+VersionOne.h in Headers */, - 46EB2E00030E90 /* JWTCoding+VersionThree.h in Headers */, - 46EB2E00030EA0 /* JWTCoding+VersionTwo.h in Headers */, - 46EB2E00030EC0 /* JWTCodingBuilder+FluentStyle.h in Headers */, - 46EB2E00030CE0 /* JWTCryptoKey.h in Headers */, - 46EB2E00030D00 /* JWTCryptoKeyExtractor.h in Headers */, - 46EB2E00030CF0 /* JWTCryptoKeyExtractor+FluentStyle.h in Headers */, - 46EB2E00030D40 /* JWTCryptoSecurity.h in Headers */, - 46EB2E00030D10 /* JWTCryptoSecurity+ErrorHandling.h in Headers */, - 46EB2E00030D20 /* JWTCryptoSecurity+ExternalRepresentation.h in Headers */, - 46EB2E00030D30 /* JWTCryptoSecurity+Extraction.h in Headers */, - 46EB2E00030EF0 /* JWTDeprecations.h in Headers */, - 46EB2E00030F00 /* JWTErrorDescription.h in Headers */, - 46EB2E00030CD0 /* JWTRSAlgorithm.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00030FC0 /* Headers */ = { + 46EB2E00030C60 /* JWT.h in Headers */, + 46EB2E00030A70 /* JWTAlgorithm.h in Headers */, + 46EB2E00030AC0 /* JWTAlgorithmAsymmetricBase.h in Headers */, + 46EB2E00030AF0 /* JWTAlgorithmDataHolder.h in Headers */, + 46EB2E00030AE0 /* JWTAlgorithmDataHolder+FluentStyle.h in Headers */, + 46EB2E00030B00 /* JWTAlgorithmDataHolderChain.h in Headers */, + 46EB2E00030A90 /* JWTAlgorithmErrorDescription.h in Headers */, + 46EB2E00030A80 /* JWTAlgorithmErrorDescription+Subclass.h in Headers */, + 46EB2E00030AD0 /* JWTAlgorithmESBase.h in Headers */, + 46EB2E00030AA0 /* JWTAlgorithmFactory.h in Headers */, + 46EB2E00030B10 /* JWTAlgorithmHSBase.h in Headers */, + 46EB2E00030AB0 /* JWTAlgorithmNone.h in Headers */, + 46EB2E00030B20 /* JWTAlgorithmRSBase.h in Headers */, + 46EB2E00030C70 /* JWTBase64Coder.h in Headers */, + 46EB2E00030BF0 /* JWTBuilder+FluentStyle.h in Headers */, + 46EB2E00030BB0 /* JWTClaim.h in Headers */, + 46EB2E00030BC0 /* JWTClaimsSet.h in Headers */, + 46EB2E00030BD0 /* JWTClaimsSetSerializer.h in Headers */, + 46EB2E00030BE0 /* JWTClaimsSetVerifier.h in Headers */, + 46EB2E00030C40 /* JWTCoding.h in Headers */, + 46EB2E00030C00 /* JWTCoding+ResultTypes.h in Headers */, + 46EB2E00030C10 /* JWTCoding+VersionOne.h in Headers */, + 46EB2E00030C20 /* JWTCoding+VersionThree.h in Headers */, + 46EB2E00030C30 /* JWTCoding+VersionTwo.h in Headers */, + 46EB2E00030C50 /* JWTCodingBuilder+FluentStyle.h in Headers */, + 46EB2E00030B40 /* JWTCryptoKey.h in Headers */, + 46EB2E00030B60 /* JWTCryptoKeyExtractor.h in Headers */, + 46EB2E00030B50 /* JWTCryptoKeyExtractor+FluentStyle.h in Headers */, + 46EB2E00030BA0 /* JWTCryptoSecurity.h in Headers */, + 46EB2E00030B70 /* JWTCryptoSecurity+ErrorHandling.h in Headers */, + 46EB2E00030B80 /* JWTCryptoSecurity+ExternalRepresentation.h in Headers */, + 46EB2E00030B90 /* JWTCryptoSecurity+Extraction.h in Headers */, + 46EB2E00030C80 /* JWTDeprecations.h in Headers */, + 46EB2E00030C90 /* JWTErrorDescription.h in Headers */, + 46EB2E00030B30 /* JWTRSAlgorithm.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00030D50 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00031240 /* atomic-ops.h in Headers */, - 46EB2E000312D0 /* darwin.h in Headers */, - 46EB2E00031280 /* errno.h in Headers */, - 46EB2E000311F0 /* heap-inl.h in Headers */, - 46EB2E00031200 /* idna.h in Headers */, - 46EB2E00031250 /* internal.h in Headers */, - 46EB2E00031210 /* queue.h in Headers */, - 46EB2E00031260 /* spinlock.h in Headers */, - 46EB2E00031220 /* strscpy.h in Headers */, - 46EB2E00031290 /* threadpool.h in Headers */, - 46EB2E000312B0 /* tree.h in Headers */, - 46EB2E000312C0 /* unix.h in Headers */, - 46EB2E00031270 /* uv.h in Headers */, - 46EB2E00031230 /* uv-common.h in Headers */, - 46EB2E000312A0 /* version.h in Headers */, + 46EB2E00030FD0 /* atomic-ops.h in Headers */, + 46EB2E00031060 /* darwin.h in Headers */, + 46EB2E00031010 /* errno.h in Headers */, + 46EB2E00030F80 /* heap-inl.h in Headers */, + 46EB2E00030F90 /* idna.h in Headers */, + 46EB2E00030FE0 /* internal.h in Headers */, + 46EB2E00030FA0 /* queue.h in Headers */, + 46EB2E00030FF0 /* spinlock.h in Headers */, + 46EB2E00030FB0 /* strscpy.h in Headers */, + 46EB2E00031020 /* threadpool.h in Headers */, + 46EB2E00031040 /* tree.h in Headers */, + 46EB2E00031050 /* unix.h in Headers */, + 46EB2E00031000 /* uv.h in Headers */, + 46EB2E00030FC0 /* uv-common.h in Headers */, + 46EB2E00031030 /* version.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00031410 /* Headers */ = { + 46EB2E000311A0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00031680 /* FBLPromise.h in Headers */, - 46EB2E00031570 /* FBLPromise+All.h in Headers */, - 46EB2E00031580 /* FBLPromise+Always.h in Headers */, - 46EB2E00031590 /* FBLPromise+Any.h in Headers */, - 46EB2E000315A0 /* FBLPromise+Async.h in Headers */, - 46EB2E000315B0 /* FBLPromise+Await.h in Headers */, - 46EB2E000315C0 /* FBLPromise+Catch.h in Headers */, - 46EB2E000315D0 /* FBLPromise+Delay.h in Headers */, - 46EB2E000315E0 /* FBLPromise+Do.h in Headers */, - 46EB2E000315F0 /* FBLPromise+Race.h in Headers */, - 46EB2E00031600 /* FBLPromise+Recover.h in Headers */, - 46EB2E00031610 /* FBLPromise+Reduce.h in Headers */, - 46EB2E00031620 /* FBLPromise+Retry.h in Headers */, - 46EB2E00031630 /* FBLPromise+Testing.h in Headers */, - 46EB2E00031640 /* FBLPromise+Then.h in Headers */, - 46EB2E00031650 /* FBLPromise+Timeout.h in Headers */, - 46EB2E00031660 /* FBLPromise+Validate.h in Headers */, - 46EB2E00031670 /* FBLPromise+Wrap.h in Headers */, - 46EB2E00031690 /* FBLPromiseError.h in Headers */, - 46EB2E000316A0 /* FBLPromisePrivate.h in Headers */, - 46EB2E000316B0 /* FBLPromises.h in Headers */, - 46EB2E00031710 /* PromisesObjC-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00031790 /* Headers */ = { + 46EB2E00031410 /* FBLPromise.h in Headers */, + 46EB2E00031300 /* FBLPromise+All.h in Headers */, + 46EB2E00031310 /* FBLPromise+Always.h in Headers */, + 46EB2E00031320 /* FBLPromise+Any.h in Headers */, + 46EB2E00031330 /* FBLPromise+Async.h in Headers */, + 46EB2E00031340 /* FBLPromise+Await.h in Headers */, + 46EB2E00031350 /* FBLPromise+Catch.h in Headers */, + 46EB2E00031360 /* FBLPromise+Delay.h in Headers */, + 46EB2E00031370 /* FBLPromise+Do.h in Headers */, + 46EB2E00031380 /* FBLPromise+Race.h in Headers */, + 46EB2E00031390 /* FBLPromise+Recover.h in Headers */, + 46EB2E000313A0 /* FBLPromise+Reduce.h in Headers */, + 46EB2E000313B0 /* FBLPromise+Retry.h in Headers */, + 46EB2E000313C0 /* FBLPromise+Testing.h in Headers */, + 46EB2E000313D0 /* FBLPromise+Then.h in Headers */, + 46EB2E000313E0 /* FBLPromise+Timeout.h in Headers */, + 46EB2E000313F0 /* FBLPromise+Validate.h in Headers */, + 46EB2E00031400 /* FBLPromise+Wrap.h in Headers */, + 46EB2E00031420 /* FBLPromiseError.h in Headers */, + 46EB2E00031430 /* FBLPromisePrivate.h in Headers */, + 46EB2E00031440 /* FBLPromises.h in Headers */, + 46EB2E000314A0 /* PromisesObjC-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00031520 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034190 /* a.h in Headers */, - 46EB2E00032080 /* Access.h in Headers */, - 46EB2E00033A80 /* Accumulate.h in Headers */, - 46EB2E00033A70 /* Accumulate-inl.h in Headers */, - 46EB2E00033790 /* AddTasks.h in Headers */, - 46EB2E00033780 /* AddTasks-inl.h in Headers */, - 46EB2E00032470 /* Align.h in Headers */, - 46EB2E00032480 /* Aligned.h in Headers */, - 46EB2E000323F0 /* ApplyTuple.h in Headers */, - 46EB2E00032610 /* Arena.h in Headers */, - 46EB2E00032600 /* Arena-inl.h in Headers */, - 46EB2E00032090 /* Array.h in Headers */, - 46EB2E00032740 /* Asm.h in Headers */, - 46EB2E000324A0 /* Assume.h in Headers */, - 46EB2E00032490 /* Assume-inl.h in Headers */, - 46EB2E00033280 /* AsymmetricMemoryBarrier.h in Headers */, - 46EB2E00032FA0 /* Async.h in Headers */, - 46EB2E00033F60 /* AsyncBase.h in Headers */, - 46EB2E00033FD0 /* AsyncBaseTestLib.h in Headers */, - 46EB2E00033A90 /* AsyncGenerator.h in Headers */, - 46EB2E00033F70 /* AsyncIO.h in Headers */, - 46EB2E00033AA0 /* AsyncPipe.h in Headers */, - 46EB2E00033AB0 /* AsyncScope.h in Headers */, - 46EB2E00033AC0 /* AsyncStack.h in Headers */, - 46EB2E00033740 /* AsyncStack.h in Headers */, - 46EB2E00033750 /* AsyncStack-inl.h in Headers */, - 46EB2E000335C0 /* AsyncTimeout.h in Headers */, - 46EB2E00032220 /* AsyncTrace.h in Headers */, - 46EB2E00032230 /* AtFork.h in Headers */, - 46EB2E00032750 /* Atomic.h in Headers */, - 46EB2E000337B0 /* AtomicBatchDispatcher.h in Headers */, - 46EB2E000337A0 /* AtomicBatchDispatcher-inl.h in Headers */, - 46EB2E00031940 /* AtomicHashArray.h in Headers */, - 46EB2E00031930 /* AtomicHashArray-inl.h in Headers */, - 46EB2E00031960 /* AtomicHashMap.h in Headers */, - 46EB2E00031950 /* AtomicHashMap-inl.h in Headers */, - 46EB2E00032240 /* AtomicHashUtils.h in Headers */, - 46EB2E00031970 /* AtomicIntrusiveLinkedList.h in Headers */, - 46EB2E00031980 /* AtomicLinkedList.h in Headers */, - 46EB2E000332A0 /* AtomicNotification.h in Headers */, - 46EB2E00033290 /* AtomicNotification-inl.h in Headers */, - 46EB2E000335E0 /* AtomicNotificationQueue.h in Headers */, - 46EB2E000335D0 /* AtomicNotificationQueue-inl.h in Headers */, - 46EB2E00033A40 /* AtomicQueue.h in Headers */, - 46EB2E000339F0 /* AtomicReadMostlyMainPtr.h in Headers */, - 46EB2E000332B0 /* AtomicRef.h in Headers */, - 46EB2E000331D0 /* AtomicSharedPtr.h in Headers */, - 46EB2E000332C0 /* AtomicStruct.h in Headers */, - 46EB2E00031990 /* AtomicUnorderedMap.h in Headers */, - 46EB2E00032250 /* AtomicUnorderedMapUtils.h in Headers */, - 46EB2E000332E0 /* AtomicUtil.h in Headers */, - 46EB2E000332D0 /* AtomicUtil-inl.h in Headers */, - 46EB2E000334E0 /* AtomicUtils.h in Headers */, - 46EB2E00033A00 /* AutoTimer.h in Headers */, - 46EB2E000341A0 /* b.h in Headers */, - 46EB2E00033B70 /* Barrier.h in Headers */, - 46EB2E00032EA0 /* Barrier.h in Headers */, - 46EB2E00033B80 /* BarrierTask.h in Headers */, - 46EB2E000337C0 /* BatchDispatcher.h in Headers */, - 46EB2E000337D0 /* BatchSemaphore.h in Headers */, - 46EB2E00033AD0 /* Baton.h in Headers */, - 46EB2E000337F0 /* Baton.h in Headers */, - 46EB2E000332F0 /* Baton.h in Headers */, - 46EB2E000337E0 /* Baton-inl.h in Headers */, - 46EB2E000319A0 /* Benchmark.h in Headers */, - 46EB2E000319B0 /* BenchmarkUtil.h in Headers */, - 46EB2E000320A0 /* BitIterator.h in Headers */, - 46EB2E00032190 /* BitIteratorDetail.h in Headers */, - 46EB2E000319C0 /* Bits.h in Headers */, - 46EB2E00033A10 /* Bits.h in Headers */, - 46EB2E000324B0 /* Bits.h in Headers */, - 46EB2E00033A20 /* BitVectorCoding.h in Headers */, - 46EB2E00033E00 /* Blake2xb.h in Headers */, - 46EB2E00033180 /* BlockingQueue.h in Headers */, - 46EB2E00033AE0 /* BlockingWait.h in Headers */, - 46EB2E00033800 /* BoostContextCompatibility.h in Headers */, - 46EB2E00033A30 /* Bser.h in Headers */, - 46EB2E00032760 /* Builtins.h in Headers */, - 46EB2E000324C0 /* Byte.h in Headers */, - 46EB2E000331E0 /* CacheLocality.h in Headers */, - 46EB2E00033810 /* CallOnce.h in Headers */, - 46EB2E00033300 /* CallOnce.h in Headers */, - 46EB2E000319E0 /* CancellationToken.h in Headers */, - 46EB2E000319D0 /* CancellationToken-inl.h in Headers */, - 46EB2E000324D0 /* CArray.h in Headers */, - 46EB2E000324E0 /* Cast.h in Headers */, - 46EB2E000324F0 /* CheckedMath.h in Headers */, - 46EB2E00032420 /* Checksum.h in Headers */, - 46EB2E000319F0 /* Chrono.h in Headers */, - 46EB2E00033A50 /* Cleanup.h in Headers */, - 46EB2E00031A00 /* ClockGettimeWrappers.h in Headers */, - 46EB2E00032FB0 /* Codel.h in Headers */, - 46EB2E00033A60 /* CodingDetail.h in Headers */, - 46EB2E00034310 /* CodingTestUtils.h in Headers */, - 46EB2E00033B00 /* Collect.h in Headers */, - 46EB2E00033AF0 /* Collect-inl.h in Headers */, - 46EB2E00033B20 /* Concat.h in Headers */, - 46EB2E00033B10 /* Concat-inl.h in Headers */, - 46EB2E00031A10 /* ConcurrentBitSet.h in Headers */, - 46EB2E000331F0 /* ConcurrentHashMap.h in Headers */, - 46EB2E00031A20 /* ConcurrentLazy.h in Headers */, - 46EB2E00031A40 /* ConcurrentSkipList.h in Headers */, - 46EB2E00031A30 /* ConcurrentSkipList-inl.h in Headers */, - 46EB2E00032770 /* Config.h in Headers */, - 46EB2E00032780 /* Constexpr.h in Headers */, - 46EB2E00031A50 /* ConstexprMath.h in Headers */, - 46EB2E00031A60 /* ConstructorCallback.h in Headers */, - 46EB2E00031A70 /* Conv.h in Headers */, - 46EB2E00034040 /* Core.h in Headers */, - 46EB2E00032F80 /* Core.h in Headers */, - 46EB2E00033200 /* CoreCachedSharedPtr.h in Headers */, - 46EB2E000339E0 /* Coroutine.h in Headers */, - 46EB2E00031A80 /* CPortability.h in Headers */, - 46EB2E00031A90 /* CppAttributes.h in Headers */, - 46EB2E00031AA0 /* CpuId.h in Headers */, - 46EB2E00032FC0 /* CPUThreadPoolExecutor.h in Headers */, - 46EB2E00032500 /* CString.h in Headers */, - 46EB2E00033B90 /* CurrentAsyncFrame.h in Headers */, - 46EB2E00033B30 /* CurrentExecutor.h in Headers */, - 46EB2E00033700 /* Cursor.h in Headers */, - 46EB2E000336F0 /* Cursor-inl.h in Headers */, - 46EB2E00032510 /* CustomizationPoint.h in Headers */, - 46EB2E00033210 /* DeadlockDetector.h in Headers */, - 46EB2E00034230 /* Debug.h in Headers */, - 46EB2E00031AB0 /* DefaultKeepAliveExecutor.h in Headers */, - 46EB2E000335F0 /* DelayedDestruction.h in Headers */, - 46EB2E00033600 /* DelayedDestructionBase.h in Headers */, - 46EB2E00033310 /* DelayedInit.h in Headers */, - 46EB2E00031AC0 /* Demangle.h in Headers */, - 46EB2E00033B50 /* Dematerialize.h in Headers */, - 46EB2E00033B40 /* Dematerialize-inl.h in Headers */, - 46EB2E00033B60 /* DetachOnCancel.h in Headers */, - 46EB2E00032790 /* Dirent.h in Headers */, - 46EB2E00031AD0 /* DiscriminatedPtr.h in Headers */, - 46EB2E00032260 /* DiscriminatedPtrDetail.h in Headers */, - 46EB2E00033330 /* DistributedMutex.h in Headers */, - 46EB2E00033320 /* DistributedMutex-inl.h in Headers */, - 46EB2E00033340 /* DistributedMutexSpecializations.h in Headers */, - 46EB2E00032FD0 /* DrivableExecutor.h in Headers */, - 46EB2E00034240 /* Dwarf.h in Headers */, - 46EB2E00031AF0 /* dynamic.h in Headers */, - 46EB2E00031AE0 /* dynamic-inl.h in Headers */, - 46EB2E00033220 /* DynamicBoundedQueue.h in Headers */, - 46EB2E00031B00 /* DynamicConverter.h in Headers */, - 46EB2E00033E50 /* DynamicParser.h in Headers */, - 46EB2E00033E40 /* DynamicParser-inl.h in Headers */, - 46EB2E00032FE0 /* EDFThreadPoolExecutor.h in Headers */, - 46EB2E00034260 /* Elf.h in Headers */, - 46EB2E00034250 /* Elf-inl.h in Headers */, - 46EB2E00034270 /* ElfCache.h in Headers */, - 46EB2E00033E60 /* EliasFanoCoding.h in Headers */, - 46EB2E00032620 /* EnableSharedFromThis.h in Headers */, - 46EB2E000320B0 /* Enumerate.h in Headers */, - 46EB2E00033E70 /* EnvUtil.h in Headers */, - 46EB2E000327A0 /* Event.h in Headers */, - 46EB2E00033610 /* EventBase.h in Headers */, - 46EB2E00033630 /* EventBaseAtomicNotificationQueue.h in Headers */, - 46EB2E00033620 /* EventBaseAtomicNotificationQueue-inl.h in Headers */, - 46EB2E00033640 /* EventBaseBackendBase.h in Headers */, - 46EB2E00033650 /* EventBaseLocal.h in Headers */, - 46EB2E00033830 /* EventBaseLoopController.h in Headers */, - 46EB2E00033820 /* EventBaseLoopController-inl.h in Headers */, - 46EB2E00033660 /* EventBaseManager.h in Headers */, - 46EB2E00033E80 /* EventCount.h in Headers */, - 46EB2E00033670 /* EventHandler.h in Headers */, - 46EB2E00033680 /* EventUtil.h in Headers */, - 46EB2E000320C0 /* EvictingCacheMap.h in Headers */, - 46EB2E00031B10 /* Exception.h in Headers */, - 46EB2E00032520 /* Exception.h in Headers */, - 46EB2E00033E90 /* ExceptionAbi.h in Headers */, - 46EB2E00033EA0 /* ExceptionCounterLib.h in Headers */, - 46EB2E00031B20 /* ExceptionString.h in Headers */, - 46EB2E00033EB0 /* ExceptionTracer.h in Headers */, - 46EB2E00033EC0 /* ExceptionTracerLib.h in Headers */, - 46EB2E00031B40 /* ExceptionWrapper.h in Headers */, - 46EB2E00031B30 /* ExceptionWrapper-inl.h in Headers */, - 46EB2E00033580 /* ExecutionObserver.h in Headers */, - 46EB2E00031B50 /* Executor.h in Headers */, - 46EB2E00033840 /* ExecutorBasedLoopController.h in Headers */, - 46EB2E00033860 /* ExecutorLoopController.h in Headers */, - 46EB2E00033850 /* ExecutorLoopController-inl.h in Headers */, - 46EB2E00033000 /* ExecutorWithPriority.h in Headers */, - 46EB2E00032FF0 /* ExecutorWithPriority-inl.h in Headers */, - 46EB2E00031B60 /* Expected.h in Headers */, - 46EB2E00032530 /* Extern.h in Headers */, - 46EB2E000321A0 /* F14Defaults.h in Headers */, - 46EB2E000321B0 /* F14IntrinsicsAvailability.h in Headers */, - 46EB2E000320E0 /* F14Map.h in Headers */, - 46EB2E000320D0 /* F14Map-fwd.h in Headers */, - 46EB2E000321C0 /* F14MapFallback.h in Headers */, - 46EB2E000321D0 /* F14Mask.h in Headers */, - 46EB2E000321E0 /* F14Policy.h in Headers */, - 46EB2E00032100 /* F14Set.h in Headers */, - 46EB2E000320F0 /* F14Set-fwd.h in Headers */, - 46EB2E000321F0 /* F14SetFallback.h in Headers */, - 46EB2E00032200 /* F14Table.h in Headers */, - 46EB2E00032430 /* FarmHash.h in Headers */, - 46EB2E00031B70 /* FBString.h in Headers */, - 46EB2E00031B80 /* FBVector.h in Headers */, - 46EB2E000327B0 /* Fcntl.h in Headers */, - 46EB2E00033880 /* Fiber.h in Headers */, - 46EB2E00033870 /* Fiber-inl.h in Headers */, - 46EB2E00033010 /* FiberIOExecutor.h in Headers */, - 46EB2E000338A0 /* FiberManager.h in Headers */, - 46EB2E00033890 /* FiberManager-inl.h in Headers */, - 46EB2E000338C0 /* FiberManagerInternal.h in Headers */, - 46EB2E000338B0 /* FiberManagerInternal-inl.h in Headers */, - 46EB2E000338E0 /* FiberManagerMap.h in Headers */, - 46EB2E000338D0 /* FiberManagerMap-inl.h in Headers */, - 46EB2E00031B90 /* File.h in Headers */, - 46EB2E000327C0 /* Filesystem.h in Headers */, - 46EB2E00031BA0 /* FileUtil.h in Headers */, - 46EB2E00032270 /* FileUtilDetail.h in Headers */, - 46EB2E00032280 /* FileUtilVectorDetail.h in Headers */, - 46EB2E00033C00 /* Filter.h in Headers */, - 46EB2E00033BF0 /* Filter-inl.h in Headers */, - 46EB2E00031BB0 /* Fingerprint.h in Headers */, - 46EB2E00032290 /* FingerprintPolynomial.h in Headers */, - 46EB2E00031BC0 /* FixedString.h in Headers */, - 46EB2E00033F00 /* FlatCombining.h in Headers */, - 46EB2E00033F10 /* FlatCombiningExamples.h in Headers */, - 46EB2E00033EF0 /* FlatCombiningPriorityQueue.h in Headers */, - 46EB2E00033F20 /* FlatCombiningTestHelpers.h in Headers */, - 46EB2E000327D0 /* FmtCompile.h in Headers */, - 46EB2E00031BD0 /* FollyMemcpy.h in Headers */, - 46EB2E00032120 /* Foreach.h in Headers */, - 46EB2E00033900 /* ForEach.h in Headers */, - 46EB2E00032110 /* Foreach-inl.h in Headers */, - 46EB2E000338F0 /* ForEach-inl.h in Headers */, - 46EB2E00031BF0 /* Format.h in Headers */, - 46EB2E00031BE0 /* Format-inl.h in Headers */, - 46EB2E00031C00 /* FormatArg.h in Headers */, - 46EB2E00031C10 /* FormatTraits.h in Headers */, - 46EB2E00033F80 /* FsUtil.h in Headers */, - 46EB2E00031C20 /* Function.h in Headers */, - 46EB2E00033F30 /* FunctionScheduler.h in Headers */, - 46EB2E000322B0 /* Futex.h in Headers */, - 46EB2E000322A0 /* Futex-inl.h in Headers */, - 46EB2E00032ED0 /* Future.h in Headers */, - 46EB2E00032EB0 /* Future-inl.h in Headers */, - 46EB2E00032EC0 /* Future-pre.h in Headers */, - 46EB2E00033F40 /* FutureDAG.h in Headers */, - 46EB2E00033020 /* FutureExecutor.h in Headers */, - 46EB2E00032EE0 /* FutureSplitter.h in Headers */, - 46EB2E00033C10 /* FutureUtil.h in Headers */, - 46EB2E00033C20 /* Generator.h in Headers */, - 46EB2E00033910 /* GenericBaton.h in Headers */, - 46EB2E000327E0 /* GFlags.h in Headers */, - 46EB2E00033030 /* GlobalExecutor.h in Headers */, - 46EB2E00033040 /* GlobalThreadPoolList.h in Headers */, - 46EB2E00031C30 /* GLog.h in Headers */, - 46EB2E000327F0 /* GMock.h in Headers */, - 46EB2E00033C30 /* GmockHelpers.h in Headers */, - 46EB2E00034050 /* GraphCycleDetector.h in Headers */, - 46EB2E00031C40 /* GroupVarint.h in Headers */, - 46EB2E000322C0 /* GroupVarintDetail.h in Headers */, - 46EB2E00032800 /* GTest.h in Headers */, - 46EB2E00033C40 /* GtestHelpers.h in Headers */, - 46EB2E00033920 /* GuardPageAllocator.h in Headers */, - 46EB2E00033760 /* Hardware.h in Headers */, + 46EB2E00033F20 /* a.h in Headers */, + 46EB2E00031E10 /* Access.h in Headers */, + 46EB2E00033810 /* Accumulate.h in Headers */, + 46EB2E00033800 /* Accumulate-inl.h in Headers */, + 46EB2E00033520 /* AddTasks.h in Headers */, + 46EB2E00033510 /* AddTasks-inl.h in Headers */, + 46EB2E00032200 /* Align.h in Headers */, + 46EB2E00032210 /* Aligned.h in Headers */, + 46EB2E00032180 /* ApplyTuple.h in Headers */, + 46EB2E000323A0 /* Arena.h in Headers */, + 46EB2E00032390 /* Arena-inl.h in Headers */, + 46EB2E00031E20 /* Array.h in Headers */, + 46EB2E000324D0 /* Asm.h in Headers */, + 46EB2E00032230 /* Assume.h in Headers */, + 46EB2E00032220 /* Assume-inl.h in Headers */, + 46EB2E00033010 /* AsymmetricMemoryBarrier.h in Headers */, + 46EB2E00032D30 /* Async.h in Headers */, + 46EB2E00033CF0 /* AsyncBase.h in Headers */, + 46EB2E00033D60 /* AsyncBaseTestLib.h in Headers */, + 46EB2E00033820 /* AsyncGenerator.h in Headers */, + 46EB2E00033D00 /* AsyncIO.h in Headers */, + 46EB2E00033830 /* AsyncPipe.h in Headers */, + 46EB2E00033840 /* AsyncScope.h in Headers */, + 46EB2E00033850 /* AsyncStack.h in Headers */, + 46EB2E000334D0 /* AsyncStack.h in Headers */, + 46EB2E000334E0 /* AsyncStack-inl.h in Headers */, + 46EB2E00033350 /* AsyncTimeout.h in Headers */, + 46EB2E00031FB0 /* AsyncTrace.h in Headers */, + 46EB2E00031FC0 /* AtFork.h in Headers */, + 46EB2E000324E0 /* Atomic.h in Headers */, + 46EB2E00033540 /* AtomicBatchDispatcher.h in Headers */, + 46EB2E00033530 /* AtomicBatchDispatcher-inl.h in Headers */, + 46EB2E000316D0 /* AtomicHashArray.h in Headers */, + 46EB2E000316C0 /* AtomicHashArray-inl.h in Headers */, + 46EB2E000316F0 /* AtomicHashMap.h in Headers */, + 46EB2E000316E0 /* AtomicHashMap-inl.h in Headers */, + 46EB2E00031FD0 /* AtomicHashUtils.h in Headers */, + 46EB2E00031700 /* AtomicIntrusiveLinkedList.h in Headers */, + 46EB2E00031710 /* AtomicLinkedList.h in Headers */, + 46EB2E00033030 /* AtomicNotification.h in Headers */, + 46EB2E00033020 /* AtomicNotification-inl.h in Headers */, + 46EB2E00033370 /* AtomicNotificationQueue.h in Headers */, + 46EB2E00033360 /* AtomicNotificationQueue-inl.h in Headers */, + 46EB2E000337D0 /* AtomicQueue.h in Headers */, + 46EB2E00033780 /* AtomicReadMostlyMainPtr.h in Headers */, + 46EB2E00033040 /* AtomicRef.h in Headers */, + 46EB2E00032F60 /* AtomicSharedPtr.h in Headers */, + 46EB2E00033050 /* AtomicStruct.h in Headers */, + 46EB2E00031720 /* AtomicUnorderedMap.h in Headers */, + 46EB2E00031FE0 /* AtomicUnorderedMapUtils.h in Headers */, + 46EB2E00033070 /* AtomicUtil.h in Headers */, + 46EB2E00033060 /* AtomicUtil-inl.h in Headers */, + 46EB2E00033270 /* AtomicUtils.h in Headers */, + 46EB2E00033790 /* AutoTimer.h in Headers */, + 46EB2E00033F30 /* b.h in Headers */, + 46EB2E00033900 /* Barrier.h in Headers */, + 46EB2E00032C30 /* Barrier.h in Headers */, + 46EB2E00033910 /* BarrierTask.h in Headers */, + 46EB2E00033550 /* BatchDispatcher.h in Headers */, + 46EB2E00033560 /* BatchSemaphore.h in Headers */, + 46EB2E00033860 /* Baton.h in Headers */, + 46EB2E00033580 /* Baton.h in Headers */, + 46EB2E00033080 /* Baton.h in Headers */, + 46EB2E00033570 /* Baton-inl.h in Headers */, + 46EB2E00031730 /* Benchmark.h in Headers */, + 46EB2E00031740 /* BenchmarkUtil.h in Headers */, + 46EB2E00031E30 /* BitIterator.h in Headers */, + 46EB2E00031F20 /* BitIteratorDetail.h in Headers */, + 46EB2E00031750 /* Bits.h in Headers */, + 46EB2E000337A0 /* Bits.h in Headers */, + 46EB2E00032240 /* Bits.h in Headers */, + 46EB2E000337B0 /* BitVectorCoding.h in Headers */, + 46EB2E00033B90 /* Blake2xb.h in Headers */, + 46EB2E00032F10 /* BlockingQueue.h in Headers */, + 46EB2E00033870 /* BlockingWait.h in Headers */, + 46EB2E00033590 /* BoostContextCompatibility.h in Headers */, + 46EB2E000337C0 /* Bser.h in Headers */, + 46EB2E000324F0 /* Builtins.h in Headers */, + 46EB2E00032250 /* Byte.h in Headers */, + 46EB2E00032F70 /* CacheLocality.h in Headers */, + 46EB2E000335A0 /* CallOnce.h in Headers */, + 46EB2E00033090 /* CallOnce.h in Headers */, + 46EB2E00031770 /* CancellationToken.h in Headers */, + 46EB2E00031760 /* CancellationToken-inl.h in Headers */, + 46EB2E00032260 /* CArray.h in Headers */, + 46EB2E00032270 /* Cast.h in Headers */, + 46EB2E00032280 /* CheckedMath.h in Headers */, + 46EB2E000321B0 /* Checksum.h in Headers */, + 46EB2E00031780 /* Chrono.h in Headers */, + 46EB2E000337E0 /* Cleanup.h in Headers */, + 46EB2E00031790 /* ClockGettimeWrappers.h in Headers */, + 46EB2E00032D40 /* Codel.h in Headers */, + 46EB2E000337F0 /* CodingDetail.h in Headers */, + 46EB2E000340A0 /* CodingTestUtils.h in Headers */, + 46EB2E00033890 /* Collect.h in Headers */, + 46EB2E00033880 /* Collect-inl.h in Headers */, + 46EB2E000338B0 /* Concat.h in Headers */, + 46EB2E000338A0 /* Concat-inl.h in Headers */, + 46EB2E000317A0 /* ConcurrentBitSet.h in Headers */, + 46EB2E00032F80 /* ConcurrentHashMap.h in Headers */, + 46EB2E000317B0 /* ConcurrentLazy.h in Headers */, + 46EB2E000317D0 /* ConcurrentSkipList.h in Headers */, + 46EB2E000317C0 /* ConcurrentSkipList-inl.h in Headers */, + 46EB2E00032500 /* Config.h in Headers */, + 46EB2E00032510 /* Constexpr.h in Headers */, + 46EB2E000317E0 /* ConstexprMath.h in Headers */, + 46EB2E000317F0 /* ConstructorCallback.h in Headers */, + 46EB2E00031800 /* Conv.h in Headers */, + 46EB2E00033DD0 /* Core.h in Headers */, + 46EB2E00032D10 /* Core.h in Headers */, + 46EB2E00032F90 /* CoreCachedSharedPtr.h in Headers */, + 46EB2E00033770 /* Coroutine.h in Headers */, + 46EB2E00031810 /* CPortability.h in Headers */, + 46EB2E00031820 /* CppAttributes.h in Headers */, + 46EB2E00031830 /* CpuId.h in Headers */, + 46EB2E00032D50 /* CPUThreadPoolExecutor.h in Headers */, + 46EB2E00032290 /* CString.h in Headers */, + 46EB2E00033920 /* CurrentAsyncFrame.h in Headers */, + 46EB2E000338C0 /* CurrentExecutor.h in Headers */, + 46EB2E00033490 /* Cursor.h in Headers */, + 46EB2E00033480 /* Cursor-inl.h in Headers */, + 46EB2E000322A0 /* CustomizationPoint.h in Headers */, + 46EB2E00032FA0 /* DeadlockDetector.h in Headers */, + 46EB2E00033FC0 /* Debug.h in Headers */, + 46EB2E00031840 /* DefaultKeepAliveExecutor.h in Headers */, + 46EB2E00033380 /* DelayedDestruction.h in Headers */, + 46EB2E00033390 /* DelayedDestructionBase.h in Headers */, + 46EB2E000330A0 /* DelayedInit.h in Headers */, + 46EB2E00031850 /* Demangle.h in Headers */, + 46EB2E000338E0 /* Dematerialize.h in Headers */, + 46EB2E000338D0 /* Dematerialize-inl.h in Headers */, + 46EB2E000338F0 /* DetachOnCancel.h in Headers */, + 46EB2E00032520 /* Dirent.h in Headers */, + 46EB2E00031860 /* DiscriminatedPtr.h in Headers */, + 46EB2E00031FF0 /* DiscriminatedPtrDetail.h in Headers */, + 46EB2E000330C0 /* DistributedMutex.h in Headers */, + 46EB2E000330B0 /* DistributedMutex-inl.h in Headers */, + 46EB2E000330D0 /* DistributedMutexSpecializations.h in Headers */, + 46EB2E00032D60 /* DrivableExecutor.h in Headers */, + 46EB2E00033FD0 /* Dwarf.h in Headers */, + 46EB2E00031880 /* dynamic.h in Headers */, + 46EB2E00031870 /* dynamic-inl.h in Headers */, + 46EB2E00032FB0 /* DynamicBoundedQueue.h in Headers */, + 46EB2E00031890 /* DynamicConverter.h in Headers */, + 46EB2E00033BE0 /* DynamicParser.h in Headers */, + 46EB2E00033BD0 /* DynamicParser-inl.h in Headers */, + 46EB2E00032D70 /* EDFThreadPoolExecutor.h in Headers */, + 46EB2E00033FF0 /* Elf.h in Headers */, + 46EB2E00033FE0 /* Elf-inl.h in Headers */, + 46EB2E00034000 /* ElfCache.h in Headers */, + 46EB2E00033BF0 /* EliasFanoCoding.h in Headers */, + 46EB2E000323B0 /* EnableSharedFromThis.h in Headers */, + 46EB2E00031E40 /* Enumerate.h in Headers */, + 46EB2E00033C00 /* EnvUtil.h in Headers */, + 46EB2E00032530 /* Event.h in Headers */, + 46EB2E000333A0 /* EventBase.h in Headers */, + 46EB2E000333C0 /* EventBaseAtomicNotificationQueue.h in Headers */, + 46EB2E000333B0 /* EventBaseAtomicNotificationQueue-inl.h in Headers */, + 46EB2E000333D0 /* EventBaseBackendBase.h in Headers */, + 46EB2E000333E0 /* EventBaseLocal.h in Headers */, + 46EB2E000335C0 /* EventBaseLoopController.h in Headers */, + 46EB2E000335B0 /* EventBaseLoopController-inl.h in Headers */, + 46EB2E000333F0 /* EventBaseManager.h in Headers */, + 46EB2E00033C10 /* EventCount.h in Headers */, + 46EB2E00033400 /* EventHandler.h in Headers */, + 46EB2E00033410 /* EventUtil.h in Headers */, + 46EB2E00031E50 /* EvictingCacheMap.h in Headers */, + 46EB2E000318A0 /* Exception.h in Headers */, + 46EB2E000322B0 /* Exception.h in Headers */, + 46EB2E00033C20 /* ExceptionAbi.h in Headers */, + 46EB2E00033C30 /* ExceptionCounterLib.h in Headers */, + 46EB2E000318B0 /* ExceptionString.h in Headers */, + 46EB2E00033C40 /* ExceptionTracer.h in Headers */, + 46EB2E00033C50 /* ExceptionTracerLib.h in Headers */, + 46EB2E000318D0 /* ExceptionWrapper.h in Headers */, + 46EB2E000318C0 /* ExceptionWrapper-inl.h in Headers */, + 46EB2E00033310 /* ExecutionObserver.h in Headers */, + 46EB2E000318E0 /* Executor.h in Headers */, + 46EB2E000335D0 /* ExecutorBasedLoopController.h in Headers */, + 46EB2E000335F0 /* ExecutorLoopController.h in Headers */, + 46EB2E000335E0 /* ExecutorLoopController-inl.h in Headers */, + 46EB2E00032D90 /* ExecutorWithPriority.h in Headers */, + 46EB2E00032D80 /* ExecutorWithPriority-inl.h in Headers */, + 46EB2E000318F0 /* Expected.h in Headers */, + 46EB2E000322C0 /* Extern.h in Headers */, + 46EB2E00031F30 /* F14Defaults.h in Headers */, + 46EB2E00031F40 /* F14IntrinsicsAvailability.h in Headers */, + 46EB2E00031E70 /* F14Map.h in Headers */, + 46EB2E00031E60 /* F14Map-fwd.h in Headers */, + 46EB2E00031F50 /* F14MapFallback.h in Headers */, + 46EB2E00031F60 /* F14Mask.h in Headers */, + 46EB2E00031F70 /* F14Policy.h in Headers */, + 46EB2E00031E90 /* F14Set.h in Headers */, + 46EB2E00031E80 /* F14Set-fwd.h in Headers */, + 46EB2E00031F80 /* F14SetFallback.h in Headers */, + 46EB2E00031F90 /* F14Table.h in Headers */, + 46EB2E000321C0 /* FarmHash.h in Headers */, + 46EB2E00031900 /* FBString.h in Headers */, + 46EB2E00031910 /* FBVector.h in Headers */, + 46EB2E00032540 /* Fcntl.h in Headers */, + 46EB2E00033610 /* Fiber.h in Headers */, + 46EB2E00033600 /* Fiber-inl.h in Headers */, + 46EB2E00032DA0 /* FiberIOExecutor.h in Headers */, + 46EB2E00033630 /* FiberManager.h in Headers */, + 46EB2E00033620 /* FiberManager-inl.h in Headers */, + 46EB2E00033650 /* FiberManagerInternal.h in Headers */, + 46EB2E00033640 /* FiberManagerInternal-inl.h in Headers */, + 46EB2E00033670 /* FiberManagerMap.h in Headers */, + 46EB2E00033660 /* FiberManagerMap-inl.h in Headers */, + 46EB2E00031920 /* File.h in Headers */, + 46EB2E00032550 /* Filesystem.h in Headers */, + 46EB2E00031930 /* FileUtil.h in Headers */, + 46EB2E00032000 /* FileUtilDetail.h in Headers */, + 46EB2E00032010 /* FileUtilVectorDetail.h in Headers */, + 46EB2E00033990 /* Filter.h in Headers */, + 46EB2E00033980 /* Filter-inl.h in Headers */, + 46EB2E00031940 /* Fingerprint.h in Headers */, + 46EB2E00032020 /* FingerprintPolynomial.h in Headers */, + 46EB2E00031950 /* FixedString.h in Headers */, + 46EB2E00033C90 /* FlatCombining.h in Headers */, + 46EB2E00033CA0 /* FlatCombiningExamples.h in Headers */, + 46EB2E00033C80 /* FlatCombiningPriorityQueue.h in Headers */, + 46EB2E00033CB0 /* FlatCombiningTestHelpers.h in Headers */, + 46EB2E00032560 /* FmtCompile.h in Headers */, + 46EB2E00031960 /* FollyMemcpy.h in Headers */, + 46EB2E00031EB0 /* Foreach.h in Headers */, + 46EB2E00033690 /* ForEach.h in Headers */, + 46EB2E00031EA0 /* Foreach-inl.h in Headers */, + 46EB2E00033680 /* ForEach-inl.h in Headers */, + 46EB2E00031980 /* Format.h in Headers */, + 46EB2E00031970 /* Format-inl.h in Headers */, + 46EB2E00031990 /* FormatArg.h in Headers */, + 46EB2E000319A0 /* FormatTraits.h in Headers */, + 46EB2E00033D10 /* FsUtil.h in Headers */, + 46EB2E000319B0 /* Function.h in Headers */, + 46EB2E00033CC0 /* FunctionScheduler.h in Headers */, + 46EB2E00032040 /* Futex.h in Headers */, + 46EB2E00032030 /* Futex-inl.h in Headers */, + 46EB2E00032C60 /* Future.h in Headers */, + 46EB2E00032C40 /* Future-inl.h in Headers */, + 46EB2E00032C50 /* Future-pre.h in Headers */, + 46EB2E00033CD0 /* FutureDAG.h in Headers */, + 46EB2E00032DB0 /* FutureExecutor.h in Headers */, + 46EB2E00032C70 /* FutureSplitter.h in Headers */, + 46EB2E000339A0 /* FutureUtil.h in Headers */, + 46EB2E000339B0 /* Generator.h in Headers */, + 46EB2E000336A0 /* GenericBaton.h in Headers */, + 46EB2E00032570 /* GFlags.h in Headers */, + 46EB2E00032DC0 /* GlobalExecutor.h in Headers */, + 46EB2E00032DD0 /* GlobalThreadPoolList.h in Headers */, + 46EB2E000319C0 /* GLog.h in Headers */, + 46EB2E00032580 /* GMock.h in Headers */, + 46EB2E000339C0 /* GmockHelpers.h in Headers */, + 46EB2E00033DE0 /* GraphCycleDetector.h in Headers */, + 46EB2E000319D0 /* GroupVarint.h in Headers */, + 46EB2E00032050 /* GroupVarintDetail.h in Headers */, + 46EB2E00032590 /* GTest.h in Headers */, + 46EB2E000339D0 /* GtestHelpers.h in Headers */, + 46EB2E000336B0 /* GuardPageAllocator.h in Headers */, 46EB2E000334F0 /* Hardware.h in Headers */, - 46EB2E00033260 /* HardwareConcurrency.h in Headers */, - 46EB2E00031C50 /* Hash.h in Headers */, - 46EB2E00032440 /* Hash.h in Headers */, - 46EB2E00033360 /* Hazptr.h in Headers */, - 46EB2E00033350 /* Hazptr-fwd.h in Headers */, - 46EB2E00033370 /* HazptrDomain.h in Headers */, - 46EB2E00033380 /* HazptrHolder.h in Headers */, - 46EB2E00033390 /* HazptrObj.h in Headers */, - 46EB2E000333A0 /* HazptrObjLinked.h in Headers */, - 46EB2E000333B0 /* HazptrRec.h in Headers */, - 46EB2E000333C0 /* HazptrThreadPoolExecutor.h in Headers */, - 46EB2E000333D0 /* HazptrThrLocal.h in Headers */, - 46EB2E00033500 /* HazptrUtils.h in Headers */, - 46EB2E00033BA0 /* Helpers.h in Headers */, - 46EB2E00032140 /* HeterogeneousAccess.h in Headers */, - 46EB2E00032130 /* HeterogeneousAccess-fwd.h in Headers */, - 46EB2E000336A0 /* HHWheelTimer.h in Headers */, - 46EB2E00033690 /* HHWheelTimer-fwd.h in Headers */, - 46EB2E00033F90 /* HugePages.h in Headers */, - 46EB2E00031C60 /* Indestructible.h in Headers */, - 46EB2E00031C70 /* IndexedMemPool.h in Headers */, - 46EB2E00033050 /* InlineExecutor.h in Headers */, - 46EB2E00033510 /* InlineFunctionRef.h in Headers */, - 46EB2E00033BB0 /* InlineTask.h in Headers */, - 46EB2E00033F50 /* Instructions.h in Headers */, - 46EB2E00031C80 /* IntrusiveList.h in Headers */, - 46EB2E00033C50 /* Invoke.h in Headers */, - 46EB2E00032400 /* Invoke.h in Headers */, - 46EB2E00033710 /* IOBuf.h in Headers */, - 46EB2E00033720 /* IOBufQueue.h in Headers */, - 46EB2E00033060 /* IOExecutor.h in Headers */, - 46EB2E00033070 /* IOObjectCache.h in Headers */, - 46EB2E00033FE0 /* IoTestTempFileUtil.h in Headers */, - 46EB2E00033080 /* IOThreadPoolDeadlockDetectorObserver.h in Headers */, - 46EB2E00033090 /* IOThreadPoolExecutor.h in Headers */, - 46EB2E00033FA0 /* IoUring.h in Headers */, - 46EB2E00033FB0 /* IoUringBackend.h in Headers */, - 46EB2E00032810 /* IOVec.h in Headers */, - 46EB2E000322D0 /* IPAddress.h in Headers */, - 46EB2E00031C90 /* IPAddress.h in Headers */, - 46EB2E00031CA0 /* IPAddressException.h in Headers */, - 46EB2E000322E0 /* IPAddressSource.h in Headers */, - 46EB2E00031CB0 /* IPAddressV4.h in Headers */, - 46EB2E00031CC0 /* IPAddressV6.h in Headers */, - 46EB2E00032150 /* Iterator.h in Headers */, - 46EB2E000322F0 /* Iterators.h in Headers */, - 46EB2E00033FF0 /* JemallocHugePageAllocator.h in Headers */, - 46EB2E00034000 /* JemallocNodumpAllocator.h in Headers */, - 46EB2E00031CD0 /* json.h in Headers */, - 46EB2E00031CE0 /* json_patch.h in Headers */, - 46EB2E00031CF0 /* json_pointer.h in Headers */, - 46EB2E00034010 /* JSONSchema.h in Headers */, - 46EB2E00032540 /* Keep.h in Headers */, - 46EB2E000333E0 /* Latch.h in Headers */, - 46EB2E00032550 /* Launder.h in Headers */, - 46EB2E00031D00 /* Lazy.h in Headers */, - 46EB2E00032820 /* Libgen.h in Headers */, - 46EB2E00032830 /* Libunwind.h in Headers */, - 46EB2E000333F0 /* LifoSem.h in Headers */, - 46EB2E00033190 /* LifoSemMPMCQueue.h in Headers */, - 46EB2E00031D10 /* Likely.h in Headers */, - 46EB2E00034280 /* LineReader.h in Headers */, - 46EB2E00033400 /* Lock.h in Headers */, - 46EB2E00034020 /* LockFreeRingBuffer.h in Headers */, - 46EB2E00033930 /* LoopController.h in Headers */, - 46EB2E00033E30 /* LtHash.h in Headers */, - 46EB2E00033E20 /* LtHash-inl.h in Headers */, - 46EB2E00033E10 /* LtHashInternal.h in Headers */, - 46EB2E00031D20 /* MacAddress.h in Headers */, - 46EB2E00032630 /* MallctlHelper.h in Headers */, - 46EB2E00033BC0 /* Malloc.h in Headers */, - 46EB2E00032640 /* Malloc.h in Headers */, - 46EB2E00032840 /* Malloc.h in Headers */, - 46EB2E000326D0 /* MallocImpl.h in Headers */, - 46EB2E000330A0 /* ManualExecutor.h in Headers */, - 46EB2E00033BD0 /* ManualLifetime.h in Headers */, - 46EB2E00032EF0 /* ManualTimekeeper.h in Headers */, - 46EB2E00031D30 /* MapUtil.h in Headers */, - 46EB2E00033C70 /* Materialize.h in Headers */, - 46EB2E00033C60 /* Materialize-inl.h in Headers */, - 46EB2E00031D40 /* Math.h in Headers */, - 46EB2E00032850 /* Math.h in Headers */, - 46EB2E00031D50 /* Memory.h in Headers */, - 46EB2E00032860 /* Memory.h in Headers */, - 46EB2E00032300 /* MemoryIdler.h in Headers */, - 46EB2E00032650 /* MemoryResource.h in Headers */, - 46EB2E00032160 /* Merge.h in Headers */, - 46EB2E00033C90 /* Merge.h in Headers */, - 46EB2E00033C80 /* Merge-inl.h in Headers */, - 46EB2E000330B0 /* MeteredExecutor.h in Headers */, - 46EB2E00031D60 /* MicroLock.h in Headers */, - 46EB2E00031D70 /* MicroSpinLock.h in Headers */, - 46EB2E00033410 /* MicroSpinLock.h in Headers */, - 46EB2E00031D80 /* MoveWrapper.h in Headers */, - 46EB2E00031D90 /* MPMCPipeline.h in Headers */, - 46EB2E00032310 /* MPMCPipelineDetail.h in Headers */, - 46EB2E00031DA0 /* MPMCQueue.h in Headers */, - 46EB2E00033CB0 /* Multiplex.h in Headers */, - 46EB2E00033CA0 /* Multiplex-inl.h in Headers */, - 46EB2E00033CC0 /* Mutex.h in Headers */, - 46EB2E00033160 /* NamedThreadFactory.h in Headers */, - 46EB2E00033420 /* NativeSemaphore.h in Headers */, - 46EB2E00034030 /* NestedCommandLineApp.h in Headers */, - 46EB2E000326E0 /* NetOps.h in Headers */, - 46EB2E000326F0 /* NetOpsDispatcher.h in Headers */, - 46EB2E00032700 /* NetworkSocket.h in Headers */, - 46EB2E00032670 /* not_null.h in Headers */, - 46EB2E00032660 /* not_null-inl.h in Headers */, - 46EB2E000336B0 /* NotificationQueue.h in Headers */, - 46EB2E00034080 /* Observable.h in Headers */, - 46EB2E00034070 /* Observable-inl.h in Headers */, - 46EB2E000340B0 /* Observer.h in Headers */, - 46EB2E00034090 /* Observer-inl.h in Headers */, - 46EB2E000340A0 /* Observer-pre.h in Headers */, - 46EB2E00034060 /* ObserverManager.h in Headers */, - 46EB2E00032870 /* OpenSSL.h in Headers */, - 46EB2E00031DB0 /* Optional.h in Headers */, - 46EB2E00032560 /* Ordering.h in Headers */, - 46EB2E00031DC0 /* Overload.h in Headers */, - 46EB2E00031DD0 /* PackedSyncPtr.h in Headers */, - 46EB2E00031DE0 /* Padded.h in Headers */, - 46EB2E00033430 /* ParkingLot.h in Headers */, - 46EB2E00032410 /* Partial.h in Headers */, - 46EB2E00033440 /* PicoSpinLock.h in Headers */, - 46EB2E00034380 /* Pid.h in Headers */, - 46EB2E00031E00 /* Poly.h in Headers */, - 46EB2E00031DF0 /* Poly-inl.h in Headers */, - 46EB2E00032320 /* PolyDetail.h in Headers */, - 46EB2E00031E10 /* PolyException.h in Headers */, - 46EB2E00032F00 /* Portability.h in Headers */, - 46EB2E00031E20 /* Portability.h in Headers */, - 46EB2E00031E30 /* Preprocessor.h in Headers */, - 46EB2E00032570 /* Pretty.h in Headers */, - 46EB2E00034100 /* PrimaryPtr.h in Headers */, - 46EB2E000331A0 /* PriorityLifoSemMPMCQueue.h in Headers */, - 46EB2E000331B0 /* PriorityUnboundedBlockingQueue.h in Headers */, - 46EB2E00033230 /* PriorityUnboundedQueueSet.h in Headers */, - 46EB2E00031E40 /* ProducerConsumerQueue.h in Headers */, - 46EB2E00034110 /* ProgramOptions.h in Headers */, - 46EB2E00033950 /* Promise.h in Headers */, - 46EB2E00032F20 /* Promise.h in Headers */, - 46EB2E00033940 /* Promise-inl.h in Headers */, - 46EB2E00032F10 /* Promise-inl.h in Headers */, - 46EB2E00032580 /* PropagateConst.h in Headers */, - 46EB2E00033530 /* ProxyLockable.h in Headers */, - 46EB2E00033520 /* ProxyLockable-inl.h in Headers */, - 46EB2E00032880 /* PThread.h in Headers */, - 46EB2E000330C0 /* QueuedImmediateExecutor.h in Headers */, - 46EB2E00033240 /* QueueObserver.h in Headers */, - 46EB2E00034130 /* QuotientMultiSet.h in Headers */, - 46EB2E00034120 /* QuotientMultiSet-inl.h in Headers */, - 46EB2E00031E60 /* Random.h in Headers */, - 46EB2E00031E50 /* Random-inl.h in Headers */, - 46EB2E00031E70 /* Range.h in Headers */, - 46EB2E00032330 /* RangeCommon.h in Headers */, - 46EB2E00032340 /* RangeSse42.h in Headers */, - 46EB2E000343E0 /* RCT-Folly-umbrella.h in Headers */, - 46EB2E00033460 /* Rcu.h in Headers */, - 46EB2E00033450 /* Rcu-inl.h in Headers */, - 46EB2E00033590 /* ReadMostlySharedPtr.h in Headers */, - 46EB2E00032680 /* ReentrantAllocator.h in Headers */, - 46EB2E00034140 /* RelaxedConcurrentPriorityQueue.h in Headers */, - 46EB2E00031E80 /* Replaceable.h in Headers */, - 46EB2E000336C0 /* Request.h in Headers */, - 46EB2E00033CD0 /* Result.h in Headers */, - 46EB2E00033CE0 /* Retry.h in Headers */, - 46EB2E00032F30 /* Retrying.h in Headers */, - 46EB2E00033CF0 /* RustAdaptors.h in Headers */, - 46EB2E00032590 /* RValueReferenceWrapper.h in Headers */, - 46EB2E00031E90 /* RWSpinLock.h in Headers */, - 46EB2E00033470 /* RWSpinLock.h in Headers */, - 46EB2E000325A0 /* SafeAssert.h in Headers */, - 46EB2E00032690 /* SanitizeAddress.h in Headers */, - 46EB2E000326A0 /* SanitizeLeak.h in Headers */, - 46EB2E00033480 /* SanitizeThread.h in Headers */, - 46EB2E00033490 /* SaturatingSemaphore.h in Headers */, - 46EB2E00032890 /* Sched.h in Headers */, - 46EB2E000330D0 /* ScheduledExecutor.h in Headers */, - 46EB2E00031EA0 /* ScopeGuard.h in Headers */, - 46EB2E00034150 /* Select64.h in Headers */, - 46EB2E00033960 /* Semaphore.h in Headers */, - 46EB2E00033970 /* SemaphoreBase.h in Headers */, - 46EB2E000330E0 /* SequencedExecutor.h in Headers */, - 46EB2E000330F0 /* SerialExecutor.h in Headers */, - 46EB2E00034170 /* Settings.h in Headers */, - 46EB2E00034160 /* SettingsImpl.h in Headers */, - 46EB2E00034180 /* SettingsMetadata.h in Headers */, - 46EB2E00033D00 /* SharedLock.h in Headers */, - 46EB2E00033D10 /* SharedMutex.h in Headers */, - 46EB2E00031EB0 /* SharedMutex.h in Headers */, - 46EB2E00032F50 /* SharedPromise.h in Headers */, - 46EB2E00032F40 /* SharedPromise-inl.h in Headers */, - 46EB2E00034290 /* SignalHandler.h in Headers */, - 46EB2E000342E0 /* SignalHandlerTest.h in Headers */, - 46EB2E00033FC0 /* SimpleAsyncIO.h in Headers */, - 46EB2E00033980 /* SimpleLoopController.h in Headers */, - 46EB2E000340D0 /* SimpleObservable.h in Headers */, - 46EB2E000340C0 /* SimpleObservable-inl.h in Headers */, - 46EB2E00032350 /* Singleton.h in Headers */, - 46EB2E00031ED0 /* Singleton.h in Headers */, - 46EB2E00031EC0 /* Singleton-inl.h in Headers */, - 46EB2E000341B0 /* SingletonRelaxedCounter.h in Headers */, - 46EB2E00032360 /* SingletonStackTrace.h in Headers */, - 46EB2E00031EE0 /* SingletonThreadLocal.h in Headers */, - 46EB2E000335A0 /* SingleWriterFixedHashMap.h in Headers */, - 46EB2E00033D30 /* Sleep.h in Headers */, - 46EB2E00033D20 /* Sleep-inl.h in Headers */, - 46EB2E00033540 /* Sleeper.h in Headers */, - 46EB2E00032370 /* SlowFingerprint.h in Headers */, - 46EB2E00031EF0 /* small_vector.h in Headers */, - 46EB2E000334A0 /* SmallLocks.h in Headers */, - 46EB2E00033D40 /* SmallUnboundedQueue.h in Headers */, - 46EB2E00033ED0 /* SmartExceptionTracer.h in Headers */, - 46EB2E00031F00 /* SocketAddress.h in Headers */, - 46EB2E00032380 /* SocketFastOpen.h in Headers */, - 46EB2E00032730 /* SocketFileDescriptorMap.h in Headers */, - 46EB2E000328A0 /* Sockets.h in Headers */, - 46EB2E00033100 /* SoftRealTimeExecutor.h in Headers */, - 46EB2E00031F10 /* sorted_vector_types.h in Headers */, - 46EB2E00032170 /* SparseByteSet.h in Headers */, - 46EB2E00033550 /* Spin.h in Headers */, - 46EB2E00031F20 /* SpinLock.h in Headers */, - 46EB2E00032450 /* SpookyHashV1.h in Headers */, - 46EB2E00032460 /* SpookyHashV2.h in Headers */, - 46EB2E00032390 /* Sse.h in Headers */, - 46EB2E00033EE0 /* StackTrace.h in Headers */, - 46EB2E000342A0 /* StackTrace.h in Headers */, - 46EB2E000341C0 /* StampedPtr.h in Headers */, - 46EB2E000325B0 /* StaticConst.h in Headers */, - 46EB2E000323A0 /* StaticSingletonManager.h in Headers */, - 46EB2E00033730 /* StaticTracepoint.h in Headers */, - 46EB2E000328B0 /* Stdio.h in Headers */, - 46EB2E000328C0 /* Stdlib.h in Headers */, - 46EB2E00031F30 /* stop_watch.h in Headers */, - 46EB2E00033110 /* StrandExecutor.h in Headers */, - 46EB2E000328D0 /* String.h in Headers */, - 46EB2E00031F50 /* String.h in Headers */, - 46EB2E00031F40 /* String-inl.h in Headers */, - 46EB2E000341D0 /* StringKeyedCommon.h in Headers */, - 46EB2E000341E0 /* StringKeyedMap.h in Headers */, - 46EB2E000341F0 /* StringKeyedSet.h in Headers */, - 46EB2E00034200 /* StringKeyedUnorderedMap.h in Headers */, - 46EB2E00034210 /* StringKeyedUnorderedSet.h in Headers */, - 46EB2E00034220 /* STTimerFDTimeoutManager.h in Headers */, - 46EB2E00031F60 /* Subprocess.h in Headers */, - 46EB2E000342B0 /* SymbolizedFrame.h in Headers */, - 46EB2E000342C0 /* SymbolizePrinter.h in Headers */, - 46EB2E000342D0 /* Symbolizer.h in Headers */, - 46EB2E00034300 /* SymbolizerTestUtils.h in Headers */, - 46EB2E000342F0 /* SymbolizerTestUtils-inl.h in Headers */, - 46EB2E00031F70 /* Synchronized.h in Headers */, - 46EB2E00031F80 /* SynchronizedPtr.h in Headers */, - 46EB2E000328E0 /* SysFile.h in Headers */, - 46EB2E000328F0 /* Syslog.h in Headers */, - 46EB2E00032900 /* SysMembarrier.h in Headers */, - 46EB2E00032910 /* SysMman.h in Headers */, - 46EB2E00032920 /* SysResource.h in Headers */, - 46EB2E00032930 /* SysStat.h in Headers */, - 46EB2E00032940 /* SysSyscall.h in Headers */, - 46EB2E00032950 /* SysTime.h in Headers */, - 46EB2E00032960 /* SysTypes.h in Headers */, - 46EB2E00032970 /* SysUio.h in Headers */, - 46EB2E00033D50 /* Task.h in Headers */, - 46EB2E00032710 /* TcpInfo.h in Headers */, - 46EB2E00032720 /* TcpInfoTypes.h in Headers */, - 46EB2E000334B0 /* Tearable.h in Headers */, - 46EB2E00034320 /* TestUtil.h in Headers */, - 46EB2E000326B0 /* ThreadCachedArena.h in Headers */, - 46EB2E00031F90 /* ThreadCachedInt.h in Headers */, - 46EB2E00033560 /* ThreadCachedInts.h in Headers */, - 46EB2E00033570 /* ThreadCachedLists.h in Headers */, - 46EB2E00033120 /* ThreadedExecutor.h in Headers */, - 46EB2E00034330 /* ThreadedRepeatingFunctionRunner.h in Headers */, - 46EB2E00033170 /* ThreadFactory.h in Headers */, - 46EB2E00031920 /* ThreadId.h in Headers */, - 46EB2E00031FA0 /* ThreadLocal.h in Headers */, - 46EB2E000323B0 /* ThreadLocalDetail.h in Headers */, - 46EB2E00033270 /* ThreadName.h in Headers */, - 46EB2E00033130 /* ThreadPoolExecutor.h in Headers */, - 46EB2E00032F60 /* ThreadWheelTimekeeper.h in Headers */, - 46EB2E00034340 /* ThreadWheelTimekeeperHighRes.h in Headers */, - 46EB2E000325C0 /* Thunk.h in Headers */, - 46EB2E00032980 /* Time.h in Headers */, - 46EB2E00033140 /* TimedDrivableExecutor.h in Headers */, - 46EB2E000339A0 /* TimedMutex.h in Headers */, - 46EB2E00033990 /* TimedMutex-inl.h in Headers */, - 46EB2E00033D60 /* TimedWait.h in Headers */, - 46EB2E00033150 /* TimekeeperScheduledExecutor.h in Headers */, - 46EB2E00033D80 /* Timeout.h in Headers */, - 46EB2E00033D70 /* Timeout-inl.h in Headers */, - 46EB2E000336D0 /* TimeoutManager.h in Headers */, - 46EB2E00031FB0 /* TimeoutQueue.h in Headers */, - 46EB2E00034350 /* TimerFD.h in Headers */, - 46EB2E00034360 /* TimerFDTimeoutManager.h in Headers */, - 46EB2E000335B0 /* TLRefCount.h in Headers */, - 46EB2E000325D0 /* ToAscii.h in Headers */, - 46EB2E00031FC0 /* TokenBucket.h in Headers */, - 46EB2E00033BE0 /* Traits.h in Headers */, - 46EB2E00033770 /* Traits.h in Headers */, - 46EB2E000339B0 /* traits.h in Headers */, - 46EB2E00031FD0 /* Traits.h in Headers */, - 46EB2E00033DA0 /* Transform.h in Headers */, - 46EB2E00033D90 /* Transform-inl.h in Headers */, - 46EB2E00031FF0 /* Try.h in Headers */, - 46EB2E00031FE0 /* Try-inl.h in Headers */, - 46EB2E00034370 /* TupleOps.h in Headers */, - 46EB2E000323C0 /* TurnSequencer.h in Headers */, - 46EB2E000325E0 /* TypeInfo.h in Headers */, - 46EB2E000323D0 /* TypeList.h in Headers */, - 46EB2E00032F90 /* Types.h in Headers */, - 46EB2E000331C0 /* UnboundedBlockingQueue.h in Headers */, - 46EB2E00033250 /* UnboundedQueue.h in Headers */, - 46EB2E00033DB0 /* UnboundedQueue.h in Headers */, - 46EB2E000325F0 /* UncaughtExceptions.h in Headers */, - 46EB2E00032000 /* Unicode.h in Headers */, - 46EB2E000326C0 /* UninitializedMemoryHacks.h in Headers */, - 46EB2E000323E0 /* UniqueInstance.h in Headers */, - 46EB2E00032990 /* Unistd.h in Headers */, - 46EB2E00032010 /* Unit.h in Headers */, - 46EB2E00032030 /* Uri.h in Headers */, - 46EB2E00032020 /* Uri-inl.h in Headers */, - 46EB2E00032040 /* UTF8String.h in Headers */, - 46EB2E00032210 /* Util.h in Headers */, - 46EB2E000334C0 /* Utility.h in Headers */, - 46EB2E00032050 /* Utility.h in Headers */, - 46EB2E00032060 /* Varint.h in Headers */, - 46EB2E00033DC0 /* ViaIfAsync.h in Headers */, - 46EB2E00032180 /* View.h in Headers */, - 46EB2E000336E0 /* VirtualEventBase.h in Headers */, - 46EB2E00032070 /* VirtualExecutor.h in Headers */, - 46EB2E00033DD0 /* Wait.h in Headers */, - 46EB2E000334D0 /* WaitOptions.h in Headers */, - 46EB2E000339D0 /* WhenN.h in Headers */, - 46EB2E000339C0 /* WhenN-inl.h in Headers */, - 46EB2E000329A0 /* Windows.h in Headers */, - 46EB2E00033DE0 /* WithAsyncStack.h in Headers */, - 46EB2E00033DF0 /* WithCancellation.h in Headers */, - 46EB2E000340F0 /* WithJitter.h in Headers */, - 46EB2E000340E0 /* WithJitter-inl.h in Headers */, - 46EB2E00032F70 /* WTCallback.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000344E0 /* Headers */ = { + 46EB2E00033280 /* Hardware.h in Headers */, + 46EB2E00032FF0 /* HardwareConcurrency.h in Headers */, + 46EB2E000319E0 /* Hash.h in Headers */, + 46EB2E000321D0 /* Hash.h in Headers */, + 46EB2E000330F0 /* Hazptr.h in Headers */, + 46EB2E000330E0 /* Hazptr-fwd.h in Headers */, + 46EB2E00033100 /* HazptrDomain.h in Headers */, + 46EB2E00033110 /* HazptrHolder.h in Headers */, + 46EB2E00033120 /* HazptrObj.h in Headers */, + 46EB2E00033130 /* HazptrObjLinked.h in Headers */, + 46EB2E00033140 /* HazptrRec.h in Headers */, + 46EB2E00033150 /* HazptrThreadPoolExecutor.h in Headers */, + 46EB2E00033160 /* HazptrThrLocal.h in Headers */, + 46EB2E00033290 /* HazptrUtils.h in Headers */, + 46EB2E00033930 /* Helpers.h in Headers */, + 46EB2E00031ED0 /* HeterogeneousAccess.h in Headers */, + 46EB2E00031EC0 /* HeterogeneousAccess-fwd.h in Headers */, + 46EB2E00033430 /* HHWheelTimer.h in Headers */, + 46EB2E00033420 /* HHWheelTimer-fwd.h in Headers */, + 46EB2E00033D20 /* HugePages.h in Headers */, + 46EB2E000319F0 /* Indestructible.h in Headers */, + 46EB2E00031A00 /* IndexedMemPool.h in Headers */, + 46EB2E00032DE0 /* InlineExecutor.h in Headers */, + 46EB2E000332A0 /* InlineFunctionRef.h in Headers */, + 46EB2E00033940 /* InlineTask.h in Headers */, + 46EB2E00033CE0 /* Instructions.h in Headers */, + 46EB2E00031A10 /* IntrusiveList.h in Headers */, + 46EB2E000339E0 /* Invoke.h in Headers */, + 46EB2E00032190 /* Invoke.h in Headers */, + 46EB2E000334A0 /* IOBuf.h in Headers */, + 46EB2E000334B0 /* IOBufQueue.h in Headers */, + 46EB2E00032DF0 /* IOExecutor.h in Headers */, + 46EB2E00032E00 /* IOObjectCache.h in Headers */, + 46EB2E00033D70 /* IoTestTempFileUtil.h in Headers */, + 46EB2E00032E10 /* IOThreadPoolDeadlockDetectorObserver.h in Headers */, + 46EB2E00032E20 /* IOThreadPoolExecutor.h in Headers */, + 46EB2E00033D30 /* IoUring.h in Headers */, + 46EB2E00033D40 /* IoUringBackend.h in Headers */, + 46EB2E000325A0 /* IOVec.h in Headers */, + 46EB2E00032060 /* IPAddress.h in Headers */, + 46EB2E00031A20 /* IPAddress.h in Headers */, + 46EB2E00031A30 /* IPAddressException.h in Headers */, + 46EB2E00032070 /* IPAddressSource.h in Headers */, + 46EB2E00031A40 /* IPAddressV4.h in Headers */, + 46EB2E00031A50 /* IPAddressV6.h in Headers */, + 46EB2E00031EE0 /* Iterator.h in Headers */, + 46EB2E00032080 /* Iterators.h in Headers */, + 46EB2E00033D80 /* JemallocHugePageAllocator.h in Headers */, + 46EB2E00033D90 /* JemallocNodumpAllocator.h in Headers */, + 46EB2E00031A60 /* json.h in Headers */, + 46EB2E00031A70 /* json_patch.h in Headers */, + 46EB2E00031A80 /* json_pointer.h in Headers */, + 46EB2E00033DA0 /* JSONSchema.h in Headers */, + 46EB2E000322D0 /* Keep.h in Headers */, + 46EB2E00033170 /* Latch.h in Headers */, + 46EB2E000322E0 /* Launder.h in Headers */, + 46EB2E00031A90 /* Lazy.h in Headers */, + 46EB2E000325B0 /* Libgen.h in Headers */, + 46EB2E000325C0 /* Libunwind.h in Headers */, + 46EB2E00033180 /* LifoSem.h in Headers */, + 46EB2E00032F20 /* LifoSemMPMCQueue.h in Headers */, + 46EB2E00031AA0 /* Likely.h in Headers */, + 46EB2E00034010 /* LineReader.h in Headers */, + 46EB2E00033190 /* Lock.h in Headers */, + 46EB2E00033DB0 /* LockFreeRingBuffer.h in Headers */, + 46EB2E000336C0 /* LoopController.h in Headers */, + 46EB2E00033BC0 /* LtHash.h in Headers */, + 46EB2E00033BB0 /* LtHash-inl.h in Headers */, + 46EB2E00033BA0 /* LtHashInternal.h in Headers */, + 46EB2E00031AB0 /* MacAddress.h in Headers */, + 46EB2E000323C0 /* MallctlHelper.h in Headers */, + 46EB2E00033950 /* Malloc.h in Headers */, + 46EB2E000323D0 /* Malloc.h in Headers */, + 46EB2E000325D0 /* Malloc.h in Headers */, + 46EB2E00032460 /* MallocImpl.h in Headers */, + 46EB2E00032E30 /* ManualExecutor.h in Headers */, + 46EB2E00033960 /* ManualLifetime.h in Headers */, + 46EB2E00032C80 /* ManualTimekeeper.h in Headers */, + 46EB2E00031AC0 /* MapUtil.h in Headers */, + 46EB2E00033A00 /* Materialize.h in Headers */, + 46EB2E000339F0 /* Materialize-inl.h in Headers */, + 46EB2E00031AD0 /* Math.h in Headers */, + 46EB2E000325E0 /* Math.h in Headers */, + 46EB2E00031AE0 /* Memory.h in Headers */, + 46EB2E000325F0 /* Memory.h in Headers */, + 46EB2E00032090 /* MemoryIdler.h in Headers */, + 46EB2E000323E0 /* MemoryResource.h in Headers */, + 46EB2E00031EF0 /* Merge.h in Headers */, + 46EB2E00033A20 /* Merge.h in Headers */, + 46EB2E00033A10 /* Merge-inl.h in Headers */, + 46EB2E00032E40 /* MeteredExecutor.h in Headers */, + 46EB2E00031AF0 /* MicroLock.h in Headers */, + 46EB2E00031B00 /* MicroSpinLock.h in Headers */, + 46EB2E000331A0 /* MicroSpinLock.h in Headers */, + 46EB2E00031B10 /* MoveWrapper.h in Headers */, + 46EB2E00031B20 /* MPMCPipeline.h in Headers */, + 46EB2E000320A0 /* MPMCPipelineDetail.h in Headers */, + 46EB2E00031B30 /* MPMCQueue.h in Headers */, + 46EB2E00033A40 /* Multiplex.h in Headers */, + 46EB2E00033A30 /* Multiplex-inl.h in Headers */, + 46EB2E00033A50 /* Mutex.h in Headers */, + 46EB2E00032EF0 /* NamedThreadFactory.h in Headers */, + 46EB2E000331B0 /* NativeSemaphore.h in Headers */, + 46EB2E00033DC0 /* NestedCommandLineApp.h in Headers */, + 46EB2E00032470 /* NetOps.h in Headers */, + 46EB2E00032480 /* NetOpsDispatcher.h in Headers */, + 46EB2E00032490 /* NetworkSocket.h in Headers */, + 46EB2E00032400 /* not_null.h in Headers */, + 46EB2E000323F0 /* not_null-inl.h in Headers */, + 46EB2E00033440 /* NotificationQueue.h in Headers */, + 46EB2E00033E10 /* Observable.h in Headers */, + 46EB2E00033E00 /* Observable-inl.h in Headers */, + 46EB2E00033E40 /* Observer.h in Headers */, + 46EB2E00033E20 /* Observer-inl.h in Headers */, + 46EB2E00033E30 /* Observer-pre.h in Headers */, + 46EB2E00033DF0 /* ObserverManager.h in Headers */, + 46EB2E00032600 /* OpenSSL.h in Headers */, + 46EB2E00031B40 /* Optional.h in Headers */, + 46EB2E000322F0 /* Ordering.h in Headers */, + 46EB2E00031B50 /* Overload.h in Headers */, + 46EB2E00031B60 /* PackedSyncPtr.h in Headers */, + 46EB2E00031B70 /* Padded.h in Headers */, + 46EB2E000331C0 /* ParkingLot.h in Headers */, + 46EB2E000321A0 /* Partial.h in Headers */, + 46EB2E000331D0 /* PicoSpinLock.h in Headers */, + 46EB2E00034110 /* Pid.h in Headers */, + 46EB2E00031B90 /* Poly.h in Headers */, + 46EB2E00031B80 /* Poly-inl.h in Headers */, + 46EB2E000320B0 /* PolyDetail.h in Headers */, + 46EB2E00031BA0 /* PolyException.h in Headers */, + 46EB2E00032C90 /* Portability.h in Headers */, + 46EB2E00031BB0 /* Portability.h in Headers */, + 46EB2E00031BC0 /* Preprocessor.h in Headers */, + 46EB2E00032300 /* Pretty.h in Headers */, + 46EB2E00033E90 /* PrimaryPtr.h in Headers */, + 46EB2E00032F30 /* PriorityLifoSemMPMCQueue.h in Headers */, + 46EB2E00032F40 /* PriorityUnboundedBlockingQueue.h in Headers */, + 46EB2E00032FC0 /* PriorityUnboundedQueueSet.h in Headers */, + 46EB2E00031BD0 /* ProducerConsumerQueue.h in Headers */, + 46EB2E00033EA0 /* ProgramOptions.h in Headers */, + 46EB2E000336E0 /* Promise.h in Headers */, + 46EB2E00032CB0 /* Promise.h in Headers */, + 46EB2E000336D0 /* Promise-inl.h in Headers */, + 46EB2E00032CA0 /* Promise-inl.h in Headers */, + 46EB2E00032310 /* PropagateConst.h in Headers */, + 46EB2E000332C0 /* ProxyLockable.h in Headers */, + 46EB2E000332B0 /* ProxyLockable-inl.h in Headers */, + 46EB2E00032610 /* PThread.h in Headers */, + 46EB2E00032E50 /* QueuedImmediateExecutor.h in Headers */, + 46EB2E00032FD0 /* QueueObserver.h in Headers */, + 46EB2E00033EC0 /* QuotientMultiSet.h in Headers */, + 46EB2E00033EB0 /* QuotientMultiSet-inl.h in Headers */, + 46EB2E00031BF0 /* Random.h in Headers */, + 46EB2E00031BE0 /* Random-inl.h in Headers */, + 46EB2E00031C00 /* Range.h in Headers */, + 46EB2E000320C0 /* RangeCommon.h in Headers */, + 46EB2E000320D0 /* RangeSse42.h in Headers */, + 46EB2E00034170 /* RCT-Folly-umbrella.h in Headers */, + 46EB2E000331F0 /* Rcu.h in Headers */, + 46EB2E000331E0 /* Rcu-inl.h in Headers */, + 46EB2E00033320 /* ReadMostlySharedPtr.h in Headers */, + 46EB2E00032410 /* ReentrantAllocator.h in Headers */, + 46EB2E00033ED0 /* RelaxedConcurrentPriorityQueue.h in Headers */, + 46EB2E00031C10 /* Replaceable.h in Headers */, + 46EB2E00033450 /* Request.h in Headers */, + 46EB2E00033A60 /* Result.h in Headers */, + 46EB2E00033A70 /* Retry.h in Headers */, + 46EB2E00032CC0 /* Retrying.h in Headers */, + 46EB2E00033A80 /* RustAdaptors.h in Headers */, + 46EB2E00032320 /* RValueReferenceWrapper.h in Headers */, + 46EB2E00031C20 /* RWSpinLock.h in Headers */, + 46EB2E00033200 /* RWSpinLock.h in Headers */, + 46EB2E00032330 /* SafeAssert.h in Headers */, + 46EB2E00032420 /* SanitizeAddress.h in Headers */, + 46EB2E00032430 /* SanitizeLeak.h in Headers */, + 46EB2E00033210 /* SanitizeThread.h in Headers */, + 46EB2E00033220 /* SaturatingSemaphore.h in Headers */, + 46EB2E00032620 /* Sched.h in Headers */, + 46EB2E00032E60 /* ScheduledExecutor.h in Headers */, + 46EB2E00031C30 /* ScopeGuard.h in Headers */, + 46EB2E00033EE0 /* Select64.h in Headers */, + 46EB2E000336F0 /* Semaphore.h in Headers */, + 46EB2E00033700 /* SemaphoreBase.h in Headers */, + 46EB2E00032E70 /* SequencedExecutor.h in Headers */, + 46EB2E00032E80 /* SerialExecutor.h in Headers */, + 46EB2E00033F00 /* Settings.h in Headers */, + 46EB2E00033EF0 /* SettingsImpl.h in Headers */, + 46EB2E00033F10 /* SettingsMetadata.h in Headers */, + 46EB2E00033A90 /* SharedLock.h in Headers */, + 46EB2E00033AA0 /* SharedMutex.h in Headers */, + 46EB2E00031C40 /* SharedMutex.h in Headers */, + 46EB2E00032CE0 /* SharedPromise.h in Headers */, + 46EB2E00032CD0 /* SharedPromise-inl.h in Headers */, + 46EB2E00034020 /* SignalHandler.h in Headers */, + 46EB2E00034070 /* SignalHandlerTest.h in Headers */, + 46EB2E00033D50 /* SimpleAsyncIO.h in Headers */, + 46EB2E00033710 /* SimpleLoopController.h in Headers */, + 46EB2E00033E60 /* SimpleObservable.h in Headers */, + 46EB2E00033E50 /* SimpleObservable-inl.h in Headers */, + 46EB2E000320E0 /* Singleton.h in Headers */, + 46EB2E00031C60 /* Singleton.h in Headers */, + 46EB2E00031C50 /* Singleton-inl.h in Headers */, + 46EB2E00033F40 /* SingletonRelaxedCounter.h in Headers */, + 46EB2E000320F0 /* SingletonStackTrace.h in Headers */, + 46EB2E00031C70 /* SingletonThreadLocal.h in Headers */, + 46EB2E00033330 /* SingleWriterFixedHashMap.h in Headers */, + 46EB2E00033AC0 /* Sleep.h in Headers */, + 46EB2E00033AB0 /* Sleep-inl.h in Headers */, + 46EB2E000332D0 /* Sleeper.h in Headers */, + 46EB2E00032100 /* SlowFingerprint.h in Headers */, + 46EB2E00031C80 /* small_vector.h in Headers */, + 46EB2E00033230 /* SmallLocks.h in Headers */, + 46EB2E00033AD0 /* SmallUnboundedQueue.h in Headers */, + 46EB2E00033C60 /* SmartExceptionTracer.h in Headers */, + 46EB2E00031C90 /* SocketAddress.h in Headers */, + 46EB2E00032110 /* SocketFastOpen.h in Headers */, + 46EB2E000324C0 /* SocketFileDescriptorMap.h in Headers */, + 46EB2E00032630 /* Sockets.h in Headers */, + 46EB2E00032E90 /* SoftRealTimeExecutor.h in Headers */, + 46EB2E00031CA0 /* sorted_vector_types.h in Headers */, + 46EB2E00031F00 /* SparseByteSet.h in Headers */, + 46EB2E000332E0 /* Spin.h in Headers */, + 46EB2E00031CB0 /* SpinLock.h in Headers */, + 46EB2E000321E0 /* SpookyHashV1.h in Headers */, + 46EB2E000321F0 /* SpookyHashV2.h in Headers */, + 46EB2E00032120 /* Sse.h in Headers */, + 46EB2E00033C70 /* StackTrace.h in Headers */, + 46EB2E00034030 /* StackTrace.h in Headers */, + 46EB2E00033F50 /* StampedPtr.h in Headers */, + 46EB2E00032340 /* StaticConst.h in Headers */, + 46EB2E00032130 /* StaticSingletonManager.h in Headers */, + 46EB2E000334C0 /* StaticTracepoint.h in Headers */, + 46EB2E00032640 /* Stdio.h in Headers */, + 46EB2E00032650 /* Stdlib.h in Headers */, + 46EB2E00031CC0 /* stop_watch.h in Headers */, + 46EB2E00032EA0 /* StrandExecutor.h in Headers */, + 46EB2E00032660 /* String.h in Headers */, + 46EB2E00031CE0 /* String.h in Headers */, + 46EB2E00031CD0 /* String-inl.h in Headers */, + 46EB2E00033F60 /* StringKeyedCommon.h in Headers */, + 46EB2E00033F70 /* StringKeyedMap.h in Headers */, + 46EB2E00033F80 /* StringKeyedSet.h in Headers */, + 46EB2E00033F90 /* StringKeyedUnorderedMap.h in Headers */, + 46EB2E00033FA0 /* StringKeyedUnorderedSet.h in Headers */, + 46EB2E00033FB0 /* STTimerFDTimeoutManager.h in Headers */, + 46EB2E00031CF0 /* Subprocess.h in Headers */, + 46EB2E00034040 /* SymbolizedFrame.h in Headers */, + 46EB2E00034050 /* SymbolizePrinter.h in Headers */, + 46EB2E00034060 /* Symbolizer.h in Headers */, + 46EB2E00034090 /* SymbolizerTestUtils.h in Headers */, + 46EB2E00034080 /* SymbolizerTestUtils-inl.h in Headers */, + 46EB2E00031D00 /* Synchronized.h in Headers */, + 46EB2E00031D10 /* SynchronizedPtr.h in Headers */, + 46EB2E00032670 /* SysFile.h in Headers */, + 46EB2E00032680 /* Syslog.h in Headers */, + 46EB2E00032690 /* SysMembarrier.h in Headers */, + 46EB2E000326A0 /* SysMman.h in Headers */, + 46EB2E000326B0 /* SysResource.h in Headers */, + 46EB2E000326C0 /* SysStat.h in Headers */, + 46EB2E000326D0 /* SysSyscall.h in Headers */, + 46EB2E000326E0 /* SysTime.h in Headers */, + 46EB2E000326F0 /* SysTypes.h in Headers */, + 46EB2E00032700 /* SysUio.h in Headers */, + 46EB2E00033AE0 /* Task.h in Headers */, + 46EB2E000324A0 /* TcpInfo.h in Headers */, + 46EB2E000324B0 /* TcpInfoTypes.h in Headers */, + 46EB2E00033240 /* Tearable.h in Headers */, + 46EB2E000340B0 /* TestUtil.h in Headers */, + 46EB2E00032440 /* ThreadCachedArena.h in Headers */, + 46EB2E00031D20 /* ThreadCachedInt.h in Headers */, + 46EB2E000332F0 /* ThreadCachedInts.h in Headers */, + 46EB2E00033300 /* ThreadCachedLists.h in Headers */, + 46EB2E00032EB0 /* ThreadedExecutor.h in Headers */, + 46EB2E000340C0 /* ThreadedRepeatingFunctionRunner.h in Headers */, + 46EB2E00032F00 /* ThreadFactory.h in Headers */, + 46EB2E000316B0 /* ThreadId.h in Headers */, + 46EB2E00031D30 /* ThreadLocal.h in Headers */, + 46EB2E00032140 /* ThreadLocalDetail.h in Headers */, + 46EB2E00033000 /* ThreadName.h in Headers */, + 46EB2E00032EC0 /* ThreadPoolExecutor.h in Headers */, + 46EB2E00032CF0 /* ThreadWheelTimekeeper.h in Headers */, + 46EB2E000340D0 /* ThreadWheelTimekeeperHighRes.h in Headers */, + 46EB2E00032350 /* Thunk.h in Headers */, + 46EB2E00032710 /* Time.h in Headers */, + 46EB2E00032ED0 /* TimedDrivableExecutor.h in Headers */, + 46EB2E00033730 /* TimedMutex.h in Headers */, + 46EB2E00033720 /* TimedMutex-inl.h in Headers */, + 46EB2E00033AF0 /* TimedWait.h in Headers */, + 46EB2E00032EE0 /* TimekeeperScheduledExecutor.h in Headers */, + 46EB2E00033B10 /* Timeout.h in Headers */, + 46EB2E00033B00 /* Timeout-inl.h in Headers */, + 46EB2E00033460 /* TimeoutManager.h in Headers */, + 46EB2E00031D40 /* TimeoutQueue.h in Headers */, + 46EB2E000340E0 /* TimerFD.h in Headers */, + 46EB2E000340F0 /* TimerFDTimeoutManager.h in Headers */, + 46EB2E00033340 /* TLRefCount.h in Headers */, + 46EB2E00032360 /* ToAscii.h in Headers */, + 46EB2E00031D50 /* TokenBucket.h in Headers */, + 46EB2E00033970 /* Traits.h in Headers */, + 46EB2E00033500 /* Traits.h in Headers */, + 46EB2E00033740 /* traits.h in Headers */, + 46EB2E00031D60 /* Traits.h in Headers */, + 46EB2E00033B30 /* Transform.h in Headers */, + 46EB2E00033B20 /* Transform-inl.h in Headers */, + 46EB2E00031D80 /* Try.h in Headers */, + 46EB2E00031D70 /* Try-inl.h in Headers */, + 46EB2E00034100 /* TupleOps.h in Headers */, + 46EB2E00032150 /* TurnSequencer.h in Headers */, + 46EB2E00032370 /* TypeInfo.h in Headers */, + 46EB2E00032160 /* TypeList.h in Headers */, + 46EB2E00032D20 /* Types.h in Headers */, + 46EB2E00032F50 /* UnboundedBlockingQueue.h in Headers */, + 46EB2E00032FE0 /* UnboundedQueue.h in Headers */, + 46EB2E00033B40 /* UnboundedQueue.h in Headers */, + 46EB2E00032380 /* UncaughtExceptions.h in Headers */, + 46EB2E00031D90 /* Unicode.h in Headers */, + 46EB2E00032450 /* UninitializedMemoryHacks.h in Headers */, + 46EB2E00032170 /* UniqueInstance.h in Headers */, + 46EB2E00032720 /* Unistd.h in Headers */, + 46EB2E00031DA0 /* Unit.h in Headers */, + 46EB2E00031DC0 /* Uri.h in Headers */, + 46EB2E00031DB0 /* Uri-inl.h in Headers */, + 46EB2E00031DD0 /* UTF8String.h in Headers */, + 46EB2E00031FA0 /* Util.h in Headers */, + 46EB2E00033250 /* Utility.h in Headers */, + 46EB2E00031DE0 /* Utility.h in Headers */, + 46EB2E00031DF0 /* Varint.h in Headers */, + 46EB2E00033B50 /* ViaIfAsync.h in Headers */, + 46EB2E00031F10 /* View.h in Headers */, + 46EB2E00033470 /* VirtualEventBase.h in Headers */, + 46EB2E00031E00 /* VirtualExecutor.h in Headers */, + 46EB2E00033B60 /* Wait.h in Headers */, + 46EB2E00033260 /* WaitOptions.h in Headers */, + 46EB2E00033760 /* WhenN.h in Headers */, + 46EB2E00033750 /* WhenN-inl.h in Headers */, + 46EB2E00032730 /* Windows.h in Headers */, + 46EB2E00033B70 /* WithAsyncStack.h in Headers */, + 46EB2E00033B80 /* WithCancellation.h in Headers */, + 46EB2E00033E80 /* WithJitter.h in Headers */, + 46EB2E00033E70 /* WithJitter-inl.h in Headers */, + 46EB2E00032D00 /* WTCallback.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00034270 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034530 /* RCTConvertHelpers.h in Headers */, - 46EB2E00034540 /* RCTTypedModuleConstants.h in Headers */, - 46EB2E000345A0 /* RCTTypeSafety-umbrella.h in Headers */, + 46EB2E000342C0 /* RCTConvertHelpers.h in Headers */, + 46EB2E000342D0 /* RCTTypedModuleConstants.h in Headers */, + 46EB2E00034330 /* RCTTypeSafety-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034630 /* Headers */ = { + 46EB2E000343C0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034670 /* RNCAsyncStorage.h in Headers */, - 46EB2E00034680 /* RNCAsyncStorageDelegate.h in Headers */, + 46EB2E00034400 /* RNCAsyncStorage.h in Headers */, + 46EB2E00034410 /* RNCAsyncStorageDelegate.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034740 /* Headers */ = { + 46EB2E000344D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034790 /* RNCMaskedView.h in Headers */, - 46EB2E000347A0 /* RNCMaskedViewManager.h in Headers */, + 46EB2E00034520 /* RNCMaskedView.h in Headers */, + 46EB2E00034530 /* RNCMaskedViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034860 /* Headers */ = { + 46EB2E000345F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000348C0 /* RNCPicker.h in Headers */, - 46EB2E000348D0 /* RNCPickerLabel.h in Headers */, - 46EB2E000348E0 /* RNCPickerManager.h in Headers */, + 46EB2E00034650 /* RNCPicker.h in Headers */, + 46EB2E00034660 /* RNCPickerLabel.h in Headers */, + 46EB2E00034670 /* RNCPickerManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000349A0 /* Headers */ = { + 46EB2E00034730 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034A00 /* DeviceUID.h in Headers */, - 46EB2E00034A10 /* EnvironmentUtil.h in Headers */, - 46EB2E00034A20 /* RNDeviceInfo.h in Headers */, + 46EB2E00034790 /* DeviceUID.h in Headers */, + 46EB2E000347A0 /* EnvironmentUtil.h in Headers */, + 46EB2E000347B0 /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034AE0 /* Headers */ = { + 46EB2E00034870 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034B20 /* RNFBAnalyticsModule.h in Headers */, + 46EB2E000348B0 /* RNFBAnalyticsModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034BE0 /* Headers */ = { + 46EB2E00034970 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034CB0 /* RCTConvert+FIRApp.h in Headers */, - 46EB2E00034CC0 /* RCTConvert+FIROptions.h in Headers */, - 46EB2E00034CD0 /* RNFBAppModule.h in Headers */, - 46EB2E00034CE0 /* RNFBJSON.h in Headers */, - 46EB2E00034CF0 /* RNFBMeta.h in Headers */, - 46EB2E00034D00 /* RNFBPreferences.h in Headers */, - 46EB2E00034D10 /* RNFBRCTEventEmitter.h in Headers */, - 46EB2E00034D20 /* RNFBSharedUtils.h in Headers */, - 46EB2E00034D30 /* RNFBUtilsModule.h in Headers */, - 46EB2E00034D40 /* RNFBVersion.h in Headers */, + 46EB2E00034A40 /* RCTConvert+FIRApp.h in Headers */, + 46EB2E00034A50 /* RCTConvert+FIROptions.h in Headers */, + 46EB2E00034A60 /* RNFBAppModule.h in Headers */, + 46EB2E00034A70 /* RNFBJSON.h in Headers */, + 46EB2E00034A80 /* RNFBMeta.h in Headers */, + 46EB2E00034A90 /* RNFBPreferences.h in Headers */, + 46EB2E00034AA0 /* RNFBRCTEventEmitter.h in Headers */, + 46EB2E00034AB0 /* RNFBSharedUtils.h in Headers */, + 46EB2E00034AC0 /* RNFBUtilsModule.h in Headers */, + 46EB2E00034AD0 /* RNFBVersion.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034E00 /* Headers */ = { + 46EB2E00034B90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034E40 /* RNFBAuthModule.h in Headers */, + 46EB2E00034BD0 /* RNFBAuthModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034F00 /* Headers */ = { + 46EB2E00034C90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034F60 /* RNFBCrashlyticsInitProvider.h in Headers */, - 46EB2E00034F70 /* RNFBCrashlyticsModule.h in Headers */, - 46EB2E00034F80 /* RNFBCrashlyticsNativeHelper.h in Headers */, + 46EB2E00034CF0 /* RNFBCrashlyticsInitProvider.h in Headers */, + 46EB2E00034D00 /* RNFBCrashlyticsModule.h in Headers */, + 46EB2E00034D10 /* RNFBCrashlyticsNativeHelper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035040 /* Headers */ = { + 46EB2E00034DD0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000350E0 /* RNFBDatabaseCommon.h in Headers */, - 46EB2E000350F0 /* RNFBDatabaseModule.h in Headers */, - 46EB2E00035100 /* RNFBDatabaseOnDisconnectModule.h in Headers */, - 46EB2E00035110 /* RNFBDatabaseQuery.h in Headers */, - 46EB2E00035120 /* RNFBDatabaseQueryModule.h in Headers */, - 46EB2E00035130 /* RNFBDatabaseReferenceModule.h in Headers */, - 46EB2E00035140 /* RNFBDatabaseTransactionModule.h in Headers */, + 46EB2E00034E70 /* RNFBDatabaseCommon.h in Headers */, + 46EB2E00034E80 /* RNFBDatabaseModule.h in Headers */, + 46EB2E00034E90 /* RNFBDatabaseOnDisconnectModule.h in Headers */, + 46EB2E00034EA0 /* RNFBDatabaseQuery.h in Headers */, + 46EB2E00034EB0 /* RNFBDatabaseQueryModule.h in Headers */, + 46EB2E00034EC0 /* RNFBDatabaseReferenceModule.h in Headers */, + 46EB2E00034ED0 /* RNFBDatabaseTransactionModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035200 /* Headers */ = { + 46EB2E00034F90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000352B0 /* RCTConvert+FIRLoggerLevel.h in Headers */, - 46EB2E000352C0 /* RNFBFirestoreCollectionModule.h in Headers */, - 46EB2E000352D0 /* RNFBFirestoreCommon.h in Headers */, - 46EB2E000352E0 /* RNFBFirestoreDocumentModule.h in Headers */, - 46EB2E000352F0 /* RNFBFirestoreModule.h in Headers */, - 46EB2E00035300 /* RNFBFirestoreQuery.h in Headers */, - 46EB2E00035310 /* RNFBFirestoreSerialize.h in Headers */, - 46EB2E00035320 /* RNFBFirestoreTransactionModule.h in Headers */, + 46EB2E00035040 /* RCTConvert+FIRLoggerLevel.h in Headers */, + 46EB2E00035050 /* RNFBFirestoreCollectionModule.h in Headers */, + 46EB2E00035060 /* RNFBFirestoreCommon.h in Headers */, + 46EB2E00035070 /* RNFBFirestoreDocumentModule.h in Headers */, + 46EB2E00035080 /* RNFBFirestoreModule.h in Headers */, + 46EB2E00035090 /* RNFBFirestoreQuery.h in Headers */, + 46EB2E000350A0 /* RNFBFirestoreSerialize.h in Headers */, + 46EB2E000350B0 /* RNFBFirestoreTransactionModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000353E0 /* Headers */ = { + 46EB2E00035170 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035470 /* RNFBMessaging+AppDelegate.h in Headers */, - 46EB2E00035480 /* RNFBMessaging+FIRMessagingDelegate.h in Headers */, - 46EB2E00035490 /* RNFBMessaging+NSNotificationCenter.h in Headers */, - 46EB2E000354A0 /* RNFBMessaging+UNUserNotificationCenter.h in Headers */, - 46EB2E000354B0 /* RNFBMessagingModule.h in Headers */, - 46EB2E000354C0 /* RNFBMessagingSerializer.h in Headers */, + 46EB2E00035200 /* RNFBMessaging+AppDelegate.h in Headers */, + 46EB2E00035210 /* RNFBMessaging+FIRMessagingDelegate.h in Headers */, + 46EB2E00035220 /* RNFBMessaging+NSNotificationCenter.h in Headers */, + 46EB2E00035230 /* RNFBMessaging+UNUserNotificationCenter.h in Headers */, + 46EB2E00035240 /* RNFBMessagingModule.h in Headers */, + 46EB2E00035250 /* RNFBMessagingSerializer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035580 /* Headers */ = { + 46EB2E00035310 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000355C0 /* RNFBConfigModule.h in Headers */, + 46EB2E00035350 /* RNFBConfigModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035680 /* Headers */ = { + 46EB2E00035410 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000356F0 /* FFFastImageSource.h in Headers */, - 46EB2E00035700 /* FFFastImageView.h in Headers */, - 46EB2E00035710 /* FFFastImageViewManager.h in Headers */, - 46EB2E00035720 /* RCTConvert+FFFastImage.h in Headers */, + 46EB2E00035480 /* FFFastImageSource.h in Headers */, + 46EB2E00035490 /* FFFastImageView.h in Headers */, + 46EB2E000354A0 /* FFFastImageViewManager.h in Headers */, + 46EB2E000354B0 /* RCTConvert+FFFastImage.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000357E0 /* Headers */ = { + 46EB2E00035570 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035960 /* RNFlingHandler.h in Headers */, - 46EB2E00035970 /* RNForceTouchHandler.h in Headers */, - 46EB2E000359F0 /* RNGestureHandler.h in Headers */, - 46EB2E00035A00 /* RNGestureHandlerActionType.h in Headers */, - 46EB2E00035A10 /* RNGestureHandlerButton.h in Headers */, - 46EB2E00035A20 /* RNGestureHandlerButtonComponentView.h in Headers */, - 46EB2E00035A30 /* RNGestureHandlerButtonManager.h in Headers */, - 46EB2E00035A40 /* RNGestureHandlerDirection.h in Headers */, - 46EB2E00035A50 /* RNGestureHandlerEvents.h in Headers */, - 46EB2E00035A60 /* RNGestureHandlerManager.h in Headers */, - 46EB2E00035A70 /* RNGestureHandlerModule.h in Headers */, - 46EB2E00035A80 /* RNGestureHandlerPointerTracker.h in Headers */, - 46EB2E00035A90 /* RNGestureHandlerRegistry.h in Headers */, - 46EB2E00035AA0 /* RNGestureHandlerState.h in Headers */, - 46EB2E00035AB0 /* RNGestureHandlerStateManager.h in Headers */, - 46EB2E00035AC0 /* RNGHTouchEventType.h in Headers */, - 46EB2E00035980 /* RNLongPressHandler.h in Headers */, - 46EB2E00035AD0 /* RNManualActivationRecognizer.h in Headers */, - 46EB2E00035990 /* RNManualHandler.h in Headers */, - 46EB2E000359A0 /* RNNativeViewHandler.h in Headers */, - 46EB2E000359B0 /* RNPanHandler.h in Headers */, - 46EB2E000359C0 /* RNPinchHandler.h in Headers */, - 46EB2E00035AE0 /* RNRootViewGestureRecognizer.h in Headers */, - 46EB2E000359D0 /* RNRotationHandler.h in Headers */, - 46EB2E000359E0 /* RNTapHandler.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00035BA0 /* Headers */ = { + 46EB2E000356F0 /* RNFlingHandler.h in Headers */, + 46EB2E00035700 /* RNForceTouchHandler.h in Headers */, + 46EB2E00035780 /* RNGestureHandler.h in Headers */, + 46EB2E00035790 /* RNGestureHandlerActionType.h in Headers */, + 46EB2E000357A0 /* RNGestureHandlerButton.h in Headers */, + 46EB2E000357B0 /* RNGestureHandlerButtonComponentView.h in Headers */, + 46EB2E000357C0 /* RNGestureHandlerButtonManager.h in Headers */, + 46EB2E000357D0 /* RNGestureHandlerDirection.h in Headers */, + 46EB2E000357E0 /* RNGestureHandlerEvents.h in Headers */, + 46EB2E000357F0 /* RNGestureHandlerManager.h in Headers */, + 46EB2E00035800 /* RNGestureHandlerModule.h in Headers */, + 46EB2E00035810 /* RNGestureHandlerPointerTracker.h in Headers */, + 46EB2E00035820 /* RNGestureHandlerRegistry.h in Headers */, + 46EB2E00035830 /* RNGestureHandlerState.h in Headers */, + 46EB2E00035840 /* RNGestureHandlerStateManager.h in Headers */, + 46EB2E00035850 /* RNGHTouchEventType.h in Headers */, + 46EB2E00035710 /* RNLongPressHandler.h in Headers */, + 46EB2E00035860 /* RNManualActivationRecognizer.h in Headers */, + 46EB2E00035720 /* RNManualHandler.h in Headers */, + 46EB2E00035730 /* RNNativeViewHandler.h in Headers */, + 46EB2E00035740 /* RNPanHandler.h in Headers */, + 46EB2E00035750 /* RNPinchHandler.h in Headers */, + 46EB2E00035870 /* RNRootViewGestureRecognizer.h in Headers */, + 46EB2E00035760 /* RNRotationHandler.h in Headers */, + 46EB2E00035770 /* RNTapHandler.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00035930 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035BE0 /* RNRate.h in Headers */, + 46EB2E00035970 /* RNRate.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035CA0 /* Headers */ = { + 46EB2E00035A30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00036320 /* AnimatedSensorModule.h in Headers */, - 46EB2E00036420 /* ErrorHandler.h in Headers */, - 46EB2E00036360 /* EventHandlerRegistry.h in Headers */, - 46EB2E00036430 /* FeaturesConfig.h in Headers */, - 46EB2E00036390 /* FrozenObject.h in Headers */, - 46EB2E000363A0 /* HostFunctionHandler.h in Headers */, - 46EB2E00036440 /* JSIStoreValueUser.h in Headers */, - 46EB2E00036330 /* LayoutAnimationsProxy.h in Headers */, - 46EB2E00036450 /* Mapper.h in Headers */, - 46EB2E00036370 /* MapperRegistry.h in Headers */, - 46EB2E000363B0 /* MutableValue.h in Headers */, - 46EB2E000363C0 /* MutableValueSetterProxy.h in Headers */, - 46EB2E000360A0 /* NativeMethods.h in Headers */, - 46EB2E000360B0 /* NativeProxy.h in Headers */, - 46EB2E00036340 /* NativeReanimatedModule.h in Headers */, - 46EB2E00036350 /* NativeReanimatedModuleSpec.h in Headers */, - 46EB2E00036460 /* PlatformDepMethodsHolder.h in Headers */, - 46EB2E000362C0 /* RCTConvert+REATransition.h in Headers */, - 46EB2E000362D0 /* REAAllTransitions.h in Headers */, - 46EB2E00036110 /* REAAlwaysNode.h in Headers */, - 46EB2E00036070 /* REAAnimationsManager.h in Headers */, - 46EB2E00036120 /* REABezierNode.h in Headers */, - 46EB2E00036130 /* REABlockNode.h in Headers */, - 46EB2E00036140 /* REACallFuncNode.h in Headers */, - 46EB2E00036150 /* REAClockNodes.h in Headers */, - 46EB2E00036160 /* REAConcatNode.h in Headers */, - 46EB2E00036170 /* REACondNode.h in Headers */, - 46EB2E00036180 /* READebugNode.h in Headers */, - 46EB2E00036240 /* REAEventDispatcher.h in Headers */, - 46EB2E00036190 /* REAEventNode.h in Headers */, - 46EB2E000361A0 /* REAFunctionNode.h in Headers */, - 46EB2E000360C0 /* REAInitializer.h in Headers */, - 46EB2E000360D0 /* REAIOSErrorHandler.h in Headers */, - 46EB2E000360E0 /* REAIOSLogger.h in Headers */, - 46EB2E000360F0 /* REAIOSScheduler.h in Headers */, - 46EB2E000361B0 /* REAJSCallNode.h in Headers */, - 46EB2E00036250 /* REAModule.h in Headers */, - 46EB2E00036470 /* ReanimatedHiddenHeaders.h in Headers */, - 46EB2E00036290 /* ReanimatedSensor.h in Headers */, - 46EB2E000362A0 /* ReanimatedSensorContainer.h in Headers */, - 46EB2E000362B0 /* ReanimatedSensorType.h in Headers */, - 46EB2E000361C0 /* REANode.h in Headers */, - 46EB2E00036260 /* REANodesManager.h in Headers */, - 46EB2E000361D0 /* REAOperatorNode.h in Headers */, - 46EB2E000361E0 /* REAParamNode.h in Headers */, - 46EB2E000361F0 /* REAPropsNode.h in Headers */, - 46EB2E00036200 /* REASetNode.h in Headers */, - 46EB2E00036080 /* REASnapshot.h in Headers */, - 46EB2E00036210 /* REAStyleNode.h in Headers */, - 46EB2E00036220 /* REATransformNode.h in Headers */, - 46EB2E000362E0 /* REATransition.h in Headers */, - 46EB2E000362F0 /* REATransitionAnimation.h in Headers */, - 46EB2E00036300 /* REATransitionManager.h in Headers */, - 46EB2E00036310 /* REATransitionValues.h in Headers */, - 46EB2E00036090 /* REAUIManager.h in Headers */, - 46EB2E00036270 /* REAUtils.h in Headers */, - 46EB2E00036230 /* REAValueNode.h in Headers */, - 46EB2E000363D0 /* RemoteObject.h in Headers */, - 46EB2E00036280 /* RNGestureHandlerStateManager.h in Headers */, - 46EB2E00036480 /* RuntimeDecorator.h in Headers */, - 46EB2E000363E0 /* RuntimeManager.h in Headers */, - 46EB2E00036490 /* Scheduler.h in Headers */, - 46EB2E000363F0 /* ShareableValue.h in Headers */, - 46EB2E00036400 /* SharedParent.h in Headers */, - 46EB2E00036100 /* UIResponder+Reanimated.h in Headers */, - 46EB2E00036410 /* ValueWrapper.h in Headers */, - 46EB2E000364A0 /* WorkletEventHandler.h in Headers */, - 46EB2E00036380 /* WorkletsCache.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00036560 /* Headers */ = { + 46EB2E000360B0 /* AnimatedSensorModule.h in Headers */, + 46EB2E000361B0 /* ErrorHandler.h in Headers */, + 46EB2E000360F0 /* EventHandlerRegistry.h in Headers */, + 46EB2E000361C0 /* FeaturesConfig.h in Headers */, + 46EB2E00036120 /* FrozenObject.h in Headers */, + 46EB2E00036130 /* HostFunctionHandler.h in Headers */, + 46EB2E000361D0 /* JSIStoreValueUser.h in Headers */, + 46EB2E000360C0 /* LayoutAnimationsProxy.h in Headers */, + 46EB2E000361E0 /* Mapper.h in Headers */, + 46EB2E00036100 /* MapperRegistry.h in Headers */, + 46EB2E00036140 /* MutableValue.h in Headers */, + 46EB2E00036150 /* MutableValueSetterProxy.h in Headers */, + 46EB2E00035E30 /* NativeMethods.h in Headers */, + 46EB2E00035E40 /* NativeProxy.h in Headers */, + 46EB2E000360D0 /* NativeReanimatedModule.h in Headers */, + 46EB2E000360E0 /* NativeReanimatedModuleSpec.h in Headers */, + 46EB2E000361F0 /* PlatformDepMethodsHolder.h in Headers */, + 46EB2E00036050 /* RCTConvert+REATransition.h in Headers */, + 46EB2E00036060 /* REAAllTransitions.h in Headers */, + 46EB2E00035EA0 /* REAAlwaysNode.h in Headers */, + 46EB2E00035E00 /* REAAnimationsManager.h in Headers */, + 46EB2E00035EB0 /* REABezierNode.h in Headers */, + 46EB2E00035EC0 /* REABlockNode.h in Headers */, + 46EB2E00035ED0 /* REACallFuncNode.h in Headers */, + 46EB2E00035EE0 /* REAClockNodes.h in Headers */, + 46EB2E00035EF0 /* REAConcatNode.h in Headers */, + 46EB2E00035F00 /* REACondNode.h in Headers */, + 46EB2E00035F10 /* READebugNode.h in Headers */, + 46EB2E00035FD0 /* REAEventDispatcher.h in Headers */, + 46EB2E00035F20 /* REAEventNode.h in Headers */, + 46EB2E00035F30 /* REAFunctionNode.h in Headers */, + 46EB2E00035E50 /* REAInitializer.h in Headers */, + 46EB2E00035E60 /* REAIOSErrorHandler.h in Headers */, + 46EB2E00035E70 /* REAIOSLogger.h in Headers */, + 46EB2E00035E80 /* REAIOSScheduler.h in Headers */, + 46EB2E00035F40 /* REAJSCallNode.h in Headers */, + 46EB2E00035FE0 /* REAModule.h in Headers */, + 46EB2E00036200 /* ReanimatedHiddenHeaders.h in Headers */, + 46EB2E00036020 /* ReanimatedSensor.h in Headers */, + 46EB2E00036030 /* ReanimatedSensorContainer.h in Headers */, + 46EB2E00036040 /* ReanimatedSensorType.h in Headers */, + 46EB2E00035F50 /* REANode.h in Headers */, + 46EB2E00035FF0 /* REANodesManager.h in Headers */, + 46EB2E00035F60 /* REAOperatorNode.h in Headers */, + 46EB2E00035F70 /* REAParamNode.h in Headers */, + 46EB2E00035F80 /* REAPropsNode.h in Headers */, + 46EB2E00035F90 /* REASetNode.h in Headers */, + 46EB2E00035E10 /* REASnapshot.h in Headers */, + 46EB2E00035FA0 /* REAStyleNode.h in Headers */, + 46EB2E00035FB0 /* REATransformNode.h in Headers */, + 46EB2E00036070 /* REATransition.h in Headers */, + 46EB2E00036080 /* REATransitionAnimation.h in Headers */, + 46EB2E00036090 /* REATransitionManager.h in Headers */, + 46EB2E000360A0 /* REATransitionValues.h in Headers */, + 46EB2E00035E20 /* REAUIManager.h in Headers */, + 46EB2E00036000 /* REAUtils.h in Headers */, + 46EB2E00035FC0 /* REAValueNode.h in Headers */, + 46EB2E00036160 /* RemoteObject.h in Headers */, + 46EB2E00036010 /* RNGestureHandlerStateManager.h in Headers */, + 46EB2E00036210 /* RuntimeDecorator.h in Headers */, + 46EB2E00036170 /* RuntimeManager.h in Headers */, + 46EB2E00036220 /* Scheduler.h in Headers */, + 46EB2E00036180 /* ShareableValue.h in Headers */, + 46EB2E00036190 /* SharedParent.h in Headers */, + 46EB2E00035E90 /* UIResponder+Reanimated.h in Headers */, + 46EB2E000361A0 /* ValueWrapper.h in Headers */, + 46EB2E00036230 /* WorkletEventHandler.h in Headers */, + 46EB2E00036110 /* WorkletsCache.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000362F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00036BC0 /* RCTConvert+RNSVG.h in Headers */, - 46EB2E00036BD0 /* RNSVGBezierElement.h in Headers */, - 46EB2E00036980 /* RNSVGBrush.h in Headers */, - 46EB2E00036990 /* RNSVGBrushType.h in Headers */, - 46EB2E00036BE0 /* RNSVGCGFCRule.h in Headers */, - 46EB2E00036B00 /* RNSVGCircle.h in Headers */, - 46EB2E00036C70 /* RNSVGCircleManager.h in Headers */, - 46EB2E000369E0 /* RNSVGClipPath.h in Headers */, - 46EB2E00036C80 /* RNSVGClipPathManager.h in Headers */, - 46EB2E00036AC0 /* RNSVGContainer.h in Headers */, - 46EB2E000369A0 /* RNSVGContextBrush.h in Headers */, - 46EB2E000369F0 /* RNSVGDefs.h in Headers */, - 46EB2E00036C90 /* RNSVGDefsManager.h in Headers */, - 46EB2E00036B10 /* RNSVGEllipse.h in Headers */, - 46EB2E00036CA0 /* RNSVGEllipseManager.h in Headers */, - 46EB2E00036B40 /* RNSVGFontData.h in Headers */, - 46EB2E00036A00 /* RNSVGForeignObject.h in Headers */, - 46EB2E00036CB0 /* RNSVGForeignObjectManager.h in Headers */, - 46EB2E00036B50 /* RNSVGGlyphContext.h in Headers */, - 46EB2E00036A10 /* RNSVGGroup.h in Headers */, - 46EB2E00036CC0 /* RNSVGGroupManager.h in Headers */, - 46EB2E00036A20 /* RNSVGImage.h in Headers */, - 46EB2E00036CD0 /* RNSVGImageManager.h in Headers */, - 46EB2E00036BF0 /* RNSVGLength.h in Headers */, - 46EB2E00036B20 /* RNSVGLine.h in Headers */, - 46EB2E00036A30 /* RNSVGLinearGradient.h in Headers */, - 46EB2E00036CE0 /* RNSVGLinearGradientManager.h in Headers */, - 46EB2E00036CF0 /* RNSVGLineManager.h in Headers */, - 46EB2E00036A40 /* RNSVGMarker.h in Headers */, - 46EB2E00036D00 /* RNSVGMarkerManager.h in Headers */, - 46EB2E00036C00 /* RNSVGMarkerPosition.h in Headers */, - 46EB2E00036A50 /* RNSVGMask.h in Headers */, - 46EB2E00036D10 /* RNSVGMaskManager.h in Headers */, - 46EB2E00036AD0 /* RNSVGNode.h in Headers */, - 46EB2E00036D20 /* RNSVGNodeManager.h in Headers */, - 46EB2E000369B0 /* RNSVGPainter.h in Headers */, - 46EB2E000369C0 /* RNSVGPainterBrush.h in Headers */, - 46EB2E00036A60 /* RNSVGPath.h in Headers */, - 46EB2E00036D30 /* RNSVGPathManager.h in Headers */, - 46EB2E00036C10 /* RNSVGPathMeasure.h in Headers */, - 46EB2E00036C20 /* RNSVGPathParser.h in Headers */, - 46EB2E00036A70 /* RNSVGPattern.h in Headers */, - 46EB2E00036D40 /* RNSVGPatternManager.h in Headers */, - 46EB2E00036B60 /* RNSVGPropHelper.h in Headers */, - 46EB2E00036A80 /* RNSVGRadialGradient.h in Headers */, - 46EB2E00036D50 /* RNSVGRadialGradientManager.h in Headers */, - 46EB2E00036B30 /* RNSVGRect.h in Headers */, - 46EB2E00036D60 /* RNSVGRectManager.h in Headers */, - 46EB2E00036AE0 /* RNSVGRenderable.h in Headers */, - 46EB2E00036D70 /* RNSVGRenderableManager.h in Headers */, - 46EB2E000369D0 /* RNSVGSolidColorBrush.h in Headers */, - 46EB2E00036A90 /* RNSVGSvgView.h in Headers */, - 46EB2E00036D80 /* RNSVGSvgViewManager.h in Headers */, - 46EB2E00036AA0 /* RNSVGSymbol.h in Headers */, - 46EB2E00036D90 /* RNSVGSymbolManager.h in Headers */, - 46EB2E00036B70 /* RNSVGText.h in Headers */, - 46EB2E00036DA0 /* RNSVGTextManager.h in Headers */, - 46EB2E00036B80 /* RNSVGTextPath.h in Headers */, - 46EB2E00036DB0 /* RNSVGTextPathManager.h in Headers */, - 46EB2E00036B90 /* RNSVGTextProperties.h in Headers */, - 46EB2E00036BA0 /* RNSVGTopAlignedLabel.h in Headers */, - 46EB2E00036BB0 /* RNSVGTSpan.h in Headers */, - 46EB2E00036DC0 /* RNSVGTSpanManager.h in Headers */, - 46EB2E00036AF0 /* RNSVGUIKit.h in Headers */, - 46EB2E00036C30 /* RNSVGUnits.h in Headers */, - 46EB2E00036AB0 /* RNSVGUse.h in Headers */, - 46EB2E00036DD0 /* RNSVGUseManager.h in Headers */, - 46EB2E00036C40 /* RNSVGVBMOS.h in Headers */, - 46EB2E00036C50 /* RNSVGVectorEffect.h in Headers */, - 46EB2E00036C60 /* RNSVGViewBox.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00036E90 /* Headers */ = { + 46EB2E00036950 /* RCTConvert+RNSVG.h in Headers */, + 46EB2E00036960 /* RNSVGBezierElement.h in Headers */, + 46EB2E00036710 /* RNSVGBrush.h in Headers */, + 46EB2E00036720 /* RNSVGBrushType.h in Headers */, + 46EB2E00036970 /* RNSVGCGFCRule.h in Headers */, + 46EB2E00036890 /* RNSVGCircle.h in Headers */, + 46EB2E00036A00 /* RNSVGCircleManager.h in Headers */, + 46EB2E00036770 /* RNSVGClipPath.h in Headers */, + 46EB2E00036A10 /* RNSVGClipPathManager.h in Headers */, + 46EB2E00036850 /* RNSVGContainer.h in Headers */, + 46EB2E00036730 /* RNSVGContextBrush.h in Headers */, + 46EB2E00036780 /* RNSVGDefs.h in Headers */, + 46EB2E00036A20 /* RNSVGDefsManager.h in Headers */, + 46EB2E000368A0 /* RNSVGEllipse.h in Headers */, + 46EB2E00036A30 /* RNSVGEllipseManager.h in Headers */, + 46EB2E000368D0 /* RNSVGFontData.h in Headers */, + 46EB2E00036790 /* RNSVGForeignObject.h in Headers */, + 46EB2E00036A40 /* RNSVGForeignObjectManager.h in Headers */, + 46EB2E000368E0 /* RNSVGGlyphContext.h in Headers */, + 46EB2E000367A0 /* RNSVGGroup.h in Headers */, + 46EB2E00036A50 /* RNSVGGroupManager.h in Headers */, + 46EB2E000367B0 /* RNSVGImage.h in Headers */, + 46EB2E00036A60 /* RNSVGImageManager.h in Headers */, + 46EB2E00036980 /* RNSVGLength.h in Headers */, + 46EB2E000368B0 /* RNSVGLine.h in Headers */, + 46EB2E000367C0 /* RNSVGLinearGradient.h in Headers */, + 46EB2E00036A70 /* RNSVGLinearGradientManager.h in Headers */, + 46EB2E00036A80 /* RNSVGLineManager.h in Headers */, + 46EB2E000367D0 /* RNSVGMarker.h in Headers */, + 46EB2E00036A90 /* RNSVGMarkerManager.h in Headers */, + 46EB2E00036990 /* RNSVGMarkerPosition.h in Headers */, + 46EB2E000367E0 /* RNSVGMask.h in Headers */, + 46EB2E00036AA0 /* RNSVGMaskManager.h in Headers */, + 46EB2E00036860 /* RNSVGNode.h in Headers */, + 46EB2E00036AB0 /* RNSVGNodeManager.h in Headers */, + 46EB2E00036740 /* RNSVGPainter.h in Headers */, + 46EB2E00036750 /* RNSVGPainterBrush.h in Headers */, + 46EB2E000367F0 /* RNSVGPath.h in Headers */, + 46EB2E00036AC0 /* RNSVGPathManager.h in Headers */, + 46EB2E000369A0 /* RNSVGPathMeasure.h in Headers */, + 46EB2E000369B0 /* RNSVGPathParser.h in Headers */, + 46EB2E00036800 /* RNSVGPattern.h in Headers */, + 46EB2E00036AD0 /* RNSVGPatternManager.h in Headers */, + 46EB2E000368F0 /* RNSVGPropHelper.h in Headers */, + 46EB2E00036810 /* RNSVGRadialGradient.h in Headers */, + 46EB2E00036AE0 /* RNSVGRadialGradientManager.h in Headers */, + 46EB2E000368C0 /* RNSVGRect.h in Headers */, + 46EB2E00036AF0 /* RNSVGRectManager.h in Headers */, + 46EB2E00036870 /* RNSVGRenderable.h in Headers */, + 46EB2E00036B00 /* RNSVGRenderableManager.h in Headers */, + 46EB2E00036760 /* RNSVGSolidColorBrush.h in Headers */, + 46EB2E00036820 /* RNSVGSvgView.h in Headers */, + 46EB2E00036B10 /* RNSVGSvgViewManager.h in Headers */, + 46EB2E00036830 /* RNSVGSymbol.h in Headers */, + 46EB2E00036B20 /* RNSVGSymbolManager.h in Headers */, + 46EB2E00036900 /* RNSVGText.h in Headers */, + 46EB2E00036B30 /* RNSVGTextManager.h in Headers */, + 46EB2E00036910 /* RNSVGTextPath.h in Headers */, + 46EB2E00036B40 /* RNSVGTextPathManager.h in Headers */, + 46EB2E00036920 /* RNSVGTextProperties.h in Headers */, + 46EB2E00036930 /* RNSVGTopAlignedLabel.h in Headers */, + 46EB2E00036940 /* RNSVGTSpan.h in Headers */, + 46EB2E00036B50 /* RNSVGTSpanManager.h in Headers */, + 46EB2E00036880 /* RNSVGUIKit.h in Headers */, + 46EB2E000369C0 /* RNSVGUnits.h in Headers */, + 46EB2E00036840 /* RNSVGUse.h in Headers */, + 46EB2E00036B60 /* RNSVGUseManager.h in Headers */, + 46EB2E000369D0 /* RNSVGVBMOS.h in Headers */, + 46EB2E000369E0 /* RNSVGVectorEffect.h in Headers */, + 46EB2E000369F0 /* RNSVGViewBox.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00036C20 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00036FB0 /* RNSConvert.h in Headers */, - 46EB2E00036FC0 /* RNSEnums.h in Headers */, - 46EB2E00036FD0 /* RNSFullWindowOverlay.h in Headers */, - 46EB2E00036FE0 /* RNSScreen.h in Headers */, - 46EB2E00036FF0 /* RNSScreenContainer.h in Headers */, - 46EB2E00037000 /* RNSScreenNavigationContainer.h in Headers */, - 46EB2E00037010 /* RNSScreenStack.h in Headers */, - 46EB2E00037020 /* RNSScreenStackAnimator.h in Headers */, - 46EB2E00037030 /* RNSScreenStackHeaderConfig.h in Headers */, - 46EB2E00037040 /* RNSScreenStackHeaderSubview.h in Headers */, - 46EB2E00037050 /* RNSScreenViewEvent.h in Headers */, - 46EB2E00037060 /* RNSScreenWindowTraits.h in Headers */, - 46EB2E00037070 /* RNSSearchBar.h in Headers */, - 46EB2E000370A0 /* RNSUIBarButtonItem.h in Headers */, - 46EB2E00037080 /* UIViewController+RNScreens.h in Headers */, - 46EB2E00037090 /* UIWindow+RNScreens.h in Headers */, + 46EB2E00036D40 /* RNSConvert.h in Headers */, + 46EB2E00036D50 /* RNSEnums.h in Headers */, + 46EB2E00036D60 /* RNSFullWindowOverlay.h in Headers */, + 46EB2E00036D70 /* RNSScreen.h in Headers */, + 46EB2E00036D80 /* RNSScreenContainer.h in Headers */, + 46EB2E00036D90 /* RNSScreenNavigationContainer.h in Headers */, + 46EB2E00036DA0 /* RNSScreenStack.h in Headers */, + 46EB2E00036DB0 /* RNSScreenStackAnimator.h in Headers */, + 46EB2E00036DC0 /* RNSScreenStackHeaderConfig.h in Headers */, + 46EB2E00036DD0 /* RNSScreenStackHeaderSubview.h in Headers */, + 46EB2E00036DE0 /* RNSScreenViewEvent.h in Headers */, + 46EB2E00036DF0 /* RNSScreenWindowTraits.h in Headers */, + 46EB2E00036E00 /* RNSSearchBar.h in Headers */, + 46EB2E00036E30 /* RNSUIBarButtonItem.h in Headers */, + 46EB2E00036E10 /* UIViewController+RNScreens.h in Headers */, + 46EB2E00036E20 /* UIWindow+RNScreens.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037160 /* Headers */ = { + 46EB2E00036EF0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037250 /* EmailShare.h in Headers */, - 46EB2E00037260 /* FacebookStories.h in Headers */, - 46EB2E00037270 /* GenericShare.h in Headers */, - 46EB2E00037280 /* GooglePlusShare.h in Headers */, - 46EB2E00037290 /* InstagramShare.h in Headers */, - 46EB2E000372A0 /* InstagramStories.h in Headers */, - 46EB2E000372B0 /* RNShare.h in Headers */, - 46EB2E000372C0 /* RNShareActivityItemSource.h in Headers */, - 46EB2E000372D0 /* RNShareUtils.h in Headers */, - 46EB2E000372E0 /* TelegramShare.h in Headers */, - 46EB2E000372F0 /* ViberShare.h in Headers */, - 46EB2E00037300 /* WhatsAppShare.h in Headers */, + 46EB2E00036FE0 /* EmailShare.h in Headers */, + 46EB2E00036FF0 /* FacebookStories.h in Headers */, + 46EB2E00037000 /* GenericShare.h in Headers */, + 46EB2E00037010 /* GooglePlusShare.h in Headers */, + 46EB2E00037020 /* InstagramShare.h in Headers */, + 46EB2E00037030 /* InstagramStories.h in Headers */, + 46EB2E00037040 /* RNShare.h in Headers */, + 46EB2E00037050 /* RNShareActivityItemSource.h in Headers */, + 46EB2E00037060 /* RNShareUtils.h in Headers */, + 46EB2E00037070 /* TelegramShare.h in Headers */, + 46EB2E00037080 /* ViberShare.h in Headers */, + 46EB2E00037090 /* WhatsAppShare.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000373C0 /* Headers */ = { + 46EB2E00037150 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037400 /* RNVectorIconsManager.h in Headers */, + 46EB2E00037190 /* RNVectorIconsManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037530 /* Headers */ = { + 46EB2E000372C0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037570 /* FBReactNativeSpec.h in Headers */, - 46EB2E000375D0 /* React-Codegen-umbrella.h in Headers */, + 46EB2E00037300 /* FBReactNativeSpec.h in Headers */, + 46EB2E00037360 /* React-Codegen-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037660 /* Headers */ = { + 46EB2E000373F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037740 /* CoreModulesPlugins.h in Headers */, - 46EB2E000384E0 /* DispatchMessageQueueThread.h in Headers */, - 46EB2E00038470 /* JSCExecutorFactory.h in Headers */, - 46EB2E00038480 /* NSDataBigString.h in Headers */, - 46EB2E00038E70 /* NSTextStorage+FontScaling.h in Headers */, - 46EB2E00037760 /* RCTAccessibilityManager.h in Headers */, - 46EB2E00037750 /* RCTAccessibilityManager+Internal.h in Headers */, - 46EB2E00037770 /* RCTActionSheetManager.h in Headers */, - 46EB2E00038600 /* RCTActivityIndicatorView.h in Headers */, - 46EB2E00038610 /* RCTActivityIndicatorViewManager.h in Headers */, - 46EB2E00038AB0 /* RCTAdditionAnimatedNode.h in Headers */, - 46EB2E00037780 /* RCTAlertController.h in Headers */, - 46EB2E00037790 /* RCTAlertManager.h in Headers */, - 46EB2E00038C00 /* RCTAnimatedImage.h in Headers */, - 46EB2E00038AC0 /* RCTAnimatedNode.h in Headers */, - 46EB2E00038A60 /* RCTAnimationDriver.h in Headers */, - 46EB2E00038B90 /* RCTAnimationPlugins.h in Headers */, - 46EB2E00038620 /* RCTAnimationType.h in Headers */, - 46EB2E00038BA0 /* RCTAnimationUtils.h in Headers */, - 46EB2E000377A0 /* RCTAppearance.h in Headers */, - 46EB2E00038050 /* RCTAppSetupUtils.h in Headers */, - 46EB2E000377B0 /* RCTAppState.h in Headers */, - 46EB2E00038060 /* RCTAssert.h in Headers */, - 46EB2E000377C0 /* RCTAsyncLocalStorage.h in Headers */, - 46EB2E00038630 /* RCTAutoInsetsProtocol.h in Headers */, - 46EB2E00038EE0 /* RCTBackedTextInputDelegate.h in Headers */, - 46EB2E00038EF0 /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 46EB2E00038F00 /* RCTBackedTextInputViewProtocol.h in Headers */, - 46EB2E00038F10 /* RCTBaseTextInputShadowView.h in Headers */, - 46EB2E00038F20 /* RCTBaseTextInputView.h in Headers */, - 46EB2E00038F30 /* RCTBaseTextInputViewManager.h in Headers */, - 46EB2E00038E00 /* RCTBaseTextShadowView.h in Headers */, - 46EB2E00038E10 /* RCTBaseTextViewManager.h in Headers */, - 46EB2E00038BE0 /* RCTBlobManager.h in Headers */, - 46EB2E00038640 /* RCTBorderDrawing.h in Headers */, - 46EB2E00038650 /* RCTBorderStyle.h in Headers */, - 46EB2E00038080 /* RCTBridge.h in Headers */, - 46EB2E00038070 /* RCTBridge+Private.h in Headers */, - 46EB2E00038090 /* RCTBridgeDelegate.h in Headers */, - 46EB2E000380A0 /* RCTBridgeMethod.h in Headers */, - 46EB2E000380B0 /* RCTBridgeModule.h in Headers */, - 46EB2E000380C0 /* RCTBridgeModuleDecorator.h in Headers */, - 46EB2E000380D0 /* RCTBundleURLProvider.h in Headers */, - 46EB2E000377D0 /* RCTClipboard.h in Headers */, - 46EB2E00038AD0 /* RCTColorAnimatedNode.h in Headers */, - 46EB2E00038660 /* RCTComponent.h in Headers */, - 46EB2E00038670 /* RCTComponentData.h in Headers */, - 46EB2E000380E0 /* RCTComponentEvent.h in Headers */, - 46EB2E000380F0 /* RCTConstants.h in Headers */, - 46EB2E00038100 /* RCTConvert.h in Headers */, - 46EB2E00038680 /* RCTConvert+CoreLocation.h in Headers */, - 46EB2E00038E40 /* RCTConvert+Text.h in Headers */, - 46EB2E00038690 /* RCTConvert+Transform.h in Headers */, - 46EB2E00038490 /* RCTCxxBridgeDelegate.h in Headers */, - 46EB2E00038110 /* RCTCxxConvert.h in Headers */, - 46EB2E000384F0 /* RCTCxxMethod.h in Headers */, - 46EB2E00038500 /* RCTCxxModule.h in Headers */, - 46EB2E00038510 /* RCTCxxUtils.h in Headers */, - 46EB2E00038D80 /* RCTDataRequestHandler.h in Headers */, - 46EB2E000386A0 /* RCTDatePicker.h in Headers */, - 46EB2E000386B0 /* RCTDatePickerManager.h in Headers */, - 46EB2E00038A70 /* RCTDecayAnimation.h in Headers */, - 46EB2E000384D0 /* RCTDefaultCxxLogFunction.h in Headers */, - 46EB2E00038120 /* RCTDefines.h in Headers */, - 46EB2E000377E0 /* RCTDeviceInfo.h in Headers */, - 46EB2E000377F0 /* RCTDevLoadingView.h in Headers */, - 46EB2E000389F0 /* RCTDevLoadingViewProtocol.h in Headers */, - 46EB2E00038A00 /* RCTDevLoadingViewSetEnabled.h in Headers */, - 46EB2E00037800 /* RCTDevMenu.h in Headers */, - 46EB2E00037810 /* RCTDevSettings.h in Headers */, - 46EB2E00037820 /* RCTDevSplitBundleLoader.h in Headers */, - 46EB2E00038AE0 /* RCTDiffClampAnimatedNode.h in Headers */, - 46EB2E00038130 /* RCTDisplayLink.h in Headers */, - 46EB2E00038C10 /* RCTDisplayWeakRefreshable.h in Headers */, - 46EB2E00038AF0 /* RCTDivisionAnimatedNode.h in Headers */, - 46EB2E00038140 /* RCTErrorCustomizer.h in Headers */, - 46EB2E00038150 /* RCTErrorInfo.h in Headers */, - 46EB2E00038A80 /* RCTEventAnimation.h in Headers */, - 46EB2E00037830 /* RCTEventDispatcher.h in Headers */, - 46EB2E00038160 /* RCTEventDispatcherProtocol.h in Headers */, - 46EB2E00038540 /* RCTEventEmitter.h in Headers */, - 46EB2E00037840 /* RCTExceptionsManager.h in Headers */, - 46EB2E00038BF0 /* RCTFileReaderModule.h in Headers */, - 46EB2E00038D90 /* RCTFileRequestHandler.h in Headers */, - 46EB2E00038530 /* RCTFollyConvert.h in Headers */, - 46EB2E000386C0 /* RCTFont.h in Headers */, - 46EB2E00037850 /* RCTFPSGraph.h in Headers */, - 46EB2E00038A90 /* RCTFrameAnimation.h in Headers */, - 46EB2E00038170 /* RCTFrameUpdate.h in Headers */, - 46EB2E00038C20 /* RCTGIFImageDecoder.h in Headers */, - 46EB2E00038DA0 /* RCTHTTPRequestHandler.h in Headers */, - 46EB2E00037860 /* RCTI18nManager.h in Headers */, - 46EB2E00038550 /* RCTI18nUtil.h in Headers */, - 46EB2E00038C30 /* RCTImageBlurUtils.h in Headers */, - 46EB2E00038C40 /* RCTImageCache.h in Headers */, - 46EB2E00038C50 /* RCTImageDataDecoder.h in Headers */, - 46EB2E00038C60 /* RCTImageEditingManager.h in Headers */, - 46EB2E00038C70 /* RCTImageLoader.h in Headers */, - 46EB2E00038C80 /* RCTImageLoaderLoggable.h in Headers */, - 46EB2E00038C90 /* RCTImageLoaderProtocol.h in Headers */, - 46EB2E00038CA0 /* RCTImageLoaderWithAttributionProtocol.h in Headers */, - 46EB2E00038CB0 /* RCTImagePlugins.h in Headers */, - 46EB2E00038CC0 /* RCTImageShadowView.h in Headers */, - 46EB2E00038180 /* RCTImageSource.h in Headers */, - 46EB2E00038CD0 /* RCTImageStoreManager.h in Headers */, - 46EB2E00038CE0 /* RCTImageURLLoader.h in Headers */, - 46EB2E00038CF0 /* RCTImageURLLoaderWithAttribution.h in Headers */, - 46EB2E00038D00 /* RCTImageUtils.h in Headers */, - 46EB2E00038D10 /* RCTImageView.h in Headers */, - 46EB2E00038D20 /* RCTImageViewManager.h in Headers */, - 46EB2E00038190 /* RCTInitializing.h in Headers */, - 46EB2E00038F40 /* RCTInputAccessoryShadowView.h in Headers */, - 46EB2E00038F50 /* RCTInputAccessoryView.h in Headers */, - 46EB2E00038F60 /* RCTInputAccessoryViewContent.h in Headers */, - 46EB2E00038F70 /* RCTInputAccessoryViewManager.h in Headers */, - 46EB2E00038A40 /* RCTInspector.h in Headers */, - 46EB2E00038A10 /* RCTInspectorDevServerHelper.h in Headers */, - 46EB2E00038A50 /* RCTInspectorPackagerConnection.h in Headers */, - 46EB2E00038B00 /* RCTInterpolationAnimatedNode.h in Headers */, - 46EB2E000381A0 /* RCTInvalidating.h in Headers */, - 46EB2E000381B0 /* RCTJavaScriptExecutor.h in Headers */, - 46EB2E000381C0 /* RCTJavaScriptLoader.h in Headers */, - 46EB2E000384A0 /* RCTJSIExecutorRuntimeInstaller.h in Headers */, - 46EB2E000381D0 /* RCTJSScriptLoaderModule.h in Headers */, - 46EB2E000381E0 /* RCTJSStackFrame.h in Headers */, - 46EB2E000381F0 /* RCTJSThread.h in Headers */, - 46EB2E00037870 /* RCTKeyboardObserver.h in Headers */, - 46EB2E00038200 /* RCTKeyCommands.h in Headers */, - 46EB2E000386D0 /* RCTLayout.h in Headers */, - 46EB2E00038560 /* RCTLayoutAnimation.h in Headers */, - 46EB2E00038570 /* RCTLayoutAnimationGroup.h in Headers */, - 46EB2E00038D60 /* RCTLinkingManager.h in Headers */, - 46EB2E00038D70 /* RCTLinkingPlugins.h in Headers */, - 46EB2E00038D30 /* RCTLocalAssetImageLoader.h in Headers */, - 46EB2E00038210 /* RCTLog.h in Headers */, - 46EB2E00037880 /* RCTLogBox.h in Headers */, - 46EB2E00037890 /* RCTLogBoxView.h in Headers */, - 46EB2E000385D0 /* RCTMacros.h in Headers */, - 46EB2E00038220 /* RCTManagedPointer.h in Headers */, - 46EB2E000386E0 /* RCTMaskedView.h in Headers */, - 46EB2E000386F0 /* RCTMaskedViewManager.h in Headers */, - 46EB2E000384B0 /* RCTMessageThread.h in Headers */, - 46EB2E00038230 /* RCTMockDef.h in Headers */, - 46EB2E00038700 /* RCTModalHostView.h in Headers */, - 46EB2E00038710 /* RCTModalHostViewController.h in Headers */, - 46EB2E00038720 /* RCTModalHostViewManager.h in Headers */, - 46EB2E00038730 /* RCTModalManager.h in Headers */, - 46EB2E00038240 /* RCTModuleData.h in Headers */, - 46EB2E00038250 /* RCTModuleMethod.h in Headers */, - 46EB2E00038B10 /* RCTModuloAnimatedNode.h in Headers */, - 46EB2E00038EB0 /* RCTMultilineTextInputView.h in Headers */, - 46EB2E00038EC0 /* RCTMultilineTextInputViewManager.h in Headers */, - 46EB2E00038260 /* RCTMultipartDataTask.h in Headers */, - 46EB2E00038270 /* RCTMultipartStreamReader.h in Headers */, - 46EB2E00038B20 /* RCTMultiplicationAnimatedNode.h in Headers */, - 46EB2E00038BB0 /* RCTNativeAnimatedModule.h in Headers */, - 46EB2E00038BC0 /* RCTNativeAnimatedNodesManager.h in Headers */, - 46EB2E00038BD0 /* RCTNativeAnimatedTurboModule.h in Headers */, - 46EB2E00038520 /* RCTNativeModule.h in Headers */, - 46EB2E00038DB0 /* RCTNetworking.h in Headers */, - 46EB2E00038DC0 /* RCTNetworkPlugins.h in Headers */, - 46EB2E00038DD0 /* RCTNetworkTask.h in Headers */, - 46EB2E00038280 /* RCTNullability.h in Headers */, - 46EB2E000384C0 /* RCTObjcExecutor.h in Headers */, - 46EB2E00038A20 /* RCTPackagerClient.h in Headers */, - 46EB2E00038A30 /* RCTPackagerConnection.h in Headers */, - 46EB2E00038290 /* RCTParserUtils.h in Headers */, - 46EB2E000382A0 /* RCTPerformanceLogger.h in Headers */, - 46EB2E000382B0 /* RCTPerformanceLoggerLabels.h in Headers */, - 46EB2E000378A0 /* RCTPlatform.h in Headers */, - 46EB2E000382C0 /* RCTPLTag.h in Headers */, - 46EB2E00038740 /* RCTPointerEvents.h in Headers */, - 46EB2E000385E0 /* RCTProfile.h in Headers */, - 46EB2E00038750 /* RCTProgressViewManager.h in Headers */, - 46EB2E00038B30 /* RCTPropsAnimatedNode.h in Headers */, - 46EB2E00038E20 /* RCTRawTextShadowView.h in Headers */, - 46EB2E00038E30 /* RCTRawTextViewManager.h in Headers */, - 46EB2E00039020 /* RCTReconnectingWebSocket.h in Headers */, - 46EB2E000378B0 /* RCTRedBox.h in Headers */, - 46EB2E00038580 /* RCTRedBoxExtraDataViewController.h in Headers */, - 46EB2E000382D0 /* RCTRedBoxSetEnabled.h in Headers */, - 46EB2E00038850 /* RCTRefreshableProtocol.h in Headers */, - 46EB2E00038860 /* RCTRefreshControl.h in Headers */, - 46EB2E00038870 /* RCTRefreshControlManager.h in Headers */, - 46EB2E000382E0 /* RCTReloadCommand.h in Headers */, - 46EB2E00038D40 /* RCTResizeMode.h in Headers */, - 46EB2E000382F0 /* RCTRootContentView.h in Headers */, - 46EB2E00038760 /* RCTRootShadowView.h in Headers */, - 46EB2E00038300 /* RCTRootView.h in Headers */, - 46EB2E00038310 /* RCTRootViewDelegate.h in Headers */, - 46EB2E00038320 /* RCTRootViewInternal.h in Headers */, - 46EB2E00038880 /* RCTSafeAreaShadowView.h in Headers */, - 46EB2E00038890 /* RCTSafeAreaView.h in Headers */, - 46EB2E000388A0 /* RCTSafeAreaViewLocalData.h in Headers */, - 46EB2E000388B0 /* RCTSafeAreaViewManager.h in Headers */, - 46EB2E000388C0 /* RCTScrollableProtocol.h in Headers */, - 46EB2E000388D0 /* RCTScrollContentShadowView.h in Headers */, - 46EB2E000388E0 /* RCTScrollContentView.h in Headers */, - 46EB2E000388F0 /* RCTScrollContentViewManager.h in Headers */, - 46EB2E00038900 /* RCTScrollEvent.h in Headers */, - 46EB2E00038910 /* RCTScrollView.h in Headers */, - 46EB2E00038920 /* RCTScrollViewManager.h in Headers */, - 46EB2E00038770 /* RCTSegmentedControl.h in Headers */, - 46EB2E00038780 /* RCTSegmentedControlManager.h in Headers */, - 46EB2E00038DE0 /* RCTSettingsManager.h in Headers */, - 46EB2E00038DF0 /* RCTSettingsPlugins.h in Headers */, - 46EB2E000387B0 /* RCTShadowView.h in Headers */, - 46EB2E00038790 /* RCTShadowView+Internal.h in Headers */, - 46EB2E000387A0 /* RCTShadowView+Layout.h in Headers */, - 46EB2E00038F90 /* RCTSinglelineTextInputView.h in Headers */, - 46EB2E00038FA0 /* RCTSinglelineTextInputViewManager.h in Headers */, - 46EB2E000387C0 /* RCTSlider.h in Headers */, - 46EB2E000387D0 /* RCTSliderManager.h in Headers */, - 46EB2E000378C0 /* RCTSourceCode.h in Headers */, - 46EB2E00038AA0 /* RCTSpringAnimation.h in Headers */, - 46EB2E00039030 /* RCTSRWebSocket.h in Headers */, - 46EB2E000378D0 /* RCTStatusBarManager.h in Headers */, - 46EB2E00038B40 /* RCTStyleAnimatedNode.h in Headers */, - 46EB2E00038B50 /* RCTSubtractionAnimatedNode.h in Headers */, - 46EB2E000383B0 /* RCTSurface.h in Headers */, - 46EB2E000383C0 /* RCTSurfaceDelegate.h in Headers */, - 46EB2E00038440 /* RCTSurfaceHostingProxyRootView.h in Headers */, - 46EB2E00038450 /* RCTSurfaceHostingView.h in Headers */, - 46EB2E00038590 /* RCTSurfacePresenterStub.h in Headers */, - 46EB2E000383D0 /* RCTSurfaceProtocol.h in Headers */, - 46EB2E000383E0 /* RCTSurfaceRootShadowView.h in Headers */, - 46EB2E000383F0 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, - 46EB2E00038400 /* RCTSurfaceRootView.h in Headers */, - 46EB2E00038460 /* RCTSurfaceSizeMeasureMode.h in Headers */, - 46EB2E00038410 /* RCTSurfaceStage.h in Headers */, - 46EB2E00038430 /* RCTSurfaceView.h in Headers */, - 46EB2E00038420 /* RCTSurfaceView+Internal.h in Headers */, - 46EB2E000387E0 /* RCTSwitch.h in Headers */, - 46EB2E000387F0 /* RCTSwitchManager.h in Headers */, - 46EB2E00038E50 /* RCTTextAttributes.h in Headers */, - 46EB2E00038800 /* RCTTextDecorationLineType.h in Headers */, - 46EB2E00038F80 /* RCTTextSelection.h in Headers */, - 46EB2E00038E80 /* RCTTextShadowView.h in Headers */, - 46EB2E00038E60 /* RCTTextTransform.h in Headers */, - 46EB2E00038E90 /* RCTTextView.h in Headers */, - 46EB2E00038EA0 /* RCTTextViewManager.h in Headers */, - 46EB2E000378E0 /* RCTTiming.h in Headers */, - 46EB2E00038330 /* RCTTouchEvent.h in Headers */, - 46EB2E00038340 /* RCTTouchHandler.h in Headers */, - 46EB2E00038B60 /* RCTTrackingAnimatedNode.h in Headers */, - 46EB2E00038B70 /* RCTTransformAnimatedNode.h in Headers */, - 46EB2E00038D50 /* RCTUIImageViewAnimated.h in Headers */, - 46EB2E000385A0 /* RCTUIManager.h in Headers */, - 46EB2E000385B0 /* RCTUIManagerObserverCoordinator.h in Headers */, - 46EB2E000385C0 /* RCTUIManagerUtils.h in Headers */, - 46EB2E00038FB0 /* RCTUITextField.h in Headers */, - 46EB2E00038ED0 /* RCTUITextView.h in Headers */, - 46EB2E000385F0 /* RCTUIUtils.h in Headers */, - 46EB2E00038350 /* RCTURLRequestDelegate.h in Headers */, - 46EB2E00038360 /* RCTURLRequestHandler.h in Headers */, - 46EB2E00038370 /* RCTUtils.h in Headers */, - 46EB2E00038380 /* RCTUtilsUIOverride.h in Headers */, - 46EB2E00038B80 /* RCTValueAnimatedNode.h in Headers */, - 46EB2E00038390 /* RCTVersion.h in Headers */, - 46EB2E00038FE0 /* RCTVibration.h in Headers */, - 46EB2E00038FF0 /* RCTVibrationPlugins.h in Headers */, - 46EB2E00038810 /* RCTView.h in Headers */, - 46EB2E00038820 /* RCTViewManager.h in Headers */, - 46EB2E00038830 /* RCTViewUtils.h in Headers */, - 46EB2E00038FC0 /* RCTVirtualTextShadowView.h in Headers */, - 46EB2E00038FD0 /* RCTVirtualTextViewManager.h in Headers */, - 46EB2E000383A0 /* RCTWeakProxy.h in Headers */, - 46EB2E000378F0 /* RCTWebSocketExecutor.h in Headers */, - 46EB2E00037900 /* RCTWebSocketModule.h in Headers */, - 46EB2E00038840 /* RCTWrapperViewController.h in Headers */, - 46EB2E00039080 /* React-Core-umbrella.h in Headers */, - 46EB2E00038930 /* UIView+Private.h in Headers */, - 46EB2E00038940 /* UIView+React.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00039110 /* Headers */ = { + 46EB2E000374D0 /* CoreModulesPlugins.h in Headers */, + 46EB2E00038270 /* DispatchMessageQueueThread.h in Headers */, + 46EB2E00038200 /* JSCExecutorFactory.h in Headers */, + 46EB2E00038210 /* NSDataBigString.h in Headers */, + 46EB2E00038C00 /* NSTextStorage+FontScaling.h in Headers */, + 46EB2E000374F0 /* RCTAccessibilityManager.h in Headers */, + 46EB2E000374E0 /* RCTAccessibilityManager+Internal.h in Headers */, + 46EB2E00037500 /* RCTActionSheetManager.h in Headers */, + 46EB2E00038390 /* RCTActivityIndicatorView.h in Headers */, + 46EB2E000383A0 /* RCTActivityIndicatorViewManager.h in Headers */, + 46EB2E00038840 /* RCTAdditionAnimatedNode.h in Headers */, + 46EB2E00037510 /* RCTAlertController.h in Headers */, + 46EB2E00037520 /* RCTAlertManager.h in Headers */, + 46EB2E00038990 /* RCTAnimatedImage.h in Headers */, + 46EB2E00038850 /* RCTAnimatedNode.h in Headers */, + 46EB2E000387F0 /* RCTAnimationDriver.h in Headers */, + 46EB2E00038920 /* RCTAnimationPlugins.h in Headers */, + 46EB2E000383B0 /* RCTAnimationType.h in Headers */, + 46EB2E00038930 /* RCTAnimationUtils.h in Headers */, + 46EB2E00037530 /* RCTAppearance.h in Headers */, + 46EB2E00037DE0 /* RCTAppSetupUtils.h in Headers */, + 46EB2E00037540 /* RCTAppState.h in Headers */, + 46EB2E00037DF0 /* RCTAssert.h in Headers */, + 46EB2E00037550 /* RCTAsyncLocalStorage.h in Headers */, + 46EB2E000383C0 /* RCTAutoInsetsProtocol.h in Headers */, + 46EB2E00038C70 /* RCTBackedTextInputDelegate.h in Headers */, + 46EB2E00038C80 /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 46EB2E00038C90 /* RCTBackedTextInputViewProtocol.h in Headers */, + 46EB2E00038CA0 /* RCTBaseTextInputShadowView.h in Headers */, + 46EB2E00038CB0 /* RCTBaseTextInputView.h in Headers */, + 46EB2E00038CC0 /* RCTBaseTextInputViewManager.h in Headers */, + 46EB2E00038B90 /* RCTBaseTextShadowView.h in Headers */, + 46EB2E00038BA0 /* RCTBaseTextViewManager.h in Headers */, + 46EB2E00038970 /* RCTBlobManager.h in Headers */, + 46EB2E000383D0 /* RCTBorderDrawing.h in Headers */, + 46EB2E000383E0 /* RCTBorderStyle.h in Headers */, + 46EB2E00037E10 /* RCTBridge.h in Headers */, + 46EB2E00037E00 /* RCTBridge+Private.h in Headers */, + 46EB2E00037E20 /* RCTBridgeDelegate.h in Headers */, + 46EB2E00037E30 /* RCTBridgeMethod.h in Headers */, + 46EB2E00037E40 /* RCTBridgeModule.h in Headers */, + 46EB2E00037E50 /* RCTBridgeModuleDecorator.h in Headers */, + 46EB2E00037E60 /* RCTBundleURLProvider.h in Headers */, + 46EB2E00037560 /* RCTClipboard.h in Headers */, + 46EB2E00038860 /* RCTColorAnimatedNode.h in Headers */, + 46EB2E000383F0 /* RCTComponent.h in Headers */, + 46EB2E00038400 /* RCTComponentData.h in Headers */, + 46EB2E00037E70 /* RCTComponentEvent.h in Headers */, + 46EB2E00037E80 /* RCTConstants.h in Headers */, + 46EB2E00037E90 /* RCTConvert.h in Headers */, + 46EB2E00038410 /* RCTConvert+CoreLocation.h in Headers */, + 46EB2E00038BD0 /* RCTConvert+Text.h in Headers */, + 46EB2E00038420 /* RCTConvert+Transform.h in Headers */, + 46EB2E00038220 /* RCTCxxBridgeDelegate.h in Headers */, + 46EB2E00037EA0 /* RCTCxxConvert.h in Headers */, + 46EB2E00038280 /* RCTCxxMethod.h in Headers */, + 46EB2E00038290 /* RCTCxxModule.h in Headers */, + 46EB2E000382A0 /* RCTCxxUtils.h in Headers */, + 46EB2E00038B10 /* RCTDataRequestHandler.h in Headers */, + 46EB2E00038430 /* RCTDatePicker.h in Headers */, + 46EB2E00038440 /* RCTDatePickerManager.h in Headers */, + 46EB2E00038800 /* RCTDecayAnimation.h in Headers */, + 46EB2E00038260 /* RCTDefaultCxxLogFunction.h in Headers */, + 46EB2E00037EB0 /* RCTDefines.h in Headers */, + 46EB2E00037570 /* RCTDeviceInfo.h in Headers */, + 46EB2E00037580 /* RCTDevLoadingView.h in Headers */, + 46EB2E00038780 /* RCTDevLoadingViewProtocol.h in Headers */, + 46EB2E00038790 /* RCTDevLoadingViewSetEnabled.h in Headers */, + 46EB2E00037590 /* RCTDevMenu.h in Headers */, + 46EB2E000375A0 /* RCTDevSettings.h in Headers */, + 46EB2E000375B0 /* RCTDevSplitBundleLoader.h in Headers */, + 46EB2E00038870 /* RCTDiffClampAnimatedNode.h in Headers */, + 46EB2E00037EC0 /* RCTDisplayLink.h in Headers */, + 46EB2E000389A0 /* RCTDisplayWeakRefreshable.h in Headers */, + 46EB2E00038880 /* RCTDivisionAnimatedNode.h in Headers */, + 46EB2E00037ED0 /* RCTErrorCustomizer.h in Headers */, + 46EB2E00037EE0 /* RCTErrorInfo.h in Headers */, + 46EB2E00038810 /* RCTEventAnimation.h in Headers */, + 46EB2E000375C0 /* RCTEventDispatcher.h in Headers */, + 46EB2E00037EF0 /* RCTEventDispatcherProtocol.h in Headers */, + 46EB2E000382D0 /* RCTEventEmitter.h in Headers */, + 46EB2E000375D0 /* RCTExceptionsManager.h in Headers */, + 46EB2E00038980 /* RCTFileReaderModule.h in Headers */, + 46EB2E00038B20 /* RCTFileRequestHandler.h in Headers */, + 46EB2E000382C0 /* RCTFollyConvert.h in Headers */, + 46EB2E00038450 /* RCTFont.h in Headers */, + 46EB2E000375E0 /* RCTFPSGraph.h in Headers */, + 46EB2E00038820 /* RCTFrameAnimation.h in Headers */, + 46EB2E00037F00 /* RCTFrameUpdate.h in Headers */, + 46EB2E000389B0 /* RCTGIFImageDecoder.h in Headers */, + 46EB2E00038B30 /* RCTHTTPRequestHandler.h in Headers */, + 46EB2E000375F0 /* RCTI18nManager.h in Headers */, + 46EB2E000382E0 /* RCTI18nUtil.h in Headers */, + 46EB2E000389C0 /* RCTImageBlurUtils.h in Headers */, + 46EB2E000389D0 /* RCTImageCache.h in Headers */, + 46EB2E000389E0 /* RCTImageDataDecoder.h in Headers */, + 46EB2E000389F0 /* RCTImageEditingManager.h in Headers */, + 46EB2E00038A00 /* RCTImageLoader.h in Headers */, + 46EB2E00038A10 /* RCTImageLoaderLoggable.h in Headers */, + 46EB2E00038A20 /* RCTImageLoaderProtocol.h in Headers */, + 46EB2E00038A30 /* RCTImageLoaderWithAttributionProtocol.h in Headers */, + 46EB2E00038A40 /* RCTImagePlugins.h in Headers */, + 46EB2E00038A50 /* RCTImageShadowView.h in Headers */, + 46EB2E00037F10 /* RCTImageSource.h in Headers */, + 46EB2E00038A60 /* RCTImageStoreManager.h in Headers */, + 46EB2E00038A70 /* RCTImageURLLoader.h in Headers */, + 46EB2E00038A80 /* RCTImageURLLoaderWithAttribution.h in Headers */, + 46EB2E00038A90 /* RCTImageUtils.h in Headers */, + 46EB2E00038AA0 /* RCTImageView.h in Headers */, + 46EB2E00038AB0 /* RCTImageViewManager.h in Headers */, + 46EB2E00037F20 /* RCTInitializing.h in Headers */, + 46EB2E00038CD0 /* RCTInputAccessoryShadowView.h in Headers */, + 46EB2E00038CE0 /* RCTInputAccessoryView.h in Headers */, + 46EB2E00038CF0 /* RCTInputAccessoryViewContent.h in Headers */, + 46EB2E00038D00 /* RCTInputAccessoryViewManager.h in Headers */, + 46EB2E000387D0 /* RCTInspector.h in Headers */, + 46EB2E000387A0 /* RCTInspectorDevServerHelper.h in Headers */, + 46EB2E000387E0 /* RCTInspectorPackagerConnection.h in Headers */, + 46EB2E00038890 /* RCTInterpolationAnimatedNode.h in Headers */, + 46EB2E00037F30 /* RCTInvalidating.h in Headers */, + 46EB2E00037F40 /* RCTJavaScriptExecutor.h in Headers */, + 46EB2E00037F50 /* RCTJavaScriptLoader.h in Headers */, + 46EB2E00038230 /* RCTJSIExecutorRuntimeInstaller.h in Headers */, + 46EB2E00037F60 /* RCTJSScriptLoaderModule.h in Headers */, + 46EB2E00037F70 /* RCTJSStackFrame.h in Headers */, + 46EB2E00037F80 /* RCTJSThread.h in Headers */, + 46EB2E00037600 /* RCTKeyboardObserver.h in Headers */, + 46EB2E00037F90 /* RCTKeyCommands.h in Headers */, + 46EB2E00038460 /* RCTLayout.h in Headers */, + 46EB2E000382F0 /* RCTLayoutAnimation.h in Headers */, + 46EB2E00038300 /* RCTLayoutAnimationGroup.h in Headers */, + 46EB2E00038AF0 /* RCTLinkingManager.h in Headers */, + 46EB2E00038B00 /* RCTLinkingPlugins.h in Headers */, + 46EB2E00038AC0 /* RCTLocalAssetImageLoader.h in Headers */, + 46EB2E00037FA0 /* RCTLog.h in Headers */, + 46EB2E00037610 /* RCTLogBox.h in Headers */, + 46EB2E00037620 /* RCTLogBoxView.h in Headers */, + 46EB2E00038360 /* RCTMacros.h in Headers */, + 46EB2E00037FB0 /* RCTManagedPointer.h in Headers */, + 46EB2E00038470 /* RCTMaskedView.h in Headers */, + 46EB2E00038480 /* RCTMaskedViewManager.h in Headers */, + 46EB2E00038240 /* RCTMessageThread.h in Headers */, + 46EB2E00037FC0 /* RCTMockDef.h in Headers */, + 46EB2E00038490 /* RCTModalHostView.h in Headers */, + 46EB2E000384A0 /* RCTModalHostViewController.h in Headers */, + 46EB2E000384B0 /* RCTModalHostViewManager.h in Headers */, + 46EB2E000384C0 /* RCTModalManager.h in Headers */, + 46EB2E00037FD0 /* RCTModuleData.h in Headers */, + 46EB2E00037FE0 /* RCTModuleMethod.h in Headers */, + 46EB2E000388A0 /* RCTModuloAnimatedNode.h in Headers */, + 46EB2E00038C40 /* RCTMultilineTextInputView.h in Headers */, + 46EB2E00038C50 /* RCTMultilineTextInputViewManager.h in Headers */, + 46EB2E00037FF0 /* RCTMultipartDataTask.h in Headers */, + 46EB2E00038000 /* RCTMultipartStreamReader.h in Headers */, + 46EB2E000388B0 /* RCTMultiplicationAnimatedNode.h in Headers */, + 46EB2E00038940 /* RCTNativeAnimatedModule.h in Headers */, + 46EB2E00038950 /* RCTNativeAnimatedNodesManager.h in Headers */, + 46EB2E00038960 /* RCTNativeAnimatedTurboModule.h in Headers */, + 46EB2E000382B0 /* RCTNativeModule.h in Headers */, + 46EB2E00038B40 /* RCTNetworking.h in Headers */, + 46EB2E00038B50 /* RCTNetworkPlugins.h in Headers */, + 46EB2E00038B60 /* RCTNetworkTask.h in Headers */, + 46EB2E00038010 /* RCTNullability.h in Headers */, + 46EB2E00038250 /* RCTObjcExecutor.h in Headers */, + 46EB2E000387B0 /* RCTPackagerClient.h in Headers */, + 46EB2E000387C0 /* RCTPackagerConnection.h in Headers */, + 46EB2E00038020 /* RCTParserUtils.h in Headers */, + 46EB2E00038030 /* RCTPerformanceLogger.h in Headers */, + 46EB2E00038040 /* RCTPerformanceLoggerLabels.h in Headers */, + 46EB2E00037630 /* RCTPlatform.h in Headers */, + 46EB2E00038050 /* RCTPLTag.h in Headers */, + 46EB2E000384D0 /* RCTPointerEvents.h in Headers */, + 46EB2E00038370 /* RCTProfile.h in Headers */, + 46EB2E000384E0 /* RCTProgressViewManager.h in Headers */, + 46EB2E000388C0 /* RCTPropsAnimatedNode.h in Headers */, + 46EB2E00038BB0 /* RCTRawTextShadowView.h in Headers */, + 46EB2E00038BC0 /* RCTRawTextViewManager.h in Headers */, + 46EB2E00038DB0 /* RCTReconnectingWebSocket.h in Headers */, + 46EB2E00037640 /* RCTRedBox.h in Headers */, + 46EB2E00038310 /* RCTRedBoxExtraDataViewController.h in Headers */, + 46EB2E00038060 /* RCTRedBoxSetEnabled.h in Headers */, + 46EB2E000385E0 /* RCTRefreshableProtocol.h in Headers */, + 46EB2E000385F0 /* RCTRefreshControl.h in Headers */, + 46EB2E00038600 /* RCTRefreshControlManager.h in Headers */, + 46EB2E00038070 /* RCTReloadCommand.h in Headers */, + 46EB2E00038AD0 /* RCTResizeMode.h in Headers */, + 46EB2E00038080 /* RCTRootContentView.h in Headers */, + 46EB2E000384F0 /* RCTRootShadowView.h in Headers */, + 46EB2E00038090 /* RCTRootView.h in Headers */, + 46EB2E000380A0 /* RCTRootViewDelegate.h in Headers */, + 46EB2E000380B0 /* RCTRootViewInternal.h in Headers */, + 46EB2E00038610 /* RCTSafeAreaShadowView.h in Headers */, + 46EB2E00038620 /* RCTSafeAreaView.h in Headers */, + 46EB2E00038630 /* RCTSafeAreaViewLocalData.h in Headers */, + 46EB2E00038640 /* RCTSafeAreaViewManager.h in Headers */, + 46EB2E00038650 /* RCTScrollableProtocol.h in Headers */, + 46EB2E00038660 /* RCTScrollContentShadowView.h in Headers */, + 46EB2E00038670 /* RCTScrollContentView.h in Headers */, + 46EB2E00038680 /* RCTScrollContentViewManager.h in Headers */, + 46EB2E00038690 /* RCTScrollEvent.h in Headers */, + 46EB2E000386A0 /* RCTScrollView.h in Headers */, + 46EB2E000386B0 /* RCTScrollViewManager.h in Headers */, + 46EB2E00038500 /* RCTSegmentedControl.h in Headers */, + 46EB2E00038510 /* RCTSegmentedControlManager.h in Headers */, + 46EB2E00038B70 /* RCTSettingsManager.h in Headers */, + 46EB2E00038B80 /* RCTSettingsPlugins.h in Headers */, + 46EB2E00038540 /* RCTShadowView.h in Headers */, + 46EB2E00038520 /* RCTShadowView+Internal.h in Headers */, + 46EB2E00038530 /* RCTShadowView+Layout.h in Headers */, + 46EB2E00038D20 /* RCTSinglelineTextInputView.h in Headers */, + 46EB2E00038D30 /* RCTSinglelineTextInputViewManager.h in Headers */, + 46EB2E00038550 /* RCTSlider.h in Headers */, + 46EB2E00038560 /* RCTSliderManager.h in Headers */, + 46EB2E00037650 /* RCTSourceCode.h in Headers */, + 46EB2E00038830 /* RCTSpringAnimation.h in Headers */, + 46EB2E00038DC0 /* RCTSRWebSocket.h in Headers */, + 46EB2E00037660 /* RCTStatusBarManager.h in Headers */, + 46EB2E000388D0 /* RCTStyleAnimatedNode.h in Headers */, + 46EB2E000388E0 /* RCTSubtractionAnimatedNode.h in Headers */, + 46EB2E00038140 /* RCTSurface.h in Headers */, + 46EB2E00038150 /* RCTSurfaceDelegate.h in Headers */, + 46EB2E000381D0 /* RCTSurfaceHostingProxyRootView.h in Headers */, + 46EB2E000381E0 /* RCTSurfaceHostingView.h in Headers */, + 46EB2E00038320 /* RCTSurfacePresenterStub.h in Headers */, + 46EB2E00038160 /* RCTSurfaceProtocol.h in Headers */, + 46EB2E00038170 /* RCTSurfaceRootShadowView.h in Headers */, + 46EB2E00038180 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, + 46EB2E00038190 /* RCTSurfaceRootView.h in Headers */, + 46EB2E000381F0 /* RCTSurfaceSizeMeasureMode.h in Headers */, + 46EB2E000381A0 /* RCTSurfaceStage.h in Headers */, + 46EB2E000381C0 /* RCTSurfaceView.h in Headers */, + 46EB2E000381B0 /* RCTSurfaceView+Internal.h in Headers */, + 46EB2E00038570 /* RCTSwitch.h in Headers */, + 46EB2E00038580 /* RCTSwitchManager.h in Headers */, + 46EB2E00038BE0 /* RCTTextAttributes.h in Headers */, + 46EB2E00038590 /* RCTTextDecorationLineType.h in Headers */, + 46EB2E00038D10 /* RCTTextSelection.h in Headers */, + 46EB2E00038C10 /* RCTTextShadowView.h in Headers */, + 46EB2E00038BF0 /* RCTTextTransform.h in Headers */, + 46EB2E00038C20 /* RCTTextView.h in Headers */, + 46EB2E00038C30 /* RCTTextViewManager.h in Headers */, + 46EB2E00037670 /* RCTTiming.h in Headers */, + 46EB2E000380C0 /* RCTTouchEvent.h in Headers */, + 46EB2E000380D0 /* RCTTouchHandler.h in Headers */, + 46EB2E000388F0 /* RCTTrackingAnimatedNode.h in Headers */, + 46EB2E00038900 /* RCTTransformAnimatedNode.h in Headers */, + 46EB2E00038AE0 /* RCTUIImageViewAnimated.h in Headers */, + 46EB2E00038330 /* RCTUIManager.h in Headers */, + 46EB2E00038340 /* RCTUIManagerObserverCoordinator.h in Headers */, + 46EB2E00038350 /* RCTUIManagerUtils.h in Headers */, + 46EB2E00038D40 /* RCTUITextField.h in Headers */, + 46EB2E00038C60 /* RCTUITextView.h in Headers */, + 46EB2E00038380 /* RCTUIUtils.h in Headers */, + 46EB2E000380E0 /* RCTURLRequestDelegate.h in Headers */, + 46EB2E000380F0 /* RCTURLRequestHandler.h in Headers */, + 46EB2E00038100 /* RCTUtils.h in Headers */, + 46EB2E00038110 /* RCTUtilsUIOverride.h in Headers */, + 46EB2E00038910 /* RCTValueAnimatedNode.h in Headers */, + 46EB2E00038120 /* RCTVersion.h in Headers */, + 46EB2E00038D70 /* RCTVibration.h in Headers */, + 46EB2E00038D80 /* RCTVibrationPlugins.h in Headers */, + 46EB2E000385A0 /* RCTView.h in Headers */, + 46EB2E000385B0 /* RCTViewManager.h in Headers */, + 46EB2E000385C0 /* RCTViewUtils.h in Headers */, + 46EB2E00038D50 /* RCTVirtualTextShadowView.h in Headers */, + 46EB2E00038D60 /* RCTVirtualTextViewManager.h in Headers */, + 46EB2E00038130 /* RCTWeakProxy.h in Headers */, + 46EB2E00037680 /* RCTWebSocketExecutor.h in Headers */, + 46EB2E00037690 /* RCTWebSocketModule.h in Headers */, + 46EB2E000385D0 /* RCTWrapperViewController.h in Headers */, + 46EB2E00038E10 /* React-Core-umbrella.h in Headers */, + 46EB2E000386C0 /* UIView+Private.h in Headers */, + 46EB2E000386D0 /* UIView+React.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00038EA0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039430 /* Headers */ = { + 46EB2E000391C0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039620 /* RCTAdditionAnimatedNode.h in Headers */, - 46EB2E00039630 /* RCTAnimatedNode.h in Headers */, - 46EB2E000395D0 /* RCTAnimationDriver.h in Headers */, - 46EB2E00039700 /* RCTAnimationPlugins.h in Headers */, - 46EB2E00039710 /* RCTAnimationUtils.h in Headers */, - 46EB2E00039640 /* RCTColorAnimatedNode.h in Headers */, - 46EB2E000395E0 /* RCTDecayAnimation.h in Headers */, - 46EB2E00039650 /* RCTDiffClampAnimatedNode.h in Headers */, - 46EB2E00039660 /* RCTDivisionAnimatedNode.h in Headers */, - 46EB2E000395F0 /* RCTEventAnimation.h in Headers */, - 46EB2E00039600 /* RCTFrameAnimation.h in Headers */, - 46EB2E00039670 /* RCTInterpolationAnimatedNode.h in Headers */, - 46EB2E00039680 /* RCTModuloAnimatedNode.h in Headers */, - 46EB2E00039690 /* RCTMultiplicationAnimatedNode.h in Headers */, - 46EB2E00039720 /* RCTNativeAnimatedModule.h in Headers */, - 46EB2E00039730 /* RCTNativeAnimatedNodesManager.h in Headers */, - 46EB2E00039740 /* RCTNativeAnimatedTurboModule.h in Headers */, - 46EB2E000396A0 /* RCTPropsAnimatedNode.h in Headers */, - 46EB2E00039610 /* RCTSpringAnimation.h in Headers */, - 46EB2E000396B0 /* RCTStyleAnimatedNode.h in Headers */, - 46EB2E000396C0 /* RCTSubtractionAnimatedNode.h in Headers */, - 46EB2E000396D0 /* RCTTrackingAnimatedNode.h in Headers */, - 46EB2E000396E0 /* RCTTransformAnimatedNode.h in Headers */, - 46EB2E000396F0 /* RCTValueAnimatedNode.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00039800 /* Headers */ = { + 46EB2E000393B0 /* RCTAdditionAnimatedNode.h in Headers */, + 46EB2E000393C0 /* RCTAnimatedNode.h in Headers */, + 46EB2E00039360 /* RCTAnimationDriver.h in Headers */, + 46EB2E00039490 /* RCTAnimationPlugins.h in Headers */, + 46EB2E000394A0 /* RCTAnimationUtils.h in Headers */, + 46EB2E000393D0 /* RCTColorAnimatedNode.h in Headers */, + 46EB2E00039370 /* RCTDecayAnimation.h in Headers */, + 46EB2E000393E0 /* RCTDiffClampAnimatedNode.h in Headers */, + 46EB2E000393F0 /* RCTDivisionAnimatedNode.h in Headers */, + 46EB2E00039380 /* RCTEventAnimation.h in Headers */, + 46EB2E00039390 /* RCTFrameAnimation.h in Headers */, + 46EB2E00039400 /* RCTInterpolationAnimatedNode.h in Headers */, + 46EB2E00039410 /* RCTModuloAnimatedNode.h in Headers */, + 46EB2E00039420 /* RCTMultiplicationAnimatedNode.h in Headers */, + 46EB2E000394B0 /* RCTNativeAnimatedModule.h in Headers */, + 46EB2E000394C0 /* RCTNativeAnimatedNodesManager.h in Headers */, + 46EB2E000394D0 /* RCTNativeAnimatedTurboModule.h in Headers */, + 46EB2E00039430 /* RCTPropsAnimatedNode.h in Headers */, + 46EB2E000393A0 /* RCTSpringAnimation.h in Headers */, + 46EB2E00039440 /* RCTStyleAnimatedNode.h in Headers */, + 46EB2E00039450 /* RCTSubtractionAnimatedNode.h in Headers */, + 46EB2E00039460 /* RCTTrackingAnimatedNode.h in Headers */, + 46EB2E00039470 /* RCTTransformAnimatedNode.h in Headers */, + 46EB2E00039480 /* RCTValueAnimatedNode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00039590 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039870 /* RCTBlobCollector.h in Headers */, - 46EB2E00039880 /* RCTBlobManager.h in Headers */, - 46EB2E00039890 /* RCTBlobPlugins.h in Headers */, - 46EB2E000398A0 /* RCTFileReaderModule.h in Headers */, + 46EB2E00039600 /* RCTBlobCollector.h in Headers */, + 46EB2E00039610 /* RCTBlobManager.h in Headers */, + 46EB2E00039620 /* RCTBlobPlugins.h in Headers */, + 46EB2E00039630 /* RCTFileReaderModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039960 /* Headers */ = { + 46EB2E000396F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039B50 /* Headers */ = { + 46EB2E000398E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039C50 /* Headers */ = { + 46EB2E000399E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039D90 /* Headers */ = { + 46EB2E00039B20 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039E90 /* Headers */ = { + 46EB2E00039C20 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A0E0 /* NSTextStorage+FontScaling.h in Headers */, - 46EB2E0003A150 /* RCTBackedTextInputDelegate.h in Headers */, - 46EB2E0003A160 /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 46EB2E0003A170 /* RCTBackedTextInputViewProtocol.h in Headers */, - 46EB2E0003A180 /* RCTBaseTextInputShadowView.h in Headers */, - 46EB2E0003A190 /* RCTBaseTextInputView.h in Headers */, - 46EB2E0003A1A0 /* RCTBaseTextInputViewManager.h in Headers */, - 46EB2E0003A070 /* RCTBaseTextShadowView.h in Headers */, - 46EB2E0003A080 /* RCTBaseTextViewManager.h in Headers */, - 46EB2E0003A0B0 /* RCTConvert+Text.h in Headers */, - 46EB2E0003A1B0 /* RCTInputAccessoryShadowView.h in Headers */, - 46EB2E0003A1C0 /* RCTInputAccessoryView.h in Headers */, - 46EB2E0003A1D0 /* RCTInputAccessoryViewContent.h in Headers */, - 46EB2E0003A1E0 /* RCTInputAccessoryViewManager.h in Headers */, - 46EB2E0003A120 /* RCTMultilineTextInputView.h in Headers */, - 46EB2E0003A130 /* RCTMultilineTextInputViewManager.h in Headers */, - 46EB2E0003A090 /* RCTRawTextShadowView.h in Headers */, - 46EB2E0003A0A0 /* RCTRawTextViewManager.h in Headers */, - 46EB2E0003A200 /* RCTSinglelineTextInputView.h in Headers */, - 46EB2E0003A210 /* RCTSinglelineTextInputViewManager.h in Headers */, - 46EB2E0003A0C0 /* RCTTextAttributes.h in Headers */, - 46EB2E0003A1F0 /* RCTTextSelection.h in Headers */, - 46EB2E0003A0F0 /* RCTTextShadowView.h in Headers */, - 46EB2E0003A0D0 /* RCTTextTransform.h in Headers */, - 46EB2E0003A100 /* RCTTextView.h in Headers */, - 46EB2E0003A110 /* RCTTextViewManager.h in Headers */, - 46EB2E0003A220 /* RCTUITextField.h in Headers */, - 46EB2E0003A140 /* RCTUITextView.h in Headers */, - 46EB2E0003A230 /* RCTVirtualTextShadowView.h in Headers */, - 46EB2E0003A240 /* RCTVirtualTextViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003A300 /* Headers */ = { + 46EB2E00039E70 /* NSTextStorage+FontScaling.h in Headers */, + 46EB2E00039EE0 /* RCTBackedTextInputDelegate.h in Headers */, + 46EB2E00039EF0 /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 46EB2E00039F00 /* RCTBackedTextInputViewProtocol.h in Headers */, + 46EB2E00039F10 /* RCTBaseTextInputShadowView.h in Headers */, + 46EB2E00039F20 /* RCTBaseTextInputView.h in Headers */, + 46EB2E00039F30 /* RCTBaseTextInputViewManager.h in Headers */, + 46EB2E00039E00 /* RCTBaseTextShadowView.h in Headers */, + 46EB2E00039E10 /* RCTBaseTextViewManager.h in Headers */, + 46EB2E00039E40 /* RCTConvert+Text.h in Headers */, + 46EB2E00039F40 /* RCTInputAccessoryShadowView.h in Headers */, + 46EB2E00039F50 /* RCTInputAccessoryView.h in Headers */, + 46EB2E00039F60 /* RCTInputAccessoryViewContent.h in Headers */, + 46EB2E00039F70 /* RCTInputAccessoryViewManager.h in Headers */, + 46EB2E00039EB0 /* RCTMultilineTextInputView.h in Headers */, + 46EB2E00039EC0 /* RCTMultilineTextInputViewManager.h in Headers */, + 46EB2E00039E20 /* RCTRawTextShadowView.h in Headers */, + 46EB2E00039E30 /* RCTRawTextViewManager.h in Headers */, + 46EB2E00039F90 /* RCTSinglelineTextInputView.h in Headers */, + 46EB2E00039FA0 /* RCTSinglelineTextInputViewManager.h in Headers */, + 46EB2E00039E50 /* RCTTextAttributes.h in Headers */, + 46EB2E00039F80 /* RCTTextSelection.h in Headers */, + 46EB2E00039E80 /* RCTTextShadowView.h in Headers */, + 46EB2E00039E60 /* RCTTextTransform.h in Headers */, + 46EB2E00039E90 /* RCTTextView.h in Headers */, + 46EB2E00039EA0 /* RCTTextViewManager.h in Headers */, + 46EB2E00039FB0 /* RCTUITextField.h in Headers */, + 46EB2E00039ED0 /* RCTUITextView.h in Headers */, + 46EB2E00039FC0 /* RCTVirtualTextShadowView.h in Headers */, + 46EB2E00039FD0 /* RCTVirtualTextViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003A090 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A400 /* Headers */ = { + 46EB2E0003A190 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A440 /* Array.h in Headers */, - 46EB2E0003A450 /* AString.h in Headers */, - 46EB2E0003A460 /* Base.h in Headers */, - 46EB2E0003A470 /* Bool.h in Headers */, - 46EB2E0003A480 /* Bridging.h in Headers */, - 46EB2E0003A490 /* CallbackWrapper.h in Headers */, - 46EB2E0003A4A0 /* Class.h in Headers */, - 46EB2E0003A4B0 /* Convert.h in Headers */, - 46EB2E0003A4C0 /* Error.h in Headers */, - 46EB2E0003A4D0 /* Function.h in Headers */, - 46EB2E0003A4E0 /* LongLivedObject.h in Headers */, - 46EB2E0003A4F0 /* Number.h in Headers */, - 46EB2E0003A500 /* Object.h in Headers */, - 46EB2E0003A510 /* Promise.h in Headers */, - 46EB2E0003A520 /* Value.h in Headers */, + 46EB2E0003A1D0 /* Array.h in Headers */, + 46EB2E0003A1E0 /* AString.h in Headers */, + 46EB2E0003A1F0 /* Base.h in Headers */, + 46EB2E0003A200 /* Bool.h in Headers */, + 46EB2E0003A210 /* Bridging.h in Headers */, + 46EB2E0003A220 /* CallbackWrapper.h in Headers */, + 46EB2E0003A230 /* Class.h in Headers */, + 46EB2E0003A240 /* Convert.h in Headers */, + 46EB2E0003A250 /* Error.h in Headers */, + 46EB2E0003A260 /* Function.h in Headers */, + 46EB2E0003A270 /* LongLivedObject.h in Headers */, + 46EB2E0003A280 /* Number.h in Headers */, + 46EB2E0003A290 /* Object.h in Headers */, + 46EB2E0003A2A0 /* Promise.h in Headers */, + 46EB2E0003A2B0 /* Value.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A650 /* Headers */ = { + 46EB2E0003A3E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A730 /* CxxModule.h in Headers */, - 46EB2E0003A740 /* CxxNativeModule.h in Headers */, - 46EB2E0003A750 /* ErrorUtils.h in Headers */, - 46EB2E0003A760 /* Instance.h in Headers */, - 46EB2E0003A780 /* JsArgumentHelpers.h in Headers */, - 46EB2E0003A770 /* JsArgumentHelpers-inl.h in Headers */, - 46EB2E0003A790 /* JSBigString.h in Headers */, - 46EB2E0003A7A0 /* JSBundleType.h in Headers */, - 46EB2E0003A7B0 /* JSExecutor.h in Headers */, - 46EB2E0003A7C0 /* JSIndexedRAMBundle.h in Headers */, - 46EB2E0003A7D0 /* JSModulesUnbundle.h in Headers */, - 46EB2E0003A7E0 /* MessageQueueThread.h in Headers */, - 46EB2E0003A7F0 /* MethodCall.h in Headers */, - 46EB2E0003A800 /* ModuleRegistry.h in Headers */, - 46EB2E0003A810 /* NativeModule.h in Headers */, - 46EB2E0003A820 /* NativeToJsBridge.h in Headers */, - 46EB2E0003A830 /* RAMBundleRegistry.h in Headers */, - 46EB2E0003A840 /* ReactMarker.h in Headers */, - 46EB2E0003A850 /* ReactNativeVersion.h in Headers */, - 46EB2E0003A860 /* RecoverableError.h in Headers */, - 46EB2E0003A870 /* SharedProxyCxxModule.h in Headers */, - 46EB2E0003A880 /* SystraceSection.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003A940 /* Headers */ = { + 46EB2E0003A4C0 /* CxxModule.h in Headers */, + 46EB2E0003A4D0 /* CxxNativeModule.h in Headers */, + 46EB2E0003A4E0 /* ErrorUtils.h in Headers */, + 46EB2E0003A4F0 /* Instance.h in Headers */, + 46EB2E0003A510 /* JsArgumentHelpers.h in Headers */, + 46EB2E0003A500 /* JsArgumentHelpers-inl.h in Headers */, + 46EB2E0003A520 /* JSBigString.h in Headers */, + 46EB2E0003A530 /* JSBundleType.h in Headers */, + 46EB2E0003A540 /* JSExecutor.h in Headers */, + 46EB2E0003A550 /* JSIndexedRAMBundle.h in Headers */, + 46EB2E0003A560 /* JSModulesUnbundle.h in Headers */, + 46EB2E0003A570 /* MessageQueueThread.h in Headers */, + 46EB2E0003A580 /* MethodCall.h in Headers */, + 46EB2E0003A590 /* ModuleRegistry.h in Headers */, + 46EB2E0003A5A0 /* NativeModule.h in Headers */, + 46EB2E0003A5B0 /* NativeToJsBridge.h in Headers */, + 46EB2E0003A5C0 /* RAMBundleRegistry.h in Headers */, + 46EB2E0003A5D0 /* ReactMarker.h in Headers */, + 46EB2E0003A5E0 /* ReactNativeVersion.h in Headers */, + 46EB2E0003A5F0 /* RecoverableError.h in Headers */, + 46EB2E0003A600 /* SharedProxyCxxModule.h in Headers */, + 46EB2E0003A610 /* SystraceSection.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003A6D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AA80 /* AsyncPauseState.h in Headers */, - 46EB2E0003AAD0 /* AutoAttachUtils.h in Headers */, - 46EB2E0003AB60 /* CallbackOStream.h in Headers */, - 46EB2E0003AAE0 /* Connection.h in Headers */, - 46EB2E0003AAF0 /* ConnectionDemux.h in Headers */, - 46EB2E0003AA90 /* Exceptions.h in Headers */, - 46EB2E0003AA60 /* HermesExecutorFactory.h in Headers */, - 46EB2E0003AAA0 /* Inspector.h in Headers */, - 46EB2E0003AAB0 /* InspectorState.h in Headers */, - 46EB2E0003AA70 /* JSITracing.h in Headers */, - 46EB2E0003AB00 /* MessageConverters.h in Headers */, - 46EB2E0003AB10 /* MessageInterfaces.h in Headers */, - 46EB2E0003AB20 /* MessageTypes.h in Headers */, - 46EB2E0003AB30 /* MessageTypesInlines.h in Headers */, - 46EB2E0003AB40 /* Registration.h in Headers */, - 46EB2E0003AB50 /* RemoteObjectsTable.h in Headers */, - 46EB2E0003AAC0 /* RuntimeAdapter.h in Headers */, - 46EB2E0003AB70 /* SerialExecutor.h in Headers */, - 46EB2E0003AB80 /* Thread.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003AC40 /* Headers */ = { + 46EB2E0003A810 /* AsyncPauseState.h in Headers */, + 46EB2E0003A860 /* AutoAttachUtils.h in Headers */, + 46EB2E0003A8F0 /* CallbackOStream.h in Headers */, + 46EB2E0003A870 /* Connection.h in Headers */, + 46EB2E0003A880 /* ConnectionDemux.h in Headers */, + 46EB2E0003A820 /* Exceptions.h in Headers */, + 46EB2E0003A7F0 /* HermesExecutorFactory.h in Headers */, + 46EB2E0003A830 /* Inspector.h in Headers */, + 46EB2E0003A840 /* InspectorState.h in Headers */, + 46EB2E0003A800 /* JSITracing.h in Headers */, + 46EB2E0003A890 /* MessageConverters.h in Headers */, + 46EB2E0003A8A0 /* MessageInterfaces.h in Headers */, + 46EB2E0003A8B0 /* MessageTypes.h in Headers */, + 46EB2E0003A8C0 /* MessageTypesInlines.h in Headers */, + 46EB2E0003A8D0 /* Registration.h in Headers */, + 46EB2E0003A8E0 /* RemoteObjectsTable.h in Headers */, + 46EB2E0003A850 /* RuntimeAdapter.h in Headers */, + 46EB2E0003A900 /* SerialExecutor.h in Headers */, + 46EB2E0003A910 /* Thread.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003A9D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003ACD0 /* decorator.h in Headers */, - 46EB2E0003ACE0 /* instrumentation.h in Headers */, - 46EB2E0003ACC0 /* JSCRuntime.h in Headers */, - 46EB2E0003AD00 /* jsi.h in Headers */, - 46EB2E0003ACF0 /* jsi-inl.h in Headers */, - 46EB2E0003AD10 /* JSIDynamic.h in Headers */, - 46EB2E0003AD20 /* jsilib.h in Headers */, - 46EB2E0003AD30 /* threadsafe.h in Headers */, + 46EB2E0003AA60 /* decorator.h in Headers */, + 46EB2E0003AA70 /* instrumentation.h in Headers */, + 46EB2E0003AA50 /* JSCRuntime.h in Headers */, + 46EB2E0003AA90 /* jsi.h in Headers */, + 46EB2E0003AA80 /* jsi-inl.h in Headers */, + 46EB2E0003AAA0 /* JSIDynamic.h in Headers */, + 46EB2E0003AAB0 /* jsilib.h in Headers */, + 46EB2E0003AAC0 /* threadsafe.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003ADF0 /* Headers */ = { + 46EB2E0003AB80 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AE40 /* JSIExecutor.h in Headers */, - 46EB2E0003AE50 /* JSINativeModules.h in Headers */, + 46EB2E0003ABD0 /* JSIExecutor.h in Headers */, + 46EB2E0003ABE0 /* JSINativeModules.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AF10 /* Headers */ = { + 46EB2E0003ACA0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AF50 /* InspectorInterfaces.h in Headers */, + 46EB2E0003ACE0 /* InspectorInterfaces.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B010 /* Headers */ = { + 46EB2E0003ADA0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B050 /* react_native_log.h in Headers */, + 46EB2E0003ADE0 /* react_native_log.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B110 /* Headers */ = { + 46EB2E0003AEA0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B150 /* BridgeNativeModulePerfLogger.h in Headers */, - 46EB2E0003B160 /* NativeModulePerfLogger.h in Headers */, + 46EB2E0003AEE0 /* BridgeNativeModulePerfLogger.h in Headers */, + 46EB2E0003AEF0 /* NativeModulePerfLogger.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B290 /* Headers */ = { + 46EB2E0003B020 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B340 /* LongLivedObject.h in Headers */, - 46EB2E0003B3A0 /* RCTBlockGuard.h in Headers */, - 46EB2E0003B3B0 /* RCTTurboModule.h in Headers */, - 46EB2E0003B3C0 /* RCTTurboModuleManager.h in Headers */, - 46EB2E0003B420 /* ReactCommon-umbrella.h in Headers */, - 46EB2E0003B350 /* TurboCxxModule.h in Headers */, - 46EB2E0003B360 /* TurboModule.h in Headers */, - 46EB2E0003B370 /* TurboModuleBinding.h in Headers */, - 46EB2E0003B380 /* TurboModulePerfLogger.h in Headers */, - 46EB2E0003B390 /* TurboModuleUtils.h in Headers */, + 46EB2E0003B0D0 /* LongLivedObject.h in Headers */, + 46EB2E0003B130 /* RCTBlockGuard.h in Headers */, + 46EB2E0003B140 /* RCTTurboModule.h in Headers */, + 46EB2E0003B150 /* RCTTurboModuleManager.h in Headers */, + 46EB2E0003B1B0 /* ReactCommon-umbrella.h in Headers */, + 46EB2E0003B0E0 /* TurboCxxModule.h in Headers */, + 46EB2E0003B0F0 /* TurboModule.h in Headers */, + 46EB2E0003B100 /* TurboModuleBinding.h in Headers */, + 46EB2E0003B110 /* TurboModulePerfLogger.h in Headers */, + 46EB2E0003B120 /* TurboModuleUtils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B4B0 /* Headers */ = { + 46EB2E0003B240 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003BCE0 /* NSBezierPath+SDRoundedCorners.h in Headers */, - 46EB2E0003B930 /* NSButton+WebCache.h in Headers */, - 46EB2E0003B940 /* NSData+ImageContentType.h in Headers */, - 46EB2E0003B950 /* NSImage+Compatibility.h in Headers */, - 46EB2E0003B960 /* SDAnimatedImage.h in Headers */, - 46EB2E0003B970 /* SDAnimatedImagePlayer.h in Headers */, - 46EB2E0003B980 /* SDAnimatedImageRep.h in Headers */, - 46EB2E0003B9A0 /* SDAnimatedImageView.h in Headers */, - 46EB2E0003B990 /* SDAnimatedImageView+WebCache.h in Headers */, - 46EB2E0003BCF0 /* SDAssociatedObject.h in Headers */, - 46EB2E0003BD00 /* SDAsyncBlockOperation.h in Headers */, - 46EB2E0003BD10 /* SDDeviceHelper.h in Headers */, - 46EB2E0003B9B0 /* SDDiskCache.h in Headers */, - 46EB2E0003BD20 /* SDDisplayLink.h in Headers */, - 46EB2E0003BD30 /* SDFileAttributeHelper.h in Headers */, - 46EB2E0003B9C0 /* SDGraphicsImageRenderer.h in Headers */, - 46EB2E0003B9D0 /* SDImageAPNGCoder.h in Headers */, - 46EB2E0003BD40 /* SDImageAssetManager.h in Headers */, - 46EB2E0003B9E0 /* SDImageAWebPCoder.h in Headers */, - 46EB2E0003B9F0 /* SDImageCache.h in Headers */, - 46EB2E0003BA00 /* SDImageCacheConfig.h in Headers */, - 46EB2E0003BA10 /* SDImageCacheDefine.h in Headers */, - 46EB2E0003BA20 /* SDImageCachesManager.h in Headers */, - 46EB2E0003BD50 /* SDImageCachesManagerOperation.h in Headers */, - 46EB2E0003BA30 /* SDImageCoder.h in Headers */, - 46EB2E0003BA40 /* SDImageCoderHelper.h in Headers */, - 46EB2E0003BA50 /* SDImageCodersManager.h in Headers */, - 46EB2E0003BA60 /* SDImageFrame.h in Headers */, - 46EB2E0003BA70 /* SDImageGIFCoder.h in Headers */, - 46EB2E0003BA80 /* SDImageGraphics.h in Headers */, - 46EB2E0003BA90 /* SDImageHEICCoder.h in Headers */, - 46EB2E0003BAA0 /* SDImageIOAnimatedCoder.h in Headers */, - 46EB2E0003BD60 /* SDImageIOAnimatedCoderInternal.h in Headers */, - 46EB2E0003BAB0 /* SDImageIOCoder.h in Headers */, - 46EB2E0003BAC0 /* SDImageLoader.h in Headers */, - 46EB2E0003BAD0 /* SDImageLoadersManager.h in Headers */, - 46EB2E0003BAE0 /* SDImageTransformer.h in Headers */, - 46EB2E0003BD70 /* SDInternalMacros.h in Headers */, - 46EB2E0003BAF0 /* SDMemoryCache.h in Headers */, - 46EB2E0003BD80 /* SDmetamacros.h in Headers */, - 46EB2E0003BD90 /* SDWeakProxy.h in Headers */, - 46EB2E0003BCD0 /* SDWebImage.h in Headers */, - 46EB2E0003BB00 /* SDWebImageCacheKeyFilter.h in Headers */, - 46EB2E0003BB10 /* SDWebImageCacheSerializer.h in Headers */, - 46EB2E0003BB20 /* SDWebImageCompat.h in Headers */, - 46EB2E0003BB30 /* SDWebImageDefine.h in Headers */, - 46EB2E0003BB40 /* SDWebImageDownloader.h in Headers */, - 46EB2E0003BB50 /* SDWebImageDownloaderConfig.h in Headers */, - 46EB2E0003BB60 /* SDWebImageDownloaderDecryptor.h in Headers */, - 46EB2E0003BB70 /* SDWebImageDownloaderOperation.h in Headers */, - 46EB2E0003BB80 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 46EB2E0003BB90 /* SDWebImageDownloaderResponseModifier.h in Headers */, - 46EB2E0003BBA0 /* SDWebImageError.h in Headers */, - 46EB2E0003BBB0 /* SDWebImageIndicator.h in Headers */, - 46EB2E0003BBC0 /* SDWebImageManager.h in Headers */, - 46EB2E0003BBD0 /* SDWebImageOperation.h in Headers */, - 46EB2E0003BBE0 /* SDWebImageOptionsProcessor.h in Headers */, - 46EB2E0003BBF0 /* SDWebImagePrefetcher.h in Headers */, - 46EB2E0003BC00 /* SDWebImageTransition.h in Headers */, - 46EB2E0003BDA0 /* SDWebImageTransitionInternal.h in Headers */, - 46EB2E0003BC10 /* UIButton+WebCache.h in Headers */, - 46EB2E0003BDB0 /* UIColor+SDHexString.h in Headers */, - 46EB2E0003BC20 /* UIImage+ExtendedCacheData.h in Headers */, - 46EB2E0003BC30 /* UIImage+ForceDecode.h in Headers */, - 46EB2E0003BC40 /* UIImage+GIF.h in Headers */, - 46EB2E0003BC50 /* UIImage+MemoryCacheCost.h in Headers */, - 46EB2E0003BC60 /* UIImage+Metadata.h in Headers */, - 46EB2E0003BC70 /* UIImage+MultiFormat.h in Headers */, - 46EB2E0003BC80 /* UIImage+Transform.h in Headers */, - 46EB2E0003BC90 /* UIImageView+HighlightedWebCache.h in Headers */, - 46EB2E0003BCA0 /* UIImageView+WebCache.h in Headers */, - 46EB2E0003BCB0 /* UIView+WebCache.h in Headers */, - 46EB2E0003BCC0 /* UIView+WebCacheOperation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003BE70 /* Headers */ = { + 46EB2E0003BA70 /* NSBezierPath+SDRoundedCorners.h in Headers */, + 46EB2E0003B6C0 /* NSButton+WebCache.h in Headers */, + 46EB2E0003B6D0 /* NSData+ImageContentType.h in Headers */, + 46EB2E0003B6E0 /* NSImage+Compatibility.h in Headers */, + 46EB2E0003B6F0 /* SDAnimatedImage.h in Headers */, + 46EB2E0003B700 /* SDAnimatedImagePlayer.h in Headers */, + 46EB2E0003B710 /* SDAnimatedImageRep.h in Headers */, + 46EB2E0003B730 /* SDAnimatedImageView.h in Headers */, + 46EB2E0003B720 /* SDAnimatedImageView+WebCache.h in Headers */, + 46EB2E0003BA80 /* SDAssociatedObject.h in Headers */, + 46EB2E0003BA90 /* SDAsyncBlockOperation.h in Headers */, + 46EB2E0003BAA0 /* SDDeviceHelper.h in Headers */, + 46EB2E0003B740 /* SDDiskCache.h in Headers */, + 46EB2E0003BAB0 /* SDDisplayLink.h in Headers */, + 46EB2E0003BAC0 /* SDFileAttributeHelper.h in Headers */, + 46EB2E0003B750 /* SDGraphicsImageRenderer.h in Headers */, + 46EB2E0003B760 /* SDImageAPNGCoder.h in Headers */, + 46EB2E0003BAD0 /* SDImageAssetManager.h in Headers */, + 46EB2E0003B770 /* SDImageAWebPCoder.h in Headers */, + 46EB2E0003B780 /* SDImageCache.h in Headers */, + 46EB2E0003B790 /* SDImageCacheConfig.h in Headers */, + 46EB2E0003B7A0 /* SDImageCacheDefine.h in Headers */, + 46EB2E0003B7B0 /* SDImageCachesManager.h in Headers */, + 46EB2E0003BAE0 /* SDImageCachesManagerOperation.h in Headers */, + 46EB2E0003B7C0 /* SDImageCoder.h in Headers */, + 46EB2E0003B7D0 /* SDImageCoderHelper.h in Headers */, + 46EB2E0003B7E0 /* SDImageCodersManager.h in Headers */, + 46EB2E0003B7F0 /* SDImageFrame.h in Headers */, + 46EB2E0003B800 /* SDImageGIFCoder.h in Headers */, + 46EB2E0003B810 /* SDImageGraphics.h in Headers */, + 46EB2E0003B820 /* SDImageHEICCoder.h in Headers */, + 46EB2E0003B830 /* SDImageIOAnimatedCoder.h in Headers */, + 46EB2E0003BAF0 /* SDImageIOAnimatedCoderInternal.h in Headers */, + 46EB2E0003B840 /* SDImageIOCoder.h in Headers */, + 46EB2E0003B850 /* SDImageLoader.h in Headers */, + 46EB2E0003B860 /* SDImageLoadersManager.h in Headers */, + 46EB2E0003B870 /* SDImageTransformer.h in Headers */, + 46EB2E0003BB00 /* SDInternalMacros.h in Headers */, + 46EB2E0003B880 /* SDMemoryCache.h in Headers */, + 46EB2E0003BB10 /* SDmetamacros.h in Headers */, + 46EB2E0003BB20 /* SDWeakProxy.h in Headers */, + 46EB2E0003BA60 /* SDWebImage.h in Headers */, + 46EB2E0003B890 /* SDWebImageCacheKeyFilter.h in Headers */, + 46EB2E0003B8A0 /* SDWebImageCacheSerializer.h in Headers */, + 46EB2E0003B8B0 /* SDWebImageCompat.h in Headers */, + 46EB2E0003B8C0 /* SDWebImageDefine.h in Headers */, + 46EB2E0003B8D0 /* SDWebImageDownloader.h in Headers */, + 46EB2E0003B8E0 /* SDWebImageDownloaderConfig.h in Headers */, + 46EB2E0003B8F0 /* SDWebImageDownloaderDecryptor.h in Headers */, + 46EB2E0003B900 /* SDWebImageDownloaderOperation.h in Headers */, + 46EB2E0003B910 /* SDWebImageDownloaderRequestModifier.h in Headers */, + 46EB2E0003B920 /* SDWebImageDownloaderResponseModifier.h in Headers */, + 46EB2E0003B930 /* SDWebImageError.h in Headers */, + 46EB2E0003B940 /* SDWebImageIndicator.h in Headers */, + 46EB2E0003B950 /* SDWebImageManager.h in Headers */, + 46EB2E0003B960 /* SDWebImageOperation.h in Headers */, + 46EB2E0003B970 /* SDWebImageOptionsProcessor.h in Headers */, + 46EB2E0003B980 /* SDWebImagePrefetcher.h in Headers */, + 46EB2E0003B990 /* SDWebImageTransition.h in Headers */, + 46EB2E0003BB30 /* SDWebImageTransitionInternal.h in Headers */, + 46EB2E0003B9A0 /* UIButton+WebCache.h in Headers */, + 46EB2E0003BB40 /* UIColor+SDHexString.h in Headers */, + 46EB2E0003B9B0 /* UIImage+ExtendedCacheData.h in Headers */, + 46EB2E0003B9C0 /* UIImage+ForceDecode.h in Headers */, + 46EB2E0003B9D0 /* UIImage+GIF.h in Headers */, + 46EB2E0003B9E0 /* UIImage+MemoryCacheCost.h in Headers */, + 46EB2E0003B9F0 /* UIImage+Metadata.h in Headers */, + 46EB2E0003BA00 /* UIImage+MultiFormat.h in Headers */, + 46EB2E0003BA10 /* UIImage+Transform.h in Headers */, + 46EB2E0003BA20 /* UIImageView+HighlightedWebCache.h in Headers */, + 46EB2E0003BA30 /* UIImageView+WebCache.h in Headers */, + 46EB2E0003BA40 /* UIView+WebCache.h in Headers */, + 46EB2E0003BA50 /* UIView+WebCacheOperation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003BC00 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003BED0 /* SDImageWebPCoder.h in Headers */, - 46EB2E0003BF00 /* SDWebImageWebPCoder.h in Headers */, - 46EB2E0003BEE0 /* SDWebImageWebPCoderDefine.h in Headers */, - 46EB2E0003BEF0 /* UIImage+WebP.h in Headers */, + 46EB2E0003BC60 /* SDImageWebPCoder.h in Headers */, + 46EB2E0003BC90 /* SDWebImageWebPCoder.h in Headers */, + 46EB2E0003BC70 /* SDWebImageWebPCoderDefine.h in Headers */, + 46EB2E0003BC80 /* UIImage+WebP.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003BFC0 /* Headers */ = { + 46EB2E0003BD50 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C120 /* mz.h in Headers */, - 46EB2E0003C130 /* mz_compat.h in Headers */, - 46EB2E0003C140 /* mz_crypt.h in Headers */, - 46EB2E0003C150 /* mz_os.h in Headers */, - 46EB2E0003C160 /* mz_strm.h in Headers */, - 46EB2E0003C170 /* mz_strm_buf.h in Headers */, - 46EB2E0003C180 /* mz_strm_mem.h in Headers */, - 46EB2E0003C190 /* mz_strm_os.h in Headers */, - 46EB2E0003C1A0 /* mz_strm_pkcrypt.h in Headers */, - 46EB2E0003C1B0 /* mz_strm_split.h in Headers */, - 46EB2E0003C1C0 /* mz_strm_wzaes.h in Headers */, - 46EB2E0003C1D0 /* mz_strm_zlib.h in Headers */, - 46EB2E0003C1E0 /* mz_zip.h in Headers */, - 46EB2E0003C1F0 /* mz_zip_rw.h in Headers */, - 46EB2E0003C0F0 /* SSZipArchive.h in Headers */, - 46EB2E0003C250 /* SSZipArchive-umbrella.h in Headers */, - 46EB2E0003C100 /* SSZipCommon.h in Headers */, - 46EB2E0003C110 /* ZipArchive.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003C2E0 /* Headers */ = { + 46EB2E0003BEB0 /* mz.h in Headers */, + 46EB2E0003BEC0 /* mz_compat.h in Headers */, + 46EB2E0003BED0 /* mz_crypt.h in Headers */, + 46EB2E0003BEE0 /* mz_os.h in Headers */, + 46EB2E0003BEF0 /* mz_strm.h in Headers */, + 46EB2E0003BF00 /* mz_strm_buf.h in Headers */, + 46EB2E0003BF10 /* mz_strm_mem.h in Headers */, + 46EB2E0003BF20 /* mz_strm_os.h in Headers */, + 46EB2E0003BF30 /* mz_strm_pkcrypt.h in Headers */, + 46EB2E0003BF40 /* mz_strm_split.h in Headers */, + 46EB2E0003BF50 /* mz_strm_wzaes.h in Headers */, + 46EB2E0003BF60 /* mz_strm_zlib.h in Headers */, + 46EB2E0003BF70 /* mz_zip.h in Headers */, + 46EB2E0003BF80 /* mz_zip_rw.h in Headers */, + 46EB2E0003BE80 /* SSZipArchive.h in Headers */, + 46EB2E0003BFE0 /* SSZipArchive-umbrella.h in Headers */, + 46EB2E0003BE90 /* SSZipCommon.h in Headers */, + 46EB2E0003BEA0 /* ZipArchive.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003C070 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C550 /* NSRunLoop+SRWebSocket.h in Headers */, - 46EB2E0003C470 /* NSRunLoop+SRWebSocketPrivate.h in Headers */, - 46EB2E0003C560 /* NSURLRequest+SRWebSocket.h in Headers */, - 46EB2E0003C480 /* NSURLRequest+SRWebSocketPrivate.h in Headers */, - 46EB2E0003C570 /* SocketRocket.h in Headers */, - 46EB2E0003C4C0 /* SRConstants.h in Headers */, - 46EB2E0003C440 /* SRDelegateController.h in Headers */, - 46EB2E0003C4D0 /* SRError.h in Headers */, - 46EB2E0003C4E0 /* SRHash.h in Headers */, - 46EB2E0003C4F0 /* SRHTTPConnectMessage.h in Headers */, - 46EB2E0003C450 /* SRIOConsumer.h in Headers */, - 46EB2E0003C460 /* SRIOConsumerPool.h in Headers */, - 46EB2E0003C500 /* SRLog.h in Headers */, - 46EB2E0003C510 /* SRMutex.h in Headers */, - 46EB2E0003C4B0 /* SRPinningSecurityPolicy.h in Headers */, - 46EB2E0003C490 /* SRProxyConnect.h in Headers */, - 46EB2E0003C520 /* SRRandom.h in Headers */, - 46EB2E0003C4A0 /* SRRunLoopThread.h in Headers */, - 46EB2E0003C580 /* SRSecurityPolicy.h in Headers */, - 46EB2E0003C530 /* SRSIMDHelpers.h in Headers */, - 46EB2E0003C540 /* SRURLUtilities.h in Headers */, - 46EB2E0003C590 /* SRWebSocket.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003C650 /* Headers */ = { + 46EB2E0003C2E0 /* NSRunLoop+SRWebSocket.h in Headers */, + 46EB2E0003C200 /* NSRunLoop+SRWebSocketPrivate.h in Headers */, + 46EB2E0003C2F0 /* NSURLRequest+SRWebSocket.h in Headers */, + 46EB2E0003C210 /* NSURLRequest+SRWebSocketPrivate.h in Headers */, + 46EB2E0003C300 /* SocketRocket.h in Headers */, + 46EB2E0003C250 /* SRConstants.h in Headers */, + 46EB2E0003C1D0 /* SRDelegateController.h in Headers */, + 46EB2E0003C260 /* SRError.h in Headers */, + 46EB2E0003C270 /* SRHash.h in Headers */, + 46EB2E0003C280 /* SRHTTPConnectMessage.h in Headers */, + 46EB2E0003C1E0 /* SRIOConsumer.h in Headers */, + 46EB2E0003C1F0 /* SRIOConsumerPool.h in Headers */, + 46EB2E0003C290 /* SRLog.h in Headers */, + 46EB2E0003C2A0 /* SRMutex.h in Headers */, + 46EB2E0003C240 /* SRPinningSecurityPolicy.h in Headers */, + 46EB2E0003C220 /* SRProxyConnect.h in Headers */, + 46EB2E0003C2B0 /* SRRandom.h in Headers */, + 46EB2E0003C230 /* SRRunLoopThread.h in Headers */, + 46EB2E0003C310 /* SRSecurityPolicy.h in Headers */, + 46EB2E0003C2C0 /* SRSIMDHelpers.h in Headers */, + 46EB2E0003C2D0 /* SRURLUtilities.h in Headers */, + 46EB2E0003C320 /* SRWebSocket.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003C3E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C740 /* BitUtils.h in Headers */, - 46EB2E0003C750 /* CompactValue.h in Headers */, - 46EB2E0003C760 /* event.h in Headers */, - 46EB2E0003C780 /* experiments.h in Headers */, - 46EB2E0003C770 /* experiments-inl.h in Headers */, - 46EB2E0003C790 /* log.h in Headers */, - 46EB2E0003C7A0 /* Utils.h in Headers */, - 46EB2E0003C7B0 /* YGConfig.h in Headers */, - 46EB2E0003C7C0 /* YGEnums.h in Headers */, - 46EB2E0003C7D0 /* YGFloatOptional.h in Headers */, - 46EB2E0003C7E0 /* YGLayout.h in Headers */, - 46EB2E0003C7F0 /* YGMacros.h in Headers */, - 46EB2E0003C800 /* YGNode.h in Headers */, - 46EB2E0003C810 /* YGNodePrint.h in Headers */, - 46EB2E0003C820 /* YGStyle.h in Headers */, - 46EB2E0003C830 /* YGValue.h in Headers */, - 46EB2E0003C850 /* Yoga.h in Headers */, - 46EB2E0003C840 /* Yoga-internal.h in Headers */, - 46EB2E0003C8B0 /* Yoga-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003C940 /* Headers */ = { + 46EB2E0003C4D0 /* BitUtils.h in Headers */, + 46EB2E0003C4E0 /* CompactValue.h in Headers */, + 46EB2E0003C4F0 /* event.h in Headers */, + 46EB2E0003C510 /* experiments.h in Headers */, + 46EB2E0003C500 /* experiments-inl.h in Headers */, + 46EB2E0003C520 /* log.h in Headers */, + 46EB2E0003C530 /* Utils.h in Headers */, + 46EB2E0003C540 /* YGConfig.h in Headers */, + 46EB2E0003C550 /* YGEnums.h in Headers */, + 46EB2E0003C560 /* YGFloatOptional.h in Headers */, + 46EB2E0003C570 /* YGLayout.h in Headers */, + 46EB2E0003C580 /* YGMacros.h in Headers */, + 46EB2E0003C590 /* YGNode.h in Headers */, + 46EB2E0003C5A0 /* YGNodePrint.h in Headers */, + 46EB2E0003C5B0 /* YGStyle.h in Headers */, + 46EB2E0003C5C0 /* YGValue.h in Headers */, + 46EB2E0003C5E0 /* Yoga.h in Headers */, + 46EB2E0003C5D0 /* Yoga-internal.h in Headers */, + 46EB2E0003C640 /* Yoga-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003C6D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C9A0 /* UIView+Yoga.h in Headers */, - 46EB2E0003C9C0 /* YGLayout.h in Headers */, - 46EB2E0003C9B0 /* YGLayout+Private.h in Headers */, - 46EB2E0003CA20 /* YogaKit-umbrella.h in Headers */, + 46EB2E0003C730 /* UIView+Yoga.h in Headers */, + 46EB2E0003C750 /* YGLayout.h in Headers */, + 46EB2E0003C740 /* YGLayout+Private.h in Headers */, + 46EB2E0003C7B0 /* YogaKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003CAC0 /* Headers */ = { + 46EB2E0003C850 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003CFD0 /* address_is_readable.h in Headers */, - 46EB2E0003CAF0 /* algorithm.h in Headers */, - 46EB2E0003DE20 /* any.h in Headers */, - 46EB2E0003D8A0 /* arg.h in Headers */, - 46EB2E0003D9E0 /* ascii.h in Headers */, - 46EB2E0003CB10 /* atomic_hook.h in Headers */, - 46EB2E0003CC90 /* attributes.h in Headers */, - 46EB2E0003DE30 /* bad_any_cast.h in Headers */, - 46EB2E0003DE60 /* bad_optional_access.h in Headers */, - 46EB2E0003DE80 /* bad_variant_access.h in Headers */, - 46EB2E0003DBB0 /* barrier.h in Headers */, - 46EB2E0003D2F0 /* bernoulli_distribution.h in Headers */, - 46EB2E0003D300 /* beta_distribution.h in Headers */, - 46EB2E0003D8B0 /* bind.h in Headers */, - 46EB2E0003D160 /* bind_front.h in Headers */, - 46EB2E0003D230 /* bits.h in Headers */, - 46EB2E0003D240 /* bits.h in Headers */, - 46EB2E0003DBC0 /* blocking_counter.h in Headers */, - 46EB2E0003CB70 /* call_once.h in Headers */, - 46EB2E0003CB80 /* casts.h in Headers */, - 46EB2E0003D7E0 /* char_map.h in Headers */, - 46EB2E0003D9F0 /* charconv.h in Headers */, - 46EB2E0003DA10 /* charconv_bigint.h in Headers */, - 46EB2E0003DA20 /* charconv_parse.h in Headers */, - 46EB2E0003D8C0 /* checker.h in Headers */, - 46EB2E0003D1B0 /* city.h in Headers */, - 46EB2E0003DDD0 /* civil_time.h in Headers */, - 46EB2E0003DC40 /* civil_time.h in Headers */, - 46EB2E0003DC50 /* civil_time_detail.h in Headers */, - 46EB2E0003DDE0 /* clock.h in Headers */, - 46EB2E0003CE80 /* common.h in Headers */, - 46EB2E0003DE90 /* compare.h in Headers */, - 46EB2E0003CE90 /* compressed_tuple.h in Headers */, - 46EB2E0003CC60 /* config.h in Headers */, - 46EB2E0003CCA0 /* const_init.h in Headers */, - 46EB2E0003CB00 /* container.h in Headers */, - 46EB2E0003CEA0 /* container_memory.h in Headers */, - 46EB2E0003D630 /* cord.h in Headers */, - 46EB2E0003D6A0 /* cord_internal.h in Headers */, - 46EB2E0003D6B0 /* cord_rep_btree.h in Headers */, - 46EB2E0003D6C0 /* cord_rep_btree_navigator.h in Headers */, - 46EB2E0003D6D0 /* cord_rep_btree_reader.h in Headers */, - 46EB2E0003D6E0 /* cord_rep_consume.h in Headers */, - 46EB2E0003D6F0 /* cord_rep_flat.h in Headers */, - 46EB2E0003D700 /* cord_rep_ring.h in Headers */, - 46EB2E0003D710 /* cord_rep_ring_reader.h in Headers */, - 46EB2E0003D730 /* cordz_functions.h in Headers */, - 46EB2E0003D750 /* cordz_handle.h in Headers */, - 46EB2E0003D770 /* cordz_info.h in Headers */, - 46EB2E0003D780 /* cordz_statistics.h in Headers */, - 46EB2E0003D790 /* cordz_update_scope.h in Headers */, - 46EB2E0003D7A0 /* cordz_update_tracker.h in Headers */, - 46EB2E0003DBD0 /* create_thread_identity.h in Headers */, - 46EB2E0003CB90 /* cycleclock.h in Headers */, - 46EB2E0003D010 /* demangle.h in Headers */, - 46EB2E0003CD90 /* direct_mmap.h in Headers */, - 46EB2E0003D310 /* discrete_distribution.h in Headers */, - 46EB2E0003D3A0 /* distribution_caller.h in Headers */, - 46EB2E0003D320 /* distributions.h in Headers */, - 46EB2E0003CD00 /* dynamic_annotations.h in Headers */, - 46EB2E0003CD10 /* dynamic_annotations.h in Headers */, - 46EB2E0003CFE0 /* elf_mem_image.h in Headers */, - 46EB2E0003CD20 /* endian.h in Headers */, - 46EB2E0003CD40 /* errno_saver.h in Headers */, - 46EB2E0003DA00 /* escaping.h in Headers */, - 46EB2E0003D7F0 /* escaping.h in Headers */, - 46EB2E0003D2B0 /* exponential_biased.h in Headers */, - 46EB2E0003D330 /* exponential_distribution.h in Headers */, - 46EB2E0003D8D0 /* extension.h in Headers */, - 46EB2E0003CD50 /* fast_type_id.h in Headers */, - 46EB2E0003D3B0 /* fast_uniform_bits.h in Headers */, - 46EB2E0003D3C0 /* fastmath.h in Headers */, - 46EB2E0003CEB0 /* fixed_array.h in Headers */, - 46EB2E0003CEC0 /* flat_hash_map.h in Headers */, - 46EB2E0003D8E0 /* float_conversion.h in Headers */, - 46EB2E0003D170 /* front_binder.h in Headers */, - 46EB2E0003D180 /* function_ref.h in Headers */, - 46EB2E0003D190 /* function_ref.h in Headers */, - 46EB2E0003DBE0 /* futex.h in Headers */, - 46EB2E0003D340 /* gaussian_distribution.h in Headers */, - 46EB2E0003D3D0 /* generate_real.h in Headers */, - 46EB2E0003DDF0 /* get_current_time_chrono.inc in Headers */, - 46EB2E0003DE00 /* get_current_time_posix.inc in Headers */, - 46EB2E0003DB20 /* graphcycles.h in Headers */, - 46EB2E0003D1D0 /* hash.h in Headers */, - 46EB2E0003D1E0 /* hash.h in Headers */, - 46EB2E0003CED0 /* hash_function_defaults.h in Headers */, - 46EB2E0003CEE0 /* hash_policy_traits.h in Headers */, - 46EB2E0003CEF0 /* hashtable_debug_hooks.h in Headers */, - 46EB2E0003CF20 /* hashtablez_sampler.h in Headers */, - 46EB2E0003CF30 /* have_sse.h in Headers */, - 46EB2E0003CC10 /* hide_ptr.h in Headers */, - 46EB2E0003CC20 /* identity.h in Headers */, - 46EB2E0003CC30 /* inline_variable.h in Headers */, - 46EB2E0003CF40 /* inlined_vector.h in Headers */, - 46EB2E0003CF50 /* inlined_vector.h in Headers */, - 46EB2E0003D260 /* int128.h in Headers */, - 46EB2E0003D270 /* int128_have_intrinsic.inc in Headers */, - 46EB2E0003D280 /* int128_no_intrinsic.inc in Headers */, - 46EB2E0003CC40 /* invoke.h in Headers */, - 46EB2E0003D3E0 /* iostream_state_saver.h in Headers */, - 46EB2E0003DB30 /* kernel_timeout.h in Headers */, - 46EB2E0003CF60 /* layout.h in Headers */, - 46EB2E0003CD70 /* log_severity.h in Headers */, - 46EB2E0003D350 /* log_uniform_int_distribution.h in Headers */, - 46EB2E0003CDA0 /* low_level_alloc.h in Headers */, - 46EB2E0003D200 /* low_level_hash.h in Headers */, - 46EB2E0003CBA0 /* low_level_scheduling.h in Headers */, - 46EB2E0003CCC0 /* macros.h in Headers */, - 46EB2E0003DA80 /* match.h in Headers */, - 46EB2E0003D210 /* memory.h in Headers */, - 46EB2E0003DA30 /* memutil.h in Headers */, - 46EB2E0003DC10 /* mutex.h in Headers */, - 46EB2E0003D3F0 /* nonsecure_base.h in Headers */, - 46EB2E0003DC20 /* notification.h in Headers */, - 46EB2E0003DA90 /* numbers.h in Headers */, - 46EB2E0003CCD0 /* optimization.h in Headers */, - 46EB2E0003DEA0 /* optional.h in Headers */, - 46EB2E0003DEB0 /* optional.h in Headers */, - 46EB2E0003CC70 /* options.h in Headers */, - 46EB2E0003D800 /* ostringstream.h in Headers */, - 46EB2E0003D8F0 /* output.h in Headers */, - 46EB2E0003D900 /* parser.h in Headers */, - 46EB2E0003D400 /* pcg_engine.h in Headers */, - 46EB2E0003DBF0 /* per_thread_sem.h in Headers */, - 46EB2E0003CBB0 /* per_thread_tls.h in Headers */, - 46EB2E0003D420 /* platform.h in Headers */, - 46EB2E0003D360 /* poisson_distribution.h in Headers */, - 46EB2E0003CC80 /* policy_checks.h in Headers */, - 46EB2E0003D450 /* pool_urbg.h in Headers */, - 46EB2E0003CCE0 /* port.h in Headers */, - 46EB2E0003CDB0 /* pretty_function.h in Headers */, - 46EB2E0003D470 /* randen.h in Headers */, - 46EB2E0003D4A0 /* randen_detect.h in Headers */, - 46EB2E0003D480 /* randen_engine.h in Headers */, - 46EB2E0003D4B0 /* randen_hwaes.h in Headers */, - 46EB2E0003D4E0 /* randen_slow.h in Headers */, - 46EB2E0003D430 /* randen_traits.h in Headers */, - 46EB2E0003D550 /* random.h in Headers */, - 46EB2E0003CF70 /* raw_hash_map.h in Headers */, - 46EB2E0003CF90 /* raw_hash_set.h in Headers */, - 46EB2E0003CDD0 /* raw_logging.h in Headers */, - 46EB2E0003D290 /* representation.h in Headers */, - 46EB2E0003D810 /* resize_uninitialized.h in Headers */, - 46EB2E0003D4F0 /* salted_seed_seq.h in Headers */, - 46EB2E0003D2C0 /* sample_recorder.h in Headers */, - 46EB2E0003CC50 /* scheduling_mode.h in Headers */, - 46EB2E0003D570 /* seed_gen_exception.h in Headers */, - 46EB2E0003D510 /* seed_material.h in Headers */, - 46EB2E0003D590 /* seed_sequences.h in Headers */, - 46EB2E0003DEC0 /* span.h in Headers */, - 46EB2E0003DED0 /* span.h in Headers */, - 46EB2E0003CBC0 /* spinlock.h in Headers */, - 46EB2E0003CDF0 /* spinlock_akaros.inc in Headers */, - 46EB2E0003CE00 /* spinlock_linux.inc in Headers */, - 46EB2E0003CE10 /* spinlock_posix.inc in Headers */, - 46EB2E0003CE20 /* spinlock_wait.h in Headers */, - 46EB2E0003CE30 /* spinlock_win32.inc in Headers */, - 46EB2E0003D0D0 /* stacktrace.h in Headers */, - 46EB2E0003D030 /* stacktrace_aarch64-inl.inc in Headers */, - 46EB2E0003D040 /* stacktrace_arm-inl.inc in Headers */, - 46EB2E0003D050 /* stacktrace_config.h in Headers */, - 46EB2E0003D060 /* stacktrace_emscripten-inl.inc in Headers */, - 46EB2E0003D070 /* stacktrace_generic-inl.inc in Headers */, - 46EB2E0003D080 /* stacktrace_powerpc-inl.inc in Headers */, - 46EB2E0003D090 /* stacktrace_riscv-inl.inc in Headers */, - 46EB2E0003D0A0 /* stacktrace_unimplemented-inl.inc in Headers */, - 46EB2E0003D0B0 /* stacktrace_win32-inl.inc in Headers */, - 46EB2E0003D0C0 /* stacktrace_x86-inl.inc in Headers */, - 46EB2E0003D5D0 /* status.h in Headers */, - 46EB2E0003D5C0 /* status_internal.h in Headers */, - 46EB2E0003D5E0 /* status_payload_printer.h in Headers */, - 46EB2E0003D610 /* statusor.h in Headers */, - 46EB2E0003D600 /* statusor_internal.h in Headers */, - 46EB2E0003DA40 /* stl_type_traits.h in Headers */, - 46EB2E0003DAA0 /* str_cat.h in Headers */, - 46EB2E0003D830 /* str_format.h in Headers */, - 46EB2E0003DAB0 /* str_join.h in Headers */, - 46EB2E0003DA50 /* str_join_internal.h in Headers */, - 46EB2E0003DAC0 /* str_replace.h in Headers */, - 46EB2E0003DAD0 /* str_split.h in Headers */, - 46EB2E0003DA60 /* str_split_internal.h in Headers */, - 46EB2E0003CE50 /* strerror.h in Headers */, - 46EB2E0003DA70 /* string_constant.h in Headers */, - 46EB2E0003DAE0 /* string_view.h in Headers */, - 46EB2E0003DAF0 /* strip.h in Headers */, - 46EB2E0003DB00 /* substitute.h in Headers */, - 46EB2E0003D0F0 /* symbolize.h in Headers */, - 46EB2E0003D100 /* symbolize.h in Headers */, - 46EB2E0003D110 /* symbolize_darwin.inc in Headers */, - 46EB2E0003D120 /* symbolize_elf.inc in Headers */, - 46EB2E0003D130 /* symbolize_emscripten.inc in Headers */, - 46EB2E0003D140 /* symbolize_unimplemented.inc in Headers */, - 46EB2E0003D150 /* symbolize_win32.inc in Headers */, - 46EB2E0003CBD0 /* sysinfo.h in Headers */, - 46EB2E0003CCB0 /* thread_annotations.h in Headers */, - 46EB2E0003CCF0 /* thread_annotations.h in Headers */, - 46EB2E0003CBE0 /* thread_identity.h in Headers */, - 46EB2E0003CE70 /* throw_delegate.h in Headers */, - 46EB2E0003DE10 /* time.h in Headers */, - 46EB2E0003DCF0 /* time_zone.h in Headers */, - 46EB2E0003DD10 /* time_zone_fixed.h in Headers */, - 46EB2E0003DD20 /* time_zone_if.h in Headers */, - 46EB2E0003DD30 /* time_zone_impl.h in Headers */, - 46EB2E0003DD40 /* time_zone_info.h in Headers */, - 46EB2E0003DD50 /* time_zone_libc.h in Headers */, - 46EB2E0003DD60 /* time_zone_posix.h in Headers */, - 46EB2E0003D520 /* traits.h in Headers */, - 46EB2E0003CBF0 /* tsan_mutex_interface.h in Headers */, - 46EB2E0003D220 /* type_traits.h in Headers */, - 46EB2E0003DD70 /* tzfile.h in Headers */, - 46EB2E0003CD30 /* unaligned_access.h in Headers */, - 46EB2E0003D530 /* uniform_helper.h in Headers */, - 46EB2E0003D370 /* uniform_int_distribution.h in Headers */, - 46EB2E0003D380 /* uniform_real_distribution.h in Headers */, - 46EB2E0003CC00 /* unscaledcycleclock.h in Headers */, - 46EB2E0003D820 /* utf8.h in Headers */, - 46EB2E0003DF00 /* utility.h in Headers */, - 46EB2E0003DEE0 /* variant.h in Headers */, - 46EB2E0003DEF0 /* variant.h in Headers */, - 46EB2E0003CFF0 /* vdso_support.h in Headers */, - 46EB2E0003DC00 /* waiter.h in Headers */, - 46EB2E0003D540 /* wide_multiply.h in Headers */, - 46EB2E0003D390 /* zipf_distribution.h in Headers */, - 46EB2E0003DD00 /* zone_info_source.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003E030 /* Headers */ = { + 46EB2E0003CD60 /* address_is_readable.h in Headers */, + 46EB2E0003C880 /* algorithm.h in Headers */, + 46EB2E0003DBB0 /* any.h in Headers */, + 46EB2E0003D630 /* arg.h in Headers */, + 46EB2E0003D770 /* ascii.h in Headers */, + 46EB2E0003C8A0 /* atomic_hook.h in Headers */, + 46EB2E0003CA20 /* attributes.h in Headers */, + 46EB2E0003DBC0 /* bad_any_cast.h in Headers */, + 46EB2E0003DBF0 /* bad_optional_access.h in Headers */, + 46EB2E0003DC10 /* bad_variant_access.h in Headers */, + 46EB2E0003D940 /* barrier.h in Headers */, + 46EB2E0003D080 /* bernoulli_distribution.h in Headers */, + 46EB2E0003D090 /* beta_distribution.h in Headers */, + 46EB2E0003D640 /* bind.h in Headers */, + 46EB2E0003CEF0 /* bind_front.h in Headers */, + 46EB2E0003CFC0 /* bits.h in Headers */, + 46EB2E0003CFD0 /* bits.h in Headers */, + 46EB2E0003D950 /* blocking_counter.h in Headers */, + 46EB2E0003C900 /* call_once.h in Headers */, + 46EB2E0003C910 /* casts.h in Headers */, + 46EB2E0003D570 /* char_map.h in Headers */, + 46EB2E0003D780 /* charconv.h in Headers */, + 46EB2E0003D7A0 /* charconv_bigint.h in Headers */, + 46EB2E0003D7B0 /* charconv_parse.h in Headers */, + 46EB2E0003D650 /* checker.h in Headers */, + 46EB2E0003CF40 /* city.h in Headers */, + 46EB2E0003DB60 /* civil_time.h in Headers */, + 46EB2E0003D9D0 /* civil_time.h in Headers */, + 46EB2E0003D9E0 /* civil_time_detail.h in Headers */, + 46EB2E0003DB70 /* clock.h in Headers */, + 46EB2E0003CC10 /* common.h in Headers */, + 46EB2E0003DC20 /* compare.h in Headers */, + 46EB2E0003CC20 /* compressed_tuple.h in Headers */, + 46EB2E0003C9F0 /* config.h in Headers */, + 46EB2E0003CA30 /* const_init.h in Headers */, + 46EB2E0003C890 /* container.h in Headers */, + 46EB2E0003CC30 /* container_memory.h in Headers */, + 46EB2E0003D3C0 /* cord.h in Headers */, + 46EB2E0003D430 /* cord_internal.h in Headers */, + 46EB2E0003D440 /* cord_rep_btree.h in Headers */, + 46EB2E0003D450 /* cord_rep_btree_navigator.h in Headers */, + 46EB2E0003D460 /* cord_rep_btree_reader.h in Headers */, + 46EB2E0003D470 /* cord_rep_consume.h in Headers */, + 46EB2E0003D480 /* cord_rep_flat.h in Headers */, + 46EB2E0003D490 /* cord_rep_ring.h in Headers */, + 46EB2E0003D4A0 /* cord_rep_ring_reader.h in Headers */, + 46EB2E0003D4C0 /* cordz_functions.h in Headers */, + 46EB2E0003D4E0 /* cordz_handle.h in Headers */, + 46EB2E0003D500 /* cordz_info.h in Headers */, + 46EB2E0003D510 /* cordz_statistics.h in Headers */, + 46EB2E0003D520 /* cordz_update_scope.h in Headers */, + 46EB2E0003D530 /* cordz_update_tracker.h in Headers */, + 46EB2E0003D960 /* create_thread_identity.h in Headers */, + 46EB2E0003C920 /* cycleclock.h in Headers */, + 46EB2E0003CDA0 /* demangle.h in Headers */, + 46EB2E0003CB20 /* direct_mmap.h in Headers */, + 46EB2E0003D0A0 /* discrete_distribution.h in Headers */, + 46EB2E0003D130 /* distribution_caller.h in Headers */, + 46EB2E0003D0B0 /* distributions.h in Headers */, + 46EB2E0003CA90 /* dynamic_annotations.h in Headers */, + 46EB2E0003CAA0 /* dynamic_annotations.h in Headers */, + 46EB2E0003CD70 /* elf_mem_image.h in Headers */, + 46EB2E0003CAB0 /* endian.h in Headers */, + 46EB2E0003CAD0 /* errno_saver.h in Headers */, + 46EB2E0003D790 /* escaping.h in Headers */, + 46EB2E0003D580 /* escaping.h in Headers */, + 46EB2E0003D040 /* exponential_biased.h in Headers */, + 46EB2E0003D0C0 /* exponential_distribution.h in Headers */, + 46EB2E0003D660 /* extension.h in Headers */, + 46EB2E0003CAE0 /* fast_type_id.h in Headers */, + 46EB2E0003D140 /* fast_uniform_bits.h in Headers */, + 46EB2E0003D150 /* fastmath.h in Headers */, + 46EB2E0003CC40 /* fixed_array.h in Headers */, + 46EB2E0003CC50 /* flat_hash_map.h in Headers */, + 46EB2E0003D670 /* float_conversion.h in Headers */, + 46EB2E0003CF00 /* front_binder.h in Headers */, + 46EB2E0003CF10 /* function_ref.h in Headers */, + 46EB2E0003CF20 /* function_ref.h in Headers */, + 46EB2E0003D970 /* futex.h in Headers */, + 46EB2E0003D0D0 /* gaussian_distribution.h in Headers */, + 46EB2E0003D160 /* generate_real.h in Headers */, + 46EB2E0003DB80 /* get_current_time_chrono.inc in Headers */, + 46EB2E0003DB90 /* get_current_time_posix.inc in Headers */, + 46EB2E0003D8B0 /* graphcycles.h in Headers */, + 46EB2E0003CF60 /* hash.h in Headers */, + 46EB2E0003CF70 /* hash.h in Headers */, + 46EB2E0003CC60 /* hash_function_defaults.h in Headers */, + 46EB2E0003CC70 /* hash_policy_traits.h in Headers */, + 46EB2E0003CC80 /* hashtable_debug_hooks.h in Headers */, + 46EB2E0003CCB0 /* hashtablez_sampler.h in Headers */, + 46EB2E0003CCC0 /* have_sse.h in Headers */, + 46EB2E0003C9A0 /* hide_ptr.h in Headers */, + 46EB2E0003C9B0 /* identity.h in Headers */, + 46EB2E0003C9C0 /* inline_variable.h in Headers */, + 46EB2E0003CCD0 /* inlined_vector.h in Headers */, + 46EB2E0003CCE0 /* inlined_vector.h in Headers */, + 46EB2E0003CFF0 /* int128.h in Headers */, + 46EB2E0003D000 /* int128_have_intrinsic.inc in Headers */, + 46EB2E0003D010 /* int128_no_intrinsic.inc in Headers */, + 46EB2E0003C9D0 /* invoke.h in Headers */, + 46EB2E0003D170 /* iostream_state_saver.h in Headers */, + 46EB2E0003D8C0 /* kernel_timeout.h in Headers */, + 46EB2E0003CCF0 /* layout.h in Headers */, + 46EB2E0003CB00 /* log_severity.h in Headers */, + 46EB2E0003D0E0 /* log_uniform_int_distribution.h in Headers */, + 46EB2E0003CB30 /* low_level_alloc.h in Headers */, + 46EB2E0003CF90 /* low_level_hash.h in Headers */, + 46EB2E0003C930 /* low_level_scheduling.h in Headers */, + 46EB2E0003CA50 /* macros.h in Headers */, + 46EB2E0003D810 /* match.h in Headers */, + 46EB2E0003CFA0 /* memory.h in Headers */, + 46EB2E0003D7C0 /* memutil.h in Headers */, + 46EB2E0003D9A0 /* mutex.h in Headers */, + 46EB2E0003D180 /* nonsecure_base.h in Headers */, + 46EB2E0003D9B0 /* notification.h in Headers */, + 46EB2E0003D820 /* numbers.h in Headers */, + 46EB2E0003CA60 /* optimization.h in Headers */, + 46EB2E0003DC30 /* optional.h in Headers */, + 46EB2E0003DC40 /* optional.h in Headers */, + 46EB2E0003CA00 /* options.h in Headers */, + 46EB2E0003D590 /* ostringstream.h in Headers */, + 46EB2E0003D680 /* output.h in Headers */, + 46EB2E0003D690 /* parser.h in Headers */, + 46EB2E0003D190 /* pcg_engine.h in Headers */, + 46EB2E0003D980 /* per_thread_sem.h in Headers */, + 46EB2E0003C940 /* per_thread_tls.h in Headers */, + 46EB2E0003D1B0 /* platform.h in Headers */, + 46EB2E0003D0F0 /* poisson_distribution.h in Headers */, + 46EB2E0003CA10 /* policy_checks.h in Headers */, + 46EB2E0003D1E0 /* pool_urbg.h in Headers */, + 46EB2E0003CA70 /* port.h in Headers */, + 46EB2E0003CB40 /* pretty_function.h in Headers */, + 46EB2E0003D200 /* randen.h in Headers */, + 46EB2E0003D230 /* randen_detect.h in Headers */, + 46EB2E0003D210 /* randen_engine.h in Headers */, + 46EB2E0003D240 /* randen_hwaes.h in Headers */, + 46EB2E0003D270 /* randen_slow.h in Headers */, + 46EB2E0003D1C0 /* randen_traits.h in Headers */, + 46EB2E0003D2E0 /* random.h in Headers */, + 46EB2E0003CD00 /* raw_hash_map.h in Headers */, + 46EB2E0003CD20 /* raw_hash_set.h in Headers */, + 46EB2E0003CB60 /* raw_logging.h in Headers */, + 46EB2E0003D020 /* representation.h in Headers */, + 46EB2E0003D5A0 /* resize_uninitialized.h in Headers */, + 46EB2E0003D280 /* salted_seed_seq.h in Headers */, + 46EB2E0003D050 /* sample_recorder.h in Headers */, + 46EB2E0003C9E0 /* scheduling_mode.h in Headers */, + 46EB2E0003D300 /* seed_gen_exception.h in Headers */, + 46EB2E0003D2A0 /* seed_material.h in Headers */, + 46EB2E0003D320 /* seed_sequences.h in Headers */, + 46EB2E0003DC50 /* span.h in Headers */, + 46EB2E0003DC60 /* span.h in Headers */, + 46EB2E0003C950 /* spinlock.h in Headers */, + 46EB2E0003CB80 /* spinlock_akaros.inc in Headers */, + 46EB2E0003CB90 /* spinlock_linux.inc in Headers */, + 46EB2E0003CBA0 /* spinlock_posix.inc in Headers */, + 46EB2E0003CBB0 /* spinlock_wait.h in Headers */, + 46EB2E0003CBC0 /* spinlock_win32.inc in Headers */, + 46EB2E0003CE60 /* stacktrace.h in Headers */, + 46EB2E0003CDC0 /* stacktrace_aarch64-inl.inc in Headers */, + 46EB2E0003CDD0 /* stacktrace_arm-inl.inc in Headers */, + 46EB2E0003CDE0 /* stacktrace_config.h in Headers */, + 46EB2E0003CDF0 /* stacktrace_emscripten-inl.inc in Headers */, + 46EB2E0003CE00 /* stacktrace_generic-inl.inc in Headers */, + 46EB2E0003CE10 /* stacktrace_powerpc-inl.inc in Headers */, + 46EB2E0003CE20 /* stacktrace_riscv-inl.inc in Headers */, + 46EB2E0003CE30 /* stacktrace_unimplemented-inl.inc in Headers */, + 46EB2E0003CE40 /* stacktrace_win32-inl.inc in Headers */, + 46EB2E0003CE50 /* stacktrace_x86-inl.inc in Headers */, + 46EB2E0003D360 /* status.h in Headers */, + 46EB2E0003D350 /* status_internal.h in Headers */, + 46EB2E0003D370 /* status_payload_printer.h in Headers */, + 46EB2E0003D3A0 /* statusor.h in Headers */, + 46EB2E0003D390 /* statusor_internal.h in Headers */, + 46EB2E0003D7D0 /* stl_type_traits.h in Headers */, + 46EB2E0003D830 /* str_cat.h in Headers */, + 46EB2E0003D5C0 /* str_format.h in Headers */, + 46EB2E0003D840 /* str_join.h in Headers */, + 46EB2E0003D7E0 /* str_join_internal.h in Headers */, + 46EB2E0003D850 /* str_replace.h in Headers */, + 46EB2E0003D860 /* str_split.h in Headers */, + 46EB2E0003D7F0 /* str_split_internal.h in Headers */, + 46EB2E0003CBE0 /* strerror.h in Headers */, + 46EB2E0003D800 /* string_constant.h in Headers */, + 46EB2E0003D870 /* string_view.h in Headers */, + 46EB2E0003D880 /* strip.h in Headers */, + 46EB2E0003D890 /* substitute.h in Headers */, + 46EB2E0003CE80 /* symbolize.h in Headers */, + 46EB2E0003CE90 /* symbolize.h in Headers */, + 46EB2E0003CEA0 /* symbolize_darwin.inc in Headers */, + 46EB2E0003CEB0 /* symbolize_elf.inc in Headers */, + 46EB2E0003CEC0 /* symbolize_emscripten.inc in Headers */, + 46EB2E0003CED0 /* symbolize_unimplemented.inc in Headers */, + 46EB2E0003CEE0 /* symbolize_win32.inc in Headers */, + 46EB2E0003C960 /* sysinfo.h in Headers */, + 46EB2E0003CA40 /* thread_annotations.h in Headers */, + 46EB2E0003CA80 /* thread_annotations.h in Headers */, + 46EB2E0003C970 /* thread_identity.h in Headers */, + 46EB2E0003CC00 /* throw_delegate.h in Headers */, + 46EB2E0003DBA0 /* time.h in Headers */, + 46EB2E0003DA80 /* time_zone.h in Headers */, + 46EB2E0003DAA0 /* time_zone_fixed.h in Headers */, + 46EB2E0003DAB0 /* time_zone_if.h in Headers */, + 46EB2E0003DAC0 /* time_zone_impl.h in Headers */, + 46EB2E0003DAD0 /* time_zone_info.h in Headers */, + 46EB2E0003DAE0 /* time_zone_libc.h in Headers */, + 46EB2E0003DAF0 /* time_zone_posix.h in Headers */, + 46EB2E0003D2B0 /* traits.h in Headers */, + 46EB2E0003C980 /* tsan_mutex_interface.h in Headers */, + 46EB2E0003CFB0 /* type_traits.h in Headers */, + 46EB2E0003DB00 /* tzfile.h in Headers */, + 46EB2E0003CAC0 /* unaligned_access.h in Headers */, + 46EB2E0003D2C0 /* uniform_helper.h in Headers */, + 46EB2E0003D100 /* uniform_int_distribution.h in Headers */, + 46EB2E0003D110 /* uniform_real_distribution.h in Headers */, + 46EB2E0003C990 /* unscaledcycleclock.h in Headers */, + 46EB2E0003D5B0 /* utf8.h in Headers */, + 46EB2E0003DC90 /* utility.h in Headers */, + 46EB2E0003DC70 /* variant.h in Headers */, + 46EB2E0003DC80 /* variant.h in Headers */, + 46EB2E0003CD80 /* vdso_support.h in Headers */, + 46EB2E0003D990 /* waiter.h in Headers */, + 46EB2E0003D2D0 /* wide_multiply.h in Headers */, + 46EB2E0003D120 /* zipf_distribution.h in Headers */, + 46EB2E0003DA90 /* zone_info_source.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003DDC0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003E070 /* chrono.h in Headers */, - 46EB2E0003E080 /* color.h in Headers */, - 46EB2E0003E090 /* compile.h in Headers */, - 46EB2E0003E0A0 /* core.h in Headers */, - 46EB2E0003E0C0 /* format.h in Headers */, - 46EB2E0003E0B0 /* format-inl.h in Headers */, - 46EB2E0003E0D0 /* locale.h in Headers */, - 46EB2E0003E0E0 /* os.h in Headers */, - 46EB2E0003E0F0 /* ostream.h in Headers */, - 46EB2E0003E100 /* posix.h in Headers */, - 46EB2E0003E110 /* printf.h in Headers */, - 46EB2E0003E120 /* ranges.h in Headers */, + 46EB2E0003DE00 /* chrono.h in Headers */, + 46EB2E0003DE10 /* color.h in Headers */, + 46EB2E0003DE20 /* compile.h in Headers */, + 46EB2E0003DE30 /* core.h in Headers */, + 46EB2E0003DE50 /* format.h in Headers */, + 46EB2E0003DE40 /* format-inl.h in Headers */, + 46EB2E0003DE60 /* locale.h in Headers */, + 46EB2E0003DE70 /* os.h in Headers */, + 46EB2E0003DE80 /* ostream.h in Headers */, + 46EB2E0003DE90 /* posix.h in Headers */, + 46EB2E0003DEA0 /* printf.h in Headers */, + 46EB2E0003DEB0 /* ranges.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E1E0 /* Headers */ = { + 46EB2E0003DF70 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003EDA0 /* accesslog.upb.h in Headers */, - 46EB2E0003F470 /* accesslog.upbdefs.h in Headers */, - 46EB2E00040580 /* activity.h in Headers */, - 46EB2E0003EE00 /* address.upb.h in Headers */, - 46EB2E0003F4D0 /* address.upbdefs.h in Headers */, - 46EB2E0003E7D0 /* address_filtering.h in Headers */, - 46EB2E0003F090 /* ads.upb.h in Headers */, - 46EB2E0003F760 /* ads.upbdefs.h in Headers */, - 46EB2E00041000 /* alarm.h in Headers */, - 46EB2E0003FDD0 /* alloc.h in Headers */, - 46EB2E0003EBD0 /* alpn.h in Headers */, - 46EB2E00040CA0 /* alts_counter.h in Headers */, - 46EB2E00040770 /* alts_credentials.h in Headers */, - 46EB2E00040CB0 /* alts_crypter.h in Headers */, - 46EB2E00040CC0 /* alts_frame_protector.h in Headers */, - 46EB2E00040D50 /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 46EB2E00040D60 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 46EB2E00040D70 /* alts_grpc_record_protocol.h in Headers */, - 46EB2E00040D80 /* alts_grpc_record_protocol_common.h in Headers */, - 46EB2E00040CF0 /* alts_handshaker_client.h in Headers */, - 46EB2E00040D90 /* alts_iovec_record_protocol.h in Headers */, - 46EB2E00040CD0 /* alts_record_protocol_crypter_common.h in Headers */, - 46EB2E00040920 /* alts_security_connector.h in Headers */, - 46EB2E00040D00 /* alts_shared_resource.h in Headers */, - 46EB2E00040D10 /* alts_tsi_handshaker.h in Headers */, - 46EB2E00040D20 /* alts_tsi_handshaker_private.h in Headers */, - 46EB2E00040D30 /* alts_tsi_utils.h in Headers */, - 46EB2E00040DA0 /* alts_zero_copy_grpc_protector.h in Headers */, - 46EB2E0003F2F0 /* altscontext.upb.h in Headers */, - 46EB2E0003F200 /* annotations.upb.h in Headers */, - 46EB2E0003F8D0 /* annotations.upbdefs.h in Headers */, - 46EB2E0003F270 /* any.upb.h in Headers */, - 46EB2E0003F940 /* any.upbdefs.h in Headers */, - 46EB2E00040690 /* api.h in Headers */, - 46EB2E0003EF20 /* api_listener.upb.h in Headers */, - 46EB2E0003F5F0 /* api_listener.upbdefs.h in Headers */, - 46EB2E00040AE0 /* api_trace.h in Headers */, - 46EB2E000406A0 /* arena.h in Headers */, - 46EB2E00041080 /* async_generic_service.h in Headers */, - 46EB2E000410F0 /* async_generic_service.h in Headers */, - 46EB2E00041100 /* async_stream.h in Headers */, - 46EB2E00041560 /* async_stream.h in Headers */, - 46EB2E00041110 /* async_unary_call.h in Headers */, - 46EB2E00041570 /* async_unary_call.h in Headers */, - 46EB2E0003FE70 /* atomic_utils.h in Headers */, - 46EB2E000412E0 /* auth_context.h in Headers */, - 46EB2E00041480 /* auth_context.h in Headers */, - 46EB2E000409D0 /* auth_filters.h in Headers */, - 46EB2E00041490 /* auth_metadata_processor.h in Headers */, - 46EB2E0003F3C0 /* authority.upb.h in Headers */, - 46EB2E0003FA30 /* authority.upbdefs.h in Headers */, - 46EB2E000406F0 /* authorization_engine.h in Headers */, - 46EB2E000414A0 /* authorization_policy_provider.h in Headers */, - 46EB2E00040700 /* authorization_policy_provider.h in Headers */, - 46EB2E0003FC40 /* avl.h in Headers */, - 46EB2E000407C0 /* aws_external_account_credentials.h in Headers */, - 46EB2E000407D0 /* aws_request_signer.h in Headers */, - 46EB2E00040A50 /* b64.h in Headers */, - 46EB2E0003E700 /* backend_metric.h in Headers */, - 46EB2E0003FC50 /* backoff.h in Headers */, - 46EB2E0003EE10 /* backoff.upb.h in Headers */, - 46EB2E0003F4E0 /* backoff.upbdefs.h in Headers */, - 46EB2E0003E710 /* backup_poller.h in Headers */, - 46EB2E0003EE20 /* base.upb.h in Headers */, - 46EB2E0003F4F0 /* base.upbdefs.h in Headers */, - 46EB2E000405A0 /* basic_seq.h in Headers */, - 46EB2E00040BC0 /* bdp_estimator.h in Headers */, - 46EB2E0003EC00 /* bin_decoder.h in Headers */, - 46EB2E0003EC10 /* bin_encoder.h in Headers */, - 46EB2E0003EB60 /* binder.h in Headers */, - 46EB2E0003EB70 /* binder_android.h in Headers */, - 46EB2E0003EB20 /* binder_auto_utils.h in Headers */, - 46EB2E0003EA90 /* binder_connector.h in Headers */, - 46EB2E0003EB80 /* binder_constants.h in Headers */, - 46EB2E000414B0 /* binder_credentials.h in Headers */, - 46EB2E000414C0 /* binder_security_policy.h in Headers */, - 46EB2E0003EAF0 /* binder_server.h in Headers */, - 46EB2E0003EB00 /* binder_stream.h in Headers */, - 46EB2E0003EB10 /* binder_transport.h in Headers */, - 46EB2E0003FE80 /* bitset.h in Headers */, - 46EB2E00040040 /* block_annotate.h in Headers */, - 46EB2E0003EDB0 /* bootstrap.upb.h in Headers */, - 46EB2E0003F480 /* bootstrap.upbdefs.h in Headers */, - 46EB2E00040050 /* buffer_list.h in Headers */, - 46EB2E00040AF0 /* builtins.h in Headers */, - 46EB2E00041120 /* byte_buffer.h in Headers */, - 46EB2E00041580 /* byte_buffer.h in Headers */, - 46EB2E00040BD0 /* byte_stream.h in Headers */, - 46EB2E000410C0 /* call.h in Headers */, - 46EB2E00041130 /* call.h in Headers */, - 46EB2E00040B00 /* call.h in Headers */, - 46EB2E00040060 /* call_combiner.h in Headers */, - 46EB2E00041140 /* call_hook.h in Headers */, - 46EB2E00041150 /* call_op_set.h in Headers */, - 46EB2E00041160 /* call_op_set_interface.h in Headers */, - 46EB2E00040B10 /* call_test_only.h in Headers */, - 46EB2E0003FC60 /* call_tracer.h in Headers */, - 46EB2E00041170 /* callback_common.h in Headers */, - 46EB2E0003F080 /* cds.upb.h in Headers */, - 46EB2E0003F750 /* cds.upbdefs.h in Headers */, - 46EB2E0003F040 /* cert.upb.h in Headers */, - 46EB2E0003F710 /* cert.upbdefs.h in Headers */, - 46EB2E0003FAA0 /* certificate_provider_factory.h in Headers */, - 46EB2E0003FAB0 /* certificate_provider_registry.h in Headers */, - 46EB2E0003FAC0 /* certificate_provider_store.h in Headers */, - 46EB2E00040070 /* cfstream_handle.h in Headers */, - 46EB2E00041010 /* channel.h in Headers */, - 46EB2E00040B20 /* channel.h in Headers */, - 46EB2E0003FC70 /* channel_args.h in Headers */, - 46EB2E0003FDA0 /* channel_args_endpoint_config.h in Headers */, - 46EB2E0003FC80 /* channel_args_preconditioning.h in Headers */, - 46EB2E000410D0 /* channel_argument_option.h in Headers */, - 46EB2E00041590 /* channel_arguments.h in Headers */, - 46EB2E0003EAA0 /* channel_create_impl.h in Headers */, - 46EB2E00040E60 /* channel_filter.h in Headers */, - 46EB2E00040B30 /* channel_init.h in Headers */, - 46EB2E00041180 /* channel_interface.h in Headers */, - 46EB2E0003FC90 /* channel_stack.h in Headers */, - 46EB2E0003FCA0 /* channel_stack_builder.h in Headers */, - 46EB2E00040B40 /* channel_stack_type.h in Headers */, - 46EB2E0003FCB0 /* channel_trace.h in Headers */, - 46EB2E0003FCC0 /* channelz.h in Headers */, - 46EB2E0003FCD0 /* channelz_registry.h in Headers */, - 46EB2E00040780 /* check_gcp_environment.h in Headers */, - 46EB2E0003F210 /* checked.upb.h in Headers */, - 46EB2E0003F8E0 /* checked.upbdefs.h in Headers */, - 46EB2E0003E7E0 /* child_policy_handler.h in Headers */, - 46EB2E0003EBE0 /* chttp2_connector.h in Headers */, - 46EB2E0003EBF0 /* chttp2_server.h in Headers */, - 46EB2E0003EC20 /* chttp2_transport.h in Headers */, - 46EB2E0003FE90 /* chunked_vector.h in Headers */, - 46EB2E0003EDC0 /* circuit_breaker.upb.h in Headers */, - 46EB2E0003F490 /* circuit_breaker.upbdefs.h in Headers */, - 46EB2E0003E9F0 /* client_authority_filter.h in Headers */, - 46EB2E00041190 /* client_callback.h in Headers */, - 46EB2E000415A0 /* client_callback.h in Headers */, - 46EB2E0003E720 /* client_channel.h in Headers */, - 46EB2E0003E730 /* client_channel_channelz.h in Headers */, - 46EB2E0003E740 /* client_channel_factory.h in Headers */, - 46EB2E00041020 /* client_context.h in Headers */, - 46EB2E000411A0 /* client_context.h in Headers */, - 46EB2E000411B0 /* client_interceptor.h in Headers */, - 46EB2E000415B0 /* client_interceptor.h in Headers */, - 46EB2E0003E7F0 /* client_load_reporting_filter.h in Headers */, - 46EB2E000410E0 /* client_unary_call.h in Headers */, - 46EB2E000411C0 /* client_unary_call.h in Headers */, - 46EB2E00040080 /* closure.h in Headers */, - 46EB2E00040160 /* closure.h in Headers */, - 46EB2E0003EDD0 /* cluster.upb.h in Headers */, - 46EB2E0003EFE0 /* cluster.upb.h in Headers */, - 46EB2E0003F4A0 /* cluster.upbdefs.h in Headers */, - 46EB2E0003F6B0 /* cluster.upbdefs.h in Headers */, - 46EB2E0003F3D0 /* collection_entry.upb.h in Headers */, - 46EB2E0003FA40 /* collection_entry.upbdefs.h in Headers */, - 46EB2E00040090 /* combiner.h in Headers */, - 46EB2E0003F050 /* common.upb.h in Headers */, - 46EB2E0003F720 /* common.upbdefs.h in Headers */, - 46EB2E00041030 /* completion_queue.h in Headers */, - 46EB2E000411D0 /* completion_queue.h in Headers */, - 46EB2E00040B50 /* completion_queue.h in Headers */, - 46EB2E00040B60 /* completion_queue_factory.h in Headers */, - 46EB2E000411E0 /* completion_queue_tag.h in Headers */, - 46EB2E000407A0 /* composite_credentials.h in Headers */, - 46EB2E0003FD40 /* compression_internal.h in Headers */, - 46EB2E000411F0 /* config.h in Headers */, - 46EB2E000415C0 /* config.h in Headers */, - 46EB2E0003ED70 /* config_dump.upb.h in Headers */, - 46EB2E0003F440 /* config_dump.upbdefs.h in Headers */, - 46EB2E0003E750 /* config_selector.h in Headers */, - 46EB2E0003EE30 /* config_source.upb.h in Headers */, - 46EB2E0003F500 /* config_source.upbdefs.h in Headers */, - 46EB2E0003FCE0 /* connected_channel.h in Headers */, - 46EB2E0003EAB0 /* connection_id_generator.h in Headers */, - 46EB2E00040BE0 /* connectivity_state.h in Headers */, - 46EB2E0003E760 /* connector.h in Headers */, - 46EB2E0003FEA0 /* construct_destruct.h in Headers */, - 46EB2E0003FCF0 /* context.h in Headers */, - 46EB2E00040590 /* context.h in Headers */, - 46EB2E0003EC30 /* context_list.h in Headers */, - 46EB2E0003F3E0 /* context_params.upb.h in Headers */, - 46EB2E0003FA50 /* context_params.upbdefs.h in Headers */, - 46EB2E00041200 /* core_codegen.h in Headers */, - 46EB2E00041210 /* core_codegen_interface.h in Headers */, - 46EB2E0003FD60 /* core_configuration.h in Headers */, - 46EB2E0003FEB0 /* cpp_impl_of.h in Headers */, - 46EB2E00041220 /* create_auth_context.h in Headers */, - 46EB2E00041040 /* create_channel.h in Headers */, - 46EB2E00041050 /* create_channel_binder.h in Headers */, - 46EB2E00040E40 /* create_channel_internal.h in Headers */, - 46EB2E00041060 /* create_channel_posix.h in Headers */, - 46EB2E000414D0 /* credentials.h in Headers */, - 46EB2E000407B0 /* credentials.h in Headers */, - 46EB2E0003F100 /* csds.upb.h in Headers */, - 46EB2E0003F7D0 /* csds.upbdefs.h in Headers */, - 46EB2E0003F1B0 /* custom_tag.upb.h in Headers */, - 46EB2E0003F880 /* custom_tag.upbdefs.h in Headers */, - 46EB2E0003E9B0 /* deadline_filter.h in Headers */, - 46EB2E0003FEC0 /* debug_location.h in Headers */, - 46EB2E00040EE0 /* decode.h in Headers */, - 46EB2E00040EF0 /* decode_fast.h in Headers */, - 46EB2E00040F00 /* decode_internal.h in Headers */, - 46EB2E00040F10 /* def.h in Headers */, - 46EB2E00040F20 /* def.hpp in Headers */, - 46EB2E00040EA0 /* default_health_check_service.h in Headers */, - 46EB2E00041230 /* delegating_channel.h in Headers */, - 46EB2E0003ED80 /* deprecation.upb.h in Headers */, - 46EB2E0003F450 /* deprecation.upbdefs.h in Headers */, - 46EB2E0003F280 /* descriptor.upb.h in Headers */, - 46EB2E0003F950 /* descriptor.upbdefs.h in Headers */, - 46EB2E0003F0A0 /* discovery.upb.h in Headers */, - 46EB2E0003F770 /* discovery.upbdefs.h in Headers */, - 46EB2E0003E900 /* dns_resolver_selection.h in Headers */, - 46EB2E0003FED0 /* dual_ref_counted.h in Headers */, - 46EB2E0003F290 /* duration.upb.h in Headers */, - 46EB2E0003F960 /* duration.upbdefs.h in Headers */, - 46EB2E000400A0 /* dynamic_annotations.h in Headers */, - 46EB2E0003E770 /* dynamic_filters.h in Headers */, - 46EB2E00040E80 /* dynamic_thread_pool.h in Headers */, - 46EB2E0003F0B0 /* eds.upb.h in Headers */, - 46EB2E0003F780 /* eds.upbdefs.h in Headers */, - 46EB2E0003F2A0 /* empty.upb.h in Headers */, - 46EB2E0003F970 /* empty.upbdefs.h in Headers */, - 46EB2E00040F30 /* encode.h in Headers */, - 46EB2E000400B0 /* endpoint.h in Headers */, - 46EB2E00040170 /* endpoint.h in Headers */, - 46EB2E0003EEF0 /* endpoint.upb.h in Headers */, - 46EB2E0003F5C0 /* endpoint.upbdefs.h in Headers */, - 46EB2E0003EAC0 /* endpoint_binder_pool.h in Headers */, - 46EB2E000400C0 /* endpoint_cfstream.h in Headers */, - 46EB2E0003EF00 /* endpoint_components.upb.h in Headers */, - 46EB2E0003F5D0 /* endpoint_components.upbdefs.h in Headers */, - 46EB2E000400D0 /* endpoint_pair.h in Headers */, - 46EB2E0003FDE0 /* env.h in Headers */, - 46EB2E000400E0 /* error.h in Headers */, - 46EB2E000400F0 /* error_cfstream.h in Headers */, - 46EB2E00040100 /* error_internal.h in Headers */, - 46EB2E00040BF0 /* error_utils.h in Headers */, - 46EB2E00040110 /* ev_apple.h in Headers */, - 46EB2E00040120 /* ev_epoll1_linux.h in Headers */, - 46EB2E00040130 /* ev_epollex_linux.h in Headers */, - 46EB2E00040140 /* ev_poll_posix.h in Headers */, - 46EB2E00040150 /* ev_posix.h in Headers */, - 46EB2E0003F220 /* eval.upb.h in Headers */, - 46EB2E0003F8F0 /* eval.upbdefs.h in Headers */, - 46EB2E00040710 /* evaluate_args.h in Headers */, - 46EB2E0003FDB0 /* event_engine_factory.h in Headers */, - 46EB2E0003EE40 /* event_service_config.upb.h in Headers */, - 46EB2E0003F510 /* event_service_config.upbdefs.h in Headers */, - 46EB2E00040B70 /* event_string.h in Headers */, - 46EB2E0003FEE0 /* examine_stack.h in Headers */, - 46EB2E000401C0 /* exec_ctx.h in Headers */, - 46EB2E000405F0 /* exec_ctx_wakeup_scheduler.h in Headers */, - 46EB2E000401D0 /* executor.h in Headers */, - 46EB2E0003F230 /* explain.upb.h in Headers */, - 46EB2E0003F900 /* explain.upbdefs.h in Headers */, - 46EB2E0003EE50 /* extension.upb.h in Headers */, - 46EB2E0003F520 /* extension.upbdefs.h in Headers */, - 46EB2E000407E0 /* external_account_credentials.h in Headers */, - 46EB2E00040E90 /* external_connection_acceptor_impl.h in Headers */, - 46EB2E00040810 /* fake_credentials.h in Headers */, - 46EB2E0003E910 /* fake_resolver.h in Headers */, - 46EB2E00040930 /* fake_security_connector.h in Headers */, - 46EB2E00040DB0 /* fake_transport_security.h in Headers */, - 46EB2E0003EFF0 /* fault.upb.h in Headers */, - 46EB2E0003F000 /* fault.upb.h in Headers */, - 46EB2E0003F6C0 /* fault.upbdefs.h in Headers */, - 46EB2E0003F6D0 /* fault.upbdefs.h in Headers */, - 46EB2E0003E9C0 /* fault_injection_filter.h in Headers */, - 46EB2E000407F0 /* file_external_account_credentials.h in Headers */, - 46EB2E0003FAD0 /* file_watcher_certificate_provider_factory.h in Headers */, - 46EB2E0003EDE0 /* filter.upb.h in Headers */, - 46EB2E0003F4B0 /* filter.upbdefs.h in Headers */, - 46EB2E0003EC40 /* flow_control.h in Headers */, - 46EB2E0003FEF0 /* fork.h in Headers */, - 46EB2E00040010 /* format_request.h in Headers */, - 46EB2E0003EC50 /* frame.h in Headers */, - 46EB2E0003EC60 /* frame_data.h in Headers */, - 46EB2E0003EC70 /* frame_goaway.h in Headers */, - 46EB2E00040CE0 /* frame_handler.h in Headers */, - 46EB2E0003EC80 /* frame_ping.h in Headers */, - 46EB2E0003EC90 /* frame_rst_stream.h in Headers */, - 46EB2E0003ECA0 /* frame_settings.h in Headers */, - 46EB2E0003ECB0 /* frame_window_update.h in Headers */, - 46EB2E00041090 /* generic_stub.h in Headers */, - 46EB2E00040200 /* gethostname.h in Headers */, - 46EB2E0003FF00 /* global_config.h in Headers */, - 46EB2E0003FF10 /* global_config_custom.h in Headers */, - 46EB2E0003FF20 /* global_config_env.h in Headers */, - 46EB2E0003FF30 /* global_config_generic.h in Headers */, - 46EB2E0003E780 /* global_subchannel_pool.h in Headers */, - 46EB2E00040820 /* google_default_credentials.h in Headers */, - 46EB2E00040790 /* grpc_alts_credentials_options.h in Headers */, - 46EB2E0003E8E0 /* grpc_ares_ev_driver.h in Headers */, - 46EB2E0003E8F0 /* grpc_ares_wrapper.h in Headers */, - 46EB2E00040720 /* grpc_authorization_engine.h in Headers */, - 46EB2E00040210 /* grpc_if_nametoindex.h in Headers */, - 46EB2E00041240 /* grpc_library.h in Headers */, - 46EB2E000413E0 /* grpc_library.h in Headers */, - 46EB2E0003EE60 /* grpc_service.upb.h in Headers */, - 46EB2E0003F530 /* grpc_service.upbdefs.h in Headers */, - 46EB2E000408B0 /* grpc_tls_certificate_distributor.h in Headers */, - 46EB2E000408C0 /* grpc_tls_certificate_provider.h in Headers */, - 46EB2E000408D0 /* grpc_tls_certificate_verifier.h in Headers */, - 46EB2E000408E0 /* grpc_tls_credentials_options.h in Headers */, - 46EB2E0003E800 /* grpclb.h in Headers */, - 46EB2E0003E810 /* grpclb_balancer_addresses.h in Headers */, - 46EB2E0003E820 /* grpclb_channel.h in Headers */, - 46EB2E0003E830 /* grpclb_client_stats.h in Headers */, - 46EB2E000410A0 /* grpcpp.h in Headers */, - 46EB2E00040C90 /* gsec.h in Headers */, - 46EB2E0003FD00 /* handshaker.h in Headers */, - 46EB2E0003F300 /* handshaker.upb.h in Headers */, - 46EB2E0003FD10 /* handshaker_factory.h in Headers */, - 46EB2E0003FD20 /* handshaker_registry.h in Headers */, - 46EB2E0003F320 /* health.upb.h in Headers */, - 46EB2E0003EE70 /* health_check.upb.h in Headers */, - 46EB2E0003F540 /* health_check.upbdefs.h in Headers */, - 46EB2E0003E790 /* health_check_client.h in Headers */, - 46EB2E000410B0 /* health_check_service_interface.h in Headers */, - 46EB2E00041070 /* health_check_service_server_builder_option.h in Headers */, - 46EB2E0003FF40 /* host_port.h in Headers */, - 46EB2E0003ECC0 /* hpack_constants.h in Headers */, - 46EB2E0003ECD0 /* hpack_encoder.h in Headers */, - 46EB2E0003ECE0 /* hpack_encoder_table.h in Headers */, - 46EB2E0003ECF0 /* hpack_parser.h in Headers */, - 46EB2E0003ED00 /* hpack_parser_table.h in Headers */, - 46EB2E0003F1C0 /* http.upb.h in Headers */, - 46EB2E0003F260 /* http.upb.h in Headers */, - 46EB2E0003F890 /* http.upbdefs.h in Headers */, - 46EB2E0003F930 /* http.upbdefs.h in Headers */, - 46EB2E00040C00 /* http2_errors.h in Headers */, - 46EB2E0003ED10 /* http2_settings.h in Headers */, - 46EB2E0003E9E0 /* http_client_filter.h in Headers */, - 46EB2E0003E7A0 /* http_connect_handshaker.h in Headers */, - 46EB2E0003F030 /* http_connection_manager.upb.h in Headers */, - 46EB2E0003F700 /* http_connection_manager.upbdefs.h in Headers */, - 46EB2E0003E7B0 /* http_proxy.h in Headers */, - 46EB2E0003EA20 /* http_server_filter.h in Headers */, - 46EB2E0003EFD0 /* http_tracer.upb.h in Headers */, - 46EB2E0003F6A0 /* http_tracer.upbdefs.h in Headers */, - 46EB2E0003EE80 /* http_uri.upb.h in Headers */, - 46EB2E0003F550 /* http_uri.upbdefs.h in Headers */, - 46EB2E00040020 /* httpcli.h in Headers */, - 46EB2E0003ED20 /* huffsyms.h in Headers */, - 46EB2E00040830 /* iam_credentials.h in Headers */, - 46EB2E0003E9A0 /* idle_filter_state.h in Headers */, - 46EB2E00040B80 /* init.h in Headers */, - 46EB2E0003ED60 /* inproc_transport.h in Headers */, - 46EB2E00040940 /* insecure_security_connector.h in Headers */, - 46EB2E00041250 /* intercepted_channel.h in Headers */, - 46EB2E00041260 /* interceptor.h in Headers */, - 46EB2E000415D0 /* interceptor.h in Headers */, - 46EB2E00041270 /* interceptor_common.h in Headers */, - 46EB2E0003ED30 /* internal.h in Headers */, - 46EB2E00040220 /* internal_errqueue.h in Headers */, - 46EB2E00040230 /* iocp_windows.h in Headers */, - 46EB2E00040240 /* iomgr.h in Headers */, - 46EB2E00040250 /* iomgr_custom.h in Headers */, - 46EB2E00040260 /* iomgr_internal.h in Headers */, - 46EB2E00040270 /* is_epollexclusive_available.h in Headers */, - 46EB2E0003EAD0 /* jni_utils.h in Headers */, - 46EB2E00040540 /* json.h in Headers */, - 46EB2E00040840 /* json_token.h in Headers */, - 46EB2E00040550 /* json_util.h in Headers */, - 46EB2E00040A10 /* json_util.h in Headers */, - 46EB2E00040850 /* jwt_credentials.h in Headers */, - 46EB2E00040860 /* jwt_verifier.h in Headers */, - 46EB2E00040B90 /* lame_client.h in Headers */, - 46EB2E0003E7C0 /* lb_policy.h in Headers */, - 46EB2E0003E890 /* lb_policy_factory.h in Headers */, - 46EB2E0003E8A0 /* lb_policy_registry.h in Headers */, - 46EB2E0003F0C0 /* lds.upb.h in Headers */, - 46EB2E0003F790 /* lds.upbdefs.h in Headers */, - 46EB2E0003EF30 /* listener.upb.h in Headers */, - 46EB2E0003F600 /* listener.upbdefs.h in Headers */, - 46EB2E0003EF40 /* listener_components.upb.h in Headers */, - 46EB2E0003F610 /* listener_components.upbdefs.h in Headers */, - 46EB2E0003F330 /* load_balancer.upb.h in Headers */, - 46EB2E0003E840 /* load_balancer_api.h in Headers */, - 46EB2E00040280 /* load_file.h in Headers */, - 46EB2E0003EF10 /* load_report.upb.h in Headers */, - 46EB2E0003F5E0 /* load_report.upbdefs.h in Headers */, - 46EB2E00040950 /* load_system_roots.h in Headers */, - 46EB2E00040960 /* load_system_roots_linux.h in Headers */, - 46EB2E00040870 /* local_credentials.h in Headers */, - 46EB2E00040970 /* local_security_connector.h in Headers */, - 46EB2E0003E8B0 /* local_subchannel_pool.h in Headers */, - 46EB2E00040DC0 /* local_transport_security.h in Headers */, - 46EB2E00040290 /* lockfree_event.h in Headers */, - 46EB2E00040600 /* loop.h in Headers */, - 46EB2E0003F0D0 /* lrs.upb.h in Headers */, - 46EB2E0003F7A0 /* lrs.upbdefs.h in Headers */, - 46EB2E0003FF50 /* manual_constructor.h in Headers */, - 46EB2E00040610 /* map.h in Headers */, - 46EB2E00040560 /* matchers.h in Headers */, - 46EB2E00040730 /* matchers.h in Headers */, - 46EB2E0003EA30 /* max_age_filter.h in Headers */, - 46EB2E0003FF60 /* memory.h in Headers */, - 46EB2E000406B0 /* memory_quota.h in Headers */, - 46EB2E00041280 /* message_allocator.h in Headers */, - 46EB2E000415E0 /* message_allocator.h in Headers */, - 46EB2E0003FD50 /* message_compress.h in Headers */, - 46EB2E0003EA00 /* message_compress_filter.h in Headers */, - 46EB2E0003EA10 /* message_decompress_filter.h in Headers */, - 46EB2E0003EA40 /* message_size_filter.h in Headers */, - 46EB2E0003F120 /* metadata.upb.h in Headers */, - 46EB2E0003F1A0 /* metadata.upb.h in Headers */, - 46EB2E0003F7F0 /* metadata.upbdefs.h in Headers */, - 46EB2E0003F870 /* metadata.upbdefs.h in Headers */, - 46EB2E00040C10 /* metadata_batch.h in Headers */, - 46EB2E00041290 /* metadata_map.h in Headers */, - 46EB2E000412A0 /* method_handler.h in Headers */, - 46EB2E000415F0 /* method_handler.h in Headers */, - 46EB2E000412B0 /* method_handler_impl.h in Headers */, - 46EB2E000413F0 /* method_handler_impl.h in Headers */, - 46EB2E0003F350 /* migrate.upb.h in Headers */, - 46EB2E0003F9C0 /* migrate.upbdefs.h in Headers */, - 46EB2E000401E0 /* mpmcqueue.h in Headers */, - 46EB2E0003FF70 /* mpscq.h in Headers */, - 46EB2E00040F40 /* msg.h in Headers */, - 46EB2E00040F50 /* msg_internal.h in Headers */, - 46EB2E0003FDF0 /* murmur_hash.h in Headers */, - 46EB2E000402A0 /* nameser.h in Headers */, - 46EB2E0003EB30 /* ndk_binder.h in Headers */, - 46EB2E0003F130 /* node.upb.h in Headers */, - 46EB2E0003F800 /* node.upbdefs.h in Headers */, - 46EB2E0003F140 /* number.upb.h in Headers */, - 46EB2E0003F810 /* number.upbdefs.h in Headers */, - 46EB2E00040880 /* oauth2_credentials.h in Headers */, - 46EB2E0003F420 /* orca_load_report.upb.h in Headers */, - 46EB2E0003FF80 /* orphanable.h in Headers */, - 46EB2E0003EDF0 /* outlier_detection.upb.h in Headers */, - 46EB2E0003F4C0 /* outlier_detection.upbdefs.h in Headers */, - 46EB2E0003EF80 /* overload.upb.h in Headers */, - 46EB2E0003F650 /* overload.upbdefs.h in Headers */, - 46EB2E0003FC20 /* parse_address.h in Headers */, - 46EB2E00040C20 /* parsed_metadata.h in Headers */, - 46EB2E00040030 /* parser.h in Headers */, - 46EB2E0003F150 /* path.upb.h in Headers */, - 46EB2E0003F820 /* path.upbdefs.h in Headers */, - 46EB2E0003F110 /* path_transformation.upb.h in Headers */, - 46EB2E0003F7E0 /* path_transformation.upbdefs.h in Headers */, - 46EB2E0003F1D0 /* percent.upb.h in Headers */, - 46EB2E0003F8A0 /* percent.upbdefs.h in Headers */, - 46EB2E00040A60 /* percent_encoding.h in Headers */, - 46EB2E00040C30 /* pid_controller.h in Headers */, - 46EB2E00040890 /* plugin_credentials.h in Headers */, - 46EB2E00040620 /* poll.h in Headers */, - 46EB2E000402B0 /* polling_entity.h in Headers */, - 46EB2E00040180 /* pollset.h in Headers */, - 46EB2E000402C0 /* pollset.h in Headers */, - 46EB2E000402D0 /* pollset_custom.h in Headers */, - 46EB2E000402E0 /* pollset_set.h in Headers */, - 46EB2E000402F0 /* pollset_set_custom.h in Headers */, - 46EB2E00040300 /* pollset_set_windows.h in Headers */, - 46EB2E00040310 /* pollset_windows.h in Headers */, - 46EB2E00040320 /* port.h in Headers */, - 46EB2E00040F60 /* port_def.inc in Headers */, - 46EB2E00040F70 /* port_undef.inc in Headers */, - 46EB2E00040190 /* promise.h in Headers */, - 46EB2E000405B0 /* promise_factory.h in Headers */, - 46EB2E000405C0 /* promise_like.h in Headers */, - 46EB2E00041600 /* proto_buffer_reader.h in Headers */, - 46EB2E00041610 /* proto_buffer_writer.h in Headers */, - 46EB2E0003EE90 /* protocol.upb.h in Headers */, - 46EB2E0003F560 /* protocol.upbdefs.h in Headers */, - 46EB2E0003E8C0 /* proxy_mapper.h in Headers */, - 46EB2E0003E8D0 /* proxy_mapper_registry.h in Headers */, - 46EB2E0003EEA0 /* proxy_protocol.upb.h in Headers */, - 46EB2E0003F570 /* proxy_protocol.upbdefs.h in Headers */, - 46EB2E00040330 /* python_util.h in Headers */, - 46EB2E0003EF50 /* quic_config.upb.h in Headers */, - 46EB2E0003F620 /* quic_config.upbdefs.h in Headers */, - 46EB2E00040630 /* race.h in Headers */, - 46EB2E0003F1E0 /* range.upb.h in Headers */, - 46EB2E0003F8B0 /* range.upbdefs.h in Headers */, - 46EB2E0003EF90 /* rbac.upb.h in Headers */, - 46EB2E0003F010 /* rbac.upb.h in Headers */, - 46EB2E0003F660 /* rbac.upbdefs.h in Headers */, - 46EB2E0003F6E0 /* rbac.upbdefs.h in Headers */, - 46EB2E0003EA50 /* rbac_filter.h in Headers */, - 46EB2E00040740 /* rbac_policy.h in Headers */, - 46EB2E0003EA60 /* rbac_service_config_parser.h in Headers */, - 46EB2E0003F0E0 /* rds.upb.h in Headers */, - 46EB2E0003F7B0 /* rds.upbdefs.h in Headers */, - 46EB2E0003FF90 /* ref_counted.h in Headers */, - 46EB2E0003FFA0 /* ref_counted_ptr.h in Headers */, - 46EB2E00040F80 /* reflection.h in Headers */, - 46EB2E00040F90 /* reflection.hpp in Headers */, - 46EB2E0003F160 /* regex.upb.h in Headers */, - 46EB2E0003F830 /* regex.upbdefs.h in Headers */, - 46EB2E00040340 /* resolve_address.h in Headers */, - 46EB2E00040350 /* resolve_address_custom.h in Headers */, - 46EB2E00040360 /* resolve_address_impl.h in Headers */, - 46EB2E00040370 /* resolve_address_posix.h in Headers */, - 46EB2E00040380 /* resolve_address_windows.h in Headers */, - 46EB2E00040390 /* resolved_address.h in Headers */, - 46EB2E000401A0 /* resolved_address_internal.h in Headers */, - 46EB2E000401B0 /* resolver.h in Headers */, - 46EB2E00040650 /* resolver.h in Headers */, - 46EB2E0003EEB0 /* resolver.upb.h in Headers */, - 46EB2E0003F580 /* resolver.upbdefs.h in Headers */, - 46EB2E00040660 /* resolver_factory.h in Headers */, - 46EB2E00040670 /* resolver_registry.h in Headers */, - 46EB2E0003E930 /* resolver_result_parsing.h in Headers */, - 46EB2E0003ED90 /* resource.upb.h in Headers */, - 46EB2E0003F3F0 /* resource.upb.h in Headers */, - 46EB2E0003F460 /* resource.upbdefs.h in Headers */, - 46EB2E0003FA60 /* resource.upbdefs.h in Headers */, - 46EB2E0003F400 /* resource_locator.upb.h in Headers */, - 46EB2E0003FA70 /* resource_locator.upbdefs.h in Headers */, - 46EB2E0003F410 /* resource_name.upb.h in Headers */, - 46EB2E0003FA80 /* resource_name.upbdefs.h in Headers */, - 46EB2E00041470 /* resource_quota.h in Headers */, - 46EB2E000406C0 /* resource_quota.h in Headers */, - 46EB2E0003E940 /* retry_filter.h in Headers */, - 46EB2E0003E950 /* retry_service_config.h in Headers */, - 46EB2E0003E960 /* retry_throttle.h in Headers */, - 46EB2E0003E850 /* ring_hash.h in Headers */, - 46EB2E0003F340 /* rls.upb.h in Headers */, - 46EB2E0003EFA0 /* route.upb.h in Headers */, - 46EB2E0003F670 /* route.upbdefs.h in Headers */, - 46EB2E0003EFB0 /* route_components.upb.h in Headers */, - 46EB2E0003F680 /* route_components.upbdefs.h in Headers */, - 46EB2E0003F020 /* router.upb.h in Headers */, - 46EB2E0003F6F0 /* router.upbdefs.h in Headers */, - 46EB2E000412C0 /* rpc_method.h in Headers */, - 46EB2E00041400 /* rpc_method.h in Headers */, - 46EB2E000412D0 /* rpc_service_method.h in Headers */, - 46EB2E00041410 /* rpc_service_method.h in Headers */, - 46EB2E0003EFC0 /* scoped_route.upb.h in Headers */, - 46EB2E0003F690 /* scoped_route.upbdefs.h in Headers */, - 46EB2E00040750 /* sdk_server_authz_filter.h in Headers */, - 46EB2E0003F060 /* secret.upb.h in Headers */, - 46EB2E0003F730 /* secret.upbdefs.h in Headers */, - 46EB2E00040E70 /* secure_auth_context.h in Headers */, - 46EB2E00040E50 /* secure_credentials.h in Headers */, - 46EB2E000409E0 /* secure_endpoint.h in Headers */, - 46EB2E00040EB0 /* secure_server_credentials.h in Headers */, - 46EB2E0003F360 /* security.upb.h in Headers */, - 46EB2E0003F9D0 /* security.upbdefs.h in Headers */, - 46EB2E00040980 /* security_connector.h in Headers */, - 46EB2E00040760 /* security_context.h in Headers */, - 46EB2E000409F0 /* security_handshaker.h in Headers */, - 46EB2E0003EAE0 /* security_policy_setting.h in Headers */, - 46EB2E0003F1F0 /* semantic_version.upb.h in Headers */, - 46EB2E0003F8C0 /* semantic_version.upbdefs.h in Headers */, - 46EB2E0003F370 /* sensitive.upb.h in Headers */, - 46EB2E0003F9E0 /* sensitive.upbdefs.h in Headers */, - 46EB2E00040640 /* seq.h in Headers */, - 46EB2E000412F0 /* serialization_traits.h in Headers */, - 46EB2E00041420 /* serialization_traits.h in Headers */, - 46EB2E00041520 /* server.h in Headers */, - 46EB2E00040BA0 /* server.h in Headers */, - 46EB2E00040680 /* server_address.h in Headers */, - 46EB2E00041530 /* server_builder.h in Headers */, - 46EB2E00041430 /* server_builder_option.h in Headers */, - 46EB2E00041440 /* server_builder_plugin.h in Headers */, - 46EB2E00041300 /* server_callback.h in Headers */, - 46EB2E00041620 /* server_callback.h in Headers */, - 46EB2E00041310 /* server_callback_handlers.h in Headers */, - 46EB2E0003EA70 /* server_config_selector.h in Headers */, - 46EB2E0003EA80 /* server_config_selector_filter.h in Headers */, - 46EB2E00041320 /* server_context.h in Headers */, - 46EB2E00041540 /* server_context.h in Headers */, - 46EB2E000414E0 /* server_credentials.h in Headers */, - 46EB2E00041450 /* server_initializer.h in Headers */, - 46EB2E00041330 /* server_interceptor.h in Headers */, - 46EB2E00041630 /* server_interceptor.h in Headers */, - 46EB2E00041340 /* server_interface.h in Headers */, - 46EB2E00041550 /* server_posix.h in Headers */, - 46EB2E00040A20 /* service_config.h in Headers */, - 46EB2E00040A30 /* service_config_call_data.h in Headers */, - 46EB2E0003E9D0 /* service_config_parser.h in Headers */, - 46EB2E00040A40 /* service_config_parser.h in Headers */, - 46EB2E00041350 /* service_type.h in Headers */, - 46EB2E00041460 /* service_type.h in Headers */, - 46EB2E00041360 /* slice.h in Headers */, - 46EB2E00041640 /* slice.h in Headers */, - 46EB2E00040A70 /* slice.h in Headers */, - 46EB2E00040A80 /* slice_internal.h in Headers */, - 46EB2E00040A90 /* slice_refcount.h in Headers */, - 46EB2E00040AA0 /* slice_refcount_base.h in Headers */, - 46EB2E00040AB0 /* slice_split.h in Headers */, - 46EB2E00040AC0 /* slice_string_helpers.h in Headers */, - 46EB2E00040AD0 /* slice_utils.h in Headers */, - 46EB2E0003FDC0 /* sockaddr.h in Headers */, - 46EB2E000403A0 /* sockaddr.h in Headers */, - 46EB2E000403B0 /* sockaddr_posix.h in Headers */, - 46EB2E0003FC30 /* sockaddr_utils.h in Headers */, - 46EB2E000403C0 /* sockaddr_windows.h in Headers */, - 46EB2E000403D0 /* socket_factory_posix.h in Headers */, - 46EB2E000403E0 /* socket_mutator.h in Headers */, - 46EB2E0003EEC0 /* socket_option.upb.h in Headers */, - 46EB2E0003F590 /* socket_option.upbdefs.h in Headers */, - 46EB2E000403F0 /* socket_utils.h in Headers */, - 46EB2E00040400 /* socket_utils_posix.h in Headers */, - 46EB2E00040410 /* socket_windows.h in Headers */, - 46EB2E0003FE00 /* spinlock.h in Headers */, - 46EB2E0003F0F0 /* srds.upb.h in Headers */, - 46EB2E0003F7C0 /* srds.upbdefs.h in Headers */, - 46EB2E000408A0 /* ssl_credentials.h in Headers */, - 46EB2E00040990 /* ssl_security_connector.h in Headers */, - 46EB2E00040DD0 /* ssl_session.h in Headers */, - 46EB2E00040DE0 /* ssl_session_cache.h in Headers */, - 46EB2E00040DF0 /* ssl_transport_security.h in Headers */, - 46EB2E00040E00 /* ssl_types.h in Headers */, - 46EB2E000409A0 /* ssl_utils.h in Headers */, - 46EB2E000409B0 /* ssl_utils_config.h in Headers */, - 46EB2E0003FFB0 /* stat.h in Headers */, - 46EB2E0003FD70 /* stats.h in Headers */, - 46EB2E0003EF70 /* stats.upb.h in Headers */, - 46EB2E0003F640 /* stats.upbdefs.h in Headers */, - 46EB2E0003FD80 /* stats_data.h in Headers */, - 46EB2E00041370 /* status.h in Headers */, - 46EB2E00041650 /* status.h in Headers */, - 46EB2E000405D0 /* status.h in Headers */, - 46EB2E0003F2E0 /* status.upb.h in Headers */, - 46EB2E0003F380 /* status.upb.h in Headers */, - 46EB2E0003F3B0 /* status.upb.h in Headers */, - 46EB2E0003F9B0 /* status.upbdefs.h in Headers */, - 46EB2E0003F9F0 /* status.upbdefs.h in Headers */, - 46EB2E0003FA20 /* status.upbdefs.h in Headers */, - 46EB2E00041380 /* status_code_enum.h in Headers */, - 46EB2E00041660 /* status_code_enum.h in Headers */, - 46EB2E00040C40 /* status_conversion.h in Headers */, - 46EB2E0003FFC0 /* status_helper.h in Headers */, - 46EB2E0003FD30 /* status_util.h in Headers */, - 46EB2E0003ED40 /* stream_map.h in Headers */, - 46EB2E0003FE10 /* string.h in Headers */, - 46EB2E0003F170 /* string.upb.h in Headers */, - 46EB2E0003F840 /* string.upbdefs.h in Headers */, - 46EB2E00041390 /* string_ref.h in Headers */, - 46EB2E00041670 /* string_ref.h in Headers */, - 46EB2E0003FE20 /* string_windows.h in Headers */, - 46EB2E0003F180 /* struct.upb.h in Headers */, - 46EB2E0003F2B0 /* struct.upb.h in Headers */, - 46EB2E0003F850 /* struct.upbdefs.h in Headers */, - 46EB2E0003F980 /* struct.upbdefs.h in Headers */, - 46EB2E000413A0 /* stub_options.h in Headers */, - 46EB2E00041680 /* stub_options.h in Headers */, - 46EB2E0003E970 /* subchannel.h in Headers */, - 46EB2E0003E980 /* subchannel_interface.h in Headers */, - 46EB2E0003E860 /* subchannel_list.h in Headers */, - 46EB2E0003E990 /* subchannel_pool_interface.h in Headers */, - 46EB2E0003EED0 /* substitution_format_string.upb.h in Headers */, - 46EB2E0003F5A0 /* substitution_format_string.upbdefs.h in Headers */, - 46EB2E000405E0 /* switch.h in Headers */, - 46EB2E000413B0 /* sync.h in Headers */, - 46EB2E0003FFD0 /* sync.h in Headers */, - 46EB2E000413C0 /* sync_stream.h in Headers */, - 46EB2E00041690 /* sync_stream.h in Headers */, - 46EB2E0003F240 /* syntax.upb.h in Headers */, - 46EB2E0003F910 /* syntax.upbdefs.h in Headers */, - 46EB2E00040420 /* sys_epoll_wrapper.h in Headers */, - 46EB2E0003FFE0 /* table.h in Headers */, - 46EB2E00040FA0 /* table_internal.h in Headers */, - 46EB2E00040430 /* tcp_client.h in Headers */, - 46EB2E00040440 /* tcp_client_posix.h in Headers */, - 46EB2E00040450 /* tcp_custom.h in Headers */, - 46EB2E00040460 /* tcp_posix.h in Headers */, - 46EB2E00040470 /* tcp_server.h in Headers */, - 46EB2E00040480 /* tcp_server_utils_posix.h in Headers */, - 46EB2E00040490 /* tcp_windows.h in Headers */, - 46EB2E00040FB0 /* text_encode.h in Headers */, - 46EB2E0003FFF0 /* thd.h in Headers */, - 46EB2E00040ED0 /* thread_manager.h in Headers */, - 46EB2E00040EC0 /* thread_pool_interface.h in Headers */, - 46EB2E000406D0 /* thread_quota.h in Headers */, - 46EB2E000401F0 /* threadpool.h in Headers */, - 46EB2E000413D0 /* time.h in Headers */, - 46EB2E000416A0 /* time.h in Headers */, - 46EB2E000404A0 /* time_averaged_stats.h in Headers */, - 46EB2E0003FE30 /* time_precise.h in Headers */, - 46EB2E00040000 /* time_util.h in Headers */, - 46EB2E00040C50 /* timeout_encoding.h in Headers */, - 46EB2E000404B0 /* timer.h in Headers */, - 46EB2E000404C0 /* timer_custom.h in Headers */, - 46EB2E000404D0 /* timer_generic.h in Headers */, - 46EB2E000404E0 /* timer_heap.h in Headers */, - 46EB2E000404F0 /* timer_manager.h in Headers */, - 46EB2E00040570 /* timers.h in Headers */, - 46EB2E0003F2C0 /* timestamp.upb.h in Headers */, - 46EB2E0003F990 /* timestamp.upbdefs.h in Headers */, - 46EB2E0003FE40 /* tls.h in Headers */, - 46EB2E0003F070 /* tls.upb.h in Headers */, - 46EB2E0003F740 /* tls.upbdefs.h in Headers */, - 46EB2E000414F0 /* tls_certificate_provider.h in Headers */, - 46EB2E00041500 /* tls_certificate_verifier.h in Headers */, - 46EB2E000408F0 /* tls_credentials.h in Headers */, - 46EB2E00041510 /* tls_credentials_options.h in Headers */, - 46EB2E000409C0 /* tls_security_connector.h in Headers */, - 46EB2E00040900 /* tls_utils.h in Headers */, - 46EB2E0003FE50 /* tmpfile.h in Headers */, - 46EB2E0003FD90 /* trace.h in Headers */, - 46EB2E000406E0 /* trace.h in Headers */, - 46EB2E0003EB90 /* transaction.h in Headers */, - 46EB2E00040C60 /* transport.h in Headers */, - 46EB2E00040C70 /* transport_impl.h in Headers */, - 46EB2E00040E10 /* transport_security.h in Headers */, - 46EB2E0003F310 /* transport_security_common.upb.h in Headers */, - 46EB2E00040D40 /* transport_security_common_api.h in Headers */, - 46EB2E00040E20 /* transport_security_grpc.h in Headers */, - 46EB2E00040E30 /* transport_security_interface.h in Headers */, - 46EB2E0003EB40 /* transport_stream_receiver.h in Headers */, - 46EB2E0003EB50 /* transport_stream_receiver_impl.h in Headers */, - 46EB2E00040A00 /* tsi_error.h in Headers */, - 46EB2E0003F430 /* typed_struct.upb.h in Headers */, - 46EB2E0003FA90 /* typed_struct.upbdefs.h in Headers */, - 46EB2E0003EF60 /* udp_listener_config.upb.h in Headers */, - 46EB2E0003F630 /* udp_listener_config.upbdefs.h in Headers */, - 46EB2E0003EEE0 /* udp_socket_config.upb.h in Headers */, - 46EB2E0003F5B0 /* udp_socket_config.upbdefs.h in Headers */, - 46EB2E00040500 /* unix_sockets_posix.h in Headers */, - 46EB2E00040FC0 /* upb.h in Headers */, - 46EB2E00040FD0 /* upb.hpp in Headers */, - 46EB2E00040FE0 /* upb_internal.h in Headers */, - 46EB2E0003FAE0 /* upb_utils.h in Headers */, - 46EB2E00040C80 /* uri_parser.h in Headers */, - 46EB2E00040800 /* url_external_account_credentials.h in Headers */, - 46EB2E0003FE60 /* useful.h in Headers */, - 46EB2E0003F3A0 /* validate.upb.h in Headers */, - 46EB2E0003FA10 /* validate.upbdefs.h in Headers */, - 46EB2E00040BB0 /* validate_metadata.h in Headers */, - 46EB2E000416B0 /* validate_service_config.h in Headers */, - 46EB2E0003F190 /* value.upb.h in Headers */, - 46EB2E0003F250 /* value.upb.h in Headers */, - 46EB2E0003F860 /* value.upbdefs.h in Headers */, - 46EB2E0003F920 /* value.upbdefs.h in Headers */, - 46EB2E0003ED50 /* varint.h in Headers */, - 46EB2E0003F390 /* versioning.upb.h in Headers */, - 46EB2E0003FA00 /* versioning.upbdefs.h in Headers */, - 46EB2E00040510 /* wakeup_fd_pipe.h in Headers */, - 46EB2E00040520 /* wakeup_fd_posix.h in Headers */, - 46EB2E0003EBA0 /* wire_reader.h in Headers */, - 46EB2E0003EBB0 /* wire_reader_impl.h in Headers */, - 46EB2E0003EBC0 /* wire_writer.h in Headers */, - 46EB2E00040530 /* work_serializer.h in Headers */, - 46EB2E0003F2D0 /* wrappers.upb.h in Headers */, - 46EB2E0003F9A0 /* wrappers.upbdefs.h in Headers */, - 46EB2E0003E870 /* xds.h in Headers */, - 46EB2E0003FAF0 /* xds_api.h in Headers */, - 46EB2E0003FB00 /* xds_bootstrap.h in Headers */, - 46EB2E0003FB10 /* xds_certificate_provider.h in Headers */, - 46EB2E0003E880 /* xds_channel_args.h in Headers */, - 46EB2E0003FB20 /* xds_channel_args.h in Headers */, - 46EB2E0003FB30 /* xds_channel_creds.h in Headers */, - 46EB2E0003FB40 /* xds_channel_stack_modifier.h in Headers */, - 46EB2E0003FB50 /* xds_client.h in Headers */, - 46EB2E0003FB60 /* xds_client_stats.h in Headers */, - 46EB2E0003FB70 /* xds_cluster.h in Headers */, - 46EB2E0003FB80 /* xds_common_types.h in Headers */, - 46EB2E00040910 /* xds_credentials.h in Headers */, - 46EB2E0003FB90 /* xds_endpoint.h in Headers */, - 46EB2E0003FBA0 /* xds_http_fault_filter.h in Headers */, - 46EB2E0003FBB0 /* xds_http_filters.h in Headers */, - 46EB2E0003FBC0 /* xds_http_rbac_filter.h in Headers */, - 46EB2E0003FBD0 /* xds_listener.h in Headers */, - 46EB2E0003E920 /* xds_resolver.h in Headers */, - 46EB2E0003FBE0 /* xds_resource_type.h in Headers */, - 46EB2E0003FBF0 /* xds_resource_type_impl.h in Headers */, - 46EB2E0003FC00 /* xds_route_config.h in Headers */, - 46EB2E0003FC10 /* xds_routing.h in Headers */, - 46EB2E000416C0 /* xds_server_builder.h in Headers */, - 46EB2E00040FF0 /* xxhash.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00041770 /* Headers */ = { + 46EB2E0003EB30 /* accesslog.upb.h in Headers */, + 46EB2E0003F200 /* accesslog.upbdefs.h in Headers */, + 46EB2E00040310 /* activity.h in Headers */, + 46EB2E0003EB90 /* address.upb.h in Headers */, + 46EB2E0003F260 /* address.upbdefs.h in Headers */, + 46EB2E0003E560 /* address_filtering.h in Headers */, + 46EB2E0003EE20 /* ads.upb.h in Headers */, + 46EB2E0003F4F0 /* ads.upbdefs.h in Headers */, + 46EB2E00040D90 /* alarm.h in Headers */, + 46EB2E0003FB60 /* alloc.h in Headers */, + 46EB2E0003E960 /* alpn.h in Headers */, + 46EB2E00040A30 /* alts_counter.h in Headers */, + 46EB2E00040500 /* alts_credentials.h in Headers */, + 46EB2E00040A40 /* alts_crypter.h in Headers */, + 46EB2E00040A50 /* alts_frame_protector.h in Headers */, + 46EB2E00040AE0 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 46EB2E00040AF0 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + 46EB2E00040B00 /* alts_grpc_record_protocol.h in Headers */, + 46EB2E00040B10 /* alts_grpc_record_protocol_common.h in Headers */, + 46EB2E00040A80 /* alts_handshaker_client.h in Headers */, + 46EB2E00040B20 /* alts_iovec_record_protocol.h in Headers */, + 46EB2E00040A60 /* alts_record_protocol_crypter_common.h in Headers */, + 46EB2E000406B0 /* alts_security_connector.h in Headers */, + 46EB2E00040A90 /* alts_shared_resource.h in Headers */, + 46EB2E00040AA0 /* alts_tsi_handshaker.h in Headers */, + 46EB2E00040AB0 /* alts_tsi_handshaker_private.h in Headers */, + 46EB2E00040AC0 /* alts_tsi_utils.h in Headers */, + 46EB2E00040B30 /* alts_zero_copy_grpc_protector.h in Headers */, + 46EB2E0003F080 /* altscontext.upb.h in Headers */, + 46EB2E0003EF90 /* annotations.upb.h in Headers */, + 46EB2E0003F660 /* annotations.upbdefs.h in Headers */, + 46EB2E0003F000 /* any.upb.h in Headers */, + 46EB2E0003F6D0 /* any.upbdefs.h in Headers */, + 46EB2E00040420 /* api.h in Headers */, + 46EB2E0003ECB0 /* api_listener.upb.h in Headers */, + 46EB2E0003F380 /* api_listener.upbdefs.h in Headers */, + 46EB2E00040870 /* api_trace.h in Headers */, + 46EB2E00040430 /* arena.h in Headers */, + 46EB2E00040E10 /* async_generic_service.h in Headers */, + 46EB2E00040E80 /* async_generic_service.h in Headers */, + 46EB2E00040E90 /* async_stream.h in Headers */, + 46EB2E000412F0 /* async_stream.h in Headers */, + 46EB2E00040EA0 /* async_unary_call.h in Headers */, + 46EB2E00041300 /* async_unary_call.h in Headers */, + 46EB2E0003FC00 /* atomic_utils.h in Headers */, + 46EB2E00041070 /* auth_context.h in Headers */, + 46EB2E00041210 /* auth_context.h in Headers */, + 46EB2E00040760 /* auth_filters.h in Headers */, + 46EB2E00041220 /* auth_metadata_processor.h in Headers */, + 46EB2E0003F150 /* authority.upb.h in Headers */, + 46EB2E0003F7C0 /* authority.upbdefs.h in Headers */, + 46EB2E00040480 /* authorization_engine.h in Headers */, + 46EB2E00041230 /* authorization_policy_provider.h in Headers */, + 46EB2E00040490 /* authorization_policy_provider.h in Headers */, + 46EB2E0003F9D0 /* avl.h in Headers */, + 46EB2E00040550 /* aws_external_account_credentials.h in Headers */, + 46EB2E00040560 /* aws_request_signer.h in Headers */, + 46EB2E000407E0 /* b64.h in Headers */, + 46EB2E0003E490 /* backend_metric.h in Headers */, + 46EB2E0003F9E0 /* backoff.h in Headers */, + 46EB2E0003EBA0 /* backoff.upb.h in Headers */, + 46EB2E0003F270 /* backoff.upbdefs.h in Headers */, + 46EB2E0003E4A0 /* backup_poller.h in Headers */, + 46EB2E0003EBB0 /* base.upb.h in Headers */, + 46EB2E0003F280 /* base.upbdefs.h in Headers */, + 46EB2E00040330 /* basic_seq.h in Headers */, + 46EB2E00040950 /* bdp_estimator.h in Headers */, + 46EB2E0003E990 /* bin_decoder.h in Headers */, + 46EB2E0003E9A0 /* bin_encoder.h in Headers */, + 46EB2E0003E8F0 /* binder.h in Headers */, + 46EB2E0003E900 /* binder_android.h in Headers */, + 46EB2E0003E8B0 /* binder_auto_utils.h in Headers */, + 46EB2E0003E820 /* binder_connector.h in Headers */, + 46EB2E0003E910 /* binder_constants.h in Headers */, + 46EB2E00041240 /* binder_credentials.h in Headers */, + 46EB2E00041250 /* binder_security_policy.h in Headers */, + 46EB2E0003E880 /* binder_server.h in Headers */, + 46EB2E0003E890 /* binder_stream.h in Headers */, + 46EB2E0003E8A0 /* binder_transport.h in Headers */, + 46EB2E0003FC10 /* bitset.h in Headers */, + 46EB2E0003FDD0 /* block_annotate.h in Headers */, + 46EB2E0003EB40 /* bootstrap.upb.h in Headers */, + 46EB2E0003F210 /* bootstrap.upbdefs.h in Headers */, + 46EB2E0003FDE0 /* buffer_list.h in Headers */, + 46EB2E00040880 /* builtins.h in Headers */, + 46EB2E00040EB0 /* byte_buffer.h in Headers */, + 46EB2E00041310 /* byte_buffer.h in Headers */, + 46EB2E00040960 /* byte_stream.h in Headers */, + 46EB2E00040E50 /* call.h in Headers */, + 46EB2E00040EC0 /* call.h in Headers */, + 46EB2E00040890 /* call.h in Headers */, + 46EB2E0003FDF0 /* call_combiner.h in Headers */, + 46EB2E00040ED0 /* call_hook.h in Headers */, + 46EB2E00040EE0 /* call_op_set.h in Headers */, + 46EB2E00040EF0 /* call_op_set_interface.h in Headers */, + 46EB2E000408A0 /* call_test_only.h in Headers */, + 46EB2E0003F9F0 /* call_tracer.h in Headers */, + 46EB2E00040F00 /* callback_common.h in Headers */, + 46EB2E0003EE10 /* cds.upb.h in Headers */, + 46EB2E0003F4E0 /* cds.upbdefs.h in Headers */, + 46EB2E0003EDD0 /* cert.upb.h in Headers */, + 46EB2E0003F4A0 /* cert.upbdefs.h in Headers */, + 46EB2E0003F830 /* certificate_provider_factory.h in Headers */, + 46EB2E0003F840 /* certificate_provider_registry.h in Headers */, + 46EB2E0003F850 /* certificate_provider_store.h in Headers */, + 46EB2E0003FE00 /* cfstream_handle.h in Headers */, + 46EB2E00040DA0 /* channel.h in Headers */, + 46EB2E000408B0 /* channel.h in Headers */, + 46EB2E0003FA00 /* channel_args.h in Headers */, + 46EB2E0003FB30 /* channel_args_endpoint_config.h in Headers */, + 46EB2E0003FA10 /* channel_args_preconditioning.h in Headers */, + 46EB2E00040E60 /* channel_argument_option.h in Headers */, + 46EB2E00041320 /* channel_arguments.h in Headers */, + 46EB2E0003E830 /* channel_create_impl.h in Headers */, + 46EB2E00040BF0 /* channel_filter.h in Headers */, + 46EB2E000408C0 /* channel_init.h in Headers */, + 46EB2E00040F10 /* channel_interface.h in Headers */, + 46EB2E0003FA20 /* channel_stack.h in Headers */, + 46EB2E0003FA30 /* channel_stack_builder.h in Headers */, + 46EB2E000408D0 /* channel_stack_type.h in Headers */, + 46EB2E0003FA40 /* channel_trace.h in Headers */, + 46EB2E0003FA50 /* channelz.h in Headers */, + 46EB2E0003FA60 /* channelz_registry.h in Headers */, + 46EB2E00040510 /* check_gcp_environment.h in Headers */, + 46EB2E0003EFA0 /* checked.upb.h in Headers */, + 46EB2E0003F670 /* checked.upbdefs.h in Headers */, + 46EB2E0003E570 /* child_policy_handler.h in Headers */, + 46EB2E0003E970 /* chttp2_connector.h in Headers */, + 46EB2E0003E980 /* chttp2_server.h in Headers */, + 46EB2E0003E9B0 /* chttp2_transport.h in Headers */, + 46EB2E0003FC20 /* chunked_vector.h in Headers */, + 46EB2E0003EB50 /* circuit_breaker.upb.h in Headers */, + 46EB2E0003F220 /* circuit_breaker.upbdefs.h in Headers */, + 46EB2E0003E780 /* client_authority_filter.h in Headers */, + 46EB2E00040F20 /* client_callback.h in Headers */, + 46EB2E00041330 /* client_callback.h in Headers */, + 46EB2E0003E4B0 /* client_channel.h in Headers */, + 46EB2E0003E4C0 /* client_channel_channelz.h in Headers */, + 46EB2E0003E4D0 /* client_channel_factory.h in Headers */, + 46EB2E00040DB0 /* client_context.h in Headers */, + 46EB2E00040F30 /* client_context.h in Headers */, + 46EB2E00040F40 /* client_interceptor.h in Headers */, + 46EB2E00041340 /* client_interceptor.h in Headers */, + 46EB2E0003E580 /* client_load_reporting_filter.h in Headers */, + 46EB2E00040E70 /* client_unary_call.h in Headers */, + 46EB2E00040F50 /* client_unary_call.h in Headers */, + 46EB2E0003FE10 /* closure.h in Headers */, + 46EB2E0003FEF0 /* closure.h in Headers */, + 46EB2E0003EB60 /* cluster.upb.h in Headers */, + 46EB2E0003ED70 /* cluster.upb.h in Headers */, + 46EB2E0003F230 /* cluster.upbdefs.h in Headers */, + 46EB2E0003F440 /* cluster.upbdefs.h in Headers */, + 46EB2E0003F160 /* collection_entry.upb.h in Headers */, + 46EB2E0003F7D0 /* collection_entry.upbdefs.h in Headers */, + 46EB2E0003FE20 /* combiner.h in Headers */, + 46EB2E0003EDE0 /* common.upb.h in Headers */, + 46EB2E0003F4B0 /* common.upbdefs.h in Headers */, + 46EB2E00040DC0 /* completion_queue.h in Headers */, + 46EB2E00040F60 /* completion_queue.h in Headers */, + 46EB2E000408E0 /* completion_queue.h in Headers */, + 46EB2E000408F0 /* completion_queue_factory.h in Headers */, + 46EB2E00040F70 /* completion_queue_tag.h in Headers */, + 46EB2E00040530 /* composite_credentials.h in Headers */, + 46EB2E0003FAD0 /* compression_internal.h in Headers */, + 46EB2E00040F80 /* config.h in Headers */, + 46EB2E00041350 /* config.h in Headers */, + 46EB2E0003EB00 /* config_dump.upb.h in Headers */, + 46EB2E0003F1D0 /* config_dump.upbdefs.h in Headers */, + 46EB2E0003E4E0 /* config_selector.h in Headers */, + 46EB2E0003EBC0 /* config_source.upb.h in Headers */, + 46EB2E0003F290 /* config_source.upbdefs.h in Headers */, + 46EB2E0003FA70 /* connected_channel.h in Headers */, + 46EB2E0003E840 /* connection_id_generator.h in Headers */, + 46EB2E00040970 /* connectivity_state.h in Headers */, + 46EB2E0003E4F0 /* connector.h in Headers */, + 46EB2E0003FC30 /* construct_destruct.h in Headers */, + 46EB2E0003FA80 /* context.h in Headers */, + 46EB2E00040320 /* context.h in Headers */, + 46EB2E0003E9C0 /* context_list.h in Headers */, + 46EB2E0003F170 /* context_params.upb.h in Headers */, + 46EB2E0003F7E0 /* context_params.upbdefs.h in Headers */, + 46EB2E00040F90 /* core_codegen.h in Headers */, + 46EB2E00040FA0 /* core_codegen_interface.h in Headers */, + 46EB2E0003FAF0 /* core_configuration.h in Headers */, + 46EB2E0003FC40 /* cpp_impl_of.h in Headers */, + 46EB2E00040FB0 /* create_auth_context.h in Headers */, + 46EB2E00040DD0 /* create_channel.h in Headers */, + 46EB2E00040DE0 /* create_channel_binder.h in Headers */, + 46EB2E00040BD0 /* create_channel_internal.h in Headers */, + 46EB2E00040DF0 /* create_channel_posix.h in Headers */, + 46EB2E00041260 /* credentials.h in Headers */, + 46EB2E00040540 /* credentials.h in Headers */, + 46EB2E0003EE90 /* csds.upb.h in Headers */, + 46EB2E0003F560 /* csds.upbdefs.h in Headers */, + 46EB2E0003EF40 /* custom_tag.upb.h in Headers */, + 46EB2E0003F610 /* custom_tag.upbdefs.h in Headers */, + 46EB2E0003E740 /* deadline_filter.h in Headers */, + 46EB2E0003FC50 /* debug_location.h in Headers */, + 46EB2E00040C70 /* decode.h in Headers */, + 46EB2E00040C80 /* decode_fast.h in Headers */, + 46EB2E00040C90 /* decode_internal.h in Headers */, + 46EB2E00040CA0 /* def.h in Headers */, + 46EB2E00040CB0 /* def.hpp in Headers */, + 46EB2E00040C30 /* default_health_check_service.h in Headers */, + 46EB2E00040FC0 /* delegating_channel.h in Headers */, + 46EB2E0003EB10 /* deprecation.upb.h in Headers */, + 46EB2E0003F1E0 /* deprecation.upbdefs.h in Headers */, + 46EB2E0003F010 /* descriptor.upb.h in Headers */, + 46EB2E0003F6E0 /* descriptor.upbdefs.h in Headers */, + 46EB2E0003EE30 /* discovery.upb.h in Headers */, + 46EB2E0003F500 /* discovery.upbdefs.h in Headers */, + 46EB2E0003E690 /* dns_resolver_selection.h in Headers */, + 46EB2E0003FC60 /* dual_ref_counted.h in Headers */, + 46EB2E0003F020 /* duration.upb.h in Headers */, + 46EB2E0003F6F0 /* duration.upbdefs.h in Headers */, + 46EB2E0003FE30 /* dynamic_annotations.h in Headers */, + 46EB2E0003E500 /* dynamic_filters.h in Headers */, + 46EB2E00040C10 /* dynamic_thread_pool.h in Headers */, + 46EB2E0003EE40 /* eds.upb.h in Headers */, + 46EB2E0003F510 /* eds.upbdefs.h in Headers */, + 46EB2E0003F030 /* empty.upb.h in Headers */, + 46EB2E0003F700 /* empty.upbdefs.h in Headers */, + 46EB2E00040CC0 /* encode.h in Headers */, + 46EB2E0003FE40 /* endpoint.h in Headers */, + 46EB2E0003FF00 /* endpoint.h in Headers */, + 46EB2E0003EC80 /* endpoint.upb.h in Headers */, + 46EB2E0003F350 /* endpoint.upbdefs.h in Headers */, + 46EB2E0003E850 /* endpoint_binder_pool.h in Headers */, + 46EB2E0003FE50 /* endpoint_cfstream.h in Headers */, + 46EB2E0003EC90 /* endpoint_components.upb.h in Headers */, + 46EB2E0003F360 /* endpoint_components.upbdefs.h in Headers */, + 46EB2E0003FE60 /* endpoint_pair.h in Headers */, + 46EB2E0003FB70 /* env.h in Headers */, + 46EB2E0003FE70 /* error.h in Headers */, + 46EB2E0003FE80 /* error_cfstream.h in Headers */, + 46EB2E0003FE90 /* error_internal.h in Headers */, + 46EB2E00040980 /* error_utils.h in Headers */, + 46EB2E0003FEA0 /* ev_apple.h in Headers */, + 46EB2E0003FEB0 /* ev_epoll1_linux.h in Headers */, + 46EB2E0003FEC0 /* ev_epollex_linux.h in Headers */, + 46EB2E0003FED0 /* ev_poll_posix.h in Headers */, + 46EB2E0003FEE0 /* ev_posix.h in Headers */, + 46EB2E0003EFB0 /* eval.upb.h in Headers */, + 46EB2E0003F680 /* eval.upbdefs.h in Headers */, + 46EB2E000404A0 /* evaluate_args.h in Headers */, + 46EB2E0003FB40 /* event_engine_factory.h in Headers */, + 46EB2E0003EBD0 /* event_service_config.upb.h in Headers */, + 46EB2E0003F2A0 /* event_service_config.upbdefs.h in Headers */, + 46EB2E00040900 /* event_string.h in Headers */, + 46EB2E0003FC70 /* examine_stack.h in Headers */, + 46EB2E0003FF50 /* exec_ctx.h in Headers */, + 46EB2E00040380 /* exec_ctx_wakeup_scheduler.h in Headers */, + 46EB2E0003FF60 /* executor.h in Headers */, + 46EB2E0003EFC0 /* explain.upb.h in Headers */, + 46EB2E0003F690 /* explain.upbdefs.h in Headers */, + 46EB2E0003EBE0 /* extension.upb.h in Headers */, + 46EB2E0003F2B0 /* extension.upbdefs.h in Headers */, + 46EB2E00040570 /* external_account_credentials.h in Headers */, + 46EB2E00040C20 /* external_connection_acceptor_impl.h in Headers */, + 46EB2E000405A0 /* fake_credentials.h in Headers */, + 46EB2E0003E6A0 /* fake_resolver.h in Headers */, + 46EB2E000406C0 /* fake_security_connector.h in Headers */, + 46EB2E00040B40 /* fake_transport_security.h in Headers */, + 46EB2E0003ED80 /* fault.upb.h in Headers */, + 46EB2E0003ED90 /* fault.upb.h in Headers */, + 46EB2E0003F450 /* fault.upbdefs.h in Headers */, + 46EB2E0003F460 /* fault.upbdefs.h in Headers */, + 46EB2E0003E750 /* fault_injection_filter.h in Headers */, + 46EB2E00040580 /* file_external_account_credentials.h in Headers */, + 46EB2E0003F860 /* file_watcher_certificate_provider_factory.h in Headers */, + 46EB2E0003EB70 /* filter.upb.h in Headers */, + 46EB2E0003F240 /* filter.upbdefs.h in Headers */, + 46EB2E0003E9D0 /* flow_control.h in Headers */, + 46EB2E0003FC80 /* fork.h in Headers */, + 46EB2E0003FDA0 /* format_request.h in Headers */, + 46EB2E0003E9E0 /* frame.h in Headers */, + 46EB2E0003E9F0 /* frame_data.h in Headers */, + 46EB2E0003EA00 /* frame_goaway.h in Headers */, + 46EB2E00040A70 /* frame_handler.h in Headers */, + 46EB2E0003EA10 /* frame_ping.h in Headers */, + 46EB2E0003EA20 /* frame_rst_stream.h in Headers */, + 46EB2E0003EA30 /* frame_settings.h in Headers */, + 46EB2E0003EA40 /* frame_window_update.h in Headers */, + 46EB2E00040E20 /* generic_stub.h in Headers */, + 46EB2E0003FF90 /* gethostname.h in Headers */, + 46EB2E0003FC90 /* global_config.h in Headers */, + 46EB2E0003FCA0 /* global_config_custom.h in Headers */, + 46EB2E0003FCB0 /* global_config_env.h in Headers */, + 46EB2E0003FCC0 /* global_config_generic.h in Headers */, + 46EB2E0003E510 /* global_subchannel_pool.h in Headers */, + 46EB2E000405B0 /* google_default_credentials.h in Headers */, + 46EB2E00040520 /* grpc_alts_credentials_options.h in Headers */, + 46EB2E0003E670 /* grpc_ares_ev_driver.h in Headers */, + 46EB2E0003E680 /* grpc_ares_wrapper.h in Headers */, + 46EB2E000404B0 /* grpc_authorization_engine.h in Headers */, + 46EB2E0003FFA0 /* grpc_if_nametoindex.h in Headers */, + 46EB2E00040FD0 /* grpc_library.h in Headers */, + 46EB2E00041170 /* grpc_library.h in Headers */, + 46EB2E0003EBF0 /* grpc_service.upb.h in Headers */, + 46EB2E0003F2C0 /* grpc_service.upbdefs.h in Headers */, + 46EB2E00040640 /* grpc_tls_certificate_distributor.h in Headers */, + 46EB2E00040650 /* grpc_tls_certificate_provider.h in Headers */, + 46EB2E00040660 /* grpc_tls_certificate_verifier.h in Headers */, + 46EB2E00040670 /* grpc_tls_credentials_options.h in Headers */, + 46EB2E0003E590 /* grpclb.h in Headers */, + 46EB2E0003E5A0 /* grpclb_balancer_addresses.h in Headers */, + 46EB2E0003E5B0 /* grpclb_channel.h in Headers */, + 46EB2E0003E5C0 /* grpclb_client_stats.h in Headers */, + 46EB2E00040E30 /* grpcpp.h in Headers */, + 46EB2E00040A20 /* gsec.h in Headers */, + 46EB2E0003FA90 /* handshaker.h in Headers */, + 46EB2E0003F090 /* handshaker.upb.h in Headers */, + 46EB2E0003FAA0 /* handshaker_factory.h in Headers */, + 46EB2E0003FAB0 /* handshaker_registry.h in Headers */, + 46EB2E0003F0B0 /* health.upb.h in Headers */, + 46EB2E0003EC00 /* health_check.upb.h in Headers */, + 46EB2E0003F2D0 /* health_check.upbdefs.h in Headers */, + 46EB2E0003E520 /* health_check_client.h in Headers */, + 46EB2E00040E40 /* health_check_service_interface.h in Headers */, + 46EB2E00040E00 /* health_check_service_server_builder_option.h in Headers */, + 46EB2E0003FCD0 /* host_port.h in Headers */, + 46EB2E0003EA50 /* hpack_constants.h in Headers */, + 46EB2E0003EA60 /* hpack_encoder.h in Headers */, + 46EB2E0003EA70 /* hpack_encoder_table.h in Headers */, + 46EB2E0003EA80 /* hpack_parser.h in Headers */, + 46EB2E0003EA90 /* hpack_parser_table.h in Headers */, + 46EB2E0003EF50 /* http.upb.h in Headers */, + 46EB2E0003EFF0 /* http.upb.h in Headers */, + 46EB2E0003F620 /* http.upbdefs.h in Headers */, + 46EB2E0003F6C0 /* http.upbdefs.h in Headers */, + 46EB2E00040990 /* http2_errors.h in Headers */, + 46EB2E0003EAA0 /* http2_settings.h in Headers */, + 46EB2E0003E770 /* http_client_filter.h in Headers */, + 46EB2E0003E530 /* http_connect_handshaker.h in Headers */, + 46EB2E0003EDC0 /* http_connection_manager.upb.h in Headers */, + 46EB2E0003F490 /* http_connection_manager.upbdefs.h in Headers */, + 46EB2E0003E540 /* http_proxy.h in Headers */, + 46EB2E0003E7B0 /* http_server_filter.h in Headers */, + 46EB2E0003ED60 /* http_tracer.upb.h in Headers */, + 46EB2E0003F430 /* http_tracer.upbdefs.h in Headers */, + 46EB2E0003EC10 /* http_uri.upb.h in Headers */, + 46EB2E0003F2E0 /* http_uri.upbdefs.h in Headers */, + 46EB2E0003FDB0 /* httpcli.h in Headers */, + 46EB2E0003EAB0 /* huffsyms.h in Headers */, + 46EB2E000405C0 /* iam_credentials.h in Headers */, + 46EB2E0003E730 /* idle_filter_state.h in Headers */, + 46EB2E00040910 /* init.h in Headers */, + 46EB2E0003EAF0 /* inproc_transport.h in Headers */, + 46EB2E000406D0 /* insecure_security_connector.h in Headers */, + 46EB2E00040FE0 /* intercepted_channel.h in Headers */, + 46EB2E00040FF0 /* interceptor.h in Headers */, + 46EB2E00041360 /* interceptor.h in Headers */, + 46EB2E00041000 /* interceptor_common.h in Headers */, + 46EB2E0003EAC0 /* internal.h in Headers */, + 46EB2E0003FFB0 /* internal_errqueue.h in Headers */, + 46EB2E0003FFC0 /* iocp_windows.h in Headers */, + 46EB2E0003FFD0 /* iomgr.h in Headers */, + 46EB2E0003FFE0 /* iomgr_custom.h in Headers */, + 46EB2E0003FFF0 /* iomgr_internal.h in Headers */, + 46EB2E00040000 /* is_epollexclusive_available.h in Headers */, + 46EB2E0003E860 /* jni_utils.h in Headers */, + 46EB2E000402D0 /* json.h in Headers */, + 46EB2E000405D0 /* json_token.h in Headers */, + 46EB2E000402E0 /* json_util.h in Headers */, + 46EB2E000407A0 /* json_util.h in Headers */, + 46EB2E000405E0 /* jwt_credentials.h in Headers */, + 46EB2E000405F0 /* jwt_verifier.h in Headers */, + 46EB2E00040920 /* lame_client.h in Headers */, + 46EB2E0003E550 /* lb_policy.h in Headers */, + 46EB2E0003E620 /* lb_policy_factory.h in Headers */, + 46EB2E0003E630 /* lb_policy_registry.h in Headers */, + 46EB2E0003EE50 /* lds.upb.h in Headers */, + 46EB2E0003F520 /* lds.upbdefs.h in Headers */, + 46EB2E0003ECC0 /* listener.upb.h in Headers */, + 46EB2E0003F390 /* listener.upbdefs.h in Headers */, + 46EB2E0003ECD0 /* listener_components.upb.h in Headers */, + 46EB2E0003F3A0 /* listener_components.upbdefs.h in Headers */, + 46EB2E0003F0C0 /* load_balancer.upb.h in Headers */, + 46EB2E0003E5D0 /* load_balancer_api.h in Headers */, + 46EB2E00040010 /* load_file.h in Headers */, + 46EB2E0003ECA0 /* load_report.upb.h in Headers */, + 46EB2E0003F370 /* load_report.upbdefs.h in Headers */, + 46EB2E000406E0 /* load_system_roots.h in Headers */, + 46EB2E000406F0 /* load_system_roots_linux.h in Headers */, + 46EB2E00040600 /* local_credentials.h in Headers */, + 46EB2E00040700 /* local_security_connector.h in Headers */, + 46EB2E0003E640 /* local_subchannel_pool.h in Headers */, + 46EB2E00040B50 /* local_transport_security.h in Headers */, + 46EB2E00040020 /* lockfree_event.h in Headers */, + 46EB2E00040390 /* loop.h in Headers */, + 46EB2E0003EE60 /* lrs.upb.h in Headers */, + 46EB2E0003F530 /* lrs.upbdefs.h in Headers */, + 46EB2E0003FCE0 /* manual_constructor.h in Headers */, + 46EB2E000403A0 /* map.h in Headers */, + 46EB2E000402F0 /* matchers.h in Headers */, + 46EB2E000404C0 /* matchers.h in Headers */, + 46EB2E0003E7C0 /* max_age_filter.h in Headers */, + 46EB2E0003FCF0 /* memory.h in Headers */, + 46EB2E00040440 /* memory_quota.h in Headers */, + 46EB2E00041010 /* message_allocator.h in Headers */, + 46EB2E00041370 /* message_allocator.h in Headers */, + 46EB2E0003FAE0 /* message_compress.h in Headers */, + 46EB2E0003E790 /* message_compress_filter.h in Headers */, + 46EB2E0003E7A0 /* message_decompress_filter.h in Headers */, + 46EB2E0003E7D0 /* message_size_filter.h in Headers */, + 46EB2E0003EEB0 /* metadata.upb.h in Headers */, + 46EB2E0003EF30 /* metadata.upb.h in Headers */, + 46EB2E0003F580 /* metadata.upbdefs.h in Headers */, + 46EB2E0003F600 /* metadata.upbdefs.h in Headers */, + 46EB2E000409A0 /* metadata_batch.h in Headers */, + 46EB2E00041020 /* metadata_map.h in Headers */, + 46EB2E00041030 /* method_handler.h in Headers */, + 46EB2E00041380 /* method_handler.h in Headers */, + 46EB2E00041040 /* method_handler_impl.h in Headers */, + 46EB2E00041180 /* method_handler_impl.h in Headers */, + 46EB2E0003F0E0 /* migrate.upb.h in Headers */, + 46EB2E0003F750 /* migrate.upbdefs.h in Headers */, + 46EB2E0003FF70 /* mpmcqueue.h in Headers */, + 46EB2E0003FD00 /* mpscq.h in Headers */, + 46EB2E00040CD0 /* msg.h in Headers */, + 46EB2E00040CE0 /* msg_internal.h in Headers */, + 46EB2E0003FB80 /* murmur_hash.h in Headers */, + 46EB2E00040030 /* nameser.h in Headers */, + 46EB2E0003E8C0 /* ndk_binder.h in Headers */, + 46EB2E0003EEC0 /* node.upb.h in Headers */, + 46EB2E0003F590 /* node.upbdefs.h in Headers */, + 46EB2E0003EED0 /* number.upb.h in Headers */, + 46EB2E0003F5A0 /* number.upbdefs.h in Headers */, + 46EB2E00040610 /* oauth2_credentials.h in Headers */, + 46EB2E0003F1B0 /* orca_load_report.upb.h in Headers */, + 46EB2E0003FD10 /* orphanable.h in Headers */, + 46EB2E0003EB80 /* outlier_detection.upb.h in Headers */, + 46EB2E0003F250 /* outlier_detection.upbdefs.h in Headers */, + 46EB2E0003ED10 /* overload.upb.h in Headers */, + 46EB2E0003F3E0 /* overload.upbdefs.h in Headers */, + 46EB2E0003F9B0 /* parse_address.h in Headers */, + 46EB2E000409B0 /* parsed_metadata.h in Headers */, + 46EB2E0003FDC0 /* parser.h in Headers */, + 46EB2E0003EEE0 /* path.upb.h in Headers */, + 46EB2E0003F5B0 /* path.upbdefs.h in Headers */, + 46EB2E0003EEA0 /* path_transformation.upb.h in Headers */, + 46EB2E0003F570 /* path_transformation.upbdefs.h in Headers */, + 46EB2E0003EF60 /* percent.upb.h in Headers */, + 46EB2E0003F630 /* percent.upbdefs.h in Headers */, + 46EB2E000407F0 /* percent_encoding.h in Headers */, + 46EB2E000409C0 /* pid_controller.h in Headers */, + 46EB2E00040620 /* plugin_credentials.h in Headers */, + 46EB2E000403B0 /* poll.h in Headers */, + 46EB2E00040040 /* polling_entity.h in Headers */, + 46EB2E0003FF10 /* pollset.h in Headers */, + 46EB2E00040050 /* pollset.h in Headers */, + 46EB2E00040060 /* pollset_custom.h in Headers */, + 46EB2E00040070 /* pollset_set.h in Headers */, + 46EB2E00040080 /* pollset_set_custom.h in Headers */, + 46EB2E00040090 /* pollset_set_windows.h in Headers */, + 46EB2E000400A0 /* pollset_windows.h in Headers */, + 46EB2E000400B0 /* port.h in Headers */, + 46EB2E00040CF0 /* port_def.inc in Headers */, + 46EB2E00040D00 /* port_undef.inc in Headers */, + 46EB2E0003FF20 /* promise.h in Headers */, + 46EB2E00040340 /* promise_factory.h in Headers */, + 46EB2E00040350 /* promise_like.h in Headers */, + 46EB2E00041390 /* proto_buffer_reader.h in Headers */, + 46EB2E000413A0 /* proto_buffer_writer.h in Headers */, + 46EB2E0003EC20 /* protocol.upb.h in Headers */, + 46EB2E0003F2F0 /* protocol.upbdefs.h in Headers */, + 46EB2E0003E650 /* proxy_mapper.h in Headers */, + 46EB2E0003E660 /* proxy_mapper_registry.h in Headers */, + 46EB2E0003EC30 /* proxy_protocol.upb.h in Headers */, + 46EB2E0003F300 /* proxy_protocol.upbdefs.h in Headers */, + 46EB2E000400C0 /* python_util.h in Headers */, + 46EB2E0003ECE0 /* quic_config.upb.h in Headers */, + 46EB2E0003F3B0 /* quic_config.upbdefs.h in Headers */, + 46EB2E000403C0 /* race.h in Headers */, + 46EB2E0003EF70 /* range.upb.h in Headers */, + 46EB2E0003F640 /* range.upbdefs.h in Headers */, + 46EB2E0003ED20 /* rbac.upb.h in Headers */, + 46EB2E0003EDA0 /* rbac.upb.h in Headers */, + 46EB2E0003F3F0 /* rbac.upbdefs.h in Headers */, + 46EB2E0003F470 /* rbac.upbdefs.h in Headers */, + 46EB2E0003E7E0 /* rbac_filter.h in Headers */, + 46EB2E000404D0 /* rbac_policy.h in Headers */, + 46EB2E0003E7F0 /* rbac_service_config_parser.h in Headers */, + 46EB2E0003EE70 /* rds.upb.h in Headers */, + 46EB2E0003F540 /* rds.upbdefs.h in Headers */, + 46EB2E0003FD20 /* ref_counted.h in Headers */, + 46EB2E0003FD30 /* ref_counted_ptr.h in Headers */, + 46EB2E00040D10 /* reflection.h in Headers */, + 46EB2E00040D20 /* reflection.hpp in Headers */, + 46EB2E0003EEF0 /* regex.upb.h in Headers */, + 46EB2E0003F5C0 /* regex.upbdefs.h in Headers */, + 46EB2E000400D0 /* resolve_address.h in Headers */, + 46EB2E000400E0 /* resolve_address_custom.h in Headers */, + 46EB2E000400F0 /* resolve_address_impl.h in Headers */, + 46EB2E00040100 /* resolve_address_posix.h in Headers */, + 46EB2E00040110 /* resolve_address_windows.h in Headers */, + 46EB2E00040120 /* resolved_address.h in Headers */, + 46EB2E0003FF30 /* resolved_address_internal.h in Headers */, + 46EB2E0003FF40 /* resolver.h in Headers */, + 46EB2E000403E0 /* resolver.h in Headers */, + 46EB2E0003EC40 /* resolver.upb.h in Headers */, + 46EB2E0003F310 /* resolver.upbdefs.h in Headers */, + 46EB2E000403F0 /* resolver_factory.h in Headers */, + 46EB2E00040400 /* resolver_registry.h in Headers */, + 46EB2E0003E6C0 /* resolver_result_parsing.h in Headers */, + 46EB2E0003EB20 /* resource.upb.h in Headers */, + 46EB2E0003F180 /* resource.upb.h in Headers */, + 46EB2E0003F1F0 /* resource.upbdefs.h in Headers */, + 46EB2E0003F7F0 /* resource.upbdefs.h in Headers */, + 46EB2E0003F190 /* resource_locator.upb.h in Headers */, + 46EB2E0003F800 /* resource_locator.upbdefs.h in Headers */, + 46EB2E0003F1A0 /* resource_name.upb.h in Headers */, + 46EB2E0003F810 /* resource_name.upbdefs.h in Headers */, + 46EB2E00041200 /* resource_quota.h in Headers */, + 46EB2E00040450 /* resource_quota.h in Headers */, + 46EB2E0003E6D0 /* retry_filter.h in Headers */, + 46EB2E0003E6E0 /* retry_service_config.h in Headers */, + 46EB2E0003E6F0 /* retry_throttle.h in Headers */, + 46EB2E0003E5E0 /* ring_hash.h in Headers */, + 46EB2E0003F0D0 /* rls.upb.h in Headers */, + 46EB2E0003ED30 /* route.upb.h in Headers */, + 46EB2E0003F400 /* route.upbdefs.h in Headers */, + 46EB2E0003ED40 /* route_components.upb.h in Headers */, + 46EB2E0003F410 /* route_components.upbdefs.h in Headers */, + 46EB2E0003EDB0 /* router.upb.h in Headers */, + 46EB2E0003F480 /* router.upbdefs.h in Headers */, + 46EB2E00041050 /* rpc_method.h in Headers */, + 46EB2E00041190 /* rpc_method.h in Headers */, + 46EB2E00041060 /* rpc_service_method.h in Headers */, + 46EB2E000411A0 /* rpc_service_method.h in Headers */, + 46EB2E0003ED50 /* scoped_route.upb.h in Headers */, + 46EB2E0003F420 /* scoped_route.upbdefs.h in Headers */, + 46EB2E000404E0 /* sdk_server_authz_filter.h in Headers */, + 46EB2E0003EDF0 /* secret.upb.h in Headers */, + 46EB2E0003F4C0 /* secret.upbdefs.h in Headers */, + 46EB2E00040C00 /* secure_auth_context.h in Headers */, + 46EB2E00040BE0 /* secure_credentials.h in Headers */, + 46EB2E00040770 /* secure_endpoint.h in Headers */, + 46EB2E00040C40 /* secure_server_credentials.h in Headers */, + 46EB2E0003F0F0 /* security.upb.h in Headers */, + 46EB2E0003F760 /* security.upbdefs.h in Headers */, + 46EB2E00040710 /* security_connector.h in Headers */, + 46EB2E000404F0 /* security_context.h in Headers */, + 46EB2E00040780 /* security_handshaker.h in Headers */, + 46EB2E0003E870 /* security_policy_setting.h in Headers */, + 46EB2E0003EF80 /* semantic_version.upb.h in Headers */, + 46EB2E0003F650 /* semantic_version.upbdefs.h in Headers */, + 46EB2E0003F100 /* sensitive.upb.h in Headers */, + 46EB2E0003F770 /* sensitive.upbdefs.h in Headers */, + 46EB2E000403D0 /* seq.h in Headers */, + 46EB2E00041080 /* serialization_traits.h in Headers */, + 46EB2E000411B0 /* serialization_traits.h in Headers */, + 46EB2E000412B0 /* server.h in Headers */, + 46EB2E00040930 /* server.h in Headers */, + 46EB2E00040410 /* server_address.h in Headers */, + 46EB2E000412C0 /* server_builder.h in Headers */, + 46EB2E000411C0 /* server_builder_option.h in Headers */, + 46EB2E000411D0 /* server_builder_plugin.h in Headers */, + 46EB2E00041090 /* server_callback.h in Headers */, + 46EB2E000413B0 /* server_callback.h in Headers */, + 46EB2E000410A0 /* server_callback_handlers.h in Headers */, + 46EB2E0003E800 /* server_config_selector.h in Headers */, + 46EB2E0003E810 /* server_config_selector_filter.h in Headers */, + 46EB2E000410B0 /* server_context.h in Headers */, + 46EB2E000412D0 /* server_context.h in Headers */, + 46EB2E00041270 /* server_credentials.h in Headers */, + 46EB2E000411E0 /* server_initializer.h in Headers */, + 46EB2E000410C0 /* server_interceptor.h in Headers */, + 46EB2E000413C0 /* server_interceptor.h in Headers */, + 46EB2E000410D0 /* server_interface.h in Headers */, + 46EB2E000412E0 /* server_posix.h in Headers */, + 46EB2E000407B0 /* service_config.h in Headers */, + 46EB2E000407C0 /* service_config_call_data.h in Headers */, + 46EB2E0003E760 /* service_config_parser.h in Headers */, + 46EB2E000407D0 /* service_config_parser.h in Headers */, + 46EB2E000410E0 /* service_type.h in Headers */, + 46EB2E000411F0 /* service_type.h in Headers */, + 46EB2E000410F0 /* slice.h in Headers */, + 46EB2E000413D0 /* slice.h in Headers */, + 46EB2E00040800 /* slice.h in Headers */, + 46EB2E00040810 /* slice_internal.h in Headers */, + 46EB2E00040820 /* slice_refcount.h in Headers */, + 46EB2E00040830 /* slice_refcount_base.h in Headers */, + 46EB2E00040840 /* slice_split.h in Headers */, + 46EB2E00040850 /* slice_string_helpers.h in Headers */, + 46EB2E00040860 /* slice_utils.h in Headers */, + 46EB2E0003FB50 /* sockaddr.h in Headers */, + 46EB2E00040130 /* sockaddr.h in Headers */, + 46EB2E00040140 /* sockaddr_posix.h in Headers */, + 46EB2E0003F9C0 /* sockaddr_utils.h in Headers */, + 46EB2E00040150 /* sockaddr_windows.h in Headers */, + 46EB2E00040160 /* socket_factory_posix.h in Headers */, + 46EB2E00040170 /* socket_mutator.h in Headers */, + 46EB2E0003EC50 /* socket_option.upb.h in Headers */, + 46EB2E0003F320 /* socket_option.upbdefs.h in Headers */, + 46EB2E00040180 /* socket_utils.h in Headers */, + 46EB2E00040190 /* socket_utils_posix.h in Headers */, + 46EB2E000401A0 /* socket_windows.h in Headers */, + 46EB2E0003FB90 /* spinlock.h in Headers */, + 46EB2E0003EE80 /* srds.upb.h in Headers */, + 46EB2E0003F550 /* srds.upbdefs.h in Headers */, + 46EB2E00040630 /* ssl_credentials.h in Headers */, + 46EB2E00040720 /* ssl_security_connector.h in Headers */, + 46EB2E00040B60 /* ssl_session.h in Headers */, + 46EB2E00040B70 /* ssl_session_cache.h in Headers */, + 46EB2E00040B80 /* ssl_transport_security.h in Headers */, + 46EB2E00040B90 /* ssl_types.h in Headers */, + 46EB2E00040730 /* ssl_utils.h in Headers */, + 46EB2E00040740 /* ssl_utils_config.h in Headers */, + 46EB2E0003FD40 /* stat.h in Headers */, + 46EB2E0003FB00 /* stats.h in Headers */, + 46EB2E0003ED00 /* stats.upb.h in Headers */, + 46EB2E0003F3D0 /* stats.upbdefs.h in Headers */, + 46EB2E0003FB10 /* stats_data.h in Headers */, + 46EB2E00041100 /* status.h in Headers */, + 46EB2E000413E0 /* status.h in Headers */, + 46EB2E00040360 /* status.h in Headers */, + 46EB2E0003F070 /* status.upb.h in Headers */, + 46EB2E0003F110 /* status.upb.h in Headers */, + 46EB2E0003F140 /* status.upb.h in Headers */, + 46EB2E0003F740 /* status.upbdefs.h in Headers */, + 46EB2E0003F780 /* status.upbdefs.h in Headers */, + 46EB2E0003F7B0 /* status.upbdefs.h in Headers */, + 46EB2E00041110 /* status_code_enum.h in Headers */, + 46EB2E000413F0 /* status_code_enum.h in Headers */, + 46EB2E000409D0 /* status_conversion.h in Headers */, + 46EB2E0003FD50 /* status_helper.h in Headers */, + 46EB2E0003FAC0 /* status_util.h in Headers */, + 46EB2E0003EAD0 /* stream_map.h in Headers */, + 46EB2E0003FBA0 /* string.h in Headers */, + 46EB2E0003EF00 /* string.upb.h in Headers */, + 46EB2E0003F5D0 /* string.upbdefs.h in Headers */, + 46EB2E00041120 /* string_ref.h in Headers */, + 46EB2E00041400 /* string_ref.h in Headers */, + 46EB2E0003FBB0 /* string_windows.h in Headers */, + 46EB2E0003EF10 /* struct.upb.h in Headers */, + 46EB2E0003F040 /* struct.upb.h in Headers */, + 46EB2E0003F5E0 /* struct.upbdefs.h in Headers */, + 46EB2E0003F710 /* struct.upbdefs.h in Headers */, + 46EB2E00041130 /* stub_options.h in Headers */, + 46EB2E00041410 /* stub_options.h in Headers */, + 46EB2E0003E700 /* subchannel.h in Headers */, + 46EB2E0003E710 /* subchannel_interface.h in Headers */, + 46EB2E0003E5F0 /* subchannel_list.h in Headers */, + 46EB2E0003E720 /* subchannel_pool_interface.h in Headers */, + 46EB2E0003EC60 /* substitution_format_string.upb.h in Headers */, + 46EB2E0003F330 /* substitution_format_string.upbdefs.h in Headers */, + 46EB2E00040370 /* switch.h in Headers */, + 46EB2E00041140 /* sync.h in Headers */, + 46EB2E0003FD60 /* sync.h in Headers */, + 46EB2E00041150 /* sync_stream.h in Headers */, + 46EB2E00041420 /* sync_stream.h in Headers */, + 46EB2E0003EFD0 /* syntax.upb.h in Headers */, + 46EB2E0003F6A0 /* syntax.upbdefs.h in Headers */, + 46EB2E000401B0 /* sys_epoll_wrapper.h in Headers */, + 46EB2E0003FD70 /* table.h in Headers */, + 46EB2E00040D30 /* table_internal.h in Headers */, + 46EB2E000401C0 /* tcp_client.h in Headers */, + 46EB2E000401D0 /* tcp_client_posix.h in Headers */, + 46EB2E000401E0 /* tcp_custom.h in Headers */, + 46EB2E000401F0 /* tcp_posix.h in Headers */, + 46EB2E00040200 /* tcp_server.h in Headers */, + 46EB2E00040210 /* tcp_server_utils_posix.h in Headers */, + 46EB2E00040220 /* tcp_windows.h in Headers */, + 46EB2E00040D40 /* text_encode.h in Headers */, + 46EB2E0003FD80 /* thd.h in Headers */, + 46EB2E00040C60 /* thread_manager.h in Headers */, + 46EB2E00040C50 /* thread_pool_interface.h in Headers */, + 46EB2E00040460 /* thread_quota.h in Headers */, + 46EB2E0003FF80 /* threadpool.h in Headers */, + 46EB2E00041160 /* time.h in Headers */, + 46EB2E00041430 /* time.h in Headers */, + 46EB2E00040230 /* time_averaged_stats.h in Headers */, + 46EB2E0003FBC0 /* time_precise.h in Headers */, + 46EB2E0003FD90 /* time_util.h in Headers */, + 46EB2E000409E0 /* timeout_encoding.h in Headers */, + 46EB2E00040240 /* timer.h in Headers */, + 46EB2E00040250 /* timer_custom.h in Headers */, + 46EB2E00040260 /* timer_generic.h in Headers */, + 46EB2E00040270 /* timer_heap.h in Headers */, + 46EB2E00040280 /* timer_manager.h in Headers */, + 46EB2E00040300 /* timers.h in Headers */, + 46EB2E0003F050 /* timestamp.upb.h in Headers */, + 46EB2E0003F720 /* timestamp.upbdefs.h in Headers */, + 46EB2E0003FBD0 /* tls.h in Headers */, + 46EB2E0003EE00 /* tls.upb.h in Headers */, + 46EB2E0003F4D0 /* tls.upbdefs.h in Headers */, + 46EB2E00041280 /* tls_certificate_provider.h in Headers */, + 46EB2E00041290 /* tls_certificate_verifier.h in Headers */, + 46EB2E00040680 /* tls_credentials.h in Headers */, + 46EB2E000412A0 /* tls_credentials_options.h in Headers */, + 46EB2E00040750 /* tls_security_connector.h in Headers */, + 46EB2E00040690 /* tls_utils.h in Headers */, + 46EB2E0003FBE0 /* tmpfile.h in Headers */, + 46EB2E0003FB20 /* trace.h in Headers */, + 46EB2E00040470 /* trace.h in Headers */, + 46EB2E0003E920 /* transaction.h in Headers */, + 46EB2E000409F0 /* transport.h in Headers */, + 46EB2E00040A00 /* transport_impl.h in Headers */, + 46EB2E00040BA0 /* transport_security.h in Headers */, + 46EB2E0003F0A0 /* transport_security_common.upb.h in Headers */, + 46EB2E00040AD0 /* transport_security_common_api.h in Headers */, + 46EB2E00040BB0 /* transport_security_grpc.h in Headers */, + 46EB2E00040BC0 /* transport_security_interface.h in Headers */, + 46EB2E0003E8D0 /* transport_stream_receiver.h in Headers */, + 46EB2E0003E8E0 /* transport_stream_receiver_impl.h in Headers */, + 46EB2E00040790 /* tsi_error.h in Headers */, + 46EB2E0003F1C0 /* typed_struct.upb.h in Headers */, + 46EB2E0003F820 /* typed_struct.upbdefs.h in Headers */, + 46EB2E0003ECF0 /* udp_listener_config.upb.h in Headers */, + 46EB2E0003F3C0 /* udp_listener_config.upbdefs.h in Headers */, + 46EB2E0003EC70 /* udp_socket_config.upb.h in Headers */, + 46EB2E0003F340 /* udp_socket_config.upbdefs.h in Headers */, + 46EB2E00040290 /* unix_sockets_posix.h in Headers */, + 46EB2E00040D50 /* upb.h in Headers */, + 46EB2E00040D60 /* upb.hpp in Headers */, + 46EB2E00040D70 /* upb_internal.h in Headers */, + 46EB2E0003F870 /* upb_utils.h in Headers */, + 46EB2E00040A10 /* uri_parser.h in Headers */, + 46EB2E00040590 /* url_external_account_credentials.h in Headers */, + 46EB2E0003FBF0 /* useful.h in Headers */, + 46EB2E0003F130 /* validate.upb.h in Headers */, + 46EB2E0003F7A0 /* validate.upbdefs.h in Headers */, + 46EB2E00040940 /* validate_metadata.h in Headers */, + 46EB2E00041440 /* validate_service_config.h in Headers */, + 46EB2E0003EF20 /* value.upb.h in Headers */, + 46EB2E0003EFE0 /* value.upb.h in Headers */, + 46EB2E0003F5F0 /* value.upbdefs.h in Headers */, + 46EB2E0003F6B0 /* value.upbdefs.h in Headers */, + 46EB2E0003EAE0 /* varint.h in Headers */, + 46EB2E0003F120 /* versioning.upb.h in Headers */, + 46EB2E0003F790 /* versioning.upbdefs.h in Headers */, + 46EB2E000402A0 /* wakeup_fd_pipe.h in Headers */, + 46EB2E000402B0 /* wakeup_fd_posix.h in Headers */, + 46EB2E0003E930 /* wire_reader.h in Headers */, + 46EB2E0003E940 /* wire_reader_impl.h in Headers */, + 46EB2E0003E950 /* wire_writer.h in Headers */, + 46EB2E000402C0 /* work_serializer.h in Headers */, + 46EB2E0003F060 /* wrappers.upb.h in Headers */, + 46EB2E0003F730 /* wrappers.upbdefs.h in Headers */, + 46EB2E0003E600 /* xds.h in Headers */, + 46EB2E0003F880 /* xds_api.h in Headers */, + 46EB2E0003F890 /* xds_bootstrap.h in Headers */, + 46EB2E0003F8A0 /* xds_certificate_provider.h in Headers */, + 46EB2E0003E610 /* xds_channel_args.h in Headers */, + 46EB2E0003F8B0 /* xds_channel_args.h in Headers */, + 46EB2E0003F8C0 /* xds_channel_creds.h in Headers */, + 46EB2E0003F8D0 /* xds_channel_stack_modifier.h in Headers */, + 46EB2E0003F8E0 /* xds_client.h in Headers */, + 46EB2E0003F8F0 /* xds_client_stats.h in Headers */, + 46EB2E0003F900 /* xds_cluster.h in Headers */, + 46EB2E0003F910 /* xds_common_types.h in Headers */, + 46EB2E000406A0 /* xds_credentials.h in Headers */, + 46EB2E0003F920 /* xds_endpoint.h in Headers */, + 46EB2E0003F930 /* xds_http_fault_filter.h in Headers */, + 46EB2E0003F940 /* xds_http_filters.h in Headers */, + 46EB2E0003F950 /* xds_http_rbac_filter.h in Headers */, + 46EB2E0003F960 /* xds_listener.h in Headers */, + 46EB2E0003E6B0 /* xds_resolver.h in Headers */, + 46EB2E0003F970 /* xds_resource_type.h in Headers */, + 46EB2E0003F980 /* xds_resource_type_impl.h in Headers */, + 46EB2E0003F990 /* xds_route_config.h in Headers */, + 46EB2E0003F9A0 /* xds_routing.h in Headers */, + 46EB2E00041450 /* xds_server_builder.h in Headers */, + 46EB2E00040D80 /* xxhash.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00041500 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000447C0 /* accesslog.upb.h in Headers */, - 46EB2E00044E90 /* accesslog.upbdefs.h in Headers */, - 46EB2E00045FA0 /* activity.h in Headers */, - 46EB2E00044820 /* address.upb.h in Headers */, - 46EB2E00044EF0 /* address.upbdefs.h in Headers */, - 46EB2E00044330 /* address_filtering.h in Headers */, - 46EB2E00044AB0 /* ads.upb.h in Headers */, - 46EB2E00045180 /* ads.upbdefs.h in Headers */, - 46EB2E00046DC0 /* alloc.h in Headers */, - 46EB2E000457F0 /* alloc.h in Headers */, - 46EB2E000445F0 /* alpn.h in Headers */, - 46EB2E000466C0 /* alts_counter.h in Headers */, - 46EB2E00046190 /* alts_credentials.h in Headers */, - 46EB2E000466D0 /* alts_crypter.h in Headers */, - 46EB2E000466E0 /* alts_frame_protector.h in Headers */, - 46EB2E00046770 /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 46EB2E00046780 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 46EB2E00046790 /* alts_grpc_record_protocol.h in Headers */, - 46EB2E000467A0 /* alts_grpc_record_protocol_common.h in Headers */, - 46EB2E00046710 /* alts_handshaker_client.h in Headers */, - 46EB2E000467B0 /* alts_iovec_record_protocol.h in Headers */, - 46EB2E000466F0 /* alts_record_protocol_crypter_common.h in Headers */, - 46EB2E00046340 /* alts_security_connector.h in Headers */, - 46EB2E00046720 /* alts_shared_resource.h in Headers */, - 46EB2E00046730 /* alts_tsi_handshaker.h in Headers */, - 46EB2E00046740 /* alts_tsi_handshaker_private.h in Headers */, - 46EB2E00046750 /* alts_tsi_utils.h in Headers */, - 46EB2E000467C0 /* alts_zero_copy_grpc_protector.h in Headers */, - 46EB2E00044D10 /* altscontext.upb.h in Headers */, - 46EB2E00044C20 /* annotations.upb.h in Headers */, - 46EB2E000452F0 /* annotations.upbdefs.h in Headers */, - 46EB2E00044C90 /* any.upb.h in Headers */, - 46EB2E00045360 /* any.upbdefs.h in Headers */, - 46EB2E000460B0 /* api.h in Headers */, - 46EB2E00044940 /* api_listener.upb.h in Headers */, - 46EB2E00045010 /* api_listener.upbdefs.h in Headers */, - 46EB2E00046500 /* api_trace.h in Headers */, - 46EB2E000460C0 /* arena.h in Headers */, - 46EB2E00046C10 /* atm.h in Headers */, - 46EB2E00046DD0 /* atm.h in Headers */, - 46EB2E00046C20 /* atm_gcc_atomic.h in Headers */, - 46EB2E00046DE0 /* atm_gcc_atomic.h in Headers */, - 46EB2E00046C30 /* atm_gcc_sync.h in Headers */, - 46EB2E00046DF0 /* atm_gcc_sync.h in Headers */, - 46EB2E00046C40 /* atm_windows.h in Headers */, - 46EB2E00046E00 /* atm_windows.h in Headers */, - 46EB2E00045890 /* atomic_utils.h in Headers */, - 46EB2E000463F0 /* auth_filters.h in Headers */, - 46EB2E00044DE0 /* authority.upb.h in Headers */, - 46EB2E00045450 /* authority.upbdefs.h in Headers */, - 46EB2E00046110 /* authorization_engine.h in Headers */, - 46EB2E00046120 /* authorization_policy_provider.h in Headers */, - 46EB2E00045660 /* avl.h in Headers */, - 46EB2E000461E0 /* aws_external_account_credentials.h in Headers */, - 46EB2E000461F0 /* aws_request_signer.h in Headers */, - 46EB2E00046470 /* b64.h in Headers */, - 46EB2E00044260 /* backend_metric.h in Headers */, - 46EB2E00045670 /* backoff.h in Headers */, - 46EB2E00044830 /* backoff.upb.h in Headers */, - 46EB2E00044F00 /* backoff.upbdefs.h in Headers */, - 46EB2E00044270 /* backup_poller.h in Headers */, - 46EB2E00044840 /* base.upb.h in Headers */, - 46EB2E00044F10 /* base.upbdefs.h in Headers */, - 46EB2E00045FC0 /* basic_seq.h in Headers */, - 46EB2E000465E0 /* bdp_estimator.h in Headers */, - 46EB2E00046950 /* benchmark.h in Headers */, - 46EB2E00044620 /* bin_decoder.h in Headers */, - 46EB2E00044630 /* bin_encoder.h in Headers */, - 46EB2E00046860 /* bitmap256.h in Headers */, - 46EB2E000458A0 /* bitset.h in Headers */, - 46EB2E00045A60 /* block_annotate.h in Headers */, - 46EB2E000447D0 /* bootstrap.upb.h in Headers */, - 46EB2E00044EA0 /* bootstrap.upbdefs.h in Headers */, - 46EB2E00045A70 /* buffer_list.h in Headers */, - 46EB2E00046510 /* builtins.h in Headers */, - 46EB2E00046B20 /* byte_buffer.h in Headers */, - 46EB2E00046C50 /* byte_buffer.h in Headers */, - 46EB2E00046B30 /* byte_buffer_reader.h in Headers */, - 46EB2E00046C60 /* byte_buffer_reader.h in Headers */, - 46EB2E000465F0 /* byte_stream.h in Headers */, - 46EB2E00046520 /* call.h in Headers */, - 46EB2E00045A80 /* call_combiner.h in Headers */, - 46EB2E00046530 /* call_test_only.h in Headers */, - 46EB2E00045680 /* call_tracer.h in Headers */, - 46EB2E00044AA0 /* cds.upb.h in Headers */, - 46EB2E00045170 /* cds.upbdefs.h in Headers */, - 46EB2E00046B40 /* census.h in Headers */, - 46EB2E00044A60 /* cert.upb.h in Headers */, - 46EB2E00045130 /* cert.upbdefs.h in Headers */, - 46EB2E000454C0 /* certificate_provider_factory.h in Headers */, - 46EB2E000454D0 /* certificate_provider_registry.h in Headers */, - 46EB2E000454E0 /* certificate_provider_store.h in Headers */, - 46EB2E00045A90 /* cfstream_handle.h in Headers */, - 46EB2E00046540 /* channel.h in Headers */, - 46EB2E00045690 /* channel_args.h in Headers */, - 46EB2E000457C0 /* channel_args_endpoint_config.h in Headers */, - 46EB2E000456A0 /* channel_args_preconditioning.h in Headers */, - 46EB2E00046550 /* channel_init.h in Headers */, - 46EB2E000456B0 /* channel_stack.h in Headers */, - 46EB2E000456C0 /* channel_stack_builder.h in Headers */, - 46EB2E00046560 /* channel_stack_type.h in Headers */, - 46EB2E000456D0 /* channel_trace.h in Headers */, - 46EB2E000456E0 /* channelz.h in Headers */, - 46EB2E000456F0 /* channelz_registry.h in Headers */, - 46EB2E000461A0 /* check_gcp_environment.h in Headers */, - 46EB2E00044C30 /* checked.upb.h in Headers */, - 46EB2E00045300 /* checked.upbdefs.h in Headers */, - 46EB2E00044340 /* child_policy_handler.h in Headers */, - 46EB2E00044600 /* chttp2_connector.h in Headers */, - 46EB2E00044610 /* chttp2_server.h in Headers */, - 46EB2E00044640 /* chttp2_transport.h in Headers */, - 46EB2E000458B0 /* chunked_vector.h in Headers */, - 46EB2E000447E0 /* circuit_breaker.upb.h in Headers */, - 46EB2E00044EB0 /* circuit_breaker.upbdefs.h in Headers */, - 46EB2E00044550 /* client_authority_filter.h in Headers */, - 46EB2E00044280 /* client_channel.h in Headers */, - 46EB2E00044290 /* client_channel_channelz.h in Headers */, - 46EB2E000442A0 /* client_channel_factory.h in Headers */, - 46EB2E00044350 /* client_load_reporting_filter.h in Headers */, - 46EB2E00045AA0 /* closure.h in Headers */, - 46EB2E00045B80 /* closure.h in Headers */, - 46EB2E000447F0 /* cluster.upb.h in Headers */, - 46EB2E00044A00 /* cluster.upb.h in Headers */, - 46EB2E00044EC0 /* cluster.upbdefs.h in Headers */, - 46EB2E000450D0 /* cluster.upbdefs.h in Headers */, - 46EB2E00044DF0 /* collection_entry.upb.h in Headers */, - 46EB2E00045460 /* collection_entry.upbdefs.h in Headers */, - 46EB2E00045AB0 /* combiner.h in Headers */, - 46EB2E00044A70 /* common.upb.h in Headers */, - 46EB2E00045140 /* common.upbdefs.h in Headers */, - 46EB2E00046570 /* completion_queue.h in Headers */, - 46EB2E00046580 /* completion_queue_factory.h in Headers */, - 46EB2E000461C0 /* composite_credentials.h in Headers */, - 46EB2E00046B50 /* compression.h in Headers */, - 46EB2E00045760 /* compression_internal.h in Headers */, - 46EB2E00046C70 /* compression_types.h in Headers */, - 46EB2E00044790 /* config_dump.upb.h in Headers */, - 46EB2E00044E60 /* config_dump.upbdefs.h in Headers */, - 46EB2E000442B0 /* config_selector.h in Headers */, - 46EB2E00044850 /* config_source.upb.h in Headers */, - 46EB2E00044F20 /* config_source.upbdefs.h in Headers */, - 46EB2E00045700 /* connected_channel.h in Headers */, - 46EB2E00046C80 /* connectivity_state.h in Headers */, - 46EB2E00046600 /* connectivity_state.h in Headers */, - 46EB2E000442C0 /* connector.h in Headers */, - 46EB2E000458C0 /* construct_destruct.h in Headers */, - 46EB2E00045710 /* context.h in Headers */, - 46EB2E00045FB0 /* context.h in Headers */, - 46EB2E00044650 /* context_list.h in Headers */, - 46EB2E00044E00 /* context_params.upb.h in Headers */, - 46EB2E00045470 /* context_params.upbdefs.h in Headers */, - 46EB2E00045780 /* core_configuration.h in Headers */, - 46EB2E000458D0 /* cpp_impl_of.h in Headers */, - 46EB2E00046E10 /* cpu.h in Headers */, - 46EB2E000461D0 /* credentials.h in Headers */, - 46EB2E00044B20 /* csds.upb.h in Headers */, - 46EB2E000451F0 /* csds.upbdefs.h in Headers */, - 46EB2E00044BD0 /* custom_tag.upb.h in Headers */, - 46EB2E000452A0 /* custom_tag.upbdefs.h in Headers */, - 46EB2E00044510 /* deadline_filter.h in Headers */, - 46EB2E000458E0 /* debug_location.h in Headers */, - 46EB2E00046A00 /* decode.h in Headers */, - 46EB2E00046A10 /* decode_fast.h in Headers */, - 46EB2E00046A20 /* decode_internal.h in Headers */, - 46EB2E00046A30 /* def.h in Headers */, - 46EB2E00046A40 /* def.hpp in Headers */, - 46EB2E000447A0 /* deprecation.upb.h in Headers */, - 46EB2E00044E70 /* deprecation.upbdefs.h in Headers */, - 46EB2E00044CA0 /* descriptor.upb.h in Headers */, - 46EB2E00045370 /* descriptor.upbdefs.h in Headers */, - 46EB2E00044AC0 /* discovery.upb.h in Headers */, - 46EB2E00045190 /* discovery.upbdefs.h in Headers */, - 46EB2E00044460 /* dns_resolver_selection.h in Headers */, - 46EB2E000458F0 /* dual_ref_counted.h in Headers */, - 46EB2E00044CB0 /* duration.upb.h in Headers */, - 46EB2E00045380 /* duration.upbdefs.h in Headers */, - 46EB2E00045AC0 /* dynamic_annotations.h in Headers */, - 46EB2E000442D0 /* dynamic_filters.h in Headers */, - 46EB2E00044AD0 /* eds.upb.h in Headers */, - 46EB2E000451A0 /* eds.upbdefs.h in Headers */, - 46EB2E00044CC0 /* empty.upb.h in Headers */, - 46EB2E00045390 /* empty.upbdefs.h in Headers */, - 46EB2E00046A50 /* encode.h in Headers */, - 46EB2E00045AD0 /* endpoint.h in Headers */, - 46EB2E00045B90 /* endpoint.h in Headers */, - 46EB2E00044910 /* endpoint.upb.h in Headers */, - 46EB2E00044FE0 /* endpoint.upbdefs.h in Headers */, - 46EB2E00045AE0 /* endpoint_cfstream.h in Headers */, - 46EB2E00044920 /* endpoint_components.upb.h in Headers */, - 46EB2E00044FF0 /* endpoint_components.upbdefs.h in Headers */, - 46EB2E00046B60 /* endpoint_config.h in Headers */, - 46EB2E00045AF0 /* endpoint_pair.h in Headers */, - 46EB2E00045800 /* env.h in Headers */, - 46EB2E00045B00 /* error.h in Headers */, - 46EB2E00045B10 /* error_cfstream.h in Headers */, - 46EB2E00045B20 /* error_internal.h in Headers */, - 46EB2E00046610 /* error_utils.h in Headers */, - 46EB2E00045B30 /* ev_apple.h in Headers */, - 46EB2E00045B40 /* ev_epoll1_linux.h in Headers */, - 46EB2E00045B50 /* ev_epollex_linux.h in Headers */, - 46EB2E00045B60 /* ev_poll_posix.h in Headers */, - 46EB2E00045B70 /* ev_posix.h in Headers */, - 46EB2E00044C40 /* eval.upb.h in Headers */, - 46EB2E00045310 /* eval.upbdefs.h in Headers */, - 46EB2E00046130 /* evaluate_args.h in Headers */, - 46EB2E00046B70 /* event_engine.h in Headers */, - 46EB2E000457D0 /* event_engine_factory.h in Headers */, - 46EB2E00044860 /* event_service_config.upb.h in Headers */, - 46EB2E00044F30 /* event_service_config.upbdefs.h in Headers */, - 46EB2E00046590 /* event_string.h in Headers */, - 46EB2E00045900 /* examine_stack.h in Headers */, - 46EB2E00045BE0 /* exec_ctx.h in Headers */, - 46EB2E00046010 /* exec_ctx_wakeup_scheduler.h in Headers */, - 46EB2E00045BF0 /* executor.h in Headers */, - 46EB2E00044C50 /* explain.upb.h in Headers */, - 46EB2E00045320 /* explain.upbdefs.h in Headers */, - 46EB2E00044870 /* extension.upb.h in Headers */, - 46EB2E00044F40 /* extension.upbdefs.h in Headers */, - 46EB2E00046200 /* external_account_credentials.h in Headers */, - 46EB2E00046230 /* fake_credentials.h in Headers */, - 46EB2E00044470 /* fake_resolver.h in Headers */, - 46EB2E00046350 /* fake_security_connector.h in Headers */, - 46EB2E000467D0 /* fake_transport_security.h in Headers */, - 46EB2E00044A10 /* fault.upb.h in Headers */, - 46EB2E00044A20 /* fault.upb.h in Headers */, - 46EB2E000450E0 /* fault.upbdefs.h in Headers */, - 46EB2E000450F0 /* fault.upbdefs.h in Headers */, - 46EB2E00044520 /* fault_injection_filter.h in Headers */, - 46EB2E00046210 /* file_external_account_credentials.h in Headers */, - 46EB2E000454F0 /* file_watcher_certificate_provider_factory.h in Headers */, - 46EB2E00044800 /* filter.upb.h in Headers */, - 46EB2E00044ED0 /* filter.upbdefs.h in Headers */, - 46EB2E00046870 /* filtered_re2.h in Headers */, - 46EB2E00046960 /* flags.h in Headers */, - 46EB2E00044660 /* flow_control.h in Headers */, - 46EB2E00046BC0 /* fork.h in Headers */, - 46EB2E00046C90 /* fork.h in Headers */, - 46EB2E00045910 /* fork.h in Headers */, - 46EB2E00045A30 /* format_request.h in Headers */, - 46EB2E00044670 /* frame.h in Headers */, - 46EB2E00044680 /* frame_data.h in Headers */, - 46EB2E00044690 /* frame_goaway.h in Headers */, - 46EB2E00046700 /* frame_handler.h in Headers */, - 46EB2E000446A0 /* frame_ping.h in Headers */, - 46EB2E000446B0 /* frame_rst_stream.h in Headers */, - 46EB2E000446C0 /* frame_settings.h in Headers */, - 46EB2E000446D0 /* frame_window_update.h in Headers */, - 46EB2E00045C20 /* gethostname.h in Headers */, - 46EB2E00045920 /* global_config.h in Headers */, - 46EB2E00045930 /* global_config_custom.h in Headers */, - 46EB2E00045940 /* global_config_env.h in Headers */, - 46EB2E00045950 /* global_config_generic.h in Headers */, - 46EB2E000442E0 /* global_subchannel_pool.h in Headers */, - 46EB2E00046240 /* google_default_credentials.h in Headers */, - 46EB2E00046CA0 /* gpr_slice.h in Headers */, - 46EB2E00046CB0 /* gpr_types.h in Headers */, - 46EB2E00046BD0 /* grpc.h in Headers */, - 46EB2E000461B0 /* grpc_alts_credentials_options.h in Headers */, - 46EB2E00044440 /* grpc_ares_ev_driver.h in Headers */, - 46EB2E00044450 /* grpc_ares_wrapper.h in Headers */, - 46EB2E00046140 /* grpc_authorization_engine.h in Headers */, - 46EB2E00045C30 /* grpc_if_nametoindex.h in Headers */, - 46EB2E00046BE0 /* grpc_posix.h in Headers */, - 46EB2E00046BF0 /* grpc_security.h in Headers */, - 46EB2E00046C00 /* grpc_security_constants.h in Headers */, - 46EB2E00044880 /* grpc_service.upb.h in Headers */, - 46EB2E00044F50 /* grpc_service.upbdefs.h in Headers */, - 46EB2E000462D0 /* grpc_tls_certificate_distributor.h in Headers */, - 46EB2E000462E0 /* grpc_tls_certificate_provider.h in Headers */, - 46EB2E000462F0 /* grpc_tls_certificate_verifier.h in Headers */, - 46EB2E00046300 /* grpc_tls_credentials_options.h in Headers */, - 46EB2E00046CC0 /* grpc_types.h in Headers */, - 46EB2E00044360 /* grpclb.h in Headers */, - 46EB2E00044370 /* grpclb_balancer_addresses.h in Headers */, - 46EB2E00044380 /* grpclb_channel.h in Headers */, - 46EB2E00044390 /* grpclb_client_stats.h in Headers */, - 46EB2E000466B0 /* gsec.h in Headers */, - 46EB2E00045720 /* handshaker.h in Headers */, - 46EB2E00044D20 /* handshaker.upb.h in Headers */, - 46EB2E00045730 /* handshaker_factory.h in Headers */, - 46EB2E00045740 /* handshaker_registry.h in Headers */, - 46EB2E00044D40 /* health.upb.h in Headers */, - 46EB2E00044890 /* health_check.upb.h in Headers */, - 46EB2E00044F60 /* health_check.upbdefs.h in Headers */, - 46EB2E000442F0 /* health_check_client.h in Headers */, - 46EB2E00045960 /* host_port.h in Headers */, - 46EB2E000446E0 /* hpack_constants.h in Headers */, - 46EB2E000446F0 /* hpack_encoder.h in Headers */, - 46EB2E00044700 /* hpack_encoder_table.h in Headers */, - 46EB2E00044710 /* hpack_parser.h in Headers */, - 46EB2E00044720 /* hpack_parser_table.h in Headers */, - 46EB2E00044BE0 /* http.upb.h in Headers */, - 46EB2E00044C80 /* http.upb.h in Headers */, - 46EB2E000452B0 /* http.upbdefs.h in Headers */, - 46EB2E00045350 /* http.upbdefs.h in Headers */, - 46EB2E00046620 /* http2_errors.h in Headers */, - 46EB2E00044730 /* http2_settings.h in Headers */, - 46EB2E00044540 /* http_client_filter.h in Headers */, - 46EB2E00044300 /* http_connect_handshaker.h in Headers */, - 46EB2E00044A50 /* http_connection_manager.upb.h in Headers */, - 46EB2E00045120 /* http_connection_manager.upbdefs.h in Headers */, - 46EB2E00044310 /* http_proxy.h in Headers */, - 46EB2E00044580 /* http_server_filter.h in Headers */, - 46EB2E000449F0 /* http_tracer.upb.h in Headers */, - 46EB2E000450C0 /* http_tracer.upbdefs.h in Headers */, - 46EB2E000448A0 /* http_uri.upb.h in Headers */, - 46EB2E00044F70 /* http_uri.upbdefs.h in Headers */, - 46EB2E00045A40 /* httpcli.h in Headers */, - 46EB2E00044740 /* huffsyms.h in Headers */, - 46EB2E00046250 /* iam_credentials.h in Headers */, - 46EB2E00044500 /* idle_filter_state.h in Headers */, - 46EB2E000465A0 /* init.h in Headers */, - 46EB2E00044780 /* inproc_transport.h in Headers */, - 46EB2E00046360 /* insecure_security_connector.h in Headers */, - 46EB2E00044750 /* internal.h in Headers */, - 46EB2E00045C40 /* internal_errqueue.h in Headers */, - 46EB2E00045C50 /* iocp_windows.h in Headers */, - 46EB2E00045C60 /* iomgr.h in Headers */, - 46EB2E00045C70 /* iomgr_custom.h in Headers */, - 46EB2E00045C80 /* iomgr_internal.h in Headers */, - 46EB2E00045C90 /* is_epollexclusive_available.h in Headers */, - 46EB2E00045F60 /* json.h in Headers */, - 46EB2E00046260 /* json_token.h in Headers */, - 46EB2E00045F70 /* json_util.h in Headers */, - 46EB2E00046430 /* json_util.h in Headers */, - 46EB2E00046270 /* jwt_credentials.h in Headers */, - 46EB2E00046280 /* jwt_verifier.h in Headers */, - 46EB2E000465B0 /* lame_client.h in Headers */, - 46EB2E00044320 /* lb_policy.h in Headers */, - 46EB2E000443F0 /* lb_policy_factory.h in Headers */, - 46EB2E00044400 /* lb_policy_registry.h in Headers */, - 46EB2E00044AE0 /* lds.upb.h in Headers */, - 46EB2E000451B0 /* lds.upbdefs.h in Headers */, - 46EB2E00044950 /* listener.upb.h in Headers */, - 46EB2E00045020 /* listener.upbdefs.h in Headers */, - 46EB2E00044960 /* listener_components.upb.h in Headers */, - 46EB2E00045030 /* listener_components.upbdefs.h in Headers */, - 46EB2E00044D50 /* load_balancer.upb.h in Headers */, - 46EB2E000443A0 /* load_balancer_api.h in Headers */, - 46EB2E00045CA0 /* load_file.h in Headers */, - 46EB2E00044930 /* load_report.upb.h in Headers */, - 46EB2E00045000 /* load_report.upbdefs.h in Headers */, - 46EB2E00046D80 /* load_reporting.h in Headers */, - 46EB2E00046370 /* load_system_roots.h in Headers */, - 46EB2E00046380 /* load_system_roots_linux.h in Headers */, - 46EB2E00046290 /* local_credentials.h in Headers */, - 46EB2E00046390 /* local_security_connector.h in Headers */, - 46EB2E00044410 /* local_subchannel_pool.h in Headers */, - 46EB2E000467E0 /* local_transport_security.h in Headers */, - 46EB2E00045CB0 /* lockfree_event.h in Headers */, - 46EB2E00046CD0 /* log.h in Headers */, - 46EB2E00046E20 /* log.h in Headers */, - 46EB2E00046E30 /* log_windows.h in Headers */, - 46EB2E00046970 /* logging.h in Headers */, - 46EB2E00046020 /* loop.h in Headers */, - 46EB2E00044AF0 /* lrs.upb.h in Headers */, - 46EB2E000451C0 /* lrs.upbdefs.h in Headers */, - 46EB2E00046980 /* malloc_counter.h in Headers */, - 46EB2E00045970 /* manual_constructor.h in Headers */, - 46EB2E00046030 /* map.h in Headers */, - 46EB2E00045F80 /* matchers.h in Headers */, - 46EB2E00046150 /* matchers.h in Headers */, - 46EB2E00044590 /* max_age_filter.h in Headers */, - 46EB2E00045980 /* memory.h in Headers */, - 46EB2E00046B90 /* memory_allocator.h in Headers */, - 46EB2E00046B80 /* memory_allocator_impl.h in Headers */, - 46EB2E000460D0 /* memory_quota.h in Headers */, - 46EB2E00046BA0 /* memory_request.h in Headers */, - 46EB2E00045770 /* message_compress.h in Headers */, - 46EB2E00044560 /* message_compress_filter.h in Headers */, - 46EB2E00044570 /* message_decompress_filter.h in Headers */, - 46EB2E000445A0 /* message_size_filter.h in Headers */, - 46EB2E00044B40 /* metadata.upb.h in Headers */, - 46EB2E00044BC0 /* metadata.upb.h in Headers */, - 46EB2E00045210 /* metadata.upbdefs.h in Headers */, - 46EB2E00045290 /* metadata.upbdefs.h in Headers */, - 46EB2E00046630 /* metadata_batch.h in Headers */, - 46EB2E00044D70 /* migrate.upb.h in Headers */, - 46EB2E000453E0 /* migrate.upbdefs.h in Headers */, - 46EB2E00046990 /* mix.h in Headers */, - 46EB2E00045C00 /* mpmcqueue.h in Headers */, - 46EB2E00045990 /* mpscq.h in Headers */, - 46EB2E00046A60 /* msg.h in Headers */, - 46EB2E00046A70 /* msg_internal.h in Headers */, - 46EB2E00045810 /* murmur_hash.h in Headers */, - 46EB2E000469A0 /* mutex.h in Headers */, - 46EB2E00045CC0 /* nameser.h in Headers */, - 46EB2E00044B50 /* node.upb.h in Headers */, - 46EB2E00045220 /* node.upbdefs.h in Headers */, - 46EB2E00044B60 /* number.upb.h in Headers */, - 46EB2E00045230 /* number.upbdefs.h in Headers */, - 46EB2E000462A0 /* oauth2_credentials.h in Headers */, - 46EB2E00044E40 /* orca_load_report.upb.h in Headers */, - 46EB2E000459A0 /* orphanable.h in Headers */, - 46EB2E00044810 /* outlier_detection.upb.h in Headers */, - 46EB2E00044EE0 /* outlier_detection.upbdefs.h in Headers */, - 46EB2E000449A0 /* overload.upb.h in Headers */, - 46EB2E00045070 /* overload.upbdefs.h in Headers */, - 46EB2E00045640 /* parse_address.h in Headers */, - 46EB2E00046640 /* parsed_metadata.h in Headers */, - 46EB2E00045A50 /* parser.h in Headers */, - 46EB2E00044B70 /* path.upb.h in Headers */, - 46EB2E00045240 /* path.upbdefs.h in Headers */, - 46EB2E00044B30 /* path_transformation.upb.h in Headers */, - 46EB2E00045200 /* path_transformation.upbdefs.h in Headers */, - 46EB2E000469B0 /* pcre.h in Headers */, - 46EB2E00044BF0 /* percent.upb.h in Headers */, - 46EB2E000452C0 /* percent.upbdefs.h in Headers */, - 46EB2E00046480 /* percent_encoding.h in Headers */, - 46EB2E00046650 /* pid_controller.h in Headers */, - 46EB2E000462B0 /* plugin_credentials.h in Headers */, - 46EB2E00046880 /* pod_array.h in Headers */, - 46EB2E00046040 /* poll.h in Headers */, - 46EB2E00045CD0 /* polling_entity.h in Headers */, - 46EB2E00045BA0 /* pollset.h in Headers */, - 46EB2E00045CE0 /* pollset.h in Headers */, - 46EB2E00045CF0 /* pollset_custom.h in Headers */, - 46EB2E00045D00 /* pollset_set.h in Headers */, - 46EB2E00045D10 /* pollset_set_custom.h in Headers */, - 46EB2E00045D20 /* pollset_set_windows.h in Headers */, - 46EB2E00045D30 /* pollset_windows.h in Headers */, - 46EB2E00046BB0 /* port.h in Headers */, - 46EB2E00045D40 /* port.h in Headers */, - 46EB2E00046A80 /* port_def.inc in Headers */, - 46EB2E00046CE0 /* port_platform.h in Headers */, - 46EB2E00046E40 /* port_platform.h in Headers */, - 46EB2E00046A90 /* port_undef.inc in Headers */, - 46EB2E00046890 /* prefilter.h in Headers */, - 46EB2E000468A0 /* prefilter_tree.h in Headers */, - 46EB2E000468B0 /* prog.h in Headers */, - 46EB2E00045BB0 /* promise.h in Headers */, - 46EB2E00045FD0 /* promise_factory.h in Headers */, - 46EB2E00045FE0 /* promise_like.h in Headers */, - 46EB2E00046CF0 /* propagation_bits.h in Headers */, - 46EB2E000448B0 /* protocol.upb.h in Headers */, - 46EB2E00044F80 /* protocol.upbdefs.h in Headers */, - 46EB2E00044420 /* proxy_mapper.h in Headers */, - 46EB2E00044430 /* proxy_mapper_registry.h in Headers */, - 46EB2E000448C0 /* proxy_protocol.upb.h in Headers */, - 46EB2E00044F90 /* proxy_protocol.upbdefs.h in Headers */, - 46EB2E00045D50 /* python_util.h in Headers */, - 46EB2E00044970 /* quic_config.upb.h in Headers */, - 46EB2E00045040 /* quic_config.upbdefs.h in Headers */, - 46EB2E00046050 /* race.h in Headers */, - 46EB2E00044C00 /* range.upb.h in Headers */, - 46EB2E000452D0 /* range.upbdefs.h in Headers */, - 46EB2E000449B0 /* rbac.upb.h in Headers */, - 46EB2E00044A30 /* rbac.upb.h in Headers */, - 46EB2E00045080 /* rbac.upbdefs.h in Headers */, - 46EB2E00045100 /* rbac.upbdefs.h in Headers */, - 46EB2E000445B0 /* rbac_filter.h in Headers */, - 46EB2E00046160 /* rbac_policy.h in Headers */, - 46EB2E000445C0 /* rbac_service_config_parser.h in Headers */, - 46EB2E00044B00 /* rds.upb.h in Headers */, - 46EB2E000451D0 /* rds.upbdefs.h in Headers */, - 46EB2E000468C0 /* re2.h in Headers */, - 46EB2E000459B0 /* ref_counted.h in Headers */, - 46EB2E000459C0 /* ref_counted_ptr.h in Headers */, - 46EB2E00046AA0 /* reflection.h in Headers */, - 46EB2E00046AB0 /* reflection.hpp in Headers */, - 46EB2E00044B80 /* regex.upb.h in Headers */, - 46EB2E00045250 /* regex.upbdefs.h in Headers */, - 46EB2E000468D0 /* regexp.h in Headers */, - 46EB2E00045D60 /* resolve_address.h in Headers */, - 46EB2E00045D70 /* resolve_address_custom.h in Headers */, - 46EB2E00045D80 /* resolve_address_impl.h in Headers */, - 46EB2E00045D90 /* resolve_address_posix.h in Headers */, - 46EB2E00045DA0 /* resolve_address_windows.h in Headers */, - 46EB2E00045DB0 /* resolved_address.h in Headers */, - 46EB2E00045BC0 /* resolved_address_internal.h in Headers */, - 46EB2E00045BD0 /* resolver.h in Headers */, - 46EB2E00046070 /* resolver.h in Headers */, - 46EB2E000448D0 /* resolver.upb.h in Headers */, - 46EB2E00044FA0 /* resolver.upbdefs.h in Headers */, - 46EB2E00046080 /* resolver_factory.h in Headers */, - 46EB2E00046090 /* resolver_registry.h in Headers */, - 46EB2E00044490 /* resolver_result_parsing.h in Headers */, - 46EB2E000447B0 /* resource.upb.h in Headers */, - 46EB2E00044E10 /* resource.upb.h in Headers */, - 46EB2E00044E80 /* resource.upbdefs.h in Headers */, - 46EB2E00045480 /* resource.upbdefs.h in Headers */, - 46EB2E00044E20 /* resource_locator.upb.h in Headers */, - 46EB2E00045490 /* resource_locator.upbdefs.h in Headers */, - 46EB2E00044E30 /* resource_name.upb.h in Headers */, - 46EB2E000454A0 /* resource_name.upbdefs.h in Headers */, - 46EB2E000460E0 /* resource_quota.h in Headers */, - 46EB2E000444A0 /* retry_filter.h in Headers */, - 46EB2E000444B0 /* retry_service_config.h in Headers */, - 46EB2E000444C0 /* retry_throttle.h in Headers */, - 46EB2E000443B0 /* ring_hash.h in Headers */, - 46EB2E00044D60 /* rls.upb.h in Headers */, - 46EB2E000449C0 /* route.upb.h in Headers */, - 46EB2E00045090 /* route.upbdefs.h in Headers */, - 46EB2E000449D0 /* route_components.upb.h in Headers */, - 46EB2E000450A0 /* route_components.upbdefs.h in Headers */, - 46EB2E00044A40 /* router.upb.h in Headers */, - 46EB2E00045110 /* router.upbdefs.h in Headers */, - 46EB2E000449E0 /* scoped_route.upb.h in Headers */, - 46EB2E000450B0 /* scoped_route.upbdefs.h in Headers */, - 46EB2E00046170 /* sdk_server_authz_filter.h in Headers */, - 46EB2E00044A80 /* secret.upb.h in Headers */, - 46EB2E00045150 /* secret.upbdefs.h in Headers */, - 46EB2E00046400 /* secure_endpoint.h in Headers */, - 46EB2E00044D80 /* security.upb.h in Headers */, - 46EB2E000453F0 /* security.upbdefs.h in Headers */, - 46EB2E000463A0 /* security_connector.h in Headers */, - 46EB2E00046180 /* security_context.h in Headers */, - 46EB2E00046410 /* security_handshaker.h in Headers */, - 46EB2E00044C10 /* semantic_version.upb.h in Headers */, - 46EB2E000452E0 /* semantic_version.upbdefs.h in Headers */, - 46EB2E00044D90 /* sensitive.upb.h in Headers */, - 46EB2E00045400 /* sensitive.upbdefs.h in Headers */, - 46EB2E00046060 /* seq.h in Headers */, - 46EB2E000465C0 /* server.h in Headers */, - 46EB2E000460A0 /* server_address.h in Headers */, - 46EB2E000445D0 /* server_config_selector.h in Headers */, - 46EB2E000445E0 /* server_config_selector_filter.h in Headers */, - 46EB2E00046440 /* service_config.h in Headers */, - 46EB2E00046450 /* service_config_call_data.h in Headers */, - 46EB2E00044530 /* service_config_parser.h in Headers */, - 46EB2E00046460 /* service_config_parser.h in Headers */, - 46EB2E000468E0 /* set.h in Headers */, - 46EB2E00046D00 /* slice.h in Headers */, - 46EB2E00046D90 /* slice.h in Headers */, - 46EB2E00046490 /* slice.h in Headers */, - 46EB2E00046DA0 /* slice_buffer.h in Headers */, - 46EB2E000464A0 /* slice_internal.h in Headers */, - 46EB2E000464B0 /* slice_refcount.h in Headers */, - 46EB2E000464C0 /* slice_refcount_base.h in Headers */, - 46EB2E000464D0 /* slice_split.h in Headers */, - 46EB2E000464E0 /* slice_string_helpers.h in Headers */, - 46EB2E000464F0 /* slice_utils.h in Headers */, - 46EB2E000457E0 /* sockaddr.h in Headers */, - 46EB2E00045DC0 /* sockaddr.h in Headers */, - 46EB2E00045DD0 /* sockaddr_posix.h in Headers */, - 46EB2E00045650 /* sockaddr_utils.h in Headers */, - 46EB2E00045DE0 /* sockaddr_windows.h in Headers */, - 46EB2E00045DF0 /* socket_factory_posix.h in Headers */, - 46EB2E00045E00 /* socket_mutator.h in Headers */, - 46EB2E000448E0 /* socket_option.upb.h in Headers */, - 46EB2E00044FB0 /* socket_option.upbdefs.h in Headers */, - 46EB2E00045E10 /* socket_utils.h in Headers */, - 46EB2E00045E20 /* socket_utils_posix.h in Headers */, - 46EB2E00045E30 /* socket_windows.h in Headers */, - 46EB2E000468F0 /* sparse_array.h in Headers */, - 46EB2E00046900 /* sparse_set.h in Headers */, - 46EB2E00045820 /* spinlock.h in Headers */, - 46EB2E00044B10 /* srds.upb.h in Headers */, - 46EB2E000451E0 /* srds.upbdefs.h in Headers */, - 46EB2E000462C0 /* ssl_credentials.h in Headers */, - 46EB2E000463B0 /* ssl_security_connector.h in Headers */, - 46EB2E000467F0 /* ssl_session.h in Headers */, - 46EB2E00046800 /* ssl_session_cache.h in Headers */, - 46EB2E00046810 /* ssl_transport_security.h in Headers */, - 46EB2E00046820 /* ssl_types.h in Headers */, - 46EB2E000463C0 /* ssl_utils.h in Headers */, - 46EB2E000463D0 /* ssl_utils_config.h in Headers */, - 46EB2E000459D0 /* stat.h in Headers */, - 46EB2E00045790 /* stats.h in Headers */, - 46EB2E00044990 /* stats.upb.h in Headers */, - 46EB2E00045060 /* stats.upbdefs.h in Headers */, - 46EB2E000457A0 /* stats_data.h in Headers */, - 46EB2E00046D10 /* status.h in Headers */, - 46EB2E00046DB0 /* status.h in Headers */, - 46EB2E00045FF0 /* status.h in Headers */, - 46EB2E00044D00 /* status.upb.h in Headers */, - 46EB2E00044DA0 /* status.upb.h in Headers */, - 46EB2E00044DD0 /* status.upb.h in Headers */, - 46EB2E000453D0 /* status.upbdefs.h in Headers */, - 46EB2E00045410 /* status.upbdefs.h in Headers */, - 46EB2E00045440 /* status.upbdefs.h in Headers */, - 46EB2E00046660 /* status_conversion.h in Headers */, - 46EB2E000459E0 /* status_helper.h in Headers */, - 46EB2E00045750 /* status_util.h in Headers */, - 46EB2E00044760 /* stream_map.h in Headers */, - 46EB2E00045830 /* string.h in Headers */, - 46EB2E00044B90 /* string.upb.h in Headers */, - 46EB2E00045260 /* string.upbdefs.h in Headers */, - 46EB2E00046E50 /* string_util.h in Headers */, - 46EB2E00045840 /* string_windows.h in Headers */, - 46EB2E00046910 /* stringpiece.h in Headers */, - 46EB2E00044BA0 /* struct.upb.h in Headers */, - 46EB2E00044CD0 /* struct.upb.h in Headers */, - 46EB2E00045270 /* struct.upbdefs.h in Headers */, - 46EB2E000453A0 /* struct.upbdefs.h in Headers */, - 46EB2E000469C0 /* strutil.h in Headers */, - 46EB2E000444D0 /* subchannel.h in Headers */, - 46EB2E000444E0 /* subchannel_interface.h in Headers */, - 46EB2E000443C0 /* subchannel_list.h in Headers */, - 46EB2E000444F0 /* subchannel_pool_interface.h in Headers */, - 46EB2E000448F0 /* substitution_format_string.upb.h in Headers */, - 46EB2E00044FC0 /* substitution_format_string.upbdefs.h in Headers */, - 46EB2E00046000 /* switch.h in Headers */, - 46EB2E00046D20 /* sync.h in Headers */, - 46EB2E00046E60 /* sync.h in Headers */, - 46EB2E000459F0 /* sync.h in Headers */, - 46EB2E00046D30 /* sync_abseil.h in Headers */, - 46EB2E00046E70 /* sync_abseil.h in Headers */, - 46EB2E00046D40 /* sync_custom.h in Headers */, - 46EB2E00046E80 /* sync_custom.h in Headers */, - 46EB2E00046D50 /* sync_generic.h in Headers */, - 46EB2E00046E90 /* sync_generic.h in Headers */, - 46EB2E00046D60 /* sync_posix.h in Headers */, - 46EB2E00046EA0 /* sync_posix.h in Headers */, - 46EB2E00046D70 /* sync_windows.h in Headers */, - 46EB2E00046EB0 /* sync_windows.h in Headers */, - 46EB2E00044C60 /* syntax.upb.h in Headers */, - 46EB2E00045330 /* syntax.upbdefs.h in Headers */, - 46EB2E00045E40 /* sys_epoll_wrapper.h in Headers */, - 46EB2E00045A00 /* table.h in Headers */, - 46EB2E00046AC0 /* table_internal.h in Headers */, - 46EB2E00045E50 /* tcp_client.h in Headers */, - 46EB2E00045E60 /* tcp_client_posix.h in Headers */, - 46EB2E00045E70 /* tcp_custom.h in Headers */, - 46EB2E00045E80 /* tcp_posix.h in Headers */, - 46EB2E00045E90 /* tcp_server.h in Headers */, - 46EB2E00045EA0 /* tcp_server_utils_posix.h in Headers */, - 46EB2E00045EB0 /* tcp_windows.h in Headers */, - 46EB2E000469D0 /* test.h in Headers */, - 46EB2E00046AD0 /* text_encode.h in Headers */, - 46EB2E00045A10 /* thd.h in Headers */, - 46EB2E00046EC0 /* thd_id.h in Headers */, - 46EB2E000460F0 /* thread_quota.h in Headers */, - 46EB2E00045C10 /* threadpool.h in Headers */, - 46EB2E00046ED0 /* time.h in Headers */, - 46EB2E00045EC0 /* time_averaged_stats.h in Headers */, - 46EB2E00045850 /* time_precise.h in Headers */, - 46EB2E00045A20 /* time_util.h in Headers */, - 46EB2E00046670 /* timeout_encoding.h in Headers */, - 46EB2E00045ED0 /* timer.h in Headers */, - 46EB2E00045EE0 /* timer_custom.h in Headers */, - 46EB2E00045EF0 /* timer_generic.h in Headers */, - 46EB2E00045F00 /* timer_heap.h in Headers */, - 46EB2E00045F10 /* timer_manager.h in Headers */, - 46EB2E00045F90 /* timers.h in Headers */, - 46EB2E00044CE0 /* timestamp.upb.h in Headers */, - 46EB2E000453B0 /* timestamp.upbdefs.h in Headers */, - 46EB2E00045860 /* tls.h in Headers */, - 46EB2E00044A90 /* tls.upb.h in Headers */, - 46EB2E00045160 /* tls.upbdefs.h in Headers */, - 46EB2E00046310 /* tls_credentials.h in Headers */, - 46EB2E000463E0 /* tls_security_connector.h in Headers */, - 46EB2E00046320 /* tls_utils.h in Headers */, - 46EB2E00045870 /* tmpfile.h in Headers */, - 46EB2E000457B0 /* trace.h in Headers */, - 46EB2E00046100 /* trace.h in Headers */, - 46EB2E00046680 /* transport.h in Headers */, - 46EB2E00046690 /* transport_impl.h in Headers */, - 46EB2E00046830 /* transport_security.h in Headers */, - 46EB2E00044D30 /* transport_security_common.upb.h in Headers */, - 46EB2E00046760 /* transport_security_common_api.h in Headers */, - 46EB2E00046840 /* transport_security_grpc.h in Headers */, - 46EB2E00046850 /* transport_security_interface.h in Headers */, - 46EB2E00046420 /* tsi_error.h in Headers */, - 46EB2E00044E50 /* typed_struct.upb.h in Headers */, - 46EB2E000454B0 /* typed_struct.upbdefs.h in Headers */, - 46EB2E00044980 /* udp_listener_config.upb.h in Headers */, - 46EB2E00045050 /* udp_listener_config.upbdefs.h in Headers */, - 46EB2E00044900 /* udp_socket_config.upb.h in Headers */, - 46EB2E00044FD0 /* udp_socket_config.upbdefs.h in Headers */, - 46EB2E00046920 /* unicode_casefold.h in Headers */, - 46EB2E00046930 /* unicode_groups.h in Headers */, - 46EB2E00045F20 /* unix_sockets_posix.h in Headers */, - 46EB2E00046AE0 /* upb.h in Headers */, - 46EB2E00046AF0 /* upb.hpp in Headers */, - 46EB2E00046B00 /* upb_internal.h in Headers */, - 46EB2E00045500 /* upb_utils.h in Headers */, - 46EB2E000466A0 /* uri_parser.h in Headers */, - 46EB2E00046220 /* url_external_account_credentials.h in Headers */, - 46EB2E00045880 /* useful.h in Headers */, - 46EB2E000469E0 /* utf.h in Headers */, - 46EB2E000469F0 /* util.h in Headers */, - 46EB2E00044DC0 /* validate.upb.h in Headers */, - 46EB2E00045430 /* validate.upbdefs.h in Headers */, - 46EB2E000465D0 /* validate_metadata.h in Headers */, - 46EB2E00044BB0 /* value.upb.h in Headers */, - 46EB2E00044C70 /* value.upb.h in Headers */, - 46EB2E00045280 /* value.upbdefs.h in Headers */, - 46EB2E00045340 /* value.upbdefs.h in Headers */, - 46EB2E00044770 /* varint.h in Headers */, - 46EB2E00044DB0 /* versioning.upb.h in Headers */, - 46EB2E00045420 /* versioning.upbdefs.h in Headers */, - 46EB2E00045F30 /* wakeup_fd_pipe.h in Headers */, - 46EB2E00045F40 /* wakeup_fd_posix.h in Headers */, - 46EB2E00046940 /* walker-inl.h in Headers */, - 46EB2E00045F50 /* work_serializer.h in Headers */, - 46EB2E00046EE0 /* workaround_list.h in Headers */, - 46EB2E00044CF0 /* wrappers.upb.h in Headers */, - 46EB2E000453C0 /* wrappers.upbdefs.h in Headers */, - 46EB2E000443D0 /* xds.h in Headers */, - 46EB2E00045510 /* xds_api.h in Headers */, - 46EB2E00045520 /* xds_bootstrap.h in Headers */, - 46EB2E00045530 /* xds_certificate_provider.h in Headers */, - 46EB2E000443E0 /* xds_channel_args.h in Headers */, - 46EB2E00045540 /* xds_channel_args.h in Headers */, - 46EB2E00045550 /* xds_channel_creds.h in Headers */, - 46EB2E00045560 /* xds_channel_stack_modifier.h in Headers */, - 46EB2E00045570 /* xds_client.h in Headers */, - 46EB2E00045580 /* xds_client_stats.h in Headers */, - 46EB2E00045590 /* xds_cluster.h in Headers */, - 46EB2E000455A0 /* xds_common_types.h in Headers */, - 46EB2E00046330 /* xds_credentials.h in Headers */, - 46EB2E000455B0 /* xds_endpoint.h in Headers */, - 46EB2E000455C0 /* xds_http_fault_filter.h in Headers */, - 46EB2E000455D0 /* xds_http_filters.h in Headers */, - 46EB2E000455E0 /* xds_http_rbac_filter.h in Headers */, - 46EB2E000455F0 /* xds_listener.h in Headers */, - 46EB2E00044480 /* xds_resolver.h in Headers */, - 46EB2E00045600 /* xds_resource_type.h in Headers */, - 46EB2E00045610 /* xds_resource_type_impl.h in Headers */, - 46EB2E00045620 /* xds_route_config.h in Headers */, - 46EB2E00045630 /* xds_routing.h in Headers */, - 46EB2E00046B10 /* xxhash.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00046FA0 /* Headers */ = { + 46EB2E00044550 /* accesslog.upb.h in Headers */, + 46EB2E00044C20 /* accesslog.upbdefs.h in Headers */, + 46EB2E00045D30 /* activity.h in Headers */, + 46EB2E000445B0 /* address.upb.h in Headers */, + 46EB2E00044C80 /* address.upbdefs.h in Headers */, + 46EB2E000440C0 /* address_filtering.h in Headers */, + 46EB2E00044840 /* ads.upb.h in Headers */, + 46EB2E00044F10 /* ads.upbdefs.h in Headers */, + 46EB2E00046B50 /* alloc.h in Headers */, + 46EB2E00045580 /* alloc.h in Headers */, + 46EB2E00044380 /* alpn.h in Headers */, + 46EB2E00046450 /* alts_counter.h in Headers */, + 46EB2E00045F20 /* alts_credentials.h in Headers */, + 46EB2E00046460 /* alts_crypter.h in Headers */, + 46EB2E00046470 /* alts_frame_protector.h in Headers */, + 46EB2E00046500 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 46EB2E00046510 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + 46EB2E00046520 /* alts_grpc_record_protocol.h in Headers */, + 46EB2E00046530 /* alts_grpc_record_protocol_common.h in Headers */, + 46EB2E000464A0 /* alts_handshaker_client.h in Headers */, + 46EB2E00046540 /* alts_iovec_record_protocol.h in Headers */, + 46EB2E00046480 /* alts_record_protocol_crypter_common.h in Headers */, + 46EB2E000460D0 /* alts_security_connector.h in Headers */, + 46EB2E000464B0 /* alts_shared_resource.h in Headers */, + 46EB2E000464C0 /* alts_tsi_handshaker.h in Headers */, + 46EB2E000464D0 /* alts_tsi_handshaker_private.h in Headers */, + 46EB2E000464E0 /* alts_tsi_utils.h in Headers */, + 46EB2E00046550 /* alts_zero_copy_grpc_protector.h in Headers */, + 46EB2E00044AA0 /* altscontext.upb.h in Headers */, + 46EB2E000449B0 /* annotations.upb.h in Headers */, + 46EB2E00045080 /* annotations.upbdefs.h in Headers */, + 46EB2E00044A20 /* any.upb.h in Headers */, + 46EB2E000450F0 /* any.upbdefs.h in Headers */, + 46EB2E00045E40 /* api.h in Headers */, + 46EB2E000446D0 /* api_listener.upb.h in Headers */, + 46EB2E00044DA0 /* api_listener.upbdefs.h in Headers */, + 46EB2E00046290 /* api_trace.h in Headers */, + 46EB2E00045E50 /* arena.h in Headers */, + 46EB2E000469A0 /* atm.h in Headers */, + 46EB2E00046B60 /* atm.h in Headers */, + 46EB2E000469B0 /* atm_gcc_atomic.h in Headers */, + 46EB2E00046B70 /* atm_gcc_atomic.h in Headers */, + 46EB2E000469C0 /* atm_gcc_sync.h in Headers */, + 46EB2E00046B80 /* atm_gcc_sync.h in Headers */, + 46EB2E000469D0 /* atm_windows.h in Headers */, + 46EB2E00046B90 /* atm_windows.h in Headers */, + 46EB2E00045620 /* atomic_utils.h in Headers */, + 46EB2E00046180 /* auth_filters.h in Headers */, + 46EB2E00044B70 /* authority.upb.h in Headers */, + 46EB2E000451E0 /* authority.upbdefs.h in Headers */, + 46EB2E00045EA0 /* authorization_engine.h in Headers */, + 46EB2E00045EB0 /* authorization_policy_provider.h in Headers */, + 46EB2E000453F0 /* avl.h in Headers */, + 46EB2E00045F70 /* aws_external_account_credentials.h in Headers */, + 46EB2E00045F80 /* aws_request_signer.h in Headers */, + 46EB2E00046200 /* b64.h in Headers */, + 46EB2E00043FF0 /* backend_metric.h in Headers */, + 46EB2E00045400 /* backoff.h in Headers */, + 46EB2E000445C0 /* backoff.upb.h in Headers */, + 46EB2E00044C90 /* backoff.upbdefs.h in Headers */, + 46EB2E00044000 /* backup_poller.h in Headers */, + 46EB2E000445D0 /* base.upb.h in Headers */, + 46EB2E00044CA0 /* base.upbdefs.h in Headers */, + 46EB2E00045D50 /* basic_seq.h in Headers */, + 46EB2E00046370 /* bdp_estimator.h in Headers */, + 46EB2E000466E0 /* benchmark.h in Headers */, + 46EB2E000443B0 /* bin_decoder.h in Headers */, + 46EB2E000443C0 /* bin_encoder.h in Headers */, + 46EB2E000465F0 /* bitmap256.h in Headers */, + 46EB2E00045630 /* bitset.h in Headers */, + 46EB2E000457F0 /* block_annotate.h in Headers */, + 46EB2E00044560 /* bootstrap.upb.h in Headers */, + 46EB2E00044C30 /* bootstrap.upbdefs.h in Headers */, + 46EB2E00045800 /* buffer_list.h in Headers */, + 46EB2E000462A0 /* builtins.h in Headers */, + 46EB2E000468B0 /* byte_buffer.h in Headers */, + 46EB2E000469E0 /* byte_buffer.h in Headers */, + 46EB2E000468C0 /* byte_buffer_reader.h in Headers */, + 46EB2E000469F0 /* byte_buffer_reader.h in Headers */, + 46EB2E00046380 /* byte_stream.h in Headers */, + 46EB2E000462B0 /* call.h in Headers */, + 46EB2E00045810 /* call_combiner.h in Headers */, + 46EB2E000462C0 /* call_test_only.h in Headers */, + 46EB2E00045410 /* call_tracer.h in Headers */, + 46EB2E00044830 /* cds.upb.h in Headers */, + 46EB2E00044F00 /* cds.upbdefs.h in Headers */, + 46EB2E000468D0 /* census.h in Headers */, + 46EB2E000447F0 /* cert.upb.h in Headers */, + 46EB2E00044EC0 /* cert.upbdefs.h in Headers */, + 46EB2E00045250 /* certificate_provider_factory.h in Headers */, + 46EB2E00045260 /* certificate_provider_registry.h in Headers */, + 46EB2E00045270 /* certificate_provider_store.h in Headers */, + 46EB2E00045820 /* cfstream_handle.h in Headers */, + 46EB2E000462D0 /* channel.h in Headers */, + 46EB2E00045420 /* channel_args.h in Headers */, + 46EB2E00045550 /* channel_args_endpoint_config.h in Headers */, + 46EB2E00045430 /* channel_args_preconditioning.h in Headers */, + 46EB2E000462E0 /* channel_init.h in Headers */, + 46EB2E00045440 /* channel_stack.h in Headers */, + 46EB2E00045450 /* channel_stack_builder.h in Headers */, + 46EB2E000462F0 /* channel_stack_type.h in Headers */, + 46EB2E00045460 /* channel_trace.h in Headers */, + 46EB2E00045470 /* channelz.h in Headers */, + 46EB2E00045480 /* channelz_registry.h in Headers */, + 46EB2E00045F30 /* check_gcp_environment.h in Headers */, + 46EB2E000449C0 /* checked.upb.h in Headers */, + 46EB2E00045090 /* checked.upbdefs.h in Headers */, + 46EB2E000440D0 /* child_policy_handler.h in Headers */, + 46EB2E00044390 /* chttp2_connector.h in Headers */, + 46EB2E000443A0 /* chttp2_server.h in Headers */, + 46EB2E000443D0 /* chttp2_transport.h in Headers */, + 46EB2E00045640 /* chunked_vector.h in Headers */, + 46EB2E00044570 /* circuit_breaker.upb.h in Headers */, + 46EB2E00044C40 /* circuit_breaker.upbdefs.h in Headers */, + 46EB2E000442E0 /* client_authority_filter.h in Headers */, + 46EB2E00044010 /* client_channel.h in Headers */, + 46EB2E00044020 /* client_channel_channelz.h in Headers */, + 46EB2E00044030 /* client_channel_factory.h in Headers */, + 46EB2E000440E0 /* client_load_reporting_filter.h in Headers */, + 46EB2E00045830 /* closure.h in Headers */, + 46EB2E00045910 /* closure.h in Headers */, + 46EB2E00044580 /* cluster.upb.h in Headers */, + 46EB2E00044790 /* cluster.upb.h in Headers */, + 46EB2E00044C50 /* cluster.upbdefs.h in Headers */, + 46EB2E00044E60 /* cluster.upbdefs.h in Headers */, + 46EB2E00044B80 /* collection_entry.upb.h in Headers */, + 46EB2E000451F0 /* collection_entry.upbdefs.h in Headers */, + 46EB2E00045840 /* combiner.h in Headers */, + 46EB2E00044800 /* common.upb.h in Headers */, + 46EB2E00044ED0 /* common.upbdefs.h in Headers */, + 46EB2E00046300 /* completion_queue.h in Headers */, + 46EB2E00046310 /* completion_queue_factory.h in Headers */, + 46EB2E00045F50 /* composite_credentials.h in Headers */, + 46EB2E000468E0 /* compression.h in Headers */, + 46EB2E000454F0 /* compression_internal.h in Headers */, + 46EB2E00046A00 /* compression_types.h in Headers */, + 46EB2E00044520 /* config_dump.upb.h in Headers */, + 46EB2E00044BF0 /* config_dump.upbdefs.h in Headers */, + 46EB2E00044040 /* config_selector.h in Headers */, + 46EB2E000445E0 /* config_source.upb.h in Headers */, + 46EB2E00044CB0 /* config_source.upbdefs.h in Headers */, + 46EB2E00045490 /* connected_channel.h in Headers */, + 46EB2E00046A10 /* connectivity_state.h in Headers */, + 46EB2E00046390 /* connectivity_state.h in Headers */, + 46EB2E00044050 /* connector.h in Headers */, + 46EB2E00045650 /* construct_destruct.h in Headers */, + 46EB2E000454A0 /* context.h in Headers */, + 46EB2E00045D40 /* context.h in Headers */, + 46EB2E000443E0 /* context_list.h in Headers */, + 46EB2E00044B90 /* context_params.upb.h in Headers */, + 46EB2E00045200 /* context_params.upbdefs.h in Headers */, + 46EB2E00045510 /* core_configuration.h in Headers */, + 46EB2E00045660 /* cpp_impl_of.h in Headers */, + 46EB2E00046BA0 /* cpu.h in Headers */, + 46EB2E00045F60 /* credentials.h in Headers */, + 46EB2E000448B0 /* csds.upb.h in Headers */, + 46EB2E00044F80 /* csds.upbdefs.h in Headers */, + 46EB2E00044960 /* custom_tag.upb.h in Headers */, + 46EB2E00045030 /* custom_tag.upbdefs.h in Headers */, + 46EB2E000442A0 /* deadline_filter.h in Headers */, + 46EB2E00045670 /* debug_location.h in Headers */, + 46EB2E00046790 /* decode.h in Headers */, + 46EB2E000467A0 /* decode_fast.h in Headers */, + 46EB2E000467B0 /* decode_internal.h in Headers */, + 46EB2E000467C0 /* def.h in Headers */, + 46EB2E000467D0 /* def.hpp in Headers */, + 46EB2E00044530 /* deprecation.upb.h in Headers */, + 46EB2E00044C00 /* deprecation.upbdefs.h in Headers */, + 46EB2E00044A30 /* descriptor.upb.h in Headers */, + 46EB2E00045100 /* descriptor.upbdefs.h in Headers */, + 46EB2E00044850 /* discovery.upb.h in Headers */, + 46EB2E00044F20 /* discovery.upbdefs.h in Headers */, + 46EB2E000441F0 /* dns_resolver_selection.h in Headers */, + 46EB2E00045680 /* dual_ref_counted.h in Headers */, + 46EB2E00044A40 /* duration.upb.h in Headers */, + 46EB2E00045110 /* duration.upbdefs.h in Headers */, + 46EB2E00045850 /* dynamic_annotations.h in Headers */, + 46EB2E00044060 /* dynamic_filters.h in Headers */, + 46EB2E00044860 /* eds.upb.h in Headers */, + 46EB2E00044F30 /* eds.upbdefs.h in Headers */, + 46EB2E00044A50 /* empty.upb.h in Headers */, + 46EB2E00045120 /* empty.upbdefs.h in Headers */, + 46EB2E000467E0 /* encode.h in Headers */, + 46EB2E00045860 /* endpoint.h in Headers */, + 46EB2E00045920 /* endpoint.h in Headers */, + 46EB2E000446A0 /* endpoint.upb.h in Headers */, + 46EB2E00044D70 /* endpoint.upbdefs.h in Headers */, + 46EB2E00045870 /* endpoint_cfstream.h in Headers */, + 46EB2E000446B0 /* endpoint_components.upb.h in Headers */, + 46EB2E00044D80 /* endpoint_components.upbdefs.h in Headers */, + 46EB2E000468F0 /* endpoint_config.h in Headers */, + 46EB2E00045880 /* endpoint_pair.h in Headers */, + 46EB2E00045590 /* env.h in Headers */, + 46EB2E00045890 /* error.h in Headers */, + 46EB2E000458A0 /* error_cfstream.h in Headers */, + 46EB2E000458B0 /* error_internal.h in Headers */, + 46EB2E000463A0 /* error_utils.h in Headers */, + 46EB2E000458C0 /* ev_apple.h in Headers */, + 46EB2E000458D0 /* ev_epoll1_linux.h in Headers */, + 46EB2E000458E0 /* ev_epollex_linux.h in Headers */, + 46EB2E000458F0 /* ev_poll_posix.h in Headers */, + 46EB2E00045900 /* ev_posix.h in Headers */, + 46EB2E000449D0 /* eval.upb.h in Headers */, + 46EB2E000450A0 /* eval.upbdefs.h in Headers */, + 46EB2E00045EC0 /* evaluate_args.h in Headers */, + 46EB2E00046900 /* event_engine.h in Headers */, + 46EB2E00045560 /* event_engine_factory.h in Headers */, + 46EB2E000445F0 /* event_service_config.upb.h in Headers */, + 46EB2E00044CC0 /* event_service_config.upbdefs.h in Headers */, + 46EB2E00046320 /* event_string.h in Headers */, + 46EB2E00045690 /* examine_stack.h in Headers */, + 46EB2E00045970 /* exec_ctx.h in Headers */, + 46EB2E00045DA0 /* exec_ctx_wakeup_scheduler.h in Headers */, + 46EB2E00045980 /* executor.h in Headers */, + 46EB2E000449E0 /* explain.upb.h in Headers */, + 46EB2E000450B0 /* explain.upbdefs.h in Headers */, + 46EB2E00044600 /* extension.upb.h in Headers */, + 46EB2E00044CD0 /* extension.upbdefs.h in Headers */, + 46EB2E00045F90 /* external_account_credentials.h in Headers */, + 46EB2E00045FC0 /* fake_credentials.h in Headers */, + 46EB2E00044200 /* fake_resolver.h in Headers */, + 46EB2E000460E0 /* fake_security_connector.h in Headers */, + 46EB2E00046560 /* fake_transport_security.h in Headers */, + 46EB2E000447A0 /* fault.upb.h in Headers */, + 46EB2E000447B0 /* fault.upb.h in Headers */, + 46EB2E00044E70 /* fault.upbdefs.h in Headers */, + 46EB2E00044E80 /* fault.upbdefs.h in Headers */, + 46EB2E000442B0 /* fault_injection_filter.h in Headers */, + 46EB2E00045FA0 /* file_external_account_credentials.h in Headers */, + 46EB2E00045280 /* file_watcher_certificate_provider_factory.h in Headers */, + 46EB2E00044590 /* filter.upb.h in Headers */, + 46EB2E00044C60 /* filter.upbdefs.h in Headers */, + 46EB2E00046600 /* filtered_re2.h in Headers */, + 46EB2E000466F0 /* flags.h in Headers */, + 46EB2E000443F0 /* flow_control.h in Headers */, + 46EB2E00046950 /* fork.h in Headers */, + 46EB2E00046A20 /* fork.h in Headers */, + 46EB2E000456A0 /* fork.h in Headers */, + 46EB2E000457C0 /* format_request.h in Headers */, + 46EB2E00044400 /* frame.h in Headers */, + 46EB2E00044410 /* frame_data.h in Headers */, + 46EB2E00044420 /* frame_goaway.h in Headers */, + 46EB2E00046490 /* frame_handler.h in Headers */, + 46EB2E00044430 /* frame_ping.h in Headers */, + 46EB2E00044440 /* frame_rst_stream.h in Headers */, + 46EB2E00044450 /* frame_settings.h in Headers */, + 46EB2E00044460 /* frame_window_update.h in Headers */, + 46EB2E000459B0 /* gethostname.h in Headers */, + 46EB2E000456B0 /* global_config.h in Headers */, + 46EB2E000456C0 /* global_config_custom.h in Headers */, + 46EB2E000456D0 /* global_config_env.h in Headers */, + 46EB2E000456E0 /* global_config_generic.h in Headers */, + 46EB2E00044070 /* global_subchannel_pool.h in Headers */, + 46EB2E00045FD0 /* google_default_credentials.h in Headers */, + 46EB2E00046A30 /* gpr_slice.h in Headers */, + 46EB2E00046A40 /* gpr_types.h in Headers */, + 46EB2E00046960 /* grpc.h in Headers */, + 46EB2E00045F40 /* grpc_alts_credentials_options.h in Headers */, + 46EB2E000441D0 /* grpc_ares_ev_driver.h in Headers */, + 46EB2E000441E0 /* grpc_ares_wrapper.h in Headers */, + 46EB2E00045ED0 /* grpc_authorization_engine.h in Headers */, + 46EB2E000459C0 /* grpc_if_nametoindex.h in Headers */, + 46EB2E00046970 /* grpc_posix.h in Headers */, + 46EB2E00046980 /* grpc_security.h in Headers */, + 46EB2E00046990 /* grpc_security_constants.h in Headers */, + 46EB2E00044610 /* grpc_service.upb.h in Headers */, + 46EB2E00044CE0 /* grpc_service.upbdefs.h in Headers */, + 46EB2E00046060 /* grpc_tls_certificate_distributor.h in Headers */, + 46EB2E00046070 /* grpc_tls_certificate_provider.h in Headers */, + 46EB2E00046080 /* grpc_tls_certificate_verifier.h in Headers */, + 46EB2E00046090 /* grpc_tls_credentials_options.h in Headers */, + 46EB2E00046A50 /* grpc_types.h in Headers */, + 46EB2E000440F0 /* grpclb.h in Headers */, + 46EB2E00044100 /* grpclb_balancer_addresses.h in Headers */, + 46EB2E00044110 /* grpclb_channel.h in Headers */, + 46EB2E00044120 /* grpclb_client_stats.h in Headers */, + 46EB2E00046440 /* gsec.h in Headers */, + 46EB2E000454B0 /* handshaker.h in Headers */, + 46EB2E00044AB0 /* handshaker.upb.h in Headers */, + 46EB2E000454C0 /* handshaker_factory.h in Headers */, + 46EB2E000454D0 /* handshaker_registry.h in Headers */, + 46EB2E00044AD0 /* health.upb.h in Headers */, + 46EB2E00044620 /* health_check.upb.h in Headers */, + 46EB2E00044CF0 /* health_check.upbdefs.h in Headers */, + 46EB2E00044080 /* health_check_client.h in Headers */, + 46EB2E000456F0 /* host_port.h in Headers */, + 46EB2E00044470 /* hpack_constants.h in Headers */, + 46EB2E00044480 /* hpack_encoder.h in Headers */, + 46EB2E00044490 /* hpack_encoder_table.h in Headers */, + 46EB2E000444A0 /* hpack_parser.h in Headers */, + 46EB2E000444B0 /* hpack_parser_table.h in Headers */, + 46EB2E00044970 /* http.upb.h in Headers */, + 46EB2E00044A10 /* http.upb.h in Headers */, + 46EB2E00045040 /* http.upbdefs.h in Headers */, + 46EB2E000450E0 /* http.upbdefs.h in Headers */, + 46EB2E000463B0 /* http2_errors.h in Headers */, + 46EB2E000444C0 /* http2_settings.h in Headers */, + 46EB2E000442D0 /* http_client_filter.h in Headers */, + 46EB2E00044090 /* http_connect_handshaker.h in Headers */, + 46EB2E000447E0 /* http_connection_manager.upb.h in Headers */, + 46EB2E00044EB0 /* http_connection_manager.upbdefs.h in Headers */, + 46EB2E000440A0 /* http_proxy.h in Headers */, + 46EB2E00044310 /* http_server_filter.h in Headers */, + 46EB2E00044780 /* http_tracer.upb.h in Headers */, + 46EB2E00044E50 /* http_tracer.upbdefs.h in Headers */, + 46EB2E00044630 /* http_uri.upb.h in Headers */, + 46EB2E00044D00 /* http_uri.upbdefs.h in Headers */, + 46EB2E000457D0 /* httpcli.h in Headers */, + 46EB2E000444D0 /* huffsyms.h in Headers */, + 46EB2E00045FE0 /* iam_credentials.h in Headers */, + 46EB2E00044290 /* idle_filter_state.h in Headers */, + 46EB2E00046330 /* init.h in Headers */, + 46EB2E00044510 /* inproc_transport.h in Headers */, + 46EB2E000460F0 /* insecure_security_connector.h in Headers */, + 46EB2E000444E0 /* internal.h in Headers */, + 46EB2E000459D0 /* internal_errqueue.h in Headers */, + 46EB2E000459E0 /* iocp_windows.h in Headers */, + 46EB2E000459F0 /* iomgr.h in Headers */, + 46EB2E00045A00 /* iomgr_custom.h in Headers */, + 46EB2E00045A10 /* iomgr_internal.h in Headers */, + 46EB2E00045A20 /* is_epollexclusive_available.h in Headers */, + 46EB2E00045CF0 /* json.h in Headers */, + 46EB2E00045FF0 /* json_token.h in Headers */, + 46EB2E00045D00 /* json_util.h in Headers */, + 46EB2E000461C0 /* json_util.h in Headers */, + 46EB2E00046000 /* jwt_credentials.h in Headers */, + 46EB2E00046010 /* jwt_verifier.h in Headers */, + 46EB2E00046340 /* lame_client.h in Headers */, + 46EB2E000440B0 /* lb_policy.h in Headers */, + 46EB2E00044180 /* lb_policy_factory.h in Headers */, + 46EB2E00044190 /* lb_policy_registry.h in Headers */, + 46EB2E00044870 /* lds.upb.h in Headers */, + 46EB2E00044F40 /* lds.upbdefs.h in Headers */, + 46EB2E000446E0 /* listener.upb.h in Headers */, + 46EB2E00044DB0 /* listener.upbdefs.h in Headers */, + 46EB2E000446F0 /* listener_components.upb.h in Headers */, + 46EB2E00044DC0 /* listener_components.upbdefs.h in Headers */, + 46EB2E00044AE0 /* load_balancer.upb.h in Headers */, + 46EB2E00044130 /* load_balancer_api.h in Headers */, + 46EB2E00045A30 /* load_file.h in Headers */, + 46EB2E000446C0 /* load_report.upb.h in Headers */, + 46EB2E00044D90 /* load_report.upbdefs.h in Headers */, + 46EB2E00046B10 /* load_reporting.h in Headers */, + 46EB2E00046100 /* load_system_roots.h in Headers */, + 46EB2E00046110 /* load_system_roots_linux.h in Headers */, + 46EB2E00046020 /* local_credentials.h in Headers */, + 46EB2E00046120 /* local_security_connector.h in Headers */, + 46EB2E000441A0 /* local_subchannel_pool.h in Headers */, + 46EB2E00046570 /* local_transport_security.h in Headers */, + 46EB2E00045A40 /* lockfree_event.h in Headers */, + 46EB2E00046A60 /* log.h in Headers */, + 46EB2E00046BB0 /* log.h in Headers */, + 46EB2E00046BC0 /* log_windows.h in Headers */, + 46EB2E00046700 /* logging.h in Headers */, + 46EB2E00045DB0 /* loop.h in Headers */, + 46EB2E00044880 /* lrs.upb.h in Headers */, + 46EB2E00044F50 /* lrs.upbdefs.h in Headers */, + 46EB2E00046710 /* malloc_counter.h in Headers */, + 46EB2E00045700 /* manual_constructor.h in Headers */, + 46EB2E00045DC0 /* map.h in Headers */, + 46EB2E00045D10 /* matchers.h in Headers */, + 46EB2E00045EE0 /* matchers.h in Headers */, + 46EB2E00044320 /* max_age_filter.h in Headers */, + 46EB2E00045710 /* memory.h in Headers */, + 46EB2E00046920 /* memory_allocator.h in Headers */, + 46EB2E00046910 /* memory_allocator_impl.h in Headers */, + 46EB2E00045E60 /* memory_quota.h in Headers */, + 46EB2E00046930 /* memory_request.h in Headers */, + 46EB2E00045500 /* message_compress.h in Headers */, + 46EB2E000442F0 /* message_compress_filter.h in Headers */, + 46EB2E00044300 /* message_decompress_filter.h in Headers */, + 46EB2E00044330 /* message_size_filter.h in Headers */, + 46EB2E000448D0 /* metadata.upb.h in Headers */, + 46EB2E00044950 /* metadata.upb.h in Headers */, + 46EB2E00044FA0 /* metadata.upbdefs.h in Headers */, + 46EB2E00045020 /* metadata.upbdefs.h in Headers */, + 46EB2E000463C0 /* metadata_batch.h in Headers */, + 46EB2E00044B00 /* migrate.upb.h in Headers */, + 46EB2E00045170 /* migrate.upbdefs.h in Headers */, + 46EB2E00046720 /* mix.h in Headers */, + 46EB2E00045990 /* mpmcqueue.h in Headers */, + 46EB2E00045720 /* mpscq.h in Headers */, + 46EB2E000467F0 /* msg.h in Headers */, + 46EB2E00046800 /* msg_internal.h in Headers */, + 46EB2E000455A0 /* murmur_hash.h in Headers */, + 46EB2E00046730 /* mutex.h in Headers */, + 46EB2E00045A50 /* nameser.h in Headers */, + 46EB2E000448E0 /* node.upb.h in Headers */, + 46EB2E00044FB0 /* node.upbdefs.h in Headers */, + 46EB2E000448F0 /* number.upb.h in Headers */, + 46EB2E00044FC0 /* number.upbdefs.h in Headers */, + 46EB2E00046030 /* oauth2_credentials.h in Headers */, + 46EB2E00044BD0 /* orca_load_report.upb.h in Headers */, + 46EB2E00045730 /* orphanable.h in Headers */, + 46EB2E000445A0 /* outlier_detection.upb.h in Headers */, + 46EB2E00044C70 /* outlier_detection.upbdefs.h in Headers */, + 46EB2E00044730 /* overload.upb.h in Headers */, + 46EB2E00044E00 /* overload.upbdefs.h in Headers */, + 46EB2E000453D0 /* parse_address.h in Headers */, + 46EB2E000463D0 /* parsed_metadata.h in Headers */, + 46EB2E000457E0 /* parser.h in Headers */, + 46EB2E00044900 /* path.upb.h in Headers */, + 46EB2E00044FD0 /* path.upbdefs.h in Headers */, + 46EB2E000448C0 /* path_transformation.upb.h in Headers */, + 46EB2E00044F90 /* path_transformation.upbdefs.h in Headers */, + 46EB2E00046740 /* pcre.h in Headers */, + 46EB2E00044980 /* percent.upb.h in Headers */, + 46EB2E00045050 /* percent.upbdefs.h in Headers */, + 46EB2E00046210 /* percent_encoding.h in Headers */, + 46EB2E000463E0 /* pid_controller.h in Headers */, + 46EB2E00046040 /* plugin_credentials.h in Headers */, + 46EB2E00046610 /* pod_array.h in Headers */, + 46EB2E00045DD0 /* poll.h in Headers */, + 46EB2E00045A60 /* polling_entity.h in Headers */, + 46EB2E00045930 /* pollset.h in Headers */, + 46EB2E00045A70 /* pollset.h in Headers */, + 46EB2E00045A80 /* pollset_custom.h in Headers */, + 46EB2E00045A90 /* pollset_set.h in Headers */, + 46EB2E00045AA0 /* pollset_set_custom.h in Headers */, + 46EB2E00045AB0 /* pollset_set_windows.h in Headers */, + 46EB2E00045AC0 /* pollset_windows.h in Headers */, + 46EB2E00046940 /* port.h in Headers */, + 46EB2E00045AD0 /* port.h in Headers */, + 46EB2E00046810 /* port_def.inc in Headers */, + 46EB2E00046A70 /* port_platform.h in Headers */, + 46EB2E00046BD0 /* port_platform.h in Headers */, + 46EB2E00046820 /* port_undef.inc in Headers */, + 46EB2E00046620 /* prefilter.h in Headers */, + 46EB2E00046630 /* prefilter_tree.h in Headers */, + 46EB2E00046640 /* prog.h in Headers */, + 46EB2E00045940 /* promise.h in Headers */, + 46EB2E00045D60 /* promise_factory.h in Headers */, + 46EB2E00045D70 /* promise_like.h in Headers */, + 46EB2E00046A80 /* propagation_bits.h in Headers */, + 46EB2E00044640 /* protocol.upb.h in Headers */, + 46EB2E00044D10 /* protocol.upbdefs.h in Headers */, + 46EB2E000441B0 /* proxy_mapper.h in Headers */, + 46EB2E000441C0 /* proxy_mapper_registry.h in Headers */, + 46EB2E00044650 /* proxy_protocol.upb.h in Headers */, + 46EB2E00044D20 /* proxy_protocol.upbdefs.h in Headers */, + 46EB2E00045AE0 /* python_util.h in Headers */, + 46EB2E00044700 /* quic_config.upb.h in Headers */, + 46EB2E00044DD0 /* quic_config.upbdefs.h in Headers */, + 46EB2E00045DE0 /* race.h in Headers */, + 46EB2E00044990 /* range.upb.h in Headers */, + 46EB2E00045060 /* range.upbdefs.h in Headers */, + 46EB2E00044740 /* rbac.upb.h in Headers */, + 46EB2E000447C0 /* rbac.upb.h in Headers */, + 46EB2E00044E10 /* rbac.upbdefs.h in Headers */, + 46EB2E00044E90 /* rbac.upbdefs.h in Headers */, + 46EB2E00044340 /* rbac_filter.h in Headers */, + 46EB2E00045EF0 /* rbac_policy.h in Headers */, + 46EB2E00044350 /* rbac_service_config_parser.h in Headers */, + 46EB2E00044890 /* rds.upb.h in Headers */, + 46EB2E00044F60 /* rds.upbdefs.h in Headers */, + 46EB2E00046650 /* re2.h in Headers */, + 46EB2E00045740 /* ref_counted.h in Headers */, + 46EB2E00045750 /* ref_counted_ptr.h in Headers */, + 46EB2E00046830 /* reflection.h in Headers */, + 46EB2E00046840 /* reflection.hpp in Headers */, + 46EB2E00044910 /* regex.upb.h in Headers */, + 46EB2E00044FE0 /* regex.upbdefs.h in Headers */, + 46EB2E00046660 /* regexp.h in Headers */, + 46EB2E00045AF0 /* resolve_address.h in Headers */, + 46EB2E00045B00 /* resolve_address_custom.h in Headers */, + 46EB2E00045B10 /* resolve_address_impl.h in Headers */, + 46EB2E00045B20 /* resolve_address_posix.h in Headers */, + 46EB2E00045B30 /* resolve_address_windows.h in Headers */, + 46EB2E00045B40 /* resolved_address.h in Headers */, + 46EB2E00045950 /* resolved_address_internal.h in Headers */, + 46EB2E00045960 /* resolver.h in Headers */, + 46EB2E00045E00 /* resolver.h in Headers */, + 46EB2E00044660 /* resolver.upb.h in Headers */, + 46EB2E00044D30 /* resolver.upbdefs.h in Headers */, + 46EB2E00045E10 /* resolver_factory.h in Headers */, + 46EB2E00045E20 /* resolver_registry.h in Headers */, + 46EB2E00044220 /* resolver_result_parsing.h in Headers */, + 46EB2E00044540 /* resource.upb.h in Headers */, + 46EB2E00044BA0 /* resource.upb.h in Headers */, + 46EB2E00044C10 /* resource.upbdefs.h in Headers */, + 46EB2E00045210 /* resource.upbdefs.h in Headers */, + 46EB2E00044BB0 /* resource_locator.upb.h in Headers */, + 46EB2E00045220 /* resource_locator.upbdefs.h in Headers */, + 46EB2E00044BC0 /* resource_name.upb.h in Headers */, + 46EB2E00045230 /* resource_name.upbdefs.h in Headers */, + 46EB2E00045E70 /* resource_quota.h in Headers */, + 46EB2E00044230 /* retry_filter.h in Headers */, + 46EB2E00044240 /* retry_service_config.h in Headers */, + 46EB2E00044250 /* retry_throttle.h in Headers */, + 46EB2E00044140 /* ring_hash.h in Headers */, + 46EB2E00044AF0 /* rls.upb.h in Headers */, + 46EB2E00044750 /* route.upb.h in Headers */, + 46EB2E00044E20 /* route.upbdefs.h in Headers */, + 46EB2E00044760 /* route_components.upb.h in Headers */, + 46EB2E00044E30 /* route_components.upbdefs.h in Headers */, + 46EB2E000447D0 /* router.upb.h in Headers */, + 46EB2E00044EA0 /* router.upbdefs.h in Headers */, + 46EB2E00044770 /* scoped_route.upb.h in Headers */, + 46EB2E00044E40 /* scoped_route.upbdefs.h in Headers */, + 46EB2E00045F00 /* sdk_server_authz_filter.h in Headers */, + 46EB2E00044810 /* secret.upb.h in Headers */, + 46EB2E00044EE0 /* secret.upbdefs.h in Headers */, + 46EB2E00046190 /* secure_endpoint.h in Headers */, + 46EB2E00044B10 /* security.upb.h in Headers */, + 46EB2E00045180 /* security.upbdefs.h in Headers */, + 46EB2E00046130 /* security_connector.h in Headers */, + 46EB2E00045F10 /* security_context.h in Headers */, + 46EB2E000461A0 /* security_handshaker.h in Headers */, + 46EB2E000449A0 /* semantic_version.upb.h in Headers */, + 46EB2E00045070 /* semantic_version.upbdefs.h in Headers */, + 46EB2E00044B20 /* sensitive.upb.h in Headers */, + 46EB2E00045190 /* sensitive.upbdefs.h in Headers */, + 46EB2E00045DF0 /* seq.h in Headers */, + 46EB2E00046350 /* server.h in Headers */, + 46EB2E00045E30 /* server_address.h in Headers */, + 46EB2E00044360 /* server_config_selector.h in Headers */, + 46EB2E00044370 /* server_config_selector_filter.h in Headers */, + 46EB2E000461D0 /* service_config.h in Headers */, + 46EB2E000461E0 /* service_config_call_data.h in Headers */, + 46EB2E000442C0 /* service_config_parser.h in Headers */, + 46EB2E000461F0 /* service_config_parser.h in Headers */, + 46EB2E00046670 /* set.h in Headers */, + 46EB2E00046A90 /* slice.h in Headers */, + 46EB2E00046B20 /* slice.h in Headers */, + 46EB2E00046220 /* slice.h in Headers */, + 46EB2E00046B30 /* slice_buffer.h in Headers */, + 46EB2E00046230 /* slice_internal.h in Headers */, + 46EB2E00046240 /* slice_refcount.h in Headers */, + 46EB2E00046250 /* slice_refcount_base.h in Headers */, + 46EB2E00046260 /* slice_split.h in Headers */, + 46EB2E00046270 /* slice_string_helpers.h in Headers */, + 46EB2E00046280 /* slice_utils.h in Headers */, + 46EB2E00045570 /* sockaddr.h in Headers */, + 46EB2E00045B50 /* sockaddr.h in Headers */, + 46EB2E00045B60 /* sockaddr_posix.h in Headers */, + 46EB2E000453E0 /* sockaddr_utils.h in Headers */, + 46EB2E00045B70 /* sockaddr_windows.h in Headers */, + 46EB2E00045B80 /* socket_factory_posix.h in Headers */, + 46EB2E00045B90 /* socket_mutator.h in Headers */, + 46EB2E00044670 /* socket_option.upb.h in Headers */, + 46EB2E00044D40 /* socket_option.upbdefs.h in Headers */, + 46EB2E00045BA0 /* socket_utils.h in Headers */, + 46EB2E00045BB0 /* socket_utils_posix.h in Headers */, + 46EB2E00045BC0 /* socket_windows.h in Headers */, + 46EB2E00046680 /* sparse_array.h in Headers */, + 46EB2E00046690 /* sparse_set.h in Headers */, + 46EB2E000455B0 /* spinlock.h in Headers */, + 46EB2E000448A0 /* srds.upb.h in Headers */, + 46EB2E00044F70 /* srds.upbdefs.h in Headers */, + 46EB2E00046050 /* ssl_credentials.h in Headers */, + 46EB2E00046140 /* ssl_security_connector.h in Headers */, + 46EB2E00046580 /* ssl_session.h in Headers */, + 46EB2E00046590 /* ssl_session_cache.h in Headers */, + 46EB2E000465A0 /* ssl_transport_security.h in Headers */, + 46EB2E000465B0 /* ssl_types.h in Headers */, + 46EB2E00046150 /* ssl_utils.h in Headers */, + 46EB2E00046160 /* ssl_utils_config.h in Headers */, + 46EB2E00045760 /* stat.h in Headers */, + 46EB2E00045520 /* stats.h in Headers */, + 46EB2E00044720 /* stats.upb.h in Headers */, + 46EB2E00044DF0 /* stats.upbdefs.h in Headers */, + 46EB2E00045530 /* stats_data.h in Headers */, + 46EB2E00046AA0 /* status.h in Headers */, + 46EB2E00046B40 /* status.h in Headers */, + 46EB2E00045D80 /* status.h in Headers */, + 46EB2E00044A90 /* status.upb.h in Headers */, + 46EB2E00044B30 /* status.upb.h in Headers */, + 46EB2E00044B60 /* status.upb.h in Headers */, + 46EB2E00045160 /* status.upbdefs.h in Headers */, + 46EB2E000451A0 /* status.upbdefs.h in Headers */, + 46EB2E000451D0 /* status.upbdefs.h in Headers */, + 46EB2E000463F0 /* status_conversion.h in Headers */, + 46EB2E00045770 /* status_helper.h in Headers */, + 46EB2E000454E0 /* status_util.h in Headers */, + 46EB2E000444F0 /* stream_map.h in Headers */, + 46EB2E000455C0 /* string.h in Headers */, + 46EB2E00044920 /* string.upb.h in Headers */, + 46EB2E00044FF0 /* string.upbdefs.h in Headers */, + 46EB2E00046BE0 /* string_util.h in Headers */, + 46EB2E000455D0 /* string_windows.h in Headers */, + 46EB2E000466A0 /* stringpiece.h in Headers */, + 46EB2E00044930 /* struct.upb.h in Headers */, + 46EB2E00044A60 /* struct.upb.h in Headers */, + 46EB2E00045000 /* struct.upbdefs.h in Headers */, + 46EB2E00045130 /* struct.upbdefs.h in Headers */, + 46EB2E00046750 /* strutil.h in Headers */, + 46EB2E00044260 /* subchannel.h in Headers */, + 46EB2E00044270 /* subchannel_interface.h in Headers */, + 46EB2E00044150 /* subchannel_list.h in Headers */, + 46EB2E00044280 /* subchannel_pool_interface.h in Headers */, + 46EB2E00044680 /* substitution_format_string.upb.h in Headers */, + 46EB2E00044D50 /* substitution_format_string.upbdefs.h in Headers */, + 46EB2E00045D90 /* switch.h in Headers */, + 46EB2E00046AB0 /* sync.h in Headers */, + 46EB2E00046BF0 /* sync.h in Headers */, + 46EB2E00045780 /* sync.h in Headers */, + 46EB2E00046AC0 /* sync_abseil.h in Headers */, + 46EB2E00046C00 /* sync_abseil.h in Headers */, + 46EB2E00046AD0 /* sync_custom.h in Headers */, + 46EB2E00046C10 /* sync_custom.h in Headers */, + 46EB2E00046AE0 /* sync_generic.h in Headers */, + 46EB2E00046C20 /* sync_generic.h in Headers */, + 46EB2E00046AF0 /* sync_posix.h in Headers */, + 46EB2E00046C30 /* sync_posix.h in Headers */, + 46EB2E00046B00 /* sync_windows.h in Headers */, + 46EB2E00046C40 /* sync_windows.h in Headers */, + 46EB2E000449F0 /* syntax.upb.h in Headers */, + 46EB2E000450C0 /* syntax.upbdefs.h in Headers */, + 46EB2E00045BD0 /* sys_epoll_wrapper.h in Headers */, + 46EB2E00045790 /* table.h in Headers */, + 46EB2E00046850 /* table_internal.h in Headers */, + 46EB2E00045BE0 /* tcp_client.h in Headers */, + 46EB2E00045BF0 /* tcp_client_posix.h in Headers */, + 46EB2E00045C00 /* tcp_custom.h in Headers */, + 46EB2E00045C10 /* tcp_posix.h in Headers */, + 46EB2E00045C20 /* tcp_server.h in Headers */, + 46EB2E00045C30 /* tcp_server_utils_posix.h in Headers */, + 46EB2E00045C40 /* tcp_windows.h in Headers */, + 46EB2E00046760 /* test.h in Headers */, + 46EB2E00046860 /* text_encode.h in Headers */, + 46EB2E000457A0 /* thd.h in Headers */, + 46EB2E00046C50 /* thd_id.h in Headers */, + 46EB2E00045E80 /* thread_quota.h in Headers */, + 46EB2E000459A0 /* threadpool.h in Headers */, + 46EB2E00046C60 /* time.h in Headers */, + 46EB2E00045C50 /* time_averaged_stats.h in Headers */, + 46EB2E000455E0 /* time_precise.h in Headers */, + 46EB2E000457B0 /* time_util.h in Headers */, + 46EB2E00046400 /* timeout_encoding.h in Headers */, + 46EB2E00045C60 /* timer.h in Headers */, + 46EB2E00045C70 /* timer_custom.h in Headers */, + 46EB2E00045C80 /* timer_generic.h in Headers */, + 46EB2E00045C90 /* timer_heap.h in Headers */, + 46EB2E00045CA0 /* timer_manager.h in Headers */, + 46EB2E00045D20 /* timers.h in Headers */, + 46EB2E00044A70 /* timestamp.upb.h in Headers */, + 46EB2E00045140 /* timestamp.upbdefs.h in Headers */, + 46EB2E000455F0 /* tls.h in Headers */, + 46EB2E00044820 /* tls.upb.h in Headers */, + 46EB2E00044EF0 /* tls.upbdefs.h in Headers */, + 46EB2E000460A0 /* tls_credentials.h in Headers */, + 46EB2E00046170 /* tls_security_connector.h in Headers */, + 46EB2E000460B0 /* tls_utils.h in Headers */, + 46EB2E00045600 /* tmpfile.h in Headers */, + 46EB2E00045540 /* trace.h in Headers */, + 46EB2E00045E90 /* trace.h in Headers */, + 46EB2E00046410 /* transport.h in Headers */, + 46EB2E00046420 /* transport_impl.h in Headers */, + 46EB2E000465C0 /* transport_security.h in Headers */, + 46EB2E00044AC0 /* transport_security_common.upb.h in Headers */, + 46EB2E000464F0 /* transport_security_common_api.h in Headers */, + 46EB2E000465D0 /* transport_security_grpc.h in Headers */, + 46EB2E000465E0 /* transport_security_interface.h in Headers */, + 46EB2E000461B0 /* tsi_error.h in Headers */, + 46EB2E00044BE0 /* typed_struct.upb.h in Headers */, + 46EB2E00045240 /* typed_struct.upbdefs.h in Headers */, + 46EB2E00044710 /* udp_listener_config.upb.h in Headers */, + 46EB2E00044DE0 /* udp_listener_config.upbdefs.h in Headers */, + 46EB2E00044690 /* udp_socket_config.upb.h in Headers */, + 46EB2E00044D60 /* udp_socket_config.upbdefs.h in Headers */, + 46EB2E000466B0 /* unicode_casefold.h in Headers */, + 46EB2E000466C0 /* unicode_groups.h in Headers */, + 46EB2E00045CB0 /* unix_sockets_posix.h in Headers */, + 46EB2E00046870 /* upb.h in Headers */, + 46EB2E00046880 /* upb.hpp in Headers */, + 46EB2E00046890 /* upb_internal.h in Headers */, + 46EB2E00045290 /* upb_utils.h in Headers */, + 46EB2E00046430 /* uri_parser.h in Headers */, + 46EB2E00045FB0 /* url_external_account_credentials.h in Headers */, + 46EB2E00045610 /* useful.h in Headers */, + 46EB2E00046770 /* utf.h in Headers */, + 46EB2E00046780 /* util.h in Headers */, + 46EB2E00044B50 /* validate.upb.h in Headers */, + 46EB2E000451C0 /* validate.upbdefs.h in Headers */, + 46EB2E00046360 /* validate_metadata.h in Headers */, + 46EB2E00044940 /* value.upb.h in Headers */, + 46EB2E00044A00 /* value.upb.h in Headers */, + 46EB2E00045010 /* value.upbdefs.h in Headers */, + 46EB2E000450D0 /* value.upbdefs.h in Headers */, + 46EB2E00044500 /* varint.h in Headers */, + 46EB2E00044B40 /* versioning.upb.h in Headers */, + 46EB2E000451B0 /* versioning.upbdefs.h in Headers */, + 46EB2E00045CC0 /* wakeup_fd_pipe.h in Headers */, + 46EB2E00045CD0 /* wakeup_fd_posix.h in Headers */, + 46EB2E000466D0 /* walker-inl.h in Headers */, + 46EB2E00045CE0 /* work_serializer.h in Headers */, + 46EB2E00046C70 /* workaround_list.h in Headers */, + 46EB2E00044A80 /* wrappers.upb.h in Headers */, + 46EB2E00045150 /* wrappers.upbdefs.h in Headers */, + 46EB2E00044160 /* xds.h in Headers */, + 46EB2E000452A0 /* xds_api.h in Headers */, + 46EB2E000452B0 /* xds_bootstrap.h in Headers */, + 46EB2E000452C0 /* xds_certificate_provider.h in Headers */, + 46EB2E00044170 /* xds_channel_args.h in Headers */, + 46EB2E000452D0 /* xds_channel_args.h in Headers */, + 46EB2E000452E0 /* xds_channel_creds.h in Headers */, + 46EB2E000452F0 /* xds_channel_stack_modifier.h in Headers */, + 46EB2E00045300 /* xds_client.h in Headers */, + 46EB2E00045310 /* xds_client_stats.h in Headers */, + 46EB2E00045320 /* xds_cluster.h in Headers */, + 46EB2E00045330 /* xds_common_types.h in Headers */, + 46EB2E000460C0 /* xds_credentials.h in Headers */, + 46EB2E00045340 /* xds_endpoint.h in Headers */, + 46EB2E00045350 /* xds_http_fault_filter.h in Headers */, + 46EB2E00045360 /* xds_http_filters.h in Headers */, + 46EB2E00045370 /* xds_http_rbac_filter.h in Headers */, + 46EB2E00045380 /* xds_listener.h in Headers */, + 46EB2E00044210 /* xds_resolver.h in Headers */, + 46EB2E00045390 /* xds_resource_type.h in Headers */, + 46EB2E000453A0 /* xds_resource_type_impl.h in Headers */, + 46EB2E000453B0 /* xds_route_config.h in Headers */, + 46EB2E000453C0 /* xds_routing.h in Headers */, + 46EB2E000468A0 /* xxhash.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00046D30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00047050 /* log_severity.h in Headers */, - 46EB2E00047040 /* logging.h in Headers */, - 46EB2E00047060 /* raw_logging.h in Headers */, - 46EB2E00047070 /* stl_logging.h in Headers */, - 46EB2E00047080 /* vlog_is_on.h in Headers */, + 46EB2E00046DE0 /* log_severity.h in Headers */, + 46EB2E00046DD0 /* logging.h in Headers */, + 46EB2E00046DF0 /* raw_logging.h in Headers */, + 46EB2E00046E00 /* stl_logging.h in Headers */, + 46EB2E00046E10 /* vlog_is_on.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000471C0 /* Headers */ = { + 46EB2E00046F50 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 46EB2E00047390 /* arena.h in Headers */, + 46EB2E00047320 /* block.h in Headers */, + 46EB2E00047330 /* block_builder.h in Headers */, + 46EB2E000471F0 /* builder.h in Headers */, + 46EB2E00047480 /* c.h in Headers */, + 46EB2E00047490 /* cache.h in Headers */, + 46EB2E000473A0 /* coding.h in Headers */, + 46EB2E000474A0 /* comparator.h in Headers */, + 46EB2E000473B0 /* crc32c.h in Headers */, + 46EB2E000474B0 /* db.h in Headers */, + 46EB2E00047210 /* db_impl.h in Headers */, + 46EB2E00047220 /* db_iter.h in Headers */, + 46EB2E00047200 /* dbformat.h in Headers */, + 46EB2E000474C0 /* dumpfile.h in Headers */, + 46EB2E000474D0 /* env.h in Headers */, + 46EB2E000473C0 /* env_posix_test_helper.h in Headers */, + 46EB2E000473D0 /* env_windows_test_helper.h in Headers */, + 46EB2E000474E0 /* export.h in Headers */, + 46EB2E00047230 /* filename.h in Headers */, + 46EB2E00047340 /* filter_block.h in Headers */, + 46EB2E000474F0 /* filter_policy.h in Headers */, + 46EB2E00047350 /* format.h in Headers */, + 46EB2E000473E0 /* hash.h in Headers */, + 46EB2E000473F0 /* histogram.h in Headers */, + 46EB2E00047500 /* iterator.h in Headers */, + 46EB2E00047360 /* iterator_wrapper.h in Headers */, + 46EB2E00047240 /* log_format.h in Headers */, + 46EB2E00047250 /* log_reader.h in Headers */, + 46EB2E00047260 /* log_writer.h in Headers */, + 46EB2E00047400 /* logging.h in Headers */, + 46EB2E00047270 /* memtable.h in Headers */, + 46EB2E00047370 /* merger.h in Headers */, + 46EB2E00047410 /* mutexlock.h in Headers */, + 46EB2E00047420 /* no_destructor.h in Headers */, + 46EB2E00047510 /* options.h in Headers */, + 46EB2E000472E0 /* port.h in Headers */, + 46EB2E000472F0 /* port_example.h in Headers */, + 46EB2E00047300 /* port_stdcxx.h in Headers */, + 46EB2E00047430 /* posix_logger.h in Headers */, + 46EB2E00047440 /* random.h in Headers */, + 46EB2E00047280 /* skiplist.h in Headers */, + 46EB2E00047520 /* slice.h in Headers */, + 46EB2E00047290 /* snapshot.h in Headers */, + 46EB2E00047530 /* status.h in Headers */, + 46EB2E00047540 /* table.h in Headers */, + 46EB2E00047550 /* table_builder.h in Headers */, + 46EB2E000472A0 /* table_cache.h in Headers */, + 46EB2E00047450 /* testharness.h in Headers */, + 46EB2E00047460 /* testutil.h in Headers */, + 46EB2E00047310 /* thread_annotations.h in Headers */, + 46EB2E00047380 /* two_level_iterator.h in Headers */, + 46EB2E000472B0 /* version_edit.h in Headers */, + 46EB2E000472C0 /* version_set.h in Headers */, + 46EB2E00047470 /* windows_logger.h in Headers */, + 46EB2E00047560 /* write_batch.h in Headers */, + 46EB2E000472D0 /* write_batch_internal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00047620 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00047600 /* arena.h in Headers */, - 46EB2E00047590 /* block.h in Headers */, - 46EB2E000475A0 /* block_builder.h in Headers */, - 46EB2E00047460 /* builder.h in Headers */, - 46EB2E000476F0 /* c.h in Headers */, - 46EB2E00047700 /* cache.h in Headers */, - 46EB2E00047610 /* coding.h in Headers */, - 46EB2E00047710 /* comparator.h in Headers */, - 46EB2E00047620 /* crc32c.h in Headers */, - 46EB2E00047720 /* db.h in Headers */, - 46EB2E00047480 /* db_impl.h in Headers */, - 46EB2E00047490 /* db_iter.h in Headers */, - 46EB2E00047470 /* dbformat.h in Headers */, - 46EB2E00047730 /* dumpfile.h in Headers */, - 46EB2E00047740 /* env.h in Headers */, - 46EB2E00047630 /* env_posix_test_helper.h in Headers */, - 46EB2E00047640 /* env_windows_test_helper.h in Headers */, - 46EB2E00047750 /* export.h in Headers */, - 46EB2E000474A0 /* filename.h in Headers */, - 46EB2E000475B0 /* filter_block.h in Headers */, - 46EB2E00047760 /* filter_policy.h in Headers */, - 46EB2E000475C0 /* format.h in Headers */, - 46EB2E00047650 /* hash.h in Headers */, - 46EB2E00047660 /* histogram.h in Headers */, - 46EB2E00047770 /* iterator.h in Headers */, - 46EB2E000475D0 /* iterator_wrapper.h in Headers */, - 46EB2E000474B0 /* log_format.h in Headers */, - 46EB2E000474C0 /* log_reader.h in Headers */, - 46EB2E000474D0 /* log_writer.h in Headers */, - 46EB2E00047670 /* logging.h in Headers */, - 46EB2E000474E0 /* memtable.h in Headers */, - 46EB2E000475E0 /* merger.h in Headers */, - 46EB2E00047680 /* mutexlock.h in Headers */, - 46EB2E00047690 /* no_destructor.h in Headers */, - 46EB2E00047780 /* options.h in Headers */, - 46EB2E00047550 /* port.h in Headers */, - 46EB2E00047560 /* port_example.h in Headers */, - 46EB2E00047570 /* port_stdcxx.h in Headers */, - 46EB2E000476A0 /* posix_logger.h in Headers */, - 46EB2E000476B0 /* random.h in Headers */, - 46EB2E000474F0 /* skiplist.h in Headers */, - 46EB2E00047790 /* slice.h in Headers */, - 46EB2E00047500 /* snapshot.h in Headers */, - 46EB2E000477A0 /* status.h in Headers */, - 46EB2E000477B0 /* table.h in Headers */, - 46EB2E000477C0 /* table_builder.h in Headers */, - 46EB2E00047510 /* table_cache.h in Headers */, - 46EB2E000476C0 /* testharness.h in Headers */, - 46EB2E000476D0 /* testutil.h in Headers */, - 46EB2E00047580 /* thread_annotations.h in Headers */, - 46EB2E000475F0 /* two_level_iterator.h in Headers */, - 46EB2E00047520 /* version_edit.h in Headers */, - 46EB2E00047530 /* version_set.h in Headers */, - 46EB2E000476E0 /* windows_logger.h in Headers */, - 46EB2E000477D0 /* write_batch.h in Headers */, - 46EB2E00047540 /* write_batch_internal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00047890 /* Headers */ = { + 46EB2E00047810 /* bufferevent-internal.h in Headers */, + 46EB2E00047820 /* changelist-internal.h in Headers */, + 46EB2E00047830 /* defer-internal.h in Headers */, + 46EB2E00047840 /* epolltable-internal.h in Headers */, + 46EB2E00047850 /* evbuffer-internal.h in Headers */, + 46EB2E00047860 /* evconfig-private.h in Headers */, + 46EB2E000477C0 /* evdns.h in Headers */, + 46EB2E000477D0 /* event.h in Headers */, + 46EB2E00047870 /* event-internal.h in Headers */, + 46EB2E000477E0 /* evhttp.h in Headers */, + 46EB2E00047880 /* evmap-internal.h in Headers */, + 46EB2E000477F0 /* evrpc.h in Headers */, + 46EB2E00047890 /* evrpc-internal.h in Headers */, + 46EB2E000478A0 /* evsignal-internal.h in Headers */, + 46EB2E000478B0 /* evthread-internal.h in Headers */, + 46EB2E00047800 /* evutil.h in Headers */, + 46EB2E000478C0 /* ht-internal.h in Headers */, + 46EB2E000478D0 /* http-internal.h in Headers */, + 46EB2E000478E0 /* iocp-internal.h in Headers */, + 46EB2E000478F0 /* ipv6-internal.h in Headers */, + 46EB2E00047900 /* kqueue-internal.h in Headers */, + 46EB2E00047910 /* log-internal.h in Headers */, + 46EB2E00047920 /* minheap-internal.h in Headers */, + 46EB2E00047930 /* mm-internal.h in Headers */, + 46EB2E00047940 /* ratelim-internal.h in Headers */, + 46EB2E00047950 /* strlcpy-internal.h in Headers */, + 46EB2E00047960 /* time-internal.h in Headers */, + 46EB2E00047970 /* util-internal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00047A30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00047A80 /* bufferevent-internal.h in Headers */, - 46EB2E00047A90 /* changelist-internal.h in Headers */, - 46EB2E00047AA0 /* defer-internal.h in Headers */, - 46EB2E00047AB0 /* epolltable-internal.h in Headers */, - 46EB2E00047AC0 /* evbuffer-internal.h in Headers */, - 46EB2E00047AD0 /* evconfig-private.h in Headers */, - 46EB2E00047A30 /* evdns.h in Headers */, - 46EB2E00047A40 /* event.h in Headers */, - 46EB2E00047AE0 /* event-internal.h in Headers */, - 46EB2E00047A50 /* evhttp.h in Headers */, - 46EB2E00047AF0 /* evmap-internal.h in Headers */, - 46EB2E00047A60 /* evrpc.h in Headers */, - 46EB2E00047B00 /* evrpc-internal.h in Headers */, - 46EB2E00047B10 /* evsignal-internal.h in Headers */, - 46EB2E00047B20 /* evthread-internal.h in Headers */, - 46EB2E00047A70 /* evutil.h in Headers */, - 46EB2E00047B30 /* ht-internal.h in Headers */, - 46EB2E00047B40 /* http-internal.h in Headers */, - 46EB2E00047B50 /* iocp-internal.h in Headers */, - 46EB2E00047B60 /* ipv6-internal.h in Headers */, - 46EB2E00047B70 /* kqueue-internal.h in Headers */, - 46EB2E00047B80 /* log-internal.h in Headers */, - 46EB2E00047B90 /* minheap-internal.h in Headers */, - 46EB2E00047BA0 /* mm-internal.h in Headers */, - 46EB2E00047BB0 /* ratelim-internal.h in Headers */, - 46EB2E00047BC0 /* strlcpy-internal.h in Headers */, - 46EB2E00047BD0 /* time-internal.h in Headers */, - 46EB2E00047BE0 /* util-internal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00047CA0 /* Headers */ = { + 46EB2E000483A0 /* alphai_dec.h in Headers */, + 46EB2E00047AD0 /* animi.h in Headers */, + 46EB2E00048400 /* backward_references_enc.h in Headers */, + 46EB2E00048220 /* bit_reader_inl_utils.h in Headers */, + 46EB2E00048230 /* bit_reader_utils.h in Headers */, + 46EB2E00048240 /* bit_writer_utils.h in Headers */, + 46EB2E00048250 /* color_cache_utils.h in Headers */, + 46EB2E000483B0 /* common_dec.h in Headers */, + 46EB2E00048300 /* common_sse2.h in Headers */, + 46EB2E00048310 /* common_sse41.h in Headers */, + 46EB2E00048410 /* cost_enc.h in Headers */, + 46EB2E000481D0 /* decode.h in Headers */, + 46EB2E00047A80 /* demux.h in Headers */, + 46EB2E00048320 /* dsp.h in Headers */, + 46EB2E000481E0 /* encode.h in Headers */, + 46EB2E00048260 /* endian_inl_utils.h in Headers */, + 46EB2E00048270 /* filters_utils.h in Headers */, + 46EB2E00048210 /* format_constants.h in Headers */, + 46EB2E00048420 /* histogram_enc.h in Headers */, + 46EB2E00048280 /* huffman_encode_utils.h in Headers */, + 46EB2E00048290 /* huffman_utils.h in Headers */, + 46EB2E00048330 /* lossless.h in Headers */, + 46EB2E00048340 /* lossless_common.h in Headers */, + 46EB2E00048350 /* mips_macro.h in Headers */, + 46EB2E00048360 /* msa_macro.h in Headers */, + 46EB2E00047AF0 /* mux.h in Headers */, + 46EB2E00048200 /* mux_types.h in Headers */, + 46EB2E00047AE0 /* muxi.h in Headers */, + 46EB2E00048370 /* neon.h in Headers */, + 46EB2E00048380 /* quant.h in Headers */, + 46EB2E000482A0 /* quant_levels_dec_utils.h in Headers */, + 46EB2E000482B0 /* quant_levels_utils.h in Headers */, + 46EB2E000482C0 /* random_utils.h in Headers */, + 46EB2E000482D0 /* rescaler_utils.h in Headers */, + 46EB2E000482E0 /* thread_utils.h in Headers */, + 46EB2E000481F0 /* types.h in Headers */, + 46EB2E000482F0 /* utils.h in Headers */, + 46EB2E000483E0 /* vp8_dec.h in Headers */, + 46EB2E000483C0 /* vp8i_dec.h in Headers */, + 46EB2E00048430 /* vp8i_enc.h in Headers */, + 46EB2E000483D0 /* vp8li_dec.h in Headers */, + 46EB2E00048440 /* vp8li_enc.h in Headers */, + 46EB2E000483F0 /* webpi_dec.h in Headers */, + 46EB2E00048390 /* yuv.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00048500 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048610 /* alphai_dec.h in Headers */, - 46EB2E00047D40 /* animi.h in Headers */, - 46EB2E00048670 /* backward_references_enc.h in Headers */, - 46EB2E00048490 /* bit_reader_inl_utils.h in Headers */, - 46EB2E000484A0 /* bit_reader_utils.h in Headers */, - 46EB2E000484B0 /* bit_writer_utils.h in Headers */, - 46EB2E000484C0 /* color_cache_utils.h in Headers */, - 46EB2E00048620 /* common_dec.h in Headers */, - 46EB2E00048570 /* common_sse2.h in Headers */, - 46EB2E00048580 /* common_sse41.h in Headers */, - 46EB2E00048680 /* cost_enc.h in Headers */, - 46EB2E00048440 /* decode.h in Headers */, - 46EB2E00047CF0 /* demux.h in Headers */, - 46EB2E00048590 /* dsp.h in Headers */, - 46EB2E00048450 /* encode.h in Headers */, - 46EB2E000484D0 /* endian_inl_utils.h in Headers */, - 46EB2E000484E0 /* filters_utils.h in Headers */, - 46EB2E00048480 /* format_constants.h in Headers */, - 46EB2E00048690 /* histogram_enc.h in Headers */, - 46EB2E000484F0 /* huffman_encode_utils.h in Headers */, - 46EB2E00048500 /* huffman_utils.h in Headers */, - 46EB2E000485A0 /* lossless.h in Headers */, - 46EB2E000485B0 /* lossless_common.h in Headers */, - 46EB2E000485C0 /* mips_macro.h in Headers */, - 46EB2E000485D0 /* msa_macro.h in Headers */, - 46EB2E00047D60 /* mux.h in Headers */, - 46EB2E00048470 /* mux_types.h in Headers */, - 46EB2E00047D50 /* muxi.h in Headers */, - 46EB2E000485E0 /* neon.h in Headers */, - 46EB2E000485F0 /* quant.h in Headers */, - 46EB2E00048510 /* quant_levels_dec_utils.h in Headers */, - 46EB2E00048520 /* quant_levels_utils.h in Headers */, - 46EB2E00048530 /* random_utils.h in Headers */, - 46EB2E00048540 /* rescaler_utils.h in Headers */, - 46EB2E00048550 /* thread_utils.h in Headers */, - 46EB2E00048460 /* types.h in Headers */, - 46EB2E00048560 /* utils.h in Headers */, - 46EB2E00048650 /* vp8_dec.h in Headers */, - 46EB2E00048630 /* vp8i_dec.h in Headers */, - 46EB2E000486A0 /* vp8i_enc.h in Headers */, - 46EB2E00048640 /* vp8li_dec.h in Headers */, - 46EB2E000486B0 /* vp8li_enc.h in Headers */, - 46EB2E00048660 /* webpi_dec.h in Headers */, - 46EB2E00048600 /* yuv.h in Headers */, + 46EB2E00048560 /* pb.h in Headers */, + 46EB2E00048570 /* pb_common.h in Headers */, + 46EB2E00048580 /* pb_decode.h in Headers */, + 46EB2E00048590 /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048770 /* Headers */ = { + 46EB2E00048650 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000487D0 /* pb.h in Headers */, - 46EB2E000487E0 /* pb_common.h in Headers */, - 46EB2E000487F0 /* pb_decode.h in Headers */, - 46EB2E00048800 /* pb_encode.h in Headers */, + 46EB2E000486A0 /* ReactNativeConfig.h in Headers */, + 46EB2E000486B0 /* ReactNativeConfigModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000488C0 /* Headers */ = { + 46EB2E00048770 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048910 /* ReactNativeConfig.h in Headers */, - 46EB2E00048920 /* ReactNativeConfigModule.h in Headers */, + 46EB2E000487D0 /* FlipperModule.h in Headers */, + 46EB2E000487E0 /* FlipperReactNativeJavaScriptPlugin.h in Headers */, + 46EB2E000487F0 /* FlipperReactNativeJavaScriptPluginManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000489E0 /* Headers */ = { + 46EB2E000488B0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048A40 /* FlipperModule.h in Headers */, - 46EB2E00048A50 /* FlipperReactNativeJavaScriptPlugin.h in Headers */, - 46EB2E00048A60 /* FlipperReactNativeJavaScriptPluginManager.h in Headers */, + 46EB2E00048930 /* PdfManager.h in Headers */, + 46EB2E00048940 /* RCTPdfPageView.h in Headers */, + 46EB2E00048950 /* RCTPdfPageViewManager.h in Headers */, + 46EB2E00048960 /* RCTPdfView.h in Headers */, + 46EB2E00048970 /* RCTPdfViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048B20 /* Headers */ = { + 46EB2E00048A30 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048BA0 /* PdfManager.h in Headers */, - 46EB2E00048BB0 /* RCTPdfPageView.h in Headers */, - 46EB2E00048BC0 /* RCTPdfPageViewManager.h in Headers */, - 46EB2E00048BD0 /* RCTPdfView.h in Headers */, - 46EB2E00048BE0 /* RCTPdfViewManager.h in Headers */, + 46EB2E00048B00 /* RNCSafeAreaContext.h in Headers */, + 46EB2E00048B10 /* RNCSafeAreaProvider.h in Headers */, + 46EB2E00048B20 /* RNCSafeAreaProviderManager.h in Headers */, + 46EB2E00048B30 /* RNCSafeAreaShadowView.h in Headers */, + 46EB2E00048B40 /* RNCSafeAreaUtils.h in Headers */, + 46EB2E00048B50 /* RNCSafeAreaView.h in Headers */, + 46EB2E00048B60 /* RNCSafeAreaViewEdges.h in Headers */, + 46EB2E00048B70 /* RNCSafeAreaViewLocalData.h in Headers */, + 46EB2E00048B80 /* RNCSafeAreaViewManager.h in Headers */, + 46EB2E00048B90 /* RNCSafeAreaViewMode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048CA0 /* Headers */ = { + 46EB2E00048C50 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048D70 /* RNCSafeAreaContext.h in Headers */, - 46EB2E00048D80 /* RNCSafeAreaProvider.h in Headers */, - 46EB2E00048D90 /* RNCSafeAreaProviderManager.h in Headers */, - 46EB2E00048DA0 /* RNCSafeAreaShadowView.h in Headers */, - 46EB2E00048DB0 /* RNCSafeAreaUtils.h in Headers */, - 46EB2E00048DC0 /* RNCSafeAreaView.h in Headers */, - 46EB2E00048DD0 /* RNCSafeAreaViewEdges.h in Headers */, - 46EB2E00048DE0 /* RNCSafeAreaViewLocalData.h in Headers */, - 46EB2E00048DF0 /* RNCSafeAreaViewManager.h in Headers */, - 46EB2E00048E00 /* RNCSafeAreaViewMode.h in Headers */, + 46EB2E00048CB0 /* RNCWebView.h in Headers */, + 46EB2E00048CC0 /* RNCWebViewManager.h in Headers */, + 46EB2E00048CD0 /* RNCWKProcessPoolManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048EC0 /* Headers */ = { + 46EB2E00048D90 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048F40 /* Pods-Hurt-umbrella.h in Headers */, + 46EB2E00048E10 /* Pods-Hurt-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -40272,16 +40358,16 @@ /* Begin PBXNativeTarget section */ 01902010C275AA793ECF6F87A82AE992 /* RNRate */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00035B60 /* Build configuration list for PBXNativeTarget "RNRate" */; + buildConfigurationList = 46EB2E000358F0 /* Build configuration list for PBXNativeTarget "RNRate" */; buildPhases = ( - 46EB2E00035BA0 /* Headers */, - 46EB2E00035BB0 /* Sources */, - 46EB2E00035BC0 /* Frameworks */, + 46EB2E00035930 /* Headers */, + 46EB2E00035940 /* Sources */, + 46EB2E00035950 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004ACF0 /* PBXTargetDependency */, + 46EB2E0004ABE0 /* PBXTargetDependency */, ); name = RNRate; productName = RNRate; @@ -40290,11 +40376,11 @@ }; 02B79DFED924FA19CA90EC69614733E1 /* fmt */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003DFF0 /* Build configuration list for PBXNativeTarget "fmt" */; + buildConfigurationList = 46EB2E0003DD80 /* Build configuration list for PBXNativeTarget "fmt" */; buildPhases = ( - 46EB2E0003E030 /* Headers */, - 46EB2E0003E040 /* Sources */, - 46EB2E0003E050 /* Frameworks */, + 46EB2E0003DDC0 /* Headers */, + 46EB2E0003DDD0 /* Sources */, + 46EB2E0003DDE0 /* Frameworks */, ); buildRules = ( ); @@ -40307,11 +40393,11 @@ }; 04A30E186743192DFB26B0FD7DB8F250 /* libevent */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00047850 /* Build configuration list for PBXNativeTarget "libevent" */; + buildConfigurationList = 46EB2E000475E0 /* Build configuration list for PBXNativeTarget "libevent" */; buildPhases = ( - 46EB2E00047890 /* Headers */, - 46EB2E000478A0 /* Sources */, - 46EB2E000478B0 /* Frameworks */, + 46EB2E00047620 /* Headers */, + 46EB2E00047630 /* Sources */, + 46EB2E00047640 /* Frameworks */, ); buildRules = ( ); @@ -40324,16 +40410,16 @@ }; 083B602EA19B4AD50EC53C0602F29A7D /* React-logger */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003AFD0 /* Build configuration list for PBXNativeTarget "React-logger" */; + buildConfigurationList = 46EB2E0003AD60 /* Build configuration list for PBXNativeTarget "React-logger" */; buildPhases = ( - 46EB2E0003B010 /* Headers */, - 46EB2E0003B020 /* Sources */, - 46EB2E0003B030 /* Frameworks */, + 46EB2E0003ADA0 /* Headers */, + 46EB2E0003ADB0 /* Sources */, + 46EB2E0003ADC0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BE10 /* PBXTargetDependency */, + 46EB2E0004BD00 /* PBXTargetDependency */, ); name = "React-logger"; productName = "React-logger"; @@ -40342,11 +40428,11 @@ }; 0A38628B0123A2EC8A0183D4A2B2747E /* Flipper-Fmt */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002B090 /* Build configuration list for PBXNativeTarget "Flipper-Fmt" */; + buildConfigurationList = 46EB2E0002AFB0 /* Build configuration list for PBXNativeTarget "Flipper-Fmt" */; buildPhases = ( - 46EB2E0002B0D0 /* Headers */, - 46EB2E0002B0E0 /* Sources */, - 46EB2E0002B0F0 /* Frameworks */, + 46EB2E0002AFF0 /* Headers */, + 46EB2E0002B000 /* Sources */, + 46EB2E0002B010 /* Frameworks */, ); buildRules = ( ); @@ -40359,18 +40445,18 @@ }; 0BB7745637E0758DEA373456197090C6 /* RNFastImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00035640 /* Build configuration list for PBXNativeTarget "RNFastImage" */; + buildConfigurationList = 46EB2E000353D0 /* Build configuration list for PBXNativeTarget "RNFastImage" */; buildPhases = ( - 46EB2E00035680 /* Headers */, - 46EB2E00035690 /* Sources */, - 46EB2E000356A0 /* Frameworks */, + 46EB2E00035410 /* Headers */, + 46EB2E00035420 /* Sources */, + 46EB2E00035430 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AC70 /* PBXTargetDependency */, - 46EB2E0004AC90 /* PBXTargetDependency */, - 46EB2E0004ACB0 /* PBXTargetDependency */, + 46EB2E0004AB60 /* PBXTargetDependency */, + 46EB2E0004AB80 /* PBXTargetDependency */, + 46EB2E0004ABA0 /* PBXTargetDependency */, ); name = RNFastImage; productName = RNFastImage; @@ -40379,18 +40465,18 @@ }; 0CFCC83772CE74C90F09C77D3F09ACAA /* RNFBMessaging */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000353A0 /* Build configuration list for PBXNativeTarget "RNFBMessaging" */; + buildConfigurationList = 46EB2E00035130 /* Build configuration list for PBXNativeTarget "RNFBMessaging" */; buildPhases = ( - 46EB2E000353E0 /* Headers */, - 46EB2E000353F0 /* Sources */, - 46EB2E00035400 /* Frameworks */, + 46EB2E00035170 /* Headers */, + 46EB2E00035180 /* Sources */, + 46EB2E00035190 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004ABF0 /* PBXTargetDependency */, - 46EB2E0004ABD0 /* PBXTargetDependency */, - 46EB2E0004ABB0 /* PBXTargetDependency */, + 46EB2E0004AAE0 /* PBXTargetDependency */, + 46EB2E0004AAC0 /* PBXTargetDependency */, + 46EB2E0004AAA0 /* PBXTargetDependency */, ); name = RNFBMessaging; productName = RNFBMessaging; @@ -40399,11 +40485,11 @@ }; 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003C2A0 /* Build configuration list for PBXNativeTarget "SocketRocket" */; + buildConfigurationList = 46EB2E0003C030 /* Build configuration list for PBXNativeTarget "SocketRocket" */; buildPhases = ( - 46EB2E0003C2E0 /* Headers */, - 46EB2E0003C2F0 /* Sources */, - 46EB2E0003C300 /* Frameworks */, + 46EB2E0003C070 /* Headers */, + 46EB2E0003C080 /* Sources */, + 46EB2E0003C090 /* Frameworks */, ); buildRules = ( ); @@ -40416,17 +40502,17 @@ }; 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003BE30 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; + buildConfigurationList = 46EB2E0003BBC0 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; buildPhases = ( - 46EB2E0003BE70 /* Headers */, - 46EB2E0003BE80 /* Sources */, - 46EB2E0003BE90 /* Frameworks */, + 46EB2E0003BC00 /* Headers */, + 46EB2E0003BC10 /* Sources */, + 46EB2E0003BC20 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BF90 /* PBXTargetDependency */, - 46EB2E0004BFB0 /* PBXTargetDependency */, + 46EB2E0004BE80 /* PBXTargetDependency */, + 46EB2E0004BEA0 /* PBXTargetDependency */, ); name = SDWebImageWebPCoder; productName = SDWebImageWebPCoder; @@ -40435,16 +40521,16 @@ }; 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034700 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */; + buildConfigurationList = 46EB2E00034490 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */; buildPhases = ( - 46EB2E00034740 /* Headers */, - 46EB2E00034750 /* Sources */, - 46EB2E00034760 /* Frameworks */, + 46EB2E000344D0 /* Headers */, + 46EB2E000344E0 /* Sources */, + 46EB2E000344F0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A910 /* PBXTargetDependency */, + 46EB2E0004A800 /* PBXTargetDependency */, ); name = RNCMaskedView; productName = RNCMaskedView; @@ -40453,18 +40539,18 @@ }; 1AEDCC056FB259475A44E0F2FC168000 /* RNFBFirestore */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000351C0 /* Build configuration list for PBXNativeTarget "RNFBFirestore" */; + buildConfigurationList = 46EB2E00034F50 /* Build configuration list for PBXNativeTarget "RNFBFirestore" */; buildPhases = ( - 46EB2E00035200 /* Headers */, - 46EB2E00035210 /* Sources */, - 46EB2E00035220 /* Frameworks */, + 46EB2E00034F90 /* Headers */, + 46EB2E00034FA0 /* Sources */, + 46EB2E00034FB0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AB90 /* PBXTargetDependency */, - 46EB2E0004AB70 /* PBXTargetDependency */, - 46EB2E0004AB50 /* PBXTargetDependency */, + 46EB2E0004AA80 /* PBXTargetDependency */, + 46EB2E0004AA60 /* PBXTargetDependency */, + 46EB2E0004AA40 /* PBXTargetDependency */, ); name = RNFBFirestore; productName = RNFBFirestore; @@ -40473,18 +40559,18 @@ }; 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003E1A0 /* Build configuration list for PBXNativeTarget "gRPC-C++" */; + buildConfigurationList = 46EB2E0003DF30 /* Build configuration list for PBXNativeTarget "gRPC-C++" */; buildPhases = ( - 46EB2E0003E1E0 /* Headers */, - 46EB2E0003E1F0 /* Sources */, - 46EB2E0003E200 /* Frameworks */, + 46EB2E0003DF70 /* Headers */, + 46EB2E0003DF80 /* Sources */, + 46EB2E0003DF90 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C030 /* PBXTargetDependency */, - 46EB2E0004BFF0 /* PBXTargetDependency */, - 46EB2E0004C010 /* PBXTargetDependency */, + 46EB2E0004BF20 /* PBXTargetDependency */, + 46EB2E0004BEE0 /* PBXTargetDependency */, + 46EB2E0004BF00 /* PBXTargetDependency */, ); name = "gRPC-C++"; productName = "gRPC-C++"; @@ -40493,16 +40579,16 @@ }; 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002EAF0 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; + buildConfigurationList = 46EB2E0002EA10 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; buildPhases = ( - 46EB2E0002EB30 /* Headers */, - 46EB2E0002EB40 /* Sources */, - 46EB2E0002EB50 /* Frameworks */, + 46EB2E0002EA50 /* Headers */, + 46EB2E0002EA60 /* Sources */, + 46EB2E0002EA70 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A630 /* PBXTargetDependency */, + 46EB2E0004A520 /* PBXTargetDependency */, ); name = "Flipper-RSocket"; productName = "Flipper-RSocket"; @@ -40511,24 +40597,24 @@ }; 20F066A71CEA5EECC7463413442F2B77 /* React-hermes */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003A900 /* Build configuration list for PBXNativeTarget "React-hermes" */; + buildConfigurationList = 46EB2E0003A690 /* Build configuration list for PBXNativeTarget "React-hermes" */; buildPhases = ( - 46EB2E0003A940 /* Headers */, - 46EB2E0003A950 /* Sources */, - 46EB2E0003A960 /* Frameworks */, + 46EB2E0003A6D0 /* Headers */, + 46EB2E0003A6E0 /* Sources */, + 46EB2E0003A6F0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BC70 /* PBXTargetDependency */, - 46EB2E0004BC50 /* PBXTargetDependency */, - 46EB2E0004BBB0 /* PBXTargetDependency */, - 46EB2E0004BBD0 /* PBXTargetDependency */, - 46EB2E0004BBF0 /* PBXTargetDependency */, - 46EB2E0004BC10 /* PBXTargetDependency */, - 46EB2E0004BC30 /* PBXTargetDependency */, - 46EB2E0004BC90 /* PBXTargetDependency */, - 46EB2E0004BCB0 /* PBXTargetDependency */, + 46EB2E0004BB60 /* PBXTargetDependency */, + 46EB2E0004BB40 /* PBXTargetDependency */, + 46EB2E0004BAA0 /* PBXTargetDependency */, + 46EB2E0004BAC0 /* PBXTargetDependency */, + 46EB2E0004BAE0 /* PBXTargetDependency */, + 46EB2E0004BB00 /* PBXTargetDependency */, + 46EB2E0004BB20 /* PBXTargetDependency */, + 46EB2E0004BB80 /* PBXTargetDependency */, + 46EB2E0004BBA0 /* PBXTargetDependency */, ); name = "React-hermes"; productName = "React-hermes"; @@ -40537,17 +40623,17 @@ }; 214E42634D1E187D876346D36184B655 /* RNScreens */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00036E50 /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildConfigurationList = 46EB2E00036BE0 /* Build configuration list for PBXNativeTarget "RNScreens" */; buildPhases = ( - 46EB2E00036E90 /* Headers */, - 46EB2E00036EA0 /* Sources */, - 46EB2E00036EB0 /* Frameworks */, + 46EB2E00036C20 /* Headers */, + 46EB2E00036C30 /* Sources */, + 46EB2E00036C40 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B030 /* PBXTargetDependency */, - 46EB2E0004B050 /* PBXTargetDependency */, + 46EB2E0004AF20 /* PBXTargetDependency */, + 46EB2E0004AF40 /* PBXTargetDependency */, ); name = RNScreens; productName = RNScreens; @@ -40556,17 +40642,17 @@ }; 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00026C00 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; + buildConfigurationList = 46EB2E00026B20 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; buildPhases = ( - 46EB2E00026C40 /* Headers */, - 46EB2E00026C50 /* Sources */, - 46EB2E00026C60 /* Frameworks */, - 46EB2E00026D80 /* Copy generated compatibility header */, + 46EB2E00026B60 /* Headers */, + 46EB2E00026B70 /* Sources */, + 46EB2E00026B80 /* Frameworks */, + 46EB2E00026CA0 /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A1F0 /* PBXTargetDependency */, + 46EB2E0004A0E0 /* PBXTargetDependency */, ); name = FirebaseCoreInternal; productName = FirebaseCoreInternal; @@ -40575,18 +40661,18 @@ }; 267E9AD363926B254B143B064F9CE7E4 /* RNFBDatabase */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00035000 /* Build configuration list for PBXNativeTarget "RNFBDatabase" */; + buildConfigurationList = 46EB2E00034D90 /* Build configuration list for PBXNativeTarget "RNFBDatabase" */; buildPhases = ( - 46EB2E00035040 /* Headers */, - 46EB2E00035050 /* Sources */, - 46EB2E00035060 /* Frameworks */, + 46EB2E00034DD0 /* Headers */, + 46EB2E00034DE0 /* Sources */, + 46EB2E00034DF0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AB30 /* PBXTargetDependency */, - 46EB2E0004AB10 /* PBXTargetDependency */, - 46EB2E0004AAF0 /* PBXTargetDependency */, + 46EB2E0004AA20 /* PBXTargetDependency */, + 46EB2E0004AA00 /* PBXTargetDependency */, + 46EB2E0004A9E0 /* PBXTargetDependency */, ); name = RNFBDatabase; productName = RNFBDatabase; @@ -40595,11 +40681,11 @@ }; 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00024E60 /* Build configuration list for PBXNativeTarget "DoubleConversion" */; + buildConfigurationList = 46EB2E00024D80 /* Build configuration list for PBXNativeTarget "DoubleConversion" */; buildPhases = ( - 46EB2E00024EA0 /* Headers */, - 46EB2E00024EB0 /* Sources */, - 46EB2E00024EC0 /* Frameworks */, + 46EB2E00024DC0 /* Headers */, + 46EB2E00024DD0 /* Sources */, + 46EB2E00024DE0 /* Frameworks */, ); buildRules = ( ); @@ -40612,11 +40698,11 @@ }; 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003C610 /* Build configuration list for PBXNativeTarget "Yoga" */; + buildConfigurationList = 46EB2E0003C3A0 /* Build configuration list for PBXNativeTarget "Yoga" */; buildPhases = ( - 46EB2E0003C650 /* Headers */, - 46EB2E0003C660 /* Sources */, - 46EB2E0003C670 /* Frameworks */, + 46EB2E0003C3E0 /* Headers */, + 46EB2E0003C3F0 /* Sources */, + 46EB2E0003C400 /* Frameworks */, ); buildRules = ( ); @@ -40629,11 +40715,11 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000313D0 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = 46EB2E00031160 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - 46EB2E00031410 /* Headers */, - 46EB2E00031420 /* Sources */, - 46EB2E00031430 /* Frameworks */, + 46EB2E000311A0 /* Headers */, + 46EB2E000311B0 /* Sources */, + 46EB2E000311C0 /* Frameworks */, ); buildRules = ( ); @@ -40646,17 +40732,17 @@ }; 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003C900 /* Build configuration list for PBXNativeTarget "YogaKit" */; + buildConfigurationList = 46EB2E0003C690 /* Build configuration list for PBXNativeTarget "YogaKit" */; buildPhases = ( - 46EB2E0003C940 /* Headers */, - 46EB2E0003C950 /* Sources */, - 46EB2E0003C960 /* Frameworks */, - 46EB2E0003CA30 /* Copy generated compatibility header */, + 46EB2E0003C6D0 /* Headers */, + 46EB2E0003C6E0 /* Sources */, + 46EB2E0003C6F0 /* Frameworks */, + 46EB2E0003C7C0 /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BFD0 /* PBXTargetDependency */, + 46EB2E0004BEC0 /* PBXTargetDependency */, ); name = YogaKit; productName = YogaKit; @@ -40665,11 +40751,11 @@ }; 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003B470 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildConfigurationList = 46EB2E0003B200 /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - 46EB2E0003B4B0 /* Headers */, - 46EB2E0003B4C0 /* Sources */, - 46EB2E0003B4D0 /* Frameworks */, + 46EB2E0003B240 /* Headers */, + 46EB2E0003B250 /* Sources */, + 46EB2E0003B260 /* Frameworks */, ); buildRules = ( ); @@ -40682,11 +40768,11 @@ }; 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003E220 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; + buildConfigurationList = 46EB2E0003DFB0 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; buildPhases = ( - 46EB2E0003E260 /* Sources */, - 46EB2E0003E270 /* Frameworks */, - 46EB2E0003E280 /* Resources */, + 46EB2E0003DFF0 /* Sources */, + 46EB2E0003E000 /* Frameworks */, + 46EB2E0003E010 /* Resources */, ); buildRules = ( ); @@ -40699,18 +40785,18 @@ }; 40074CA5658FB2002FAF3C521C19ADF9 /* RNFBAuth */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034DC0 /* Build configuration list for PBXNativeTarget "RNFBAuth" */; + buildConfigurationList = 46EB2E00034B50 /* Build configuration list for PBXNativeTarget "RNFBAuth" */; buildPhases = ( - 46EB2E00034E00 /* Headers */, - 46EB2E00034E10 /* Sources */, - 46EB2E00034E20 /* Frameworks */, + 46EB2E00034B90 /* Headers */, + 46EB2E00034BA0 /* Sources */, + 46EB2E00034BB0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AA50 /* PBXTargetDependency */, - 46EB2E0004AA30 /* PBXTargetDependency */, - 46EB2E0004AA10 /* PBXTargetDependency */, + 46EB2E0004A940 /* PBXTargetDependency */, + 46EB2E0004A920 /* PBXTargetDependency */, + 46EB2E0004A900 /* PBXTargetDependency */, ); name = RNFBAuth; productName = RNFBAuth; @@ -40719,142 +40805,143 @@ }; 4038C8EC04EBD221477CF9CE5D3D137A /* Pods-Hurt */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00048E80 /* Build configuration list for PBXNativeTarget "Pods-Hurt" */; + buildConfigurationList = 46EB2E00048D50 /* Build configuration list for PBXNativeTarget "Pods-Hurt" */; buildPhases = ( - 46EB2E00048EC0 /* Headers */, - 46EB2E00048ED0 /* Sources */, - 46EB2E00048EE0 /* Frameworks */, + 46EB2E00048D90 /* Headers */, + 46EB2E00048DA0 /* Sources */, + 46EB2E00048DB0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E00049030 /* PBXTargetDependency */, - 46EB2E00049050 /* PBXTargetDependency */, - 46EB2E00049070 /* PBXTargetDependency */, - 46EB2E00049090 /* PBXTargetDependency */, - 46EB2E000490B0 /* PBXTargetDependency */, - 46EB2E000490D0 /* PBXTargetDependency */, - 46EB2E000490F0 /* PBXTargetDependency */, - 46EB2E00049110 /* PBXTargetDependency */, - 46EB2E00049130 /* PBXTargetDependency */, - 46EB2E00049150 /* PBXTargetDependency */, - 46EB2E00049170 /* PBXTargetDependency */, - 46EB2E00049190 /* PBXTargetDependency */, - 46EB2E000491B0 /* PBXTargetDependency */, - 46EB2E000491D0 /* PBXTargetDependency */, - 46EB2E000491F0 /* PBXTargetDependency */, - 46EB2E00049210 /* PBXTargetDependency */, - 46EB2E00049230 /* PBXTargetDependency */, - 46EB2E00049250 /* PBXTargetDependency */, - 46EB2E00049270 /* PBXTargetDependency */, - 46EB2E00049290 /* PBXTargetDependency */, - 46EB2E000492B0 /* PBXTargetDependency */, - 46EB2E000492D0 /* PBXTargetDependency */, - 46EB2E000492F0 /* PBXTargetDependency */, - 46EB2E00049310 /* PBXTargetDependency */, - 46EB2E00049330 /* PBXTargetDependency */, - 46EB2E00049350 /* PBXTargetDependency */, - 46EB2E00049370 /* PBXTargetDependency */, - 46EB2E00049390 /* PBXTargetDependency */, - 46EB2E000493B0 /* PBXTargetDependency */, - 46EB2E000493D0 /* PBXTargetDependency */, - 46EB2E000493F0 /* PBXTargetDependency */, - 46EB2E00049410 /* PBXTargetDependency */, - 46EB2E00049430 /* PBXTargetDependency */, - 46EB2E00049450 /* PBXTargetDependency */, - 46EB2E00049470 /* PBXTargetDependency */, - 46EB2E00049490 /* PBXTargetDependency */, - 46EB2E000494B0 /* PBXTargetDependency */, - 46EB2E000494D0 /* PBXTargetDependency */, - 46EB2E000494F0 /* PBXTargetDependency */, - 46EB2E00049510 /* PBXTargetDependency */, - 46EB2E00049530 /* PBXTargetDependency */, - 46EB2E00049550 /* PBXTargetDependency */, - 46EB2E00049570 /* PBXTargetDependency */, - 46EB2E00049590 /* PBXTargetDependency */, - 46EB2E000495B0 /* PBXTargetDependency */, - 46EB2E000495D0 /* PBXTargetDependency */, - 46EB2E000495F0 /* PBXTargetDependency */, - 46EB2E00049610 /* PBXTargetDependency */, - 46EB2E00049630 /* PBXTargetDependency */, - 46EB2E00049650 /* PBXTargetDependency */, - 46EB2E00049670 /* PBXTargetDependency */, - 46EB2E00049690 /* PBXTargetDependency */, - 46EB2E000496B0 /* PBXTargetDependency */, - 46EB2E000496D0 /* PBXTargetDependency */, - 46EB2E000496F0 /* PBXTargetDependency */, - 46EB2E00049710 /* PBXTargetDependency */, - 46EB2E00049730 /* PBXTargetDependency */, - 46EB2E00049750 /* PBXTargetDependency */, - 46EB2E00049770 /* PBXTargetDependency */, - 46EB2E00049790 /* PBXTargetDependency */, - 46EB2E000497B0 /* PBXTargetDependency */, - 46EB2E000497D0 /* PBXTargetDependency */, - 46EB2E000497F0 /* PBXTargetDependency */, - 46EB2E00049810 /* PBXTargetDependency */, - 46EB2E00049830 /* PBXTargetDependency */, - 46EB2E00049850 /* PBXTargetDependency */, - 46EB2E00049870 /* PBXTargetDependency */, - 46EB2E00049890 /* PBXTargetDependency */, - 46EB2E000498B0 /* PBXTargetDependency */, - 46EB2E000498D0 /* PBXTargetDependency */, - 46EB2E000498F0 /* PBXTargetDependency */, - 46EB2E00049910 /* PBXTargetDependency */, - 46EB2E00049930 /* PBXTargetDependency */, - 46EB2E00049950 /* PBXTargetDependency */, - 46EB2E00049970 /* PBXTargetDependency */, - 46EB2E00049990 /* PBXTargetDependency */, - 46EB2E000499B0 /* PBXTargetDependency */, - 46EB2E000499D0 /* PBXTargetDependency */, - 46EB2E000499F0 /* PBXTargetDependency */, - 46EB2E00049A10 /* PBXTargetDependency */, - 46EB2E00049A30 /* PBXTargetDependency */, - 46EB2E00049A50 /* PBXTargetDependency */, - 46EB2E00049A70 /* PBXTargetDependency */, - 46EB2E00049A90 /* PBXTargetDependency */, - 46EB2E00049AB0 /* PBXTargetDependency */, - 46EB2E00049AD0 /* PBXTargetDependency */, - 46EB2E00049AF0 /* PBXTargetDependency */, - 46EB2E00049B10 /* PBXTargetDependency */, - 46EB2E00049B30 /* PBXTargetDependency */, - 46EB2E00049B50 /* PBXTargetDependency */, - 46EB2E00049B70 /* PBXTargetDependency */, - 46EB2E00049B90 /* PBXTargetDependency */, - 46EB2E00049BB0 /* PBXTargetDependency */, - 46EB2E00049BD0 /* PBXTargetDependency */, - 46EB2E00049BF0 /* PBXTargetDependency */, - 46EB2E00049C10 /* PBXTargetDependency */, - 46EB2E00049C30 /* PBXTargetDependency */, - 46EB2E00049C50 /* PBXTargetDependency */, - 46EB2E00049C70 /* PBXTargetDependency */, - 46EB2E00049C90 /* PBXTargetDependency */, - 46EB2E00049CB0 /* PBXTargetDependency */, - 46EB2E00049CD0 /* PBXTargetDependency */, - 46EB2E00049CF0 /* PBXTargetDependency */, - 46EB2E00049D10 /* PBXTargetDependency */, - 46EB2E00049D30 /* PBXTargetDependency */, - 46EB2E00049D50 /* PBXTargetDependency */, - 46EB2E00049D70 /* PBXTargetDependency */, + 46EB2E00048F00 /* PBXTargetDependency */, + 46EB2E00048F20 /* PBXTargetDependency */, + 46EB2E00048F40 /* PBXTargetDependency */, + 46EB2E00048F60 /* PBXTargetDependency */, + 46EB2E00048F80 /* PBXTargetDependency */, + 46EB2E00048FA0 /* PBXTargetDependency */, + 46EB2E00048FC0 /* PBXTargetDependency */, + 46EB2E00048FE0 /* PBXTargetDependency */, + 46EB2E00049000 /* PBXTargetDependency */, + 46EB2E00049020 /* PBXTargetDependency */, + 46EB2E00049040 /* PBXTargetDependency */, + 46EB2E00049060 /* PBXTargetDependency */, + 46EB2E00049080 /* PBXTargetDependency */, + 46EB2E000490A0 /* PBXTargetDependency */, + 46EB2E000490C0 /* PBXTargetDependency */, + 46EB2E000490E0 /* PBXTargetDependency */, + 46EB2E00049100 /* PBXTargetDependency */, + 46EB2E00049120 /* PBXTargetDependency */, + 46EB2E00049140 /* PBXTargetDependency */, + 46EB2E00049160 /* PBXTargetDependency */, + 46EB2E00049180 /* PBXTargetDependency */, + 46EB2E000491A0 /* PBXTargetDependency */, + 46EB2E000491C0 /* PBXTargetDependency */, + 46EB2E000491E0 /* PBXTargetDependency */, + 46EB2E00049200 /* PBXTargetDependency */, + 46EB2E00049220 /* PBXTargetDependency */, + 46EB2E00049240 /* PBXTargetDependency */, + 46EB2E00049260 /* PBXTargetDependency */, + 46EB2E00049280 /* PBXTargetDependency */, + 46EB2E000492A0 /* PBXTargetDependency */, + 46EB2E000492C0 /* PBXTargetDependency */, + 46EB2E000492E0 /* PBXTargetDependency */, + 46EB2E00049300 /* PBXTargetDependency */, + 46EB2E00049320 /* PBXTargetDependency */, + 46EB2E00049340 /* PBXTargetDependency */, + 46EB2E00049360 /* PBXTargetDependency */, + 46EB2E00049380 /* PBXTargetDependency */, + 46EB2E000493A0 /* PBXTargetDependency */, + 46EB2E000493C0 /* PBXTargetDependency */, + 46EB2E000493E0 /* PBXTargetDependency */, + 46EB2E00049400 /* PBXTargetDependency */, + 46EB2E00049420 /* PBXTargetDependency */, + 46EB2E00049440 /* PBXTargetDependency */, + 46EB2E00049460 /* PBXTargetDependency */, + 46EB2E00049480 /* PBXTargetDependency */, + 46EB2E000494A0 /* PBXTargetDependency */, + 46EB2E000494C0 /* PBXTargetDependency */, + 46EB2E000494E0 /* PBXTargetDependency */, + 46EB2E00049500 /* PBXTargetDependency */, + 46EB2E00049520 /* PBXTargetDependency */, + 46EB2E00049540 /* PBXTargetDependency */, + 46EB2E00049560 /* PBXTargetDependency */, + 46EB2E00049580 /* PBXTargetDependency */, + 46EB2E000495A0 /* PBXTargetDependency */, + 46EB2E000495C0 /* PBXTargetDependency */, + 46EB2E000495E0 /* PBXTargetDependency */, + 46EB2E00049600 /* PBXTargetDependency */, + 46EB2E00049620 /* PBXTargetDependency */, + 46EB2E00049640 /* PBXTargetDependency */, + 46EB2E00049660 /* PBXTargetDependency */, + 46EB2E00049680 /* PBXTargetDependency */, + 46EB2E000496A0 /* PBXTargetDependency */, + 46EB2E000496C0 /* PBXTargetDependency */, + 46EB2E000496E0 /* PBXTargetDependency */, + 46EB2E00049700 /* PBXTargetDependency */, + 46EB2E00049720 /* PBXTargetDependency */, + 46EB2E00049740 /* PBXTargetDependency */, + 46EB2E00049760 /* PBXTargetDependency */, + 46EB2E00049780 /* PBXTargetDependency */, + 46EB2E000497A0 /* PBXTargetDependency */, + 46EB2E000497C0 /* PBXTargetDependency */, + 46EB2E000497E0 /* PBXTargetDependency */, + 46EB2E00049800 /* PBXTargetDependency */, + 46EB2E00049820 /* PBXTargetDependency */, + 46EB2E00049840 /* PBXTargetDependency */, + 46EB2E00049860 /* PBXTargetDependency */, + 46EB2E00049880 /* PBXTargetDependency */, + 46EB2E000498A0 /* PBXTargetDependency */, + 46EB2E000498C0 /* PBXTargetDependency */, + 46EB2E000498E0 /* PBXTargetDependency */, + 46EB2E00049900 /* PBXTargetDependency */, + 46EB2E00049920 /* PBXTargetDependency */, + 46EB2E00049940 /* PBXTargetDependency */, + 46EB2E00049960 /* PBXTargetDependency */, + 46EB2E00049980 /* PBXTargetDependency */, + 46EB2E000499A0 /* PBXTargetDependency */, + 46EB2E000499C0 /* PBXTargetDependency */, + 46EB2E000499E0 /* PBXTargetDependency */, + 46EB2E00049A00 /* PBXTargetDependency */, + 46EB2E00049A20 /* PBXTargetDependency */, + 46EB2E00049A40 /* PBXTargetDependency */, + 46EB2E00049A60 /* PBXTargetDependency */, + 46EB2E00049A80 /* PBXTargetDependency */, + 46EB2E00049AA0 /* PBXTargetDependency */, + 46EB2E00049AC0 /* PBXTargetDependency */, + 46EB2E00049AE0 /* PBXTargetDependency */, + 46EB2E00049B00 /* PBXTargetDependency */, + 46EB2E00049B20 /* PBXTargetDependency */, + 46EB2E00049B40 /* PBXTargetDependency */, + 46EB2E00049B60 /* PBXTargetDependency */, + 46EB2E00049B80 /* PBXTargetDependency */, + 46EB2E00049BA0 /* PBXTargetDependency */, + 46EB2E00049BC0 /* PBXTargetDependency */, + 46EB2E00049BE0 /* PBXTargetDependency */, + 46EB2E00049C00 /* PBXTargetDependency */, + 46EB2E00049C20 /* PBXTargetDependency */, + 46EB2E00049C40 /* PBXTargetDependency */, + 46EB2E00049C60 /* PBXTargetDependency */, ); name = "Pods-Hurt"; productName = "Pods-Hurt"; - productReference = 2A2CA8ECD2FE74426FEB496F6125C735 /* libPods-Hurt.a */; + productReference = 2A2CA8ECD2FE74426FEB496F6125C735 /* Pods-Hurt */; productType = "com.apple.product-type.library.static"; }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00026580 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 46EB2E000264A0 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - 46EB2E000265C0 /* Headers */, - 46EB2E000265D0 /* Sources */, - 46EB2E000265E0 /* Frameworks */, + 46EB2E000264E0 /* Headers */, + 46EB2E000264F0 /* Sources */, + 46EB2E00026500 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A130 /* PBXTargetDependency */, - 46EB2E0004A150 /* PBXTargetDependency */, - 46EB2E0004A110 /* PBXTargetDependency */, + 46EB2E0004A020 /* PBXTargetDependency */, + 46EB2E0004A040 /* PBXTargetDependency */, + 46EB2E0004A000 /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -40863,11 +40950,11 @@ }; 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00022D30 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */; + buildConfigurationList = 46EB2E00022C50 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */; buildPhases = ( - 46EB2E00022D70 /* Headers */, - 46EB2E00022D80 /* Sources */, - 46EB2E00022D90 /* Frameworks */, + 46EB2E00022C90 /* Headers */, + 46EB2E00022CA0 /* Sources */, + 46EB2E00022CB0 /* Frameworks */, ); buildRules = ( ); @@ -40880,25 +40967,25 @@ }; 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003A610 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; + buildConfigurationList = 46EB2E0003A3A0 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; buildPhases = ( - 46EB2E0003A650 /* Headers */, - 46EB2E0003A660 /* Sources */, - 46EB2E0003A670 /* Frameworks */, + 46EB2E0003A3E0 /* Headers */, + 46EB2E0003A3F0 /* Sources */, + 46EB2E0003A400 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BA90 /* PBXTargetDependency */, - 46EB2E0004BAB0 /* PBXTargetDependency */, - 46EB2E0004BB10 /* PBXTargetDependency */, - 46EB2E0004BB70 /* PBXTargetDependency */, - 46EB2E0004BAF0 /* PBXTargetDependency */, - 46EB2E0004BB90 /* PBXTargetDependency */, - 46EB2E0004BB50 /* PBXTargetDependency */, - 46EB2E0004BB30 /* PBXTargetDependency */, - 46EB2E0004BA70 /* PBXTargetDependency */, - 46EB2E0004BAD0 /* PBXTargetDependency */, + 46EB2E0004B980 /* PBXTargetDependency */, + 46EB2E0004B9A0 /* PBXTargetDependency */, + 46EB2E0004BA00 /* PBXTargetDependency */, + 46EB2E0004BA60 /* PBXTargetDependency */, + 46EB2E0004B9E0 /* PBXTargetDependency */, + 46EB2E0004BA80 /* PBXTargetDependency */, + 46EB2E0004BA40 /* PBXTargetDependency */, + 46EB2E0004BA20 /* PBXTargetDependency */, + 46EB2E0004B960 /* PBXTargetDependency */, + 46EB2E0004B9C0 /* PBXTargetDependency */, ); name = "React-cxxreact"; productName = "React-cxxreact"; @@ -40907,11 +40994,11 @@ }; 47D2E85A78C25869BB13521D8561A638 /* libwebp */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00047C60 /* Build configuration list for PBXNativeTarget "libwebp" */; + buildConfigurationList = 46EB2E000479F0 /* Build configuration list for PBXNativeTarget "libwebp" */; buildPhases = ( - 46EB2E00047CA0 /* Headers */, - 46EB2E00047CB0 /* Sources */, - 46EB2E00047CC0 /* Frameworks */, + 46EB2E00047A30 /* Headers */, + 46EB2E00047A40 /* Sources */, + 46EB2E00047A50 /* Frameworks */, ); buildRules = ( ); @@ -40924,16 +41011,16 @@ }; 4C974BC7C0469FEEA85FA823D8870838 /* RNShare */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00037120 /* Build configuration list for PBXNativeTarget "RNShare" */; + buildConfigurationList = 46EB2E00036EB0 /* Build configuration list for PBXNativeTarget "RNShare" */; buildPhases = ( - 46EB2E00037160 /* Headers */, - 46EB2E00037170 /* Sources */, - 46EB2E00037180 /* Frameworks */, + 46EB2E00036EF0 /* Headers */, + 46EB2E00036F00 /* Sources */, + 46EB2E00036F10 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B070 /* PBXTargetDependency */, + 46EB2E0004AF60 /* PBXTargetDependency */, ); name = RNShare; productName = RNShare; @@ -40942,22 +41029,22 @@ }; 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00039920 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; + buildConfigurationList = 46EB2E000396B0 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; buildPhases = ( - 46EB2E00039960 /* Headers */, - 46EB2E00039970 /* Sources */, - 46EB2E00039980 /* Frameworks */, + 46EB2E000396F0 /* Headers */, + 46EB2E00039700 /* Sources */, + 46EB2E00039710 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B690 /* PBXTargetDependency */, - 46EB2E0004B6D0 /* PBXTargetDependency */, - 46EB2E0004B6B0 /* PBXTargetDependency */, - 46EB2E0004B730 /* PBXTargetDependency */, - 46EB2E0004B750 /* PBXTargetDependency */, - 46EB2E0004B710 /* PBXTargetDependency */, - 46EB2E0004B6F0 /* PBXTargetDependency */, + 46EB2E0004B580 /* PBXTargetDependency */, + 46EB2E0004B5C0 /* PBXTargetDependency */, + 46EB2E0004B5A0 /* PBXTargetDependency */, + 46EB2E0004B620 /* PBXTargetDependency */, + 46EB2E0004B640 /* PBXTargetDependency */, + 46EB2E0004B600 /* PBXTargetDependency */, + 46EB2E0004B5E0 /* PBXTargetDependency */, ); name = "React-RCTImage"; productName = "React-RCTImage"; @@ -40966,18 +41053,18 @@ }; 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00041730 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; + buildConfigurationList = 46EB2E000414C0 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; buildPhases = ( - 46EB2E00041770 /* Headers */, - 46EB2E00041780 /* Sources */, - 46EB2E00041790 /* Frameworks */, + 46EB2E00041500 /* Headers */, + 46EB2E00041510 /* Sources */, + 46EB2E00041520 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C050 /* PBXTargetDependency */, - 46EB2E0004C070 /* PBXTargetDependency */, - 46EB2E0004C090 /* PBXTargetDependency */, + 46EB2E0004BF40 /* PBXTargetDependency */, + 46EB2E0004BF60 /* PBXTargetDependency */, + 46EB2E0004BF80 /* PBXTargetDependency */, ); name = "gRPC-Core"; productName = "gRPC-Core"; @@ -40986,19 +41073,19 @@ }; 51471EE35F2E9E19E51A74944E5ABB7F /* FirebaseRemoteConfig */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002A690 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfig" */; + buildConfigurationList = 46EB2E0002A5B0 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfig" */; buildPhases = ( - 46EB2E0002A6D0 /* Headers */, - 46EB2E0002A6E0 /* Sources */, - 46EB2E0002A6F0 /* Frameworks */, + 46EB2E0002A5F0 /* Headers */, + 46EB2E0002A600 /* Sources */, + 46EB2E0002A610 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A4B0 /* PBXTargetDependency */, - 46EB2E0004A4D0 /* PBXTargetDependency */, - 46EB2E0004A4F0 /* PBXTargetDependency */, - 46EB2E0004A510 /* PBXTargetDependency */, + 46EB2E0004A3A0 /* PBXTargetDependency */, + 46EB2E0004A3C0 /* PBXTargetDependency */, + 46EB2E0004A3E0 /* PBXTargetDependency */, + 46EB2E0004A400 /* PBXTargetDependency */, ); name = FirebaseRemoteConfig; productName = FirebaseRemoteConfig; @@ -41007,21 +41094,21 @@ }; 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00026DD0 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; + buildConfigurationList = 46EB2E00026CF0 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; buildPhases = ( - 46EB2E00026E10 /* Headers */, - 46EB2E00026E20 /* Sources */, - 46EB2E00026E30 /* Frameworks */, + 46EB2E00026D30 /* Headers */, + 46EB2E00026D40 /* Sources */, + 46EB2E00026D50 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A210 /* PBXTargetDependency */, - 46EB2E0004A230 /* PBXTargetDependency */, - 46EB2E0004A270 /* PBXTargetDependency */, - 46EB2E0004A290 /* PBXTargetDependency */, - 46EB2E0004A250 /* PBXTargetDependency */, - 46EB2E0004A2B0 /* PBXTargetDependency */, + 46EB2E0004A100 /* PBXTargetDependency */, + 46EB2E0004A120 /* PBXTargetDependency */, + 46EB2E0004A160 /* PBXTargetDependency */, + 46EB2E0004A180 /* PBXTargetDependency */, + 46EB2E0004A140 /* PBXTargetDependency */, + 46EB2E0004A1A0 /* PBXTargetDependency */, ); name = FirebaseCrashlytics; productName = FirebaseCrashlytics; @@ -41030,20 +41117,20 @@ }; 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003A2C0 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; + buildConfigurationList = 46EB2E0003A050 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; buildPhases = ( - 46EB2E0003A300 /* Headers */, - 46EB2E0003A310 /* Sources */, - 46EB2E0003A320 /* Frameworks */, + 46EB2E0003A090 /* Headers */, + 46EB2E0003A0A0 /* Sources */, + 46EB2E0003A0B0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B990 /* PBXTargetDependency */, - 46EB2E0004B9B0 /* PBXTargetDependency */, - 46EB2E0004BA10 /* PBXTargetDependency */, - 46EB2E0004B9F0 /* PBXTargetDependency */, - 46EB2E0004B9D0 /* PBXTargetDependency */, + 46EB2E0004B880 /* PBXTargetDependency */, + 46EB2E0004B8A0 /* PBXTargetDependency */, + 46EB2E0004B900 /* PBXTargetDependency */, + 46EB2E0004B8E0 /* PBXTargetDependency */, + 46EB2E0004B8C0 /* PBXTargetDependency */, ); name = "React-RCTVibration"; productName = "React-RCTVibration"; @@ -41052,20 +41139,20 @@ }; 5895B432FE4D2F6826C8FF25A09DB6D2 /* FirebaseMessaging */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002A060 /* Build configuration list for PBXNativeTarget "FirebaseMessaging" */; + buildConfigurationList = 46EB2E00029F80 /* Build configuration list for PBXNativeTarget "FirebaseMessaging" */; buildPhases = ( - 46EB2E0002A0A0 /* Headers */, - 46EB2E0002A0B0 /* Sources */, - 46EB2E0002A0C0 /* Frameworks */, + 46EB2E00029FC0 /* Headers */, + 46EB2E00029FD0 /* Sources */, + 46EB2E00029FE0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A430 /* PBXTargetDependency */, - 46EB2E0004A410 /* PBXTargetDependency */, - 46EB2E0004A470 /* PBXTargetDependency */, - 46EB2E0004A450 /* PBXTargetDependency */, - 46EB2E0004A490 /* PBXTargetDependency */, + 46EB2E0004A320 /* PBXTargetDependency */, + 46EB2E0004A300 /* PBXTargetDependency */, + 46EB2E0004A360 /* PBXTargetDependency */, + 46EB2E0004A340 /* PBXTargetDependency */, + 46EB2E0004A380 /* PBXTargetDependency */, ); name = FirebaseMessaging; productName = FirebaseMessaging; @@ -41074,18 +41161,18 @@ }; 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002FF00 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; + buildConfigurationList = 46EB2E0002FE20 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; buildPhases = ( - 46EB2E0002FF40 /* Headers */, - 46EB2E0002FF50 /* Sources */, - 46EB2E0002FF60 /* Frameworks */, + 46EB2E0002FE60 /* Headers */, + 46EB2E0002FE70 /* Sources */, + 46EB2E0002FE80 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A750 /* PBXTargetDependency */, - 46EB2E0004A790 /* PBXTargetDependency */, - 46EB2E0004A770 /* PBXTargetDependency */, + 46EB2E0004A640 /* PBXTargetDependency */, + 46EB2E0004A680 /* PBXTargetDependency */, + 46EB2E0004A660 /* PBXTargetDependency */, ); name = GoogleDataTransport; productName = GoogleDataTransport; @@ -41094,17 +41181,17 @@ }; 5D49FA97D16E84D298A7C7F5A6F1D615 /* React-bridging */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003A3C0 /* Build configuration list for PBXNativeTarget "React-bridging" */; + buildConfigurationList = 46EB2E0003A150 /* Build configuration list for PBXNativeTarget "React-bridging" */; buildPhases = ( - 46EB2E0003A400 /* Headers */, - 46EB2E0003A410 /* Sources */, - 46EB2E0003A420 /* Frameworks */, + 46EB2E0003A190 /* Headers */, + 46EB2E0003A1A0 /* Sources */, + 46EB2E0003A1B0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BA30 /* PBXTargetDependency */, - 46EB2E0004BA50 /* PBXTargetDependency */, + 46EB2E0004B920 /* PBXTargetDependency */, + 46EB2E0004B940 /* PBXTargetDependency */, ); name = "React-bridging"; productName = "React-bridging"; @@ -41113,11 +41200,11 @@ }; 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00024BB0 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */; + buildConfigurationList = 46EB2E00024AD0 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */; buildPhases = ( - 46EB2E00024BF0 /* Headers */, - 46EB2E00024C00 /* Sources */, - 46EB2E00024C10 /* Frameworks */, + 46EB2E00024B10 /* Headers */, + 46EB2E00024B20 /* Sources */, + 46EB2E00024B30 /* Frameworks */, ); buildRules = ( ); @@ -41130,18 +41217,18 @@ }; 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00026920 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; + buildConfigurationList = 46EB2E00026840 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; buildPhases = ( - 46EB2E00026960 /* Headers */, - 46EB2E00026970 /* Sources */, - 46EB2E00026980 /* Frameworks */, + 46EB2E00026880 /* Headers */, + 46EB2E00026890 /* Sources */, + 46EB2E000268A0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A170 /* PBXTargetDependency */, - 46EB2E0004A190 /* PBXTargetDependency */, - 46EB2E0004A1B0 /* PBXTargetDependency */, + 46EB2E0004A060 /* PBXTargetDependency */, + 46EB2E0004A080 /* PBXTargetDependency */, + 46EB2E0004A0A0 /* PBXTargetDependency */, ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; @@ -41150,21 +41237,21 @@ }; 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00039C10 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; + buildConfigurationList = 46EB2E000399A0 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; buildPhases = ( - 46EB2E00039C50 /* Headers */, - 46EB2E00039C60 /* Sources */, - 46EB2E00039C70 /* Frameworks */, + 46EB2E000399E0 /* Headers */, + 46EB2E000399F0 /* Sources */, + 46EB2E00039A00 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B7F0 /* PBXTargetDependency */, - 46EB2E0004B830 /* PBXTargetDependency */, - 46EB2E0004B810 /* PBXTargetDependency */, - 46EB2E0004B890 /* PBXTargetDependency */, - 46EB2E0004B870 /* PBXTargetDependency */, - 46EB2E0004B850 /* PBXTargetDependency */, + 46EB2E0004B6E0 /* PBXTargetDependency */, + 46EB2E0004B720 /* PBXTargetDependency */, + 46EB2E0004B700 /* PBXTargetDependency */, + 46EB2E0004B780 /* PBXTargetDependency */, + 46EB2E0004B760 /* PBXTargetDependency */, + 46EB2E0004B740 /* PBXTargetDependency */, ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; @@ -41173,23 +41260,23 @@ }; 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000374F0 /* Build configuration list for PBXNativeTarget "React-Codegen" */; + buildConfigurationList = 46EB2E00037280 /* Build configuration list for PBXNativeTarget "React-Codegen" */; buildPhases = ( - 46EB2E00037530 /* Headers */, - 46EB2E00037540 /* Sources */, - 46EB2E00037550 /* Frameworks */, + 46EB2E000372C0 /* Headers */, + 46EB2E000372D0 /* Sources */, + 46EB2E000372E0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B1F0 /* PBXTargetDependency */, - 46EB2E0004B230 /* PBXTargetDependency */, - 46EB2E0004B250 /* PBXTargetDependency */, - 46EB2E0004B270 /* PBXTargetDependency */, - 46EB2E0004B290 /* PBXTargetDependency */, - 46EB2E0004B2B0 /* PBXTargetDependency */, - 46EB2E0004B210 /* PBXTargetDependency */, - 46EB2E0004B2D0 /* PBXTargetDependency */, + 46EB2E0004B0E0 /* PBXTargetDependency */, + 46EB2E0004B120 /* PBXTargetDependency */, + 46EB2E0004B140 /* PBXTargetDependency */, + 46EB2E0004B160 /* PBXTargetDependency */, + 46EB2E0004B180 /* PBXTargetDependency */, + 46EB2E0004B1A0 /* PBXTargetDependency */, + 46EB2E0004B100 /* PBXTargetDependency */, + 46EB2E0004B1C0 /* PBXTargetDependency */, ); name = "React-Codegen"; productName = "React-Codegen"; @@ -41198,21 +41285,21 @@ }; 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00039D50 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; + buildConfigurationList = 46EB2E00039AE0 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; buildPhases = ( - 46EB2E00039D90 /* Headers */, - 46EB2E00039DA0 /* Sources */, - 46EB2E00039DB0 /* Frameworks */, + 46EB2E00039B20 /* Headers */, + 46EB2E00039B30 /* Sources */, + 46EB2E00039B40 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B8B0 /* PBXTargetDependency */, - 46EB2E0004B8F0 /* PBXTargetDependency */, - 46EB2E0004B8D0 /* PBXTargetDependency */, - 46EB2E0004B950 /* PBXTargetDependency */, - 46EB2E0004B930 /* PBXTargetDependency */, - 46EB2E0004B910 /* PBXTargetDependency */, + 46EB2E0004B7A0 /* PBXTargetDependency */, + 46EB2E0004B7E0 /* PBXTargetDependency */, + 46EB2E0004B7C0 /* PBXTargetDependency */, + 46EB2E0004B840 /* PBXTargetDependency */, + 46EB2E0004B820 /* PBXTargetDependency */, + 46EB2E0004B800 /* PBXTargetDependency */, ); name = "React-RCTSettings"; productName = "React-RCTSettings"; @@ -41221,11 +41308,11 @@ }; 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00030F80 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */; + buildConfigurationList = 46EB2E00030D10 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */; buildPhases = ( - 46EB2E00030FC0 /* Headers */, - 46EB2E00030FD0 /* Sources */, - 46EB2E00030FE0 /* Frameworks */, + 46EB2E00030D50 /* Headers */, + 46EB2E00030D60 /* Sources */, + 46EB2E00030D70 /* Frameworks */, ); buildRules = ( ); @@ -41238,18 +41325,18 @@ }; 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000254B0 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */; + buildConfigurationList = 46EB2E000253D0 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */; buildPhases = ( - 46EB2E000254F0 /* Headers */, - 46EB2E00025500 /* Sources */, - 46EB2E00025510 /* Frameworks */, + 46EB2E00025410 /* Headers */, + 46EB2E00025420 /* Sources */, + 46EB2E00025430 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A0B0 /* PBXTargetDependency */, - 46EB2E0004A0F0 /* PBXTargetDependency */, - 46EB2E0004A0D0 /* PBXTargetDependency */, + 46EB2E00049FA0 /* PBXTargetDependency */, + 46EB2E00049FE0 /* PBXTargetDependency */, + 46EB2E00049FC0 /* PBXTargetDependency */, ); name = FirebaseAuth; productName = FirebaseAuth; @@ -41258,19 +41345,19 @@ }; 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00039B10 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; + buildConfigurationList = 46EB2E000398A0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; buildPhases = ( - 46EB2E00039B50 /* Headers */, - 46EB2E00039B60 /* Sources */, - 46EB2E00039B70 /* Frameworks */, + 46EB2E000398E0 /* Headers */, + 46EB2E000398F0 /* Sources */, + 46EB2E00039900 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B770 /* PBXTargetDependency */, - 46EB2E0004B790 /* PBXTargetDependency */, - 46EB2E0004B7D0 /* PBXTargetDependency */, - 46EB2E0004B7B0 /* PBXTargetDependency */, + 46EB2E0004B660 /* PBXTargetDependency */, + 46EB2E0004B680 /* PBXTargetDependency */, + 46EB2E0004B6C0 /* PBXTargetDependency */, + 46EB2E0004B6A0 /* PBXTargetDependency */, ); name = "React-RCTLinking"; productName = "React-RCTLinking"; @@ -41279,11 +41366,11 @@ }; 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002E990 /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */; + buildConfigurationList = 46EB2E0002E8B0 /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */; buildPhases = ( - 46EB2E0002E9D0 /* Headers */, - 46EB2E0002E9E0 /* Sources */, - 46EB2E0002E9F0 /* Frameworks */, + 46EB2E0002E8F0 /* Headers */, + 46EB2E0002E900 /* Sources */, + 46EB2E0002E910 /* Frameworks */, ); buildRules = ( ); @@ -41296,17 +41383,17 @@ }; 736AF68F6527ACF6B4A4C54728824A1C /* FirebaseDatabase */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00027AC0 /* Build configuration list for PBXNativeTarget "FirebaseDatabase" */; + buildConfigurationList = 46EB2E000279E0 /* Build configuration list for PBXNativeTarget "FirebaseDatabase" */; buildPhases = ( - 46EB2E00027B00 /* Headers */, - 46EB2E00027B10 /* Sources */, - 46EB2E00027B20 /* Frameworks */, + 46EB2E00027A20 /* Headers */, + 46EB2E00027A30 /* Sources */, + 46EB2E00027A40 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A2F0 /* PBXTargetDependency */, - 46EB2E0004A2D0 /* PBXTargetDependency */, + 46EB2E0004A1E0 /* PBXTargetDependency */, + 46EB2E0004A1C0 /* PBXTargetDependency */, ); name = FirebaseDatabase; productName = FirebaseDatabase; @@ -41315,11 +41402,11 @@ }; 73CDC3D182DB953135F62609681B443D /* abseil */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003CA80 /* Build configuration list for PBXNativeTarget "abseil" */; + buildConfigurationList = 46EB2E0003C810 /* Build configuration list for PBXNativeTarget "abseil" */; buildPhases = ( - 46EB2E0003CAC0 /* Headers */, - 46EB2E0003CAD0 /* Sources */, - 46EB2E0003CAE0 /* Frameworks */, + 46EB2E0003C850 /* Headers */, + 46EB2E0003C860 /* Sources */, + 46EB2E0003C870 /* Frameworks */, ); buildRules = ( ); @@ -41332,11 +41419,11 @@ }; 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000376A0 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; + buildConfigurationList = 46EB2E00037430 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; buildPhases = ( - 46EB2E000376E0 /* Sources */, - 46EB2E000376F0 /* Frameworks */, - 46EB2E00037700 /* Resources */, + 46EB2E00037470 /* Sources */, + 46EB2E00037480 /* Frameworks */, + 46EB2E00037490 /* Resources */, ); buildRules = ( ); @@ -41349,24 +41436,24 @@ }; 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00037620 /* Build configuration list for PBXNativeTarget "React-Core" */; + buildConfigurationList = 46EB2E000373B0 /* Build configuration list for PBXNativeTarget "React-Core" */; buildPhases = ( - 46EB2E00037660 /* Headers */, - 46EB2E00037670 /* Sources */, - 46EB2E00037680 /* Frameworks */, + 46EB2E000373F0 /* Headers */, + 46EB2E00037400 /* Sources */, + 46EB2E00037410 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B310 /* PBXTargetDependency */, - 46EB2E0004B2F0 /* PBXTargetDependency */, - 46EB2E0004B330 /* PBXTargetDependency */, - 46EB2E0004B370 /* PBXTargetDependency */, - 46EB2E0004B390 /* PBXTargetDependency */, - 46EB2E0004B3F0 /* PBXTargetDependency */, - 46EB2E0004B350 /* PBXTargetDependency */, - 46EB2E0004B3B0 /* PBXTargetDependency */, - 46EB2E0004B3D0 /* PBXTargetDependency */, + 46EB2E0004B200 /* PBXTargetDependency */, + 46EB2E0004B1E0 /* PBXTargetDependency */, + 46EB2E0004B220 /* PBXTargetDependency */, + 46EB2E0004B260 /* PBXTargetDependency */, + 46EB2E0004B280 /* PBXTargetDependency */, + 46EB2E0004B2E0 /* PBXTargetDependency */, + 46EB2E0004B240 /* PBXTargetDependency */, + 46EB2E0004B2A0 /* PBXTargetDependency */, + 46EB2E0004B2C0 /* PBXTargetDependency */, ); name = "React-Core"; productName = "React-Core"; @@ -41375,16 +41462,16 @@ }; 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034960 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = 46EB2E000346F0 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - 46EB2E000349A0 /* Headers */, - 46EB2E000349B0 /* Sources */, - 46EB2E000349C0 /* Frameworks */, + 46EB2E00034730 /* Headers */, + 46EB2E00034740 /* Sources */, + 46EB2E00034750 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A950 /* PBXTargetDependency */, + 46EB2E0004A840 /* PBXTargetDependency */, ); name = RNDeviceInfo; productName = RNDeviceInfo; @@ -41393,18 +41480,18 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00029C60 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = 46EB2E00029B80 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 46EB2E00029CA0 /* Headers */, - 46EB2E00029CB0 /* Sources */, - 46EB2E00029CC0 /* Frameworks */, + 46EB2E00029BC0 /* Headers */, + 46EB2E00029BD0 /* Sources */, + 46EB2E00029BE0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A3B0 /* PBXTargetDependency */, - 46EB2E0004A3F0 /* PBXTargetDependency */, - 46EB2E0004A3D0 /* PBXTargetDependency */, + 46EB2E0004A2A0 /* PBXTargetDependency */, + 46EB2E0004A2E0 /* PBXTargetDependency */, + 46EB2E0004A2C0 /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; @@ -41413,34 +41500,52 @@ }; 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000345F0 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */; + buildConfigurationList = 46EB2E00034380 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */; buildPhases = ( - 46EB2E00034630 /* Headers */, - 46EB2E00034640 /* Sources */, - 46EB2E00034650 /* Frameworks */, + 46EB2E000343C0 /* Headers */, + 46EB2E000343D0 /* Sources */, + 46EB2E000343E0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A8F0 /* PBXTargetDependency */, + 46EB2E0004A7E0 /* PBXTargetDependency */, ); name = RNCAsyncStorage; productName = RNCAsyncStorage; productReference = 5737DDB4BC95AD399B3206838AB97095 /* RNCAsyncStorage */; productType = "com.apple.product-type.library.static"; }; + 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */ = { + isa = PBXNativeTarget; + buildConfigurationList = 46EB2E00048C10 /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildPhases = ( + 46EB2E00048C50 /* Headers */, + 46EB2E00048C60 /* Sources */, + 46EB2E00048C70 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 46EB2E0004C0A0 /* PBXTargetDependency */, + ); + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = 8DF63376066E2275FF26820B3A512A9B /* react-native-webview */; + productType = "com.apple.product-type.library.static"; + }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00030370 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = 46EB2E00030290 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 46EB2E000303B0 /* Headers */, - 46EB2E000303C0 /* Sources */, - 46EB2E000303D0 /* Frameworks */, + 46EB2E000302D0 /* Headers */, + 46EB2E000302E0 /* Sources */, + 46EB2E000302F0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A7B0 /* PBXTargetDependency */, + 46EB2E0004A6A0 /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -41449,16 +41554,16 @@ }; 8F68D031908A0059566798048C48F776 /* FirebaseABTesting */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000251B0 /* Build configuration list for PBXNativeTarget "FirebaseABTesting" */; + buildConfigurationList = 46EB2E000250D0 /* Build configuration list for PBXNativeTarget "FirebaseABTesting" */; buildPhases = ( - 46EB2E000251F0 /* Headers */, - 46EB2E00025200 /* Sources */, - 46EB2E00025210 /* Frameworks */, + 46EB2E00025110 /* Headers */, + 46EB2E00025120 /* Sources */, + 46EB2E00025130 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E00049FF0 /* PBXTargetDependency */, + 46EB2E00049EE0 /* PBXTargetDependency */, ); name = FirebaseABTesting; productName = FirebaseABTesting; @@ -41467,17 +41572,17 @@ }; 90D0DE2F3348233618414728C35311CA /* RNFBApp */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034BA0 /* Build configuration list for PBXNativeTarget "RNFBApp" */; + buildConfigurationList = 46EB2E00034930 /* Build configuration list for PBXNativeTarget "RNFBApp" */; buildPhases = ( - 46EB2E00034BE0 /* Headers */, - 46EB2E00034BF0 /* Sources */, - 46EB2E00034C00 /* Frameworks */, + 46EB2E00034970 /* Headers */, + 46EB2E00034980 /* Sources */, + 46EB2E00034990 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A9F0 /* PBXTargetDependency */, - 46EB2E0004A9D0 /* PBXTargetDependency */, + 46EB2E0004A8E0 /* PBXTargetDependency */, + 46EB2E0004A8C0 /* PBXTargetDependency */, ); name = RNFBApp; productName = RNFBApp; @@ -41486,11 +41591,11 @@ }; 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00047180 /* Build configuration list for PBXNativeTarget "leveldb-library" */; + buildConfigurationList = 46EB2E00046F10 /* Build configuration list for PBXNativeTarget "leveldb-library" */; buildPhases = ( - 46EB2E000471C0 /* Headers */, - 46EB2E000471D0 /* Sources */, - 46EB2E000471E0 /* Frameworks */, + 46EB2E00046F50 /* Headers */, + 46EB2E00046F60 /* Sources */, + 46EB2E00046F70 /* Frameworks */, ); buildRules = ( ); @@ -41503,21 +41608,21 @@ }; 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000393F0 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; + buildConfigurationList = 46EB2E00039180 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; buildPhases = ( - 46EB2E00039430 /* Headers */, - 46EB2E00039440 /* Sources */, - 46EB2E00039450 /* Frameworks */, + 46EB2E000391C0 /* Headers */, + 46EB2E000391D0 /* Sources */, + 46EB2E000391E0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B510 /* PBXTargetDependency */, - 46EB2E0004B550 /* PBXTargetDependency */, - 46EB2E0004B530 /* PBXTargetDependency */, - 46EB2E0004B5B0 /* PBXTargetDependency */, - 46EB2E0004B590 /* PBXTargetDependency */, - 46EB2E0004B570 /* PBXTargetDependency */, + 46EB2E0004B400 /* PBXTargetDependency */, + 46EB2E0004B440 /* PBXTargetDependency */, + 46EB2E0004B420 /* PBXTargetDependency */, + 46EB2E0004B4A0 /* PBXTargetDependency */, + 46EB2E0004B480 /* PBXTargetDependency */, + 46EB2E0004B460 /* PBXTargetDependency */, ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; @@ -41526,16 +41631,16 @@ }; 951971F966B90DEAB7D250D9C65A8AC1 /* react-native-pdf */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00048AE0 /* Build configuration list for PBXNativeTarget "react-native-pdf" */; + buildConfigurationList = 46EB2E00048870 /* Build configuration list for PBXNativeTarget "react-native-pdf" */; buildPhases = ( - 46EB2E00048B20 /* Headers */, - 46EB2E00048B30 /* Sources */, - 46EB2E00048B40 /* Frameworks */, + 46EB2E000488B0 /* Headers */, + 46EB2E000488C0 /* Sources */, + 46EB2E000488D0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C0F0 /* PBXTargetDependency */, + 46EB2E0004BFE0 /* PBXTargetDependency */, ); name = "react-native-pdf"; productName = "react-native-pdf"; @@ -41544,21 +41649,21 @@ }; 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000397C0 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; + buildConfigurationList = 46EB2E00039550 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; buildPhases = ( - 46EB2E00039800 /* Headers */, - 46EB2E00039810 /* Sources */, - 46EB2E00039820 /* Frameworks */, + 46EB2E00039590 /* Headers */, + 46EB2E000395A0 /* Sources */, + 46EB2E000395B0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B5D0 /* PBXTargetDependency */, - 46EB2E0004B5F0 /* PBXTargetDependency */, - 46EB2E0004B650 /* PBXTargetDependency */, - 46EB2E0004B670 /* PBXTargetDependency */, - 46EB2E0004B630 /* PBXTargetDependency */, - 46EB2E0004B610 /* PBXTargetDependency */, + 46EB2E0004B4C0 /* PBXTargetDependency */, + 46EB2E0004B4E0 /* PBXTargetDependency */, + 46EB2E0004B540 /* PBXTargetDependency */, + 46EB2E0004B560 /* PBXTargetDependency */, + 46EB2E0004B520 /* PBXTargetDependency */, + 46EB2E0004B500 /* PBXTargetDependency */, ); name = "React-RCTBlob"; productName = "React-RCTBlob"; @@ -41567,16 +41672,16 @@ }; 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00037380 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildConfigurationList = 46EB2E00037110 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; buildPhases = ( - 46EB2E000373C0 /* Headers */, - 46EB2E000373D0 /* Sources */, - 46EB2E000373E0 /* Frameworks */, + 46EB2E00037150 /* Headers */, + 46EB2E00037160 /* Sources */, + 46EB2E00037170 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B090 /* PBXTargetDependency */, + 46EB2E0004AF80 /* PBXTargetDependency */, ); name = RNVectorIcons; productName = RNVectorIcons; @@ -41585,21 +41690,21 @@ }; 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002F5A0 /* Build configuration list for PBXNativeTarget "FlipperKit" */; + buildConfigurationList = 46EB2E0002F4C0 /* Build configuration list for PBXNativeTarget "FlipperKit" */; buildPhases = ( - 46EB2E0002F5E0 /* Headers */, - 46EB2E0002F5F0 /* Sources */, - 46EB2E0002F600 /* Frameworks */, + 46EB2E0002F500 /* Headers */, + 46EB2E0002F510 /* Sources */, + 46EB2E0002F520 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A6B0 /* PBXTargetDependency */, - 46EB2E0004A650 /* PBXTargetDependency */, - 46EB2E0004A690 /* PBXTargetDependency */, - 46EB2E0004A6D0 /* PBXTargetDependency */, - 46EB2E0004A670 /* PBXTargetDependency */, - 46EB2E0004A6F0 /* PBXTargetDependency */, + 46EB2E0004A5A0 /* PBXTargetDependency */, + 46EB2E0004A540 /* PBXTargetDependency */, + 46EB2E0004A580 /* PBXTargetDependency */, + 46EB2E0004A5C0 /* PBXTargetDependency */, + 46EB2E0004A560 /* PBXTargetDependency */, + 46EB2E0004A5E0 /* PBXTargetDependency */, ); name = FlipperKit; productName = FlipperKit; @@ -41608,19 +41713,19 @@ }; 9C3DB3789CFE35346F3ED3F31A5ABD6C /* CodePush */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00024CD0 /* Build configuration list for PBXNativeTarget "CodePush" */; + buildConfigurationList = 46EB2E00024BF0 /* Build configuration list for PBXNativeTarget "CodePush" */; buildPhases = ( - 46EB2E00024D10 /* Headers */, - 46EB2E00024D20 /* Sources */, - 46EB2E00024D30 /* Frameworks */, + 46EB2E00024C30 /* Headers */, + 46EB2E00024C40 /* Sources */, + 46EB2E00024C50 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E00049E10 /* PBXTargetDependency */, - 46EB2E00049DF0 /* PBXTargetDependency */, - 46EB2E00049DB0 /* PBXTargetDependency */, - 46EB2E00049DD0 /* PBXTargetDependency */, + 46EB2E00049D00 /* PBXTargetDependency */, + 46EB2E00049CE0 /* PBXTargetDependency */, + 46EB2E00049CA0 /* PBXTargetDependency */, + 46EB2E00049CC0 /* PBXTargetDependency */, ); name = CodePush; productName = CodePush; @@ -41629,17 +41734,17 @@ }; B6422EB0A585557ED42A07B5D023BD98 /* react-native-config */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00048880 /* Build configuration list for PBXNativeTarget "react-native-config" */; + buildConfigurationList = 46EB2E00048610 /* Build configuration list for PBXNativeTarget "react-native-config" */; buildPhases = ( - 46EB2E000488C0 /* Headers */, - 46EB2E00049010 /* [CP-User] Config codegen */, - 46EB2E000488D0 /* Sources */, - 46EB2E000488E0 /* Frameworks */, + 46EB2E00048650 /* Headers */, + 46EB2E00048EE0 /* [CP-User] Config codegen */, + 46EB2E00048660 /* Sources */, + 46EB2E00048670 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C0B0 /* PBXTargetDependency */, + 46EB2E0004BFA0 /* PBXTargetDependency */, ); name = "react-native-config"; productName = "react-native-config"; @@ -41648,21 +41753,21 @@ }; B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002B240 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; + buildConfigurationList = 46EB2E0002B160 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; buildPhases = ( - 46EB2E0002B280 /* Headers */, - 46EB2E0002B290 /* Sources */, - 46EB2E0002B2A0 /* Frameworks */, + 46EB2E0002B1A0 /* Headers */, + 46EB2E0002B1B0 /* Sources */, + 46EB2E0002B1C0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A570 /* PBXTargetDependency */, - 46EB2E0004A5B0 /* PBXTargetDependency */, - 46EB2E0004A610 /* PBXTargetDependency */, - 46EB2E0004A590 /* PBXTargetDependency */, - 46EB2E0004A5D0 /* PBXTargetDependency */, - 46EB2E0004A5F0 /* PBXTargetDependency */, + 46EB2E0004A460 /* PBXTargetDependency */, + 46EB2E0004A4A0 /* PBXTargetDependency */, + 46EB2E0004A500 /* PBXTargetDependency */, + 46EB2E0004A480 /* PBXTargetDependency */, + 46EB2E0004A4C0 /* PBXTargetDependency */, + 46EB2E0004A4E0 /* PBXTargetDependency */, ); name = "Flipper-Folly"; productName = "Flipper-Folly"; @@ -41671,25 +41776,25 @@ }; B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003B250 /* Build configuration list for PBXNativeTarget "ReactCommon" */; + buildConfigurationList = 46EB2E0003AFE0 /* Build configuration list for PBXNativeTarget "ReactCommon" */; buildPhases = ( - 46EB2E0003B290 /* Headers */, - 46EB2E0003B2A0 /* Sources */, - 46EB2E0003B2B0 /* Frameworks */, + 46EB2E0003B020 /* Headers */, + 46EB2E0003B030 /* Sources */, + 46EB2E0003B040 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BF50 /* PBXTargetDependency */, - 46EB2E0004BF30 /* PBXTargetDependency */, - 46EB2E0004BED0 /* PBXTargetDependency */, - 46EB2E0004BE70 /* PBXTargetDependency */, - 46EB2E0004BE90 /* PBXTargetDependency */, - 46EB2E0004BEF0 /* PBXTargetDependency */, - 46EB2E0004BF10 /* PBXTargetDependency */, - 46EB2E0004BE50 /* PBXTargetDependency */, - 46EB2E0004BEB0 /* PBXTargetDependency */, - 46EB2E0004BF70 /* PBXTargetDependency */, + 46EB2E0004BE40 /* PBXTargetDependency */, + 46EB2E0004BE20 /* PBXTargetDependency */, + 46EB2E0004BDC0 /* PBXTargetDependency */, + 46EB2E0004BD60 /* PBXTargetDependency */, + 46EB2E0004BD80 /* PBXTargetDependency */, + 46EB2E0004BDE0 /* PBXTargetDependency */, + 46EB2E0004BE00 /* PBXTargetDependency */, + 46EB2E0004BD40 /* PBXTargetDependency */, + 46EB2E0004BDA0 /* PBXTargetDependency */, + 46EB2E0004BE60 /* PBXTargetDependency */, ); name = ReactCommon; productName = ReactCommon; @@ -41698,16 +41803,16 @@ }; B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000357A0 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; + buildConfigurationList = 46EB2E00035530 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; buildPhases = ( - 46EB2E000357E0 /* Headers */, - 46EB2E000357F0 /* Sources */, - 46EB2E00035800 /* Frameworks */, + 46EB2E00035570 /* Headers */, + 46EB2E00035580 /* Sources */, + 46EB2E00035590 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004ACD0 /* PBXTargetDependency */, + 46EB2E0004ABC0 /* PBXTargetDependency */, ); name = RNGestureHandler; productName = RNGestureHandler; @@ -41716,20 +41821,20 @@ }; BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00048C60 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */; + buildConfigurationList = 46EB2E000489F0 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */; buildPhases = ( - 46EB2E00048CA0 /* Headers */, - 46EB2E00048CB0 /* Sources */, - 46EB2E00048CC0 /* Frameworks */, + 46EB2E00048A30 /* Headers */, + 46EB2E00048A40 /* Sources */, + 46EB2E00048A50 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C130 /* PBXTargetDependency */, - 46EB2E0004C150 /* PBXTargetDependency */, - 46EB2E0004C170 /* PBXTargetDependency */, - 46EB2E0004C110 /* PBXTargetDependency */, - 46EB2E0004C190 /* PBXTargetDependency */, + 46EB2E0004C020 /* PBXTargetDependency */, + 46EB2E0004C040 /* PBXTargetDependency */, + 46EB2E0004C060 /* PBXTargetDependency */, + 46EB2E0004C000 /* PBXTargetDependency */, + 46EB2E0004C080 /* PBXTargetDependency */, ); name = "react-native-safe-area-context"; productName = "react-native-safe-area-context"; @@ -41738,18 +41843,18 @@ }; BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034AA0 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */; + buildConfigurationList = 46EB2E00034830 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */; buildPhases = ( - 46EB2E00034AE0 /* Headers */, - 46EB2E00034AF0 /* Sources */, - 46EB2E00034B00 /* Frameworks */, + 46EB2E00034870 /* Headers */, + 46EB2E00034880 /* Sources */, + 46EB2E00034890 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A9B0 /* PBXTargetDependency */, - 46EB2E0004A990 /* PBXTargetDependency */, - 46EB2E0004A970 /* PBXTargetDependency */, + 46EB2E0004A8A0 /* PBXTargetDependency */, + 46EB2E0004A880 /* PBXTargetDependency */, + 46EB2E0004A860 /* PBXTargetDependency */, ); name = RNFBAnalytics; productName = RNFBAnalytics; @@ -41758,11 +41863,11 @@ }; CD7E4799597971CE1F9F7BB394E8DDD7 /* Flipper-Boost-iOSX */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002AD80 /* Build configuration list for PBXNativeTarget "Flipper-Boost-iOSX" */; + buildConfigurationList = 46EB2E0002ACA0 /* Build configuration list for PBXNativeTarget "Flipper-Boost-iOSX" */; buildPhases = ( - 46EB2E0002ADC0 /* Headers */, - 46EB2E0002ADD0 /* Sources */, - 46EB2E0002ADE0 /* Frameworks */, + 46EB2E0002ACE0 /* Headers */, + 46EB2E0002ACF0 /* Sources */, + 46EB2E0002AD00 /* Frameworks */, ); buildRules = ( ); @@ -41775,16 +41880,16 @@ }; D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034820 /* Build configuration list for PBXNativeTarget "RNCPicker" */; + buildConfigurationList = 46EB2E000345B0 /* Build configuration list for PBXNativeTarget "RNCPicker" */; buildPhases = ( - 46EB2E00034860 /* Headers */, - 46EB2E00034870 /* Sources */, - 46EB2E00034880 /* Frameworks */, + 46EB2E000345F0 /* Headers */, + 46EB2E00034600 /* Sources */, + 46EB2E00034610 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A930 /* PBXTargetDependency */, + 46EB2E0004A820 /* PBXTargetDependency */, ); name = RNCPicker; productName = RNCPicker; @@ -41793,11 +41898,11 @@ }; D0EFEFB685D97280256C559792236873 /* glog */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00046F60 /* Build configuration list for PBXNativeTarget "glog" */; + buildConfigurationList = 46EB2E00046CF0 /* Build configuration list for PBXNativeTarget "glog" */; buildPhases = ( - 46EB2E00046FA0 /* Headers */, - 46EB2E00046FB0 /* Sources */, - 46EB2E00046FC0 /* Frameworks */, + 46EB2E00046D30 /* Headers */, + 46EB2E00046D40 /* Sources */, + 46EB2E00046D50 /* Frameworks */, ); buildRules = ( ); @@ -41810,18 +41915,18 @@ }; D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000344A0 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; + buildConfigurationList = 46EB2E00034230 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; buildPhases = ( - 46EB2E000344E0 /* Headers */, - 46EB2E000344F0 /* Sources */, - 46EB2E00034500 /* Frameworks */, + 46EB2E00034270 /* Headers */, + 46EB2E00034280 /* Sources */, + 46EB2E00034290 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A890 /* PBXTargetDependency */, - 46EB2E0004A8B0 /* PBXTargetDependency */, - 46EB2E0004A8D0 /* PBXTargetDependency */, + 46EB2E0004A780 /* PBXTargetDependency */, + 46EB2E0004A7A0 /* PBXTargetDependency */, + 46EB2E0004A7C0 /* PBXTargetDependency */, ); name = RCTTypeSafety; productName = RCTTypeSafety; @@ -41830,11 +41935,11 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00048730 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = 46EB2E000484C0 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - 46EB2E00048770 /* Headers */, - 46EB2E00048780 /* Sources */, - 46EB2E00048790 /* Frameworks */, + 46EB2E00048500 /* Headers */, + 46EB2E00048510 /* Sources */, + 46EB2E00048520 /* Frameworks */, ); buildRules = ( ); @@ -41847,11 +41952,11 @@ }; D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002FD30 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; + buildConfigurationList = 46EB2E0002FC50 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; buildPhases = ( - 46EB2E0002FD70 /* Headers */, - 46EB2E0002FD80 /* Sources */, - 46EB2E0002FD90 /* Frameworks */, + 46EB2E0002FC90 /* Headers */, + 46EB2E0002FCA0 /* Sources */, + 46EB2E0002FCB0 /* Frameworks */, ); buildRules = ( ); @@ -41864,11 +41969,11 @@ }; D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002AE90 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; + buildConfigurationList = 46EB2E0002ADB0 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; buildPhases = ( - 46EB2E0002AED0 /* Headers */, - 46EB2E0002AEE0 /* Sources */, - 46EB2E0002AEF0 /* Frameworks */, + 46EB2E0002ADF0 /* Headers */, + 46EB2E0002AE00 /* Sources */, + 46EB2E0002AE10 /* Frameworks */, ); buildRules = ( ); @@ -41881,21 +41986,21 @@ }; DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003ADB0 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; + buildConfigurationList = 46EB2E0003AB40 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; buildPhases = ( - 46EB2E0003ADF0 /* Headers */, - 46EB2E0003AE00 /* Sources */, - 46EB2E0003AE10 /* Frameworks */, + 46EB2E0003AB80 /* Headers */, + 46EB2E0003AB90 /* Sources */, + 46EB2E0003ABA0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BDD0 /* PBXTargetDependency */, - 46EB2E0004BDB0 /* PBXTargetDependency */, - 46EB2E0004BD50 /* PBXTargetDependency */, - 46EB2E0004BD70 /* PBXTargetDependency */, - 46EB2E0004BD90 /* PBXTargetDependency */, - 46EB2E0004BDF0 /* PBXTargetDependency */, + 46EB2E0004BCC0 /* PBXTargetDependency */, + 46EB2E0004BCA0 /* PBXTargetDependency */, + 46EB2E0004BC40 /* PBXTargetDependency */, + 46EB2E0004BC60 /* PBXTargetDependency */, + 46EB2E0004BC80 /* PBXTargetDependency */, + 46EB2E0004BCE0 /* PBXTargetDependency */, ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; @@ -41904,11 +42009,11 @@ }; DB2B17EEE15C8E869A37C1514F4D378E /* Base64 */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00022C30 /* Build configuration list for PBXNativeTarget "Base64" */; + buildConfigurationList = 46EB2E00022B50 /* Build configuration list for PBXNativeTarget "Base64" */; buildPhases = ( - 46EB2E00022C70 /* Headers */, - 46EB2E00022C80 /* Sources */, - 46EB2E00022C90 /* Frameworks */, + 46EB2E00022B90 /* Headers */, + 46EB2E00022BA0 /* Sources */, + 46EB2E00022BB0 /* Frameworks */, ); buildRules = ( ); @@ -41921,20 +42026,20 @@ }; DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00028BA0 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */; + buildConfigurationList = 46EB2E00028AC0 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */; buildPhases = ( - 46EB2E00028BE0 /* Headers */, - 46EB2E00028BF0 /* Sources */, - 46EB2E00028C00 /* Frameworks */, + 46EB2E00028B00 /* Headers */, + 46EB2E00028B10 /* Sources */, + 46EB2E00028B20 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A310 /* PBXTargetDependency */, - 46EB2E0004A330 /* PBXTargetDependency */, - 46EB2E0004A350 /* PBXTargetDependency */, - 46EB2E0004A370 /* PBXTargetDependency */, - 46EB2E0004A390 /* PBXTargetDependency */, + 46EB2E0004A200 /* PBXTargetDependency */, + 46EB2E0004A220 /* PBXTargetDependency */, + 46EB2E0004A240 /* PBXTargetDependency */, + 46EB2E0004A260 /* PBXTargetDependency */, + 46EB2E0004A280 /* PBXTargetDependency */, ); name = FirebaseFirestore; productName = FirebaseFirestore; @@ -41943,16 +42048,16 @@ }; DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00039E50 /* Build configuration list for PBXNativeTarget "React-RCTText" */; + buildConfigurationList = 46EB2E00039BE0 /* Build configuration list for PBXNativeTarget "React-RCTText" */; buildPhases = ( - 46EB2E00039E90 /* Headers */, - 46EB2E00039EA0 /* Sources */, - 46EB2E00039EB0 /* Frameworks */, + 46EB2E00039C20 /* Headers */, + 46EB2E00039C30 /* Sources */, + 46EB2E00039C40 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B970 /* PBXTargetDependency */, + 46EB2E0004B860 /* PBXTargetDependency */, ); name = "React-RCTText"; productName = "React-RCTText"; @@ -41961,18 +42066,18 @@ }; DC1EA8F85F7C53B56B3A77622E7895D9 /* RNFBRemoteConfig */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00035540 /* Build configuration list for PBXNativeTarget "RNFBRemoteConfig" */; + buildConfigurationList = 46EB2E000352D0 /* Build configuration list for PBXNativeTarget "RNFBRemoteConfig" */; buildPhases = ( - 46EB2E00035580 /* Headers */, - 46EB2E00035590 /* Sources */, - 46EB2E000355A0 /* Frameworks */, + 46EB2E00035310 /* Headers */, + 46EB2E00035320 /* Sources */, + 46EB2E00035330 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AC50 /* PBXTargetDependency */, - 46EB2E0004AC30 /* PBXTargetDependency */, - 46EB2E0004AC10 /* PBXTargetDependency */, + 46EB2E0004AB40 /* PBXTargetDependency */, + 46EB2E0004AB20 /* PBXTargetDependency */, + 46EB2E0004AB00 /* PBXTargetDependency */, ); name = RNFBRemoteConfig; productName = RNFBRemoteConfig; @@ -41981,16 +42086,16 @@ }; DE32677FA772BFFD0172EB7EE9E4E7E9 /* RNSVG */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00036520 /* Build configuration list for PBXNativeTarget "RNSVG" */; + buildConfigurationList = 46EB2E000362B0 /* Build configuration list for PBXNativeTarget "RNSVG" */; buildPhases = ( - 46EB2E00036560 /* Headers */, - 46EB2E00036570 /* Sources */, - 46EB2E00036580 /* Frameworks */, + 46EB2E000362F0 /* Headers */, + 46EB2E00036300 /* Sources */, + 46EB2E00036310 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B010 /* PBXTargetDependency */, + 46EB2E0004AF00 /* PBXTargetDependency */, ); name = RNSVG; productName = RNSVG; @@ -41999,22 +42104,22 @@ }; E16E206437995280D349D4B67695C894 /* React-CoreModules */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000390D0 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; + buildConfigurationList = 46EB2E00038E60 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; buildPhases = ( - 46EB2E00039110 /* Headers */, - 46EB2E00039120 /* Sources */, - 46EB2E00039130 /* Frameworks */, + 46EB2E00038EA0 /* Headers */, + 46EB2E00038EB0 /* Sources */, + 46EB2E00038EC0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004B430 /* PBXTargetDependency */, - 46EB2E0004B450 /* PBXTargetDependency */, - 46EB2E0004B410 /* PBXTargetDependency */, - 46EB2E0004B470 /* PBXTargetDependency */, - 46EB2E0004B490 /* PBXTargetDependency */, - 46EB2E0004B4D0 /* PBXTargetDependency */, - 46EB2E0004B4B0 /* PBXTargetDependency */, + 46EB2E0004B320 /* PBXTargetDependency */, + 46EB2E0004B340 /* PBXTargetDependency */, + 46EB2E0004B300 /* PBXTargetDependency */, + 46EB2E0004B360 /* PBXTargetDependency */, + 46EB2E0004B380 /* PBXTargetDependency */, + 46EB2E0004B3C0 /* PBXTargetDependency */, + 46EB2E0004B3A0 /* PBXTargetDependency */, ); name = "React-CoreModules"; productName = "React-CoreModules"; @@ -42023,19 +42128,19 @@ }; E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00034EC0 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */; + buildConfigurationList = 46EB2E00034C50 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */; buildPhases = ( - 46EB2E00034F00 /* Headers */, - 46EB2E00034F10 /* Sources */, - 46EB2E00034F20 /* Frameworks */, + 46EB2E00034C90 /* Headers */, + 46EB2E00034CA0 /* Sources */, + 46EB2E00034CB0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AAB0 /* PBXTargetDependency */, - 46EB2E0004AAD0 /* PBXTargetDependency */, - 46EB2E0004AA90 /* PBXTargetDependency */, - 46EB2E0004AA70 /* PBXTargetDependency */, + 46EB2E0004A9A0 /* PBXTargetDependency */, + 46EB2E0004A9C0 /* PBXTargetDependency */, + 46EB2E0004A980 /* PBXTargetDependency */, + 46EB2E0004A960 /* PBXTargetDependency */, ); name = RNFBCrashlytics; productName = RNFBCrashlytics; @@ -42044,17 +42149,17 @@ }; E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0002AA40 /* Build configuration list for PBXNativeTarget "Flipper" */; + buildConfigurationList = 46EB2E0002A960 /* Build configuration list for PBXNativeTarget "Flipper" */; buildPhases = ( - 46EB2E0002AA80 /* Headers */, - 46EB2E0002AA90 /* Sources */, - 46EB2E0002AAA0 /* Frameworks */, + 46EB2E0002A9A0 /* Headers */, + 46EB2E0002A9B0 /* Sources */, + 46EB2E0002A9C0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A530 /* PBXTargetDependency */, - 46EB2E0004A550 /* PBXTargetDependency */, + 46EB2E0004A420 /* PBXTargetDependency */, + 46EB2E0004A440 /* PBXTargetDependency */, ); name = Flipper; productName = Flipper; @@ -42063,16 +42168,16 @@ }; EB28C63AFB5F6569AA780E440F9927E8 /* BVLinearGradient */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00022AF0 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */; + buildConfigurationList = 46EB2E00022A10 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */; buildPhases = ( - 46EB2E00022B30 /* Headers */, - 46EB2E00022B40 /* Sources */, - 46EB2E00022B50 /* Frameworks */, + 46EB2E00022A50 /* Headers */, + 46EB2E00022A60 /* Sources */, + 46EB2E00022A70 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E00049D90 /* PBXTargetDependency */, + 46EB2E00049C80 /* PBXTargetDependency */, ); name = BVLinearGradient; productName = BVLinearGradient; @@ -42081,20 +42186,20 @@ }; EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00031750 /* Build configuration list for PBXNativeTarget "RCT-Folly" */; + buildConfigurationList = 46EB2E000314E0 /* Build configuration list for PBXNativeTarget "RCT-Folly" */; buildPhases = ( - 46EB2E00031790 /* Headers */, - 46EB2E000317A0 /* Sources */, - 46EB2E000317B0 /* Frameworks */, + 46EB2E00031520 /* Headers */, + 46EB2E00031530 /* Sources */, + 46EB2E00031540 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A810 /* PBXTargetDependency */, - 46EB2E0004A7F0 /* PBXTargetDependency */, - 46EB2E0004A850 /* PBXTargetDependency */, - 46EB2E0004A830 /* PBXTargetDependency */, - 46EB2E0004A870 /* PBXTargetDependency */, + 46EB2E0004A700 /* PBXTargetDependency */, + 46EB2E0004A6E0 /* PBXTargetDependency */, + 46EB2E0004A740 /* PBXTargetDependency */, + 46EB2E0004A720 /* PBXTargetDependency */, + 46EB2E0004A760 /* PBXTargetDependency */, ); name = "RCT-Folly"; productName = "RCT-Folly"; @@ -42103,16 +42208,16 @@ }; F133385E353F127F269BD198DA330584 /* react-native-flipper */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000489A0 /* Build configuration list for PBXNativeTarget "react-native-flipper" */; + buildConfigurationList = 46EB2E00048730 /* Build configuration list for PBXNativeTarget "react-native-flipper" */; buildPhases = ( - 46EB2E000489E0 /* Headers */, - 46EB2E000489F0 /* Sources */, - 46EB2E00048A00 /* Frameworks */, + 46EB2E00048770 /* Headers */, + 46EB2E00048780 /* Sources */, + 46EB2E00048790 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004C0D0 /* PBXTargetDependency */, + 46EB2E0004BFC0 /* PBXTargetDependency */, ); name = "react-native-flipper"; productName = "react-native-flipper"; @@ -42121,11 +42226,11 @@ }; F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003B0D0 /* Build configuration list for PBXNativeTarget "React-perflogger" */; + buildConfigurationList = 46EB2E0003AE60 /* Build configuration list for PBXNativeTarget "React-perflogger" */; buildPhases = ( - 46EB2E0003B110 /* Headers */, - 46EB2E0003B120 /* Sources */, - 46EB2E0003B130 /* Frameworks */, + 46EB2E0003AEA0 /* Headers */, + 46EB2E0003AEB0 /* Sources */, + 46EB2E0003AEC0 /* Frameworks */, ); buildRules = ( ); @@ -42138,11 +42243,11 @@ }; F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003BF80 /* Build configuration list for PBXNativeTarget "SSZipArchive" */; + buildConfigurationList = 46EB2E0003BD10 /* Build configuration list for PBXNativeTarget "SSZipArchive" */; buildPhases = ( - 46EB2E0003BFC0 /* Headers */, - 46EB2E0003BFD0 /* Sources */, - 46EB2E0003BFE0 /* Frameworks */, + 46EB2E0003BD50 /* Headers */, + 46EB2E0003BD60 /* Sources */, + 46EB2E0003BD70 /* Frameworks */, ); buildRules = ( ); @@ -42155,11 +42260,11 @@ }; F7D033C4C128EECAA020990641FA985F /* React-jsinspector */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003AED0 /* Build configuration list for PBXNativeTarget "React-jsinspector" */; + buildConfigurationList = 46EB2E0003AC60 /* Build configuration list for PBXNativeTarget "React-jsinspector" */; buildPhases = ( - 46EB2E0003AF10 /* Headers */, - 46EB2E0003AF20 /* Sources */, - 46EB2E0003AF30 /* Frameworks */, + 46EB2E0003ACA0 /* Headers */, + 46EB2E0003ACB0 /* Sources */, + 46EB2E0003ACC0 /* Frameworks */, ); buildRules = ( ); @@ -42172,16 +42277,16 @@ }; F95BD6B7EBE4B40A06D0F914262CA972 /* JWT */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E000308F0 /* Build configuration list for PBXNativeTarget "JWT" */; + buildConfigurationList = 46EB2E00030810 /* Build configuration list for PBXNativeTarget "JWT" */; buildPhases = ( - 46EB2E00030930 /* Headers */, - 46EB2E00030940 /* Sources */, - 46EB2E00030950 /* Frameworks */, + 46EB2E00030850 /* Headers */, + 46EB2E00030860 /* Sources */, + 46EB2E00030870 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A7D0 /* PBXTargetDependency */, + 46EB2E0004A6C0 /* PBXTargetDependency */, ); name = JWT; productName = JWT; @@ -42190,19 +42295,19 @@ }; FA877ADC442CB19CF61793D234C8B131 /* React-jsi */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E0003AC00 /* Build configuration list for PBXNativeTarget "React-jsi" */; + buildConfigurationList = 46EB2E0003A990 /* Build configuration list for PBXNativeTarget "React-jsi" */; buildPhases = ( - 46EB2E0003AC40 /* Headers */, - 46EB2E0003AC50 /* Sources */, - 46EB2E0003AC60 /* Frameworks */, + 46EB2E0003A9D0 /* Headers */, + 46EB2E0003A9E0 /* Sources */, + 46EB2E0003A9F0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004BCF0 /* PBXTargetDependency */, - 46EB2E0004BD10 /* PBXTargetDependency */, - 46EB2E0004BCD0 /* PBXTargetDependency */, - 46EB2E0004BD30 /* PBXTargetDependency */, + 46EB2E0004BBE0 /* PBXTargetDependency */, + 46EB2E0004BC00 /* PBXTargetDependency */, + 46EB2E0004BBC0 /* PBXTargetDependency */, + 46EB2E0004BC20 /* PBXTargetDependency */, ); name = "React-jsi"; productName = "React-jsi"; @@ -42211,16 +42316,16 @@ }; FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00026A50 /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension" */; + buildConfigurationList = 46EB2E00026970 /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension" */; buildPhases = ( - 46EB2E00026A90 /* Headers */, - 46EB2E00026AA0 /* Sources */, - 46EB2E00026AB0 /* Frameworks */, + 46EB2E000269B0 /* Headers */, + 46EB2E000269C0 /* Sources */, + 46EB2E000269D0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004A1D0 /* PBXTargetDependency */, + 46EB2E0004A0C0 /* PBXTargetDependency */, ); name = FirebaseCoreExtension; productName = FirebaseCoreExtension; @@ -42229,39 +42334,39 @@ }; FF879E718031128A75E7DE54046E6219 /* RNReanimated */ = { isa = PBXNativeTarget; - buildConfigurationList = 46EB2E00035C60 /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildConfigurationList = 46EB2E000359F0 /* Build configuration list for PBXNativeTarget "RNReanimated" */; buildPhases = ( - 46EB2E00035CA0 /* Headers */, - 46EB2E00035CB0 /* Sources */, - 46EB2E00035CC0 /* Frameworks */, + 46EB2E00035A30 /* Headers */, + 46EB2E00035A40 /* Sources */, + 46EB2E00035A50 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 46EB2E0004AF90 /* PBXTargetDependency */, - 46EB2E0004AD30 /* PBXTargetDependency */, - 46EB2E0004AD50 /* PBXTargetDependency */, - 46EB2E0004AFF0 /* PBXTargetDependency */, - 46EB2E0004AD70 /* PBXTargetDependency */, - 46EB2E0004AD90 /* PBXTargetDependency */, - 46EB2E0004AD10 /* PBXTargetDependency */, - 46EB2E0004ADB0 /* PBXTargetDependency */, - 46EB2E0004ADD0 /* PBXTargetDependency */, - 46EB2E0004AE10 /* PBXTargetDependency */, - 46EB2E0004AE50 /* PBXTargetDependency */, - 46EB2E0004AEB0 /* PBXTargetDependency */, - 46EB2E0004AE30 /* PBXTargetDependency */, - 46EB2E0004ADF0 /* PBXTargetDependency */, - 46EB2E0004AE70 /* PBXTargetDependency */, - 46EB2E0004AE90 /* PBXTargetDependency */, - 46EB2E0004AFD0 /* PBXTargetDependency */, - 46EB2E0004AED0 /* PBXTargetDependency */, - 46EB2E0004AEF0 /* PBXTargetDependency */, - 46EB2E0004AF10 /* PBXTargetDependency */, - 46EB2E0004AF30 /* PBXTargetDependency */, - 46EB2E0004AF50 /* PBXTargetDependency */, - 46EB2E0004AF70 /* PBXTargetDependency */, - 46EB2E0004AFB0 /* PBXTargetDependency */, + 46EB2E0004AE80 /* PBXTargetDependency */, + 46EB2E0004AC20 /* PBXTargetDependency */, + 46EB2E0004AC40 /* PBXTargetDependency */, + 46EB2E0004AEE0 /* PBXTargetDependency */, + 46EB2E0004AC60 /* PBXTargetDependency */, + 46EB2E0004AC80 /* PBXTargetDependency */, + 46EB2E0004AC00 /* PBXTargetDependency */, + 46EB2E0004ACA0 /* PBXTargetDependency */, + 46EB2E0004ACC0 /* PBXTargetDependency */, + 46EB2E0004AD00 /* PBXTargetDependency */, + 46EB2E0004AD40 /* PBXTargetDependency */, + 46EB2E0004ADA0 /* PBXTargetDependency */, + 46EB2E0004AD20 /* PBXTargetDependency */, + 46EB2E0004ACE0 /* PBXTargetDependency */, + 46EB2E0004AD60 /* PBXTargetDependency */, + 46EB2E0004AD80 /* PBXTargetDependency */, + 46EB2E0004AEC0 /* PBXTargetDependency */, + 46EB2E0004ADC0 /* PBXTargetDependency */, + 46EB2E0004ADE0 /* PBXTargetDependency */, + 46EB2E0004AE00 /* PBXTargetDependency */, + 46EB2E0004AE20 /* PBXTargetDependency */, + 46EB2E0004AE40 /* PBXTargetDependency */, + 46EB2E0004AE60 /* PBXTargetDependency */, + 46EB2E0004AEA0 /* PBXTargetDependency */, ); name = RNReanimated; productName = RNReanimated; @@ -42362,6 +42467,7 @@ F133385E353F127F269BD198DA330584 /* react-native-flipper */, 951971F966B90DEAB7D250D9C65A8AC1 /* react-native-pdf */, BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */, + 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */, F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */, 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */, 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */, @@ -42405,26 +42511,26 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 46EB2E00037700 /* Resources */ = { + 46EB2E00037490 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037710 /* en.lproj in Resources */, + 46EB2E000374A0 /* en.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E280 /* Resources */ = { + 46EB2E0003E010 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003E290 /* roots.pem in Resources */, + 46EB2E0003E020 /* roots.pem in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 46EB2E00026D80 /* Copy generated compatibility header */ = { + 46EB2E00026CA0 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42448,7 +42554,7 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/FirebaseCoreInternal/FirebaseCoreInternal.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/FirebaseCoreInternal/FirebaseCoreInternal-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 46EB2E0003CA30 /* Copy generated compatibility header */ = { + 46EB2E0003C7C0 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42472,7 +42578,7 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/YogaKit/YogaKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/YogaKit/YogaKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 46EB2E00048FB0 /* [CP-User] Generate Specs */ = { + 46EB2E00048E80 /* [CP-User] Generate Specs */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42545,8 +42651,8 @@ "${PODS_TARGET_SRCROOT}/../../Libraries/Utilities/NativePlatformConstantsIOS.js", "${PODS_TARGET_SRCROOT}/../../Libraries/Vibration/NativeVibration.js", "${PODS_TARGET_SRCROOT}/../../Libraries/WebSocket/NativeWebSocketModule.js", - $PODS_ROOT/../.xcode.env.local, - $PODS_ROOT/../.xcode.env, + "$PODS_ROOT/../.xcode.env.local", + "$PODS_ROOT/../.xcode.env", ); name = "[CP-User] Generate Specs"; outputPaths = ( @@ -42558,7 +42664,7 @@ shellPath = /bin/sh; shellScript = "pushd \"$PODS_ROOT/../\" > /dev/null\nRCT_SCRIPT_POD_INSTALLATION_ROOT=$(pwd)\npopd >/dev/null\n\nexport RCT_SCRIPT_RN_DIR=${PODS_TARGET_SRCROOT}/../..\nexport RCT_SCRIPT_LIBRARY_NAME=FBReactNativeSpec\nexport RCT_SCRIPT_OUTPUT_DIR=$RCT_SCRIPT_POD_INSTALLATION_ROOT/build/generated/ios\nexport RCT_SCRIPT_LIBRARY_TYPE=modules\nexport RCT_SCRIPT_JS_SRCS_PATTERN=Native*.js\nexport RCT_SCRIPT_JS_SRCS_DIR=../../Libraries\nexport RCT_SCRIPT_CODEGEN_MODULE_DIR=.\nexport RCT_SCRIPT_CODEGEN_COMPONENT_DIR=react/renderer/components\nexport RCT_SCRIPT_FILE_LIST=\"[\\\"../../Libraries/ActionSheetIOS/NativeActionSheetManager.js\\\", \\\"../../Libraries/Alert/NativeAlertManager.js\\\", \\\"../../Libraries/Animated/NativeAnimatedHelper.js\\\", \\\"../../Libraries/Animated/NativeAnimatedModule.js\\\", \\\"../../Libraries/Animated/NativeAnimatedTurboModule.js\\\", \\\"../../Libraries/AppState/NativeAppState.js\\\", \\\"../../Libraries/BatchedBridge/NativeModules.js\\\", \\\"../../Libraries/Blob/NativeBlobModule.js\\\", \\\"../../Libraries/Blob/NativeFileReaderModule.js\\\", \\\"../../Libraries/BugReporting/NativeBugReporting.js\\\", \\\"../../Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js\\\", \\\"../../Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js\\\", \\\"../../Libraries/Components/Clipboard/NativeClipboard.js\\\", \\\"../../Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js\\\", \\\"../../Libraries/Components/Keyboard/NativeKeyboardObserver.js\\\", \\\"../../Libraries/Components/Sound/NativeSoundManager.js\\\", \\\"../../Libraries/Components/StatusBar/NativeStatusBarManagerAndroid.js\\\", \\\"../../Libraries/Components/StatusBar/NativeStatusBarManagerIOS.js\\\", \\\"../../Libraries/Components/ToastAndroid/NativeToastAndroid.js\\\", \\\"../../Libraries/Core/NativeExceptionsManager.js\\\", \\\"../../Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js\\\", \\\"../../Libraries/Core/Timers/NativeTiming.js\\\", \\\"../../Libraries/EventEmitter/NativeEventEmitter.js\\\", \\\"../../Libraries/EventEmitter/__mocks__/NativeEventEmitter.js\\\", \\\"../../Libraries/HeapCapture/NativeJSCHeapCapture.js\\\", \\\"../../Libraries/Image/NativeImageEditor.js\\\", \\\"../../Libraries/Image/NativeImageLoaderAndroid.js\\\", \\\"../../Libraries/Image/NativeImageLoaderIOS.js\\\", \\\"../../Libraries/Image/NativeImagePickerIOS.js\\\", \\\"../../Libraries/Image/NativeImageStoreAndroid.js\\\", \\\"../../Libraries/Image/NativeImageStoreIOS.js\\\", \\\"../../Libraries/Interaction/NativeFrameRateLogger.js\\\", \\\"../../Libraries/Linking/NativeIntentAndroid.js\\\", \\\"../../Libraries/Linking/NativeLinkingManager.js\\\", \\\"../../Libraries/Modal/NativeModalManager.js\\\", \\\"../../Libraries/NativeComponent/NativeComponentRegistry.js\\\", \\\"../../Libraries/NativeComponent/NativeComponentRegistryUnstable.js\\\", \\\"../../Libraries/NativeModules/specs/NativeAnimationsDebugModule.js\\\", \\\"../../Libraries/NativeModules/specs/NativeDevMenu.js\\\", \\\"../../Libraries/NativeModules/specs/NativeDevSettings.js\\\", \\\"../../Libraries/NativeModules/specs/NativeDeviceEventManager.js\\\", \\\"../../Libraries/NativeModules/specs/NativeDialogManagerAndroid.js\\\", \\\"../../Libraries/NativeModules/specs/NativeLogBox.js\\\", \\\"../../Libraries/NativeModules/specs/NativeRedBox.js\\\", \\\"../../Libraries/NativeModules/specs/NativeSourceCode.js\\\", \\\"../../Libraries/Network/NativeNetworkingAndroid.js\\\", \\\"../../Libraries/Network/NativeNetworkingIOS.js\\\", \\\"../../Libraries/Performance/NativeJSCSamplingProfiler.js\\\", \\\"../../Libraries/PermissionsAndroid/NativePermissionsAndroid.js\\\", \\\"../../Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js\\\", \\\"../../Libraries/ReactNative/NativeHeadlessJsTaskSupport.js\\\", \\\"../../Libraries/ReactNative/NativeI18nManager.js\\\", \\\"../../Libraries/ReactNative/NativeUIManager.js\\\", \\\"../../Libraries/Settings/NativeSettingsManager.js\\\", \\\"../../Libraries/Share/NativeShareModule.js\\\", \\\"../../Libraries/Storage/NativeAsyncLocalStorage.js\\\", \\\"../../Libraries/Storage/NativeAsyncSQLiteDBStorage.js\\\", \\\"../../Libraries/TurboModule/samples/NativeSampleTurboModule.js\\\", \\\"../../Libraries/Utilities/NativeAppearance.js\\\", \\\"../../Libraries/Utilities/NativeDevLoadingView.js\\\", \\\"../../Libraries/Utilities/NativeDevSplitBundleLoader.js\\\", \\\"../../Libraries/Utilities/NativeDeviceInfo.js\\\", \\\"../../Libraries/Utilities/NativeJSDevSupport.js\\\", \\\"../../Libraries/Utilities/NativePlatformConstantsAndroid.js\\\", \\\"../../Libraries/Utilities/NativePlatformConstantsIOS.js\\\", \\\"../../Libraries/Vibration/NativeVibration.js\\\", \\\"../../Libraries/WebSocket/NativeWebSocketModule.js\\\"]\"\n\nSCRIPT_PHASES_SCRIPT=\"$RCT_SCRIPT_RN_DIR/scripts/react_native_pods_utils/script_phases.sh\"\nWITH_ENVIRONMENT=\"$RCT_SCRIPT_RN_DIR/scripts/xcode/with-environment.sh\"\n/bin/sh -c \"$WITH_ENVIRONMENT $SCRIPT_PHASES_SCRIPT\"\n"; }; - 46EB2E00048FC0 /* [CP] Copy XCFrameworks */ = { + 46EB2E00048E90 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42576,7 +42682,7 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 46EB2E00048FD0 /* [CP] Copy XCFrameworks */ = { + 46EB2E00048EA0 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42594,7 +42700,7 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Flipper-Glog/Flipper-Glog-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 46EB2E00048FE0 /* [CP] Copy XCFrameworks */ = { + 46EB2E00048EB0 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42614,7 +42720,7 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 46EB2E00048FF0 /* [CP] Copy XCFrameworks */ = { + 46EB2E00048EC0 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42632,7 +42738,7 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 46EB2E00049000 /* [CP] Copy XCFrameworks */ = { + 46EB2E00048ED0 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -42650,13 +42756,13 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/hermes-engine/hermes-engine-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 46EB2E00049010 /* [CP-User] Config codegen */ = { + 46EB2E00048EE0 /* [CP-User] Config codegen */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( - $PODS_TARGET_SRCROOT/ios/ReactNativeConfig/BuildDotenvConfig.rb, + "$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/BuildDotenvConfig.rb", ); name = "[CP-User] Config codegen"; runOnlyForDeploymentPostprocessing = 0; @@ -42666,6409 +42772,6420 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 46EB2E00022B40 /* Sources */ = { + 46EB2E00022A60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00022B60 /* BVLinearGradient.m in Sources */, - 46EB2E00022C10 /* BVLinearGradient-dummy.m in Sources */, - 46EB2E00022B70 /* BVLinearGradientLayer.m in Sources */, - 46EB2E00022B80 /* BVLinearGradientManager.m in Sources */, + 46EB2E00022A80 /* BVLinearGradient.m in Sources */, + 46EB2E00022B30 /* BVLinearGradient-dummy.m in Sources */, + 46EB2E00022A90 /* BVLinearGradientLayer.m in Sources */, + 46EB2E00022AA0 /* BVLinearGradientManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022C80 /* Sources */ = { + 46EB2E00022BA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00022D10 /* Base64-dummy.m in Sources */, - 46EB2E00022CA0 /* MF_Base64Additions.m in Sources */, + 46EB2E00022C30 /* Base64-dummy.m in Sources */, + 46EB2E00022BC0 /* MF_Base64Additions.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00022D80 /* Sources */ = { + 46EB2E00022CA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00023120 /* a_bitstr.c in Sources */, - 46EB2E00023130 /* a_bool.c in Sources */, - 46EB2E00023140 /* a_d2i_fp.c in Sources */, - 46EB2E00023E00 /* a_digest.c in Sources */, - 46EB2E00023150 /* a_dup.c in Sources */, - 46EB2E00023160 /* a_enum.c in Sources */, - 46EB2E00023170 /* a_gentm.c in Sources */, - 46EB2E00023180 /* a_i2d_fp.c in Sources */, - 46EB2E00023190 /* a_int.c in Sources */, - 46EB2E000231A0 /* a_mbstr.c in Sources */, - 46EB2E000231B0 /* a_object.c in Sources */, - 46EB2E000231C0 /* a_octet.c in Sources */, - 46EB2E000231D0 /* a_print.c in Sources */, - 46EB2E00023E10 /* a_sign.c in Sources */, - 46EB2E000231E0 /* a_strex.c in Sources */, - 46EB2E000231F0 /* a_strnid.c in Sources */, - 46EB2E00023200 /* a_time.c in Sources */, - 46EB2E00023210 /* a_type.c in Sources */, - 46EB2E00023220 /* a_utctm.c in Sources */, - 46EB2E00023230 /* a_utf8.c in Sources */, - 46EB2E00023E20 /* a_verify.c in Sources */, - 46EB2E00023720 /* add.c in Sources */, - 46EB2E00023870 /* aead.c in Sources */, - 46EB2E000236E0 /* aes.c in Sources */, - 46EB2E000236F0 /* aes_nohw.c in Sources */, - 46EB2E00023DE0 /* algorithm.c in Sources */, - 46EB2E000233C0 /* asn1_compat.c in Sources */, - 46EB2E00023DF0 /* asn1_gen.c in Sources */, - 46EB2E000230F0 /* asn1_lib.c in Sources */, - 46EB2E00023100 /* asn1_par.c in Sources */, - 46EB2E00023110 /* asn_pack.c in Sources */, - 46EB2E000232D0 /* base64.c in Sources */, - 46EB2E000233D0 /* ber.c in Sources */, - 46EB2E000232E0 /* bio.c in Sources */, - 46EB2E000232F0 /* bio_mem.c in Sources */, - 46EB2E00022DA0 /* bio_ssl.cc in Sources */, - 46EB2E00023380 /* blake2.c in Sources */, - 46EB2E00023AE0 /* blinding.c in Sources */, - 46EB2E00023740 /* bn.c in Sources */, - 46EB2E00023390 /* bn_asn1.c in Sources */, - 46EB2E00024B90 /* BoringSSL-GRPC-dummy.m in Sources */, - 46EB2E000233B0 /* buf.c in Sources */, - 46EB2E00023E30 /* by_dir.c in Sources */, - 46EB2E00023E40 /* by_file.c in Sources */, - 46EB2E00023750 /* bytes.c in Sources */, - 46EB2E000233E0 /* cbb.c in Sources */, - 46EB2E00023A30 /* cbc.c in Sources */, - 46EB2E000233F0 /* cbs.c in Sources */, - 46EB2E00023A40 /* cfb.c in Sources */, - 46EB2E00023410 /* chacha.c in Sources */, - 46EB2E000238C0 /* check.c in Sources */, - 46EB2E00023880 /* cipher.c in Sources */, - 46EB2E00023420 /* cipher_extra.c in Sources */, - 46EB2E000234D0 /* cmac.c in Sources */, - 46EB2E00023760 /* cmp.c in Sources */, - 46EB2E000234E0 /* conf.c in Sources */, - 46EB2E00023300 /* connect.c in Sources */, - 46EB2E000233A0 /* convert.c in Sources */, - 46EB2E00022FF0 /* cpu-aarch64-fuchsia.c in Sources */, - 46EB2E00023000 /* cpu-aarch64-linux.c in Sources */, - 46EB2E00023010 /* cpu-aarch64-win.c in Sources */, - 46EB2E00023030 /* cpu-arm.c in Sources */, - 46EB2E00023020 /* cpu-arm-linux.c in Sources */, - 46EB2E00023040 /* cpu-intel.c in Sources */, - 46EB2E00023050 /* cpu-ppc64le.c in Sources */, - 46EB2E00023060 /* crypto.c in Sources */, - 46EB2E00023A50 /* ctr.c in Sources */, - 46EB2E00023AA0 /* ctrdrbg.c in Sources */, - 46EB2E00023770 /* ctx.c in Sources */, - 46EB2E000234F0 /* curve25519.c in Sources */, - 46EB2E00022DB0 /* d1_both.cc in Sources */, - 46EB2E00022DC0 /* d1_lib.cc in Sources */, - 46EB2E00022DD0 /* d1_pkt.cc in Sources */, - 46EB2E00022DE0 /* d1_srtp.cc in Sources */, - 46EB2E00023430 /* derive_key.c in Sources */, - 46EB2E000238B0 /* des.c in Sources */, - 46EB2E00023D00 /* deterministic.c in Sources */, - 46EB2E000238D0 /* dh.c in Sources */, - 46EB2E00023510 /* dh_asn1.c in Sources */, - 46EB2E000238E0 /* digest.c in Sources */, - 46EB2E00023530 /* digest_extra.c in Sources */, - 46EB2E000238F0 /* digests.c in Sources */, - 46EB2E000235D0 /* digestsign.c in Sources */, - 46EB2E00023780 /* div.c in Sources */, - 46EB2E00023790 /* div_extra.c in Sources */, - 46EB2E00023540 /* dsa.c in Sources */, - 46EB2E00023550 /* dsa_asn1.c in Sources */, - 46EB2E00022DF0 /* dtls_method.cc in Sources */, - 46EB2E00022E00 /* dtls_record.cc in Sources */, - 46EB2E00023890 /* e_aes.c in Sources */, - 46EB2E00023440 /* e_aesccm.c in Sources */, - 46EB2E00023450 /* e_aesctrhmac.c in Sources */, - 46EB2E00023460 /* e_aesgcmsiv.c in Sources */, - 46EB2E00023470 /* e_chacha20poly1305.c in Sources */, - 46EB2E000238A0 /* e_des.c in Sources */, - 46EB2E00023480 /* e_null.c in Sources */, - 46EB2E00023490 /* e_rc2.c in Sources */, - 46EB2E000234A0 /* e_rc4.c in Sources */, - 46EB2E000234B0 /* e_tls.c in Sources */, - 46EB2E00023900 /* ec.c in Sources */, - 46EB2E00023580 /* ec_asn1.c in Sources */, - 46EB2E00023590 /* ec_derive.c in Sources */, - 46EB2E00023910 /* ec_key.c in Sources */, - 46EB2E00023920 /* ec_montgomery.c in Sources */, - 46EB2E000239D0 /* ecdh.c in Sources */, - 46EB2E00023560 /* ecdh_extra.c in Sources */, - 46EB2E000239E0 /* ecdsa.c in Sources */, - 46EB2E00023570 /* ecdsa_asn1.c in Sources */, - 46EB2E00022E10 /* encrypted_client_hello.cc in Sources */, - 46EB2E000235B0 /* engine.c in Sources */, - 46EB2E000235C0 /* err.c in Sources */, - 46EB2E000242D0 /* err_data.c in Sources */, - 46EB2E000235E0 /* evp.c in Sources */, - 46EB2E000235F0 /* evp_asn1.c in Sources */, - 46EB2E00023600 /* evp_ctx.c in Sources */, - 46EB2E00023070 /* ex_data.c in Sources */, - 46EB2E000237A0 /* exponentiation.c in Sources */, - 46EB2E00022E20 /* extensions.cc in Sources */, - 46EB2E00023240 /* f_int.c in Sources */, - 46EB2E00023250 /* f_string.c in Sources */, - 46EB2E00023310 /* fd.c in Sources */, - 46EB2E00023930 /* felem.c in Sources */, - 46EB2E00023320 /* file.c in Sources */, - 46EB2E00023B20 /* fips.c in Sources */, - 46EB2E000239F0 /* fips_shared_support.c in Sources */, - 46EB2E00023AB0 /* fork_detect.c in Sources */, - 46EB2E00023D10 /* forkunsafe.c in Sources */, - 46EB2E00023D20 /* fuchsia.c in Sources */, - 46EB2E000237B0 /* gcd.c in Sources */, - 46EB2E000237C0 /* gcd_extra.c in Sources */, - 46EB2E00023A60 /* gcm.c in Sources */, - 46EB2E00023A70 /* gcm_nohw.c in Sources */, - 46EB2E000237D0 /* generic.c in Sources */, - 46EB2E00022E30 /* handoff.cc in Sources */, - 46EB2E00022E40 /* handshake.cc in Sources */, - 46EB2E00022E50 /* handshake_client.cc in Sources */, - 46EB2E00022E60 /* handshake_server.cc in Sources */, - 46EB2E000235A0 /* hash_to_curve.c in Sources */, - 46EB2E00023330 /* hexdump.c in Sources */, - 46EB2E00023B90 /* hkdf.c in Sources */, - 46EB2E00023A00 /* hmac.c in Sources */, - 46EB2E00023BA0 /* hpke.c in Sources */, - 46EB2E00023BB0 /* hrss.c in Sources */, - 46EB2E00023E50 /* i2d_pr.c in Sources */, - 46EB2E000237E0 /* jacobi.c in Sources */, - 46EB2E00023B80 /* kdf.c in Sources */, - 46EB2E00023700 /* key_wrap.c in Sources */, - 46EB2E00023BC0 /* lhash.c in Sources */, - 46EB2E00023A10 /* md4.c in Sources */, - 46EB2E00023A20 /* md5.c in Sources */, - 46EB2E00023080 /* mem.c in Sources */, - 46EB2E00023710 /* mode_wrappers.c in Sources */, - 46EB2E000237F0 /* montgomery.c in Sources */, - 46EB2E00023800 /* montgomery_inv.c in Sources */, - 46EB2E00023810 /* mul.c in Sources */, - 46EB2E00023E60 /* name_print.c in Sources */, - 46EB2E00023BD0 /* obj.c in Sources */, - 46EB2E00023BE0 /* obj_xref.c in Sources */, - 46EB2E00023940 /* oct.c in Sources */, - 46EB2E00023A80 /* ofb.c in Sources */, - 46EB2E00023950 /* p224-64.c in Sources */, - 46EB2E00023970 /* p256.c in Sources */, - 46EB2E00023960 /* p256-x86_64.c in Sources */, - 46EB2E00023C90 /* p5_pbev2.c in Sources */, - 46EB2E00023630 /* p_dsa_asn1.c in Sources */, - 46EB2E00023640 /* p_ec.c in Sources */, - 46EB2E00023650 /* p_ec_asn1.c in Sources */, - 46EB2E00023660 /* p_ed25519.c in Sources */, - 46EB2E00023670 /* p_ed25519_asn1.c in Sources */, - 46EB2E00023680 /* p_rsa.c in Sources */, - 46EB2E00023690 /* p_rsa_asn1.c in Sources */, - 46EB2E000236A0 /* p_x25519.c in Sources */, - 46EB2E000236B0 /* p_x25519_asn1.c in Sources */, - 46EB2E00023AF0 /* padding.c in Sources */, - 46EB2E00023340 /* pair.c in Sources */, - 46EB2E00023520 /* params.c in Sources */, - 46EB2E00023D30 /* passive.c in Sources */, - 46EB2E00023610 /* pbkdf.c in Sources */, - 46EB2E000240E0 /* pcy_cache.c in Sources */, - 46EB2E000240F0 /* pcy_data.c in Sources */, - 46EB2E00024100 /* pcy_lib.c in Sources */, - 46EB2E00024110 /* pcy_map.c in Sources */, - 46EB2E00024120 /* pcy_node.c in Sources */, - 46EB2E00024130 /* pcy_tree.c in Sources */, - 46EB2E00023BF0 /* pem_all.c in Sources */, - 46EB2E00023C00 /* pem_info.c in Sources */, - 46EB2E00023C10 /* pem_lib.c in Sources */, - 46EB2E00023C20 /* pem_oth.c in Sources */, - 46EB2E00023C30 /* pem_pk8.c in Sources */, - 46EB2E00023C40 /* pem_pkey.c in Sources */, - 46EB2E00023C50 /* pem_x509.c in Sources */, - 46EB2E00023C60 /* pem_xaux.c in Sources */, - 46EB2E00023C70 /* pkcs7.c in Sources */, - 46EB2E00023C80 /* pkcs7_x509.c in Sources */, - 46EB2E00023CA0 /* pkcs8.c in Sources */, - 46EB2E00023CB0 /* pkcs8_x509.c in Sources */, - 46EB2E00023DB0 /* pmbtoken.c in Sources */, - 46EB2E00023CC0 /* poly1305.c in Sources */, - 46EB2E00023CD0 /* poly1305_arm.c in Sources */, - 46EB2E00023CE0 /* poly1305_vec.c in Sources */, - 46EB2E00023A90 /* polyval.c in Sources */, - 46EB2E00023CF0 /* pool.c in Sources */, - 46EB2E00023820 /* prime.c in Sources */, - 46EB2E00023620 /* print.c in Sources */, - 46EB2E00023350 /* printf.c in Sources */, - 46EB2E00023AC0 /* rand.c in Sources */, - 46EB2E00023D40 /* rand_extra.c in Sources */, - 46EB2E00023830 /* random.c in Sources */, - 46EB2E00023D60 /* rc4.c in Sources */, - 46EB2E00023090 /* refcount_c11.c in Sources */, - 46EB2E000230A0 /* refcount_lock.c in Sources */, - 46EB2E00023B00 /* rsa.c in Sources */, - 46EB2E00023D70 /* rsa_asn1.c in Sources */, - 46EB2E00023B10 /* rsa_impl.c in Sources */, - 46EB2E00023D80 /* rsa_print.c in Sources */, - 46EB2E00023E70 /* rsa_pss.c in Sources */, - 46EB2E00023840 /* rsaz_exp.c in Sources */, - 46EB2E00022E70 /* s3_both.cc in Sources */, - 46EB2E00022E80 /* s3_lib.cc in Sources */, - 46EB2E00022E90 /* s3_pkt.cc in Sources */, - 46EB2E00023980 /* scalar.c in Sources */, - 46EB2E000236C0 /* scrypt.c in Sources */, - 46EB2E00023B30 /* self_check.c in Sources */, - 46EB2E00023B50 /* sha1.c in Sources */, - 46EB2E00023B40 /* sha1-altivec.c in Sources */, - 46EB2E00023B60 /* sha256.c in Sources */, - 46EB2E00023B70 /* sha512.c in Sources */, - 46EB2E00023850 /* shift.c in Sources */, - 46EB2E000236D0 /* sign.c in Sources */, - 46EB2E00023990 /* simple.c in Sources */, - 46EB2E000239A0 /* simple_mul.c in Sources */, - 46EB2E00023D90 /* siphash.c in Sources */, - 46EB2E00023360 /* socket.c in Sources */, - 46EB2E00023370 /* socket_helper.c in Sources */, - 46EB2E00023500 /* spake25519.c in Sources */, - 46EB2E00023860 /* sqrt.c in Sources */, - 46EB2E00022EA0 /* ssl_aead_ctx.cc in Sources */, - 46EB2E00022EB0 /* ssl_asn1.cc in Sources */, - 46EB2E00022EC0 /* ssl_buffer.cc in Sources */, - 46EB2E00022ED0 /* ssl_cert.cc in Sources */, - 46EB2E00022EE0 /* ssl_cipher.cc in Sources */, - 46EB2E00022EF0 /* ssl_file.cc in Sources */, - 46EB2E00022F00 /* ssl_key_share.cc in Sources */, - 46EB2E00022F10 /* ssl_lib.cc in Sources */, - 46EB2E00022F20 /* ssl_privkey.cc in Sources */, - 46EB2E00022F30 /* ssl_session.cc in Sources */, - 46EB2E00022F40 /* ssl_stat.cc in Sources */, - 46EB2E00022F50 /* ssl_transcript.cc in Sources */, - 46EB2E00022F60 /* ssl_versions.cc in Sources */, - 46EB2E00022F70 /* ssl_x509.cc in Sources */, - 46EB2E00023DA0 /* stack.c in Sources */, - 46EB2E00022F80 /* t1_enc.cc in Sources */, - 46EB2E00023E80 /* t_crl.c in Sources */, - 46EB2E00023E90 /* t_req.c in Sources */, - 46EB2E00023EA0 /* t_x509.c in Sources */, - 46EB2E00023EB0 /* t_x509a.c in Sources */, - 46EB2E00023260 /* tasn_dec.c in Sources */, - 46EB2E00023270 /* tasn_enc.c in Sources */, - 46EB2E00023280 /* tasn_fre.c in Sources */, - 46EB2E00023290 /* tasn_new.c in Sources */, - 46EB2E000232A0 /* tasn_typ.c in Sources */, - 46EB2E000232B0 /* tasn_utl.c in Sources */, - 46EB2E000230B0 /* thread.c in Sources */, - 46EB2E000230C0 /* thread_none.c in Sources */, - 46EB2E000230D0 /* thread_pthread.c in Sources */, - 46EB2E000230E0 /* thread_win.c in Sources */, - 46EB2E000232C0 /* time_support.c in Sources */, - 46EB2E00022F90 /* tls13_both.cc in Sources */, - 46EB2E00022FA0 /* tls13_client.cc in Sources */, - 46EB2E00022FB0 /* tls13_enc.cc in Sources */, - 46EB2E00022FC0 /* tls13_server.cc in Sources */, - 46EB2E000234C0 /* tls_cbc.c in Sources */, - 46EB2E00022FD0 /* tls_method.cc in Sources */, - 46EB2E00022FE0 /* tls_record.cc in Sources */, - 46EB2E00023DC0 /* trust_token.c in Sources */, - 46EB2E00023400 /* unicode.c in Sources */, - 46EB2E00023AD0 /* urandom.c in Sources */, - 46EB2E000239B0 /* util.c in Sources */, - 46EB2E00024140 /* v3_akey.c in Sources */, - 46EB2E00024150 /* v3_akeya.c in Sources */, - 46EB2E00024160 /* v3_alt.c in Sources */, - 46EB2E00024170 /* v3_bcons.c in Sources */, - 46EB2E00024180 /* v3_bitst.c in Sources */, - 46EB2E00024190 /* v3_conf.c in Sources */, - 46EB2E000241A0 /* v3_cpols.c in Sources */, - 46EB2E000241B0 /* v3_crld.c in Sources */, - 46EB2E000241C0 /* v3_enum.c in Sources */, - 46EB2E000241D0 /* v3_extku.c in Sources */, - 46EB2E000241E0 /* v3_genn.c in Sources */, - 46EB2E000241F0 /* v3_ia5.c in Sources */, - 46EB2E00024200 /* v3_info.c in Sources */, - 46EB2E00024210 /* v3_int.c in Sources */, - 46EB2E00024220 /* v3_lib.c in Sources */, - 46EB2E00024230 /* v3_ncons.c in Sources */, - 46EB2E00024240 /* v3_ocsp.c in Sources */, - 46EB2E00024250 /* v3_pci.c in Sources */, - 46EB2E00024260 /* v3_pcia.c in Sources */, - 46EB2E00024270 /* v3_pcons.c in Sources */, - 46EB2E00024280 /* v3_pmaps.c in Sources */, - 46EB2E00024290 /* v3_prn.c in Sources */, - 46EB2E000242A0 /* v3_purp.c in Sources */, - 46EB2E000242B0 /* v3_skey.c in Sources */, - 46EB2E000242C0 /* v3_utl.c in Sources */, - 46EB2E00023DD0 /* voprf.c in Sources */, - 46EB2E00023D50 /* windows.c in Sources */, - 46EB2E000239C0 /* wnaf.c in Sources */, - 46EB2E00023EC0 /* x509.c in Sources */, - 46EB2E00023F10 /* x509_att.c in Sources */, - 46EB2E00023F20 /* x509_cmp.c in Sources */, - 46EB2E00023F30 /* x509_d2.c in Sources */, - 46EB2E00023F40 /* x509_def.c in Sources */, - 46EB2E00023F50 /* x509_ext.c in Sources */, - 46EB2E00023F60 /* x509_lu.c in Sources */, - 46EB2E00023F70 /* x509_obj.c in Sources */, - 46EB2E00023F80 /* x509_req.c in Sources */, - 46EB2E00023F90 /* x509_set.c in Sources */, - 46EB2E00023FA0 /* x509_trs.c in Sources */, - 46EB2E00023FB0 /* x509_txt.c in Sources */, - 46EB2E00023FC0 /* x509_v3.c in Sources */, - 46EB2E00023FD0 /* x509_vfy.c in Sources */, - 46EB2E00023FE0 /* x509_vpm.c in Sources */, - 46EB2E00023ED0 /* x509cset.c in Sources */, - 46EB2E00023EE0 /* x509name.c in Sources */, - 46EB2E00023EF0 /* x509rset.c in Sources */, - 46EB2E00023F00 /* x509spki.c in Sources */, - 46EB2E00023730 /* x86_64-gcc.c in Sources */, - 46EB2E00023FF0 /* x_algor.c in Sources */, - 46EB2E00024000 /* x_all.c in Sources */, - 46EB2E00024010 /* x_attrib.c in Sources */, - 46EB2E00024020 /* x_crl.c in Sources */, - 46EB2E00024030 /* x_exten.c in Sources */, - 46EB2E00024040 /* x_info.c in Sources */, - 46EB2E00024050 /* x_name.c in Sources */, - 46EB2E00024060 /* x_pkey.c in Sources */, - 46EB2E00024070 /* x_pubkey.c in Sources */, - 46EB2E00024080 /* x_req.c in Sources */, - 46EB2E00024090 /* x_sig.c in Sources */, - 46EB2E000240A0 /* x_spki.c in Sources */, - 46EB2E000240B0 /* x_val.c in Sources */, - 46EB2E000240C0 /* x_x509.c in Sources */, - 46EB2E000240D0 /* x_x509a.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00024C00 /* Sources */ = { + 46EB2E00023040 /* a_bitstr.c in Sources */, + 46EB2E00023050 /* a_bool.c in Sources */, + 46EB2E00023060 /* a_d2i_fp.c in Sources */, + 46EB2E00023D20 /* a_digest.c in Sources */, + 46EB2E00023070 /* a_dup.c in Sources */, + 46EB2E00023080 /* a_enum.c in Sources */, + 46EB2E00023090 /* a_gentm.c in Sources */, + 46EB2E000230A0 /* a_i2d_fp.c in Sources */, + 46EB2E000230B0 /* a_int.c in Sources */, + 46EB2E000230C0 /* a_mbstr.c in Sources */, + 46EB2E000230D0 /* a_object.c in Sources */, + 46EB2E000230E0 /* a_octet.c in Sources */, + 46EB2E000230F0 /* a_print.c in Sources */, + 46EB2E00023D30 /* a_sign.c in Sources */, + 46EB2E00023100 /* a_strex.c in Sources */, + 46EB2E00023110 /* a_strnid.c in Sources */, + 46EB2E00023120 /* a_time.c in Sources */, + 46EB2E00023130 /* a_type.c in Sources */, + 46EB2E00023140 /* a_utctm.c in Sources */, + 46EB2E00023150 /* a_utf8.c in Sources */, + 46EB2E00023D40 /* a_verify.c in Sources */, + 46EB2E00023640 /* add.c in Sources */, + 46EB2E00023790 /* aead.c in Sources */, + 46EB2E00023600 /* aes.c in Sources */, + 46EB2E00023610 /* aes_nohw.c in Sources */, + 46EB2E00023D00 /* algorithm.c in Sources */, + 46EB2E000232E0 /* asn1_compat.c in Sources */, + 46EB2E00023D10 /* asn1_gen.c in Sources */, + 46EB2E00023010 /* asn1_lib.c in Sources */, + 46EB2E00023020 /* asn1_par.c in Sources */, + 46EB2E00023030 /* asn_pack.c in Sources */, + 46EB2E000231F0 /* base64.c in Sources */, + 46EB2E000232F0 /* ber.c in Sources */, + 46EB2E00023200 /* bio.c in Sources */, + 46EB2E00023210 /* bio_mem.c in Sources */, + 46EB2E00022CC0 /* bio_ssl.cc in Sources */, + 46EB2E000232A0 /* blake2.c in Sources */, + 46EB2E00023A00 /* blinding.c in Sources */, + 46EB2E00023660 /* bn.c in Sources */, + 46EB2E000232B0 /* bn_asn1.c in Sources */, + 46EB2E00024AB0 /* BoringSSL-GRPC-dummy.m in Sources */, + 46EB2E000232D0 /* buf.c in Sources */, + 46EB2E00023D50 /* by_dir.c in Sources */, + 46EB2E00023D60 /* by_file.c in Sources */, + 46EB2E00023670 /* bytes.c in Sources */, + 46EB2E00023300 /* cbb.c in Sources */, + 46EB2E00023950 /* cbc.c in Sources */, + 46EB2E00023310 /* cbs.c in Sources */, + 46EB2E00023960 /* cfb.c in Sources */, + 46EB2E00023330 /* chacha.c in Sources */, + 46EB2E000237E0 /* check.c in Sources */, + 46EB2E000237A0 /* cipher.c in Sources */, + 46EB2E00023340 /* cipher_extra.c in Sources */, + 46EB2E000233F0 /* cmac.c in Sources */, + 46EB2E00023680 /* cmp.c in Sources */, + 46EB2E00023400 /* conf.c in Sources */, + 46EB2E00023220 /* connect.c in Sources */, + 46EB2E000232C0 /* convert.c in Sources */, + 46EB2E00022F10 /* cpu-aarch64-fuchsia.c in Sources */, + 46EB2E00022F20 /* cpu-aarch64-linux.c in Sources */, + 46EB2E00022F30 /* cpu-aarch64-win.c in Sources */, + 46EB2E00022F50 /* cpu-arm.c in Sources */, + 46EB2E00022F40 /* cpu-arm-linux.c in Sources */, + 46EB2E00022F60 /* cpu-intel.c in Sources */, + 46EB2E00022F70 /* cpu-ppc64le.c in Sources */, + 46EB2E00022F80 /* crypto.c in Sources */, + 46EB2E00023970 /* ctr.c in Sources */, + 46EB2E000239C0 /* ctrdrbg.c in Sources */, + 46EB2E00023690 /* ctx.c in Sources */, + 46EB2E00023410 /* curve25519.c in Sources */, + 46EB2E00022CD0 /* d1_both.cc in Sources */, + 46EB2E00022CE0 /* d1_lib.cc in Sources */, + 46EB2E00022CF0 /* d1_pkt.cc in Sources */, + 46EB2E00022D00 /* d1_srtp.cc in Sources */, + 46EB2E00023350 /* derive_key.c in Sources */, + 46EB2E000237D0 /* des.c in Sources */, + 46EB2E00023C20 /* deterministic.c in Sources */, + 46EB2E000237F0 /* dh.c in Sources */, + 46EB2E00023430 /* dh_asn1.c in Sources */, + 46EB2E00023800 /* digest.c in Sources */, + 46EB2E00023450 /* digest_extra.c in Sources */, + 46EB2E00023810 /* digests.c in Sources */, + 46EB2E000234F0 /* digestsign.c in Sources */, + 46EB2E000236A0 /* div.c in Sources */, + 46EB2E000236B0 /* div_extra.c in Sources */, + 46EB2E00023460 /* dsa.c in Sources */, + 46EB2E00023470 /* dsa_asn1.c in Sources */, + 46EB2E00022D10 /* dtls_method.cc in Sources */, + 46EB2E00022D20 /* dtls_record.cc in Sources */, + 46EB2E000237B0 /* e_aes.c in Sources */, + 46EB2E00023360 /* e_aesccm.c in Sources */, + 46EB2E00023370 /* e_aesctrhmac.c in Sources */, + 46EB2E00023380 /* e_aesgcmsiv.c in Sources */, + 46EB2E00023390 /* e_chacha20poly1305.c in Sources */, + 46EB2E000237C0 /* e_des.c in Sources */, + 46EB2E000233A0 /* e_null.c in Sources */, + 46EB2E000233B0 /* e_rc2.c in Sources */, + 46EB2E000233C0 /* e_rc4.c in Sources */, + 46EB2E000233D0 /* e_tls.c in Sources */, + 46EB2E00023820 /* ec.c in Sources */, + 46EB2E000234A0 /* ec_asn1.c in Sources */, + 46EB2E000234B0 /* ec_derive.c in Sources */, + 46EB2E00023830 /* ec_key.c in Sources */, + 46EB2E00023840 /* ec_montgomery.c in Sources */, + 46EB2E000238F0 /* ecdh.c in Sources */, + 46EB2E00023480 /* ecdh_extra.c in Sources */, + 46EB2E00023900 /* ecdsa.c in Sources */, + 46EB2E00023490 /* ecdsa_asn1.c in Sources */, + 46EB2E00022D30 /* encrypted_client_hello.cc in Sources */, + 46EB2E000234D0 /* engine.c in Sources */, + 46EB2E000234E0 /* err.c in Sources */, + 46EB2E000241F0 /* err_data.c in Sources */, + 46EB2E00023500 /* evp.c in Sources */, + 46EB2E00023510 /* evp_asn1.c in Sources */, + 46EB2E00023520 /* evp_ctx.c in Sources */, + 46EB2E00022F90 /* ex_data.c in Sources */, + 46EB2E000236C0 /* exponentiation.c in Sources */, + 46EB2E00022D40 /* extensions.cc in Sources */, + 46EB2E00023160 /* f_int.c in Sources */, + 46EB2E00023170 /* f_string.c in Sources */, + 46EB2E00023230 /* fd.c in Sources */, + 46EB2E00023850 /* felem.c in Sources */, + 46EB2E00023240 /* file.c in Sources */, + 46EB2E00023A40 /* fips.c in Sources */, + 46EB2E00023910 /* fips_shared_support.c in Sources */, + 46EB2E000239D0 /* fork_detect.c in Sources */, + 46EB2E00023C30 /* forkunsafe.c in Sources */, + 46EB2E00023C40 /* fuchsia.c in Sources */, + 46EB2E000236D0 /* gcd.c in Sources */, + 46EB2E000236E0 /* gcd_extra.c in Sources */, + 46EB2E00023980 /* gcm.c in Sources */, + 46EB2E00023990 /* gcm_nohw.c in Sources */, + 46EB2E000236F0 /* generic.c in Sources */, + 46EB2E00022D50 /* handoff.cc in Sources */, + 46EB2E00022D60 /* handshake.cc in Sources */, + 46EB2E00022D70 /* handshake_client.cc in Sources */, + 46EB2E00022D80 /* handshake_server.cc in Sources */, + 46EB2E000234C0 /* hash_to_curve.c in Sources */, + 46EB2E00023250 /* hexdump.c in Sources */, + 46EB2E00023AB0 /* hkdf.c in Sources */, + 46EB2E00023920 /* hmac.c in Sources */, + 46EB2E00023AC0 /* hpke.c in Sources */, + 46EB2E00023AD0 /* hrss.c in Sources */, + 46EB2E00023D70 /* i2d_pr.c in Sources */, + 46EB2E00023700 /* jacobi.c in Sources */, + 46EB2E00023AA0 /* kdf.c in Sources */, + 46EB2E00023620 /* key_wrap.c in Sources */, + 46EB2E00023AE0 /* lhash.c in Sources */, + 46EB2E00023930 /* md4.c in Sources */, + 46EB2E00023940 /* md5.c in Sources */, + 46EB2E00022FA0 /* mem.c in Sources */, + 46EB2E00023630 /* mode_wrappers.c in Sources */, + 46EB2E00023710 /* montgomery.c in Sources */, + 46EB2E00023720 /* montgomery_inv.c in Sources */, + 46EB2E00023730 /* mul.c in Sources */, + 46EB2E00023D80 /* name_print.c in Sources */, + 46EB2E00023AF0 /* obj.c in Sources */, + 46EB2E00023B00 /* obj_xref.c in Sources */, + 46EB2E00023860 /* oct.c in Sources */, + 46EB2E000239A0 /* ofb.c in Sources */, + 46EB2E00023870 /* p224-64.c in Sources */, + 46EB2E00023890 /* p256.c in Sources */, + 46EB2E00023880 /* p256-x86_64.c in Sources */, + 46EB2E00023BB0 /* p5_pbev2.c in Sources */, + 46EB2E00023550 /* p_dsa_asn1.c in Sources */, + 46EB2E00023560 /* p_ec.c in Sources */, + 46EB2E00023570 /* p_ec_asn1.c in Sources */, + 46EB2E00023580 /* p_ed25519.c in Sources */, + 46EB2E00023590 /* p_ed25519_asn1.c in Sources */, + 46EB2E000235A0 /* p_rsa.c in Sources */, + 46EB2E000235B0 /* p_rsa_asn1.c in Sources */, + 46EB2E000235C0 /* p_x25519.c in Sources */, + 46EB2E000235D0 /* p_x25519_asn1.c in Sources */, + 46EB2E00023A10 /* padding.c in Sources */, + 46EB2E00023260 /* pair.c in Sources */, + 46EB2E00023440 /* params.c in Sources */, + 46EB2E00023C50 /* passive.c in Sources */, + 46EB2E00023530 /* pbkdf.c in Sources */, + 46EB2E00024000 /* pcy_cache.c in Sources */, + 46EB2E00024010 /* pcy_data.c in Sources */, + 46EB2E00024020 /* pcy_lib.c in Sources */, + 46EB2E00024030 /* pcy_map.c in Sources */, + 46EB2E00024040 /* pcy_node.c in Sources */, + 46EB2E00024050 /* pcy_tree.c in Sources */, + 46EB2E00023B10 /* pem_all.c in Sources */, + 46EB2E00023B20 /* pem_info.c in Sources */, + 46EB2E00023B30 /* pem_lib.c in Sources */, + 46EB2E00023B40 /* pem_oth.c in Sources */, + 46EB2E00023B50 /* pem_pk8.c in Sources */, + 46EB2E00023B60 /* pem_pkey.c in Sources */, + 46EB2E00023B70 /* pem_x509.c in Sources */, + 46EB2E00023B80 /* pem_xaux.c in Sources */, + 46EB2E00023B90 /* pkcs7.c in Sources */, + 46EB2E00023BA0 /* pkcs7_x509.c in Sources */, + 46EB2E00023BC0 /* pkcs8.c in Sources */, + 46EB2E00023BD0 /* pkcs8_x509.c in Sources */, + 46EB2E00023CD0 /* pmbtoken.c in Sources */, + 46EB2E00023BE0 /* poly1305.c in Sources */, + 46EB2E00023BF0 /* poly1305_arm.c in Sources */, + 46EB2E00023C00 /* poly1305_vec.c in Sources */, + 46EB2E000239B0 /* polyval.c in Sources */, + 46EB2E00023C10 /* pool.c in Sources */, + 46EB2E00023740 /* prime.c in Sources */, + 46EB2E00023540 /* print.c in Sources */, + 46EB2E00023270 /* printf.c in Sources */, + 46EB2E000239E0 /* rand.c in Sources */, + 46EB2E00023C60 /* rand_extra.c in Sources */, + 46EB2E00023750 /* random.c in Sources */, + 46EB2E00023C80 /* rc4.c in Sources */, + 46EB2E00022FB0 /* refcount_c11.c in Sources */, + 46EB2E00022FC0 /* refcount_lock.c in Sources */, + 46EB2E00023A20 /* rsa.c in Sources */, + 46EB2E00023C90 /* rsa_asn1.c in Sources */, + 46EB2E00023A30 /* rsa_impl.c in Sources */, + 46EB2E00023CA0 /* rsa_print.c in Sources */, + 46EB2E00023D90 /* rsa_pss.c in Sources */, + 46EB2E00023760 /* rsaz_exp.c in Sources */, + 46EB2E00022D90 /* s3_both.cc in Sources */, + 46EB2E00022DA0 /* s3_lib.cc in Sources */, + 46EB2E00022DB0 /* s3_pkt.cc in Sources */, + 46EB2E000238A0 /* scalar.c in Sources */, + 46EB2E000235E0 /* scrypt.c in Sources */, + 46EB2E00023A50 /* self_check.c in Sources */, + 46EB2E00023A70 /* sha1.c in Sources */, + 46EB2E00023A60 /* sha1-altivec.c in Sources */, + 46EB2E00023A80 /* sha256.c in Sources */, + 46EB2E00023A90 /* sha512.c in Sources */, + 46EB2E00023770 /* shift.c in Sources */, + 46EB2E000235F0 /* sign.c in Sources */, + 46EB2E000238B0 /* simple.c in Sources */, + 46EB2E000238C0 /* simple_mul.c in Sources */, + 46EB2E00023CB0 /* siphash.c in Sources */, + 46EB2E00023280 /* socket.c in Sources */, + 46EB2E00023290 /* socket_helper.c in Sources */, + 46EB2E00023420 /* spake25519.c in Sources */, + 46EB2E00023780 /* sqrt.c in Sources */, + 46EB2E00022DC0 /* ssl_aead_ctx.cc in Sources */, + 46EB2E00022DD0 /* ssl_asn1.cc in Sources */, + 46EB2E00022DE0 /* ssl_buffer.cc in Sources */, + 46EB2E00022DF0 /* ssl_cert.cc in Sources */, + 46EB2E00022E00 /* ssl_cipher.cc in Sources */, + 46EB2E00022E10 /* ssl_file.cc in Sources */, + 46EB2E00022E20 /* ssl_key_share.cc in Sources */, + 46EB2E00022E30 /* ssl_lib.cc in Sources */, + 46EB2E00022E40 /* ssl_privkey.cc in Sources */, + 46EB2E00022E50 /* ssl_session.cc in Sources */, + 46EB2E00022E60 /* ssl_stat.cc in Sources */, + 46EB2E00022E70 /* ssl_transcript.cc in Sources */, + 46EB2E00022E80 /* ssl_versions.cc in Sources */, + 46EB2E00022E90 /* ssl_x509.cc in Sources */, + 46EB2E00023CC0 /* stack.c in Sources */, + 46EB2E00022EA0 /* t1_enc.cc in Sources */, + 46EB2E00023DA0 /* t_crl.c in Sources */, + 46EB2E00023DB0 /* t_req.c in Sources */, + 46EB2E00023DC0 /* t_x509.c in Sources */, + 46EB2E00023DD0 /* t_x509a.c in Sources */, + 46EB2E00023180 /* tasn_dec.c in Sources */, + 46EB2E00023190 /* tasn_enc.c in Sources */, + 46EB2E000231A0 /* tasn_fre.c in Sources */, + 46EB2E000231B0 /* tasn_new.c in Sources */, + 46EB2E000231C0 /* tasn_typ.c in Sources */, + 46EB2E000231D0 /* tasn_utl.c in Sources */, + 46EB2E00022FD0 /* thread.c in Sources */, + 46EB2E00022FE0 /* thread_none.c in Sources */, + 46EB2E00022FF0 /* thread_pthread.c in Sources */, + 46EB2E00023000 /* thread_win.c in Sources */, + 46EB2E000231E0 /* time_support.c in Sources */, + 46EB2E00022EB0 /* tls13_both.cc in Sources */, + 46EB2E00022EC0 /* tls13_client.cc in Sources */, + 46EB2E00022ED0 /* tls13_enc.cc in Sources */, + 46EB2E00022EE0 /* tls13_server.cc in Sources */, + 46EB2E000233E0 /* tls_cbc.c in Sources */, + 46EB2E00022EF0 /* tls_method.cc in Sources */, + 46EB2E00022F00 /* tls_record.cc in Sources */, + 46EB2E00023CE0 /* trust_token.c in Sources */, + 46EB2E00023320 /* unicode.c in Sources */, + 46EB2E000239F0 /* urandom.c in Sources */, + 46EB2E000238D0 /* util.c in Sources */, + 46EB2E00024060 /* v3_akey.c in Sources */, + 46EB2E00024070 /* v3_akeya.c in Sources */, + 46EB2E00024080 /* v3_alt.c in Sources */, + 46EB2E00024090 /* v3_bcons.c in Sources */, + 46EB2E000240A0 /* v3_bitst.c in Sources */, + 46EB2E000240B0 /* v3_conf.c in Sources */, + 46EB2E000240C0 /* v3_cpols.c in Sources */, + 46EB2E000240D0 /* v3_crld.c in Sources */, + 46EB2E000240E0 /* v3_enum.c in Sources */, + 46EB2E000240F0 /* v3_extku.c in Sources */, + 46EB2E00024100 /* v3_genn.c in Sources */, + 46EB2E00024110 /* v3_ia5.c in Sources */, + 46EB2E00024120 /* v3_info.c in Sources */, + 46EB2E00024130 /* v3_int.c in Sources */, + 46EB2E00024140 /* v3_lib.c in Sources */, + 46EB2E00024150 /* v3_ncons.c in Sources */, + 46EB2E00024160 /* v3_ocsp.c in Sources */, + 46EB2E00024170 /* v3_pci.c in Sources */, + 46EB2E00024180 /* v3_pcia.c in Sources */, + 46EB2E00024190 /* v3_pcons.c in Sources */, + 46EB2E000241A0 /* v3_pmaps.c in Sources */, + 46EB2E000241B0 /* v3_prn.c in Sources */, + 46EB2E000241C0 /* v3_purp.c in Sources */, + 46EB2E000241D0 /* v3_skey.c in Sources */, + 46EB2E000241E0 /* v3_utl.c in Sources */, + 46EB2E00023CF0 /* voprf.c in Sources */, + 46EB2E00023C70 /* windows.c in Sources */, + 46EB2E000238E0 /* wnaf.c in Sources */, + 46EB2E00023DE0 /* x509.c in Sources */, + 46EB2E00023E30 /* x509_att.c in Sources */, + 46EB2E00023E40 /* x509_cmp.c in Sources */, + 46EB2E00023E50 /* x509_d2.c in Sources */, + 46EB2E00023E60 /* x509_def.c in Sources */, + 46EB2E00023E70 /* x509_ext.c in Sources */, + 46EB2E00023E80 /* x509_lu.c in Sources */, + 46EB2E00023E90 /* x509_obj.c in Sources */, + 46EB2E00023EA0 /* x509_req.c in Sources */, + 46EB2E00023EB0 /* x509_set.c in Sources */, + 46EB2E00023EC0 /* x509_trs.c in Sources */, + 46EB2E00023ED0 /* x509_txt.c in Sources */, + 46EB2E00023EE0 /* x509_v3.c in Sources */, + 46EB2E00023EF0 /* x509_vfy.c in Sources */, + 46EB2E00023F00 /* x509_vpm.c in Sources */, + 46EB2E00023DF0 /* x509cset.c in Sources */, + 46EB2E00023E00 /* x509name.c in Sources */, + 46EB2E00023E10 /* x509rset.c in Sources */, + 46EB2E00023E20 /* x509spki.c in Sources */, + 46EB2E00023650 /* x86_64-gcc.c in Sources */, + 46EB2E00023F10 /* x_algor.c in Sources */, + 46EB2E00023F20 /* x_all.c in Sources */, + 46EB2E00023F30 /* x_attrib.c in Sources */, + 46EB2E00023F40 /* x_crl.c in Sources */, + 46EB2E00023F50 /* x_exten.c in Sources */, + 46EB2E00023F60 /* x_info.c in Sources */, + 46EB2E00023F70 /* x_name.c in Sources */, + 46EB2E00023F80 /* x_pkey.c in Sources */, + 46EB2E00023F90 /* x_pubkey.c in Sources */, + 46EB2E00023FA0 /* x_req.c in Sources */, + 46EB2E00023FB0 /* x_sig.c in Sources */, + 46EB2E00023FC0 /* x_spki.c in Sources */, + 46EB2E00023FD0 /* x_val.c in Sources */, + 46EB2E00023FE0 /* x_x509.c in Sources */, + 46EB2E00023FF0 /* x_x509a.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00024B20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024CB0 /* CocoaAsyncSocket-dummy.m in Sources */, - 46EB2E00024C20 /* GCDAsyncSocket.m in Sources */, - 46EB2E00024C30 /* GCDAsyncUdpSocket.m in Sources */, + 46EB2E00024BD0 /* CocoaAsyncSocket-dummy.m in Sources */, + 46EB2E00024B40 /* GCDAsyncSocket.m in Sources */, + 46EB2E00024B50 /* GCDAsyncUdpSocket.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024D20 /* Sources */ = { + 46EB2E00024C40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024D40 /* CodePush.m in Sources */, - 46EB2E00024E40 /* CodePush-dummy.m in Sources */, - 46EB2E00024D50 /* CodePushConfig.m in Sources */, - 46EB2E00024D60 /* CodePushDownloadHandler.m in Sources */, - 46EB2E00024D70 /* CodePushErrorUtils.m in Sources */, - 46EB2E00024D80 /* CodePushPackage.m in Sources */, - 46EB2E00024D90 /* CodePushTelemetryManager.m in Sources */, - 46EB2E00024DA0 /* CodePushUpdateUtils.m in Sources */, - 46EB2E00024DB0 /* CodePushUtils.m in Sources */, - 46EB2E00024DC0 /* RCTConvert+CodePushInstallMode.m in Sources */, - 46EB2E00024DD0 /* RCTConvert+CodePushUpdateState.m in Sources */, + 46EB2E00024C60 /* CodePush.m in Sources */, + 46EB2E00024D60 /* CodePush-dummy.m in Sources */, + 46EB2E00024C70 /* CodePushConfig.m in Sources */, + 46EB2E00024C80 /* CodePushDownloadHandler.m in Sources */, + 46EB2E00024C90 /* CodePushErrorUtils.m in Sources */, + 46EB2E00024CA0 /* CodePushPackage.m in Sources */, + 46EB2E00024CB0 /* CodePushTelemetryManager.m in Sources */, + 46EB2E00024CC0 /* CodePushUpdateUtils.m in Sources */, + 46EB2E00024CD0 /* CodePushUtils.m in Sources */, + 46EB2E00024CE0 /* RCTConvert+CodePushInstallMode.m in Sources */, + 46EB2E00024CF0 /* RCTConvert+CodePushUpdateState.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00024EB0 /* Sources */ = { + 46EB2E00024DD0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00024EE0 /* bignum.cc in Sources */, - 46EB2E00024ED0 /* bignum-dtoa.cc in Sources */, - 46EB2E00024EF0 /* cached-powers.cc in Sources */, - 46EB2E00024F00 /* diy-fp.cc in Sources */, - 46EB2E00024F10 /* double-conversion.cc in Sources */, - 46EB2E00025040 /* DoubleConversion-dummy.m in Sources */, - 46EB2E00024F20 /* fast-dtoa.cc in Sources */, - 46EB2E00024F30 /* fixed-dtoa.cc in Sources */, - 46EB2E00024F40 /* strtod.cc in Sources */, + 46EB2E00024E00 /* bignum.cc in Sources */, + 46EB2E00024DF0 /* bignum-dtoa.cc in Sources */, + 46EB2E00024E10 /* cached-powers.cc in Sources */, + 46EB2E00024E20 /* diy-fp.cc in Sources */, + 46EB2E00024E30 /* double-conversion.cc in Sources */, + 46EB2E00024F60 /* DoubleConversion-dummy.m in Sources */, + 46EB2E00024E40 /* fast-dtoa.cc in Sources */, + 46EB2E00024E50 /* fixed-dtoa.cc in Sources */, + 46EB2E00024E60 /* strtod.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00025200 /* Sources */ = { + 46EB2E00025120 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00025220 /* ABTConditionalUserPropertyController.m in Sources */, - 46EB2E00025230 /* ABTExperimentPayload.m in Sources */, - 46EB2E00025410 /* FirebaseABTesting-dummy.m in Sources */, - 46EB2E00025240 /* FIRExperimentController.m in Sources */, - 46EB2E00025250 /* FIRLifecycleEvents.m in Sources */, + 46EB2E00025140 /* ABTConditionalUserPropertyController.m in Sources */, + 46EB2E00025150 /* ABTExperimentPayload.m in Sources */, + 46EB2E00025330 /* FirebaseABTesting-dummy.m in Sources */, + 46EB2E00025160 /* FIRExperimentController.m in Sources */, + 46EB2E00025170 /* FIRLifecycleEvents.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00025500 /* Sources */ = { + 46EB2E00025420 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00025520 /* FIRActionCodeSettings.m in Sources */, - 46EB2E00025B30 /* FIRAdditionalUserInfo.m in Sources */, - 46EB2E00025530 /* FIRAuth.m in Sources */, - 46EB2E00025AC0 /* FIRAuthAPNSToken.m in Sources */, - 46EB2E00025AD0 /* FIRAuthAPNSTokenManager.m in Sources */, - 46EB2E00025AE0 /* FIRAuthAppCredential.m in Sources */, - 46EB2E00025AF0 /* FIRAuthAppCredentialManager.m in Sources */, - 46EB2E000256D0 /* FIRAuthBackend.m in Sources */, - 46EB2E000256C0 /* FIRAuthBackend+MultiFactor.m in Sources */, - 46EB2E000255E0 /* FIRAuthCredential.m in Sources */, - 46EB2E00025540 /* FIRAuthDataResult.m in Sources */, - 46EB2E00025B70 /* FIRAuthDefaultUIDelegate.m in Sources */, - 46EB2E00025550 /* FIRAuthDispatcher.m in Sources */, - 46EB2E00025B80 /* FIRAuthErrorUtils.m in Sources */, - 46EB2E00025B90 /* FIRAuthExceptionUtils.m in Sources */, - 46EB2E00025560 /* FIRAuthGlobalWorkQueue.m in Sources */, - 46EB2E00025AA0 /* FIRAuthKeychainServices.m in Sources */, - 46EB2E00025B00 /* FIRAuthNotificationManager.m in Sources */, - 46EB2E000259D0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */, - 46EB2E000259E0 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */, - 46EB2E000259C0 /* FIRAuthProtoMFAEnrollment.m in Sources */, - 46EB2E000259F0 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */, - 46EB2E00025A00 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */, - 46EB2E000255F0 /* FIRAuthProvider.m in Sources */, - 46EB2E000256E0 /* FIRAuthRequestConfiguration.m in Sources */, - 46EB2E00025570 /* FIRAuthSerialTaskQueue.m in Sources */, - 46EB2E00025580 /* FIRAuthSettings.m in Sources */, - 46EB2E00025B10 /* FIRAuthStoredUserManager.m in Sources */, - 46EB2E00025590 /* FIRAuthTokenResult.m in Sources */, - 46EB2E00025BA0 /* FIRAuthURLPresenter.m in Sources */, - 46EB2E00025AB0 /* FIRAuthUserDefaults.m in Sources */, - 46EB2E00025BB0 /* FIRAuthWebUtils.m in Sources */, - 46EB2E00025BC0 /* FIRAuthWebView.m in Sources */, - 46EB2E00025BD0 /* FIRAuthWebViewController.m in Sources */, - 46EB2E00025700 /* FIRCreateAuthURIRequest.m in Sources */, - 46EB2E00025710 /* FIRCreateAuthURIResponse.m in Sources */, - 46EB2E00025720 /* FIRDeleteAccountRequest.m in Sources */, - 46EB2E00025730 /* FIRDeleteAccountResponse.m in Sources */, - 46EB2E00026560 /* FirebaseAuth-dummy.m in Sources */, - 46EB2E000255A0 /* FIREmailAuthProvider.m in Sources */, - 46EB2E00025740 /* FIREmailLinkSignInRequest.m in Sources */, - 46EB2E00025750 /* FIREmailLinkSignInResponse.m in Sources */, - 46EB2E000255B0 /* FIREmailPasswordAuthCredential.m in Sources */, - 46EB2E000255C0 /* FIRFacebookAuthCredential.m in Sources */, - 46EB2E000255D0 /* FIRFacebookAuthProvider.m in Sources */, - 46EB2E00025920 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */, - 46EB2E00025930 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */, - 46EB2E00025960 /* FIRFinalizeMFASignInRequest.m in Sources */, - 46EB2E00025970 /* FIRFinalizeMFASignInResponse.m in Sources */, - 46EB2E00025600 /* FIRGameCenterAuthCredential.m in Sources */, - 46EB2E00025610 /* FIRGameCenterAuthProvider.m in Sources */, - 46EB2E00025760 /* FIRGetAccountInfoRequest.m in Sources */, - 46EB2E00025770 /* FIRGetAccountInfoResponse.m in Sources */, - 46EB2E00025780 /* FIRGetOOBConfirmationCodeRequest.m in Sources */, - 46EB2E00025790 /* FIRGetOOBConfirmationCodeResponse.m in Sources */, - 46EB2E000257A0 /* FIRGetProjectConfigRequest.m in Sources */, - 46EB2E000257B0 /* FIRGetProjectConfigResponse.m in Sources */, - 46EB2E00025620 /* FIRGitHubAuthCredential.m in Sources */, - 46EB2E00025630 /* FIRGitHubAuthProvider.m in Sources */, - 46EB2E00025640 /* FIRGoogleAuthCredential.m in Sources */, - 46EB2E00025650 /* FIRGoogleAuthProvider.m in Sources */, - 46EB2E000256F0 /* FIRIdentityToolkitRequest.m in Sources */, - 46EB2E00025A10 /* FIRMultiFactor.m in Sources */, - 46EB2E00025A20 /* FIRMultiFactorAssertion.m in Sources */, - 46EB2E00025A30 /* FIRMultiFactorConstants.m in Sources */, - 46EB2E00025A40 /* FIRMultiFactorInfo.m in Sources */, - 46EB2E00025A50 /* FIRMultiFactorResolver.m in Sources */, - 46EB2E00025A60 /* FIRMultiFactorSession.m in Sources */, - 46EB2E00025660 /* FIROAuthCredential.m in Sources */, - 46EB2E00025670 /* FIROAuthProvider.m in Sources */, - 46EB2E00025680 /* FIRPhoneAuthCredential.m in Sources */, - 46EB2E00025690 /* FIRPhoneAuthProvider.m in Sources */, - 46EB2E00025A70 /* FIRPhoneMultiFactorAssertion.m in Sources */, - 46EB2E00025A80 /* FIRPhoneMultiFactorGenerator.m in Sources */, - 46EB2E00025A90 /* FIRPhoneMultiFactorInfo.m in Sources */, - 46EB2E000257C0 /* FIRResetPasswordRequest.m in Sources */, - 46EB2E000257D0 /* FIRResetPasswordResponse.m in Sources */, - 46EB2E000257E0 /* FIRSecureTokenRequest.m in Sources */, - 46EB2E000257F0 /* FIRSecureTokenResponse.m in Sources */, - 46EB2E00025B20 /* FIRSecureTokenService.m in Sources */, - 46EB2E00025800 /* FIRSendVerificationCodeRequest.m in Sources */, - 46EB2E00025810 /* FIRSendVerificationCodeResponse.m in Sources */, - 46EB2E00025820 /* FIRSetAccountInfoRequest.m in Sources */, - 46EB2E00025830 /* FIRSetAccountInfoResponse.m in Sources */, - 46EB2E00025840 /* FIRSignInWithGameCenterRequest.m in Sources */, - 46EB2E00025850 /* FIRSignInWithGameCenterResponse.m in Sources */, - 46EB2E00025860 /* FIRSignUpNewUserRequest.m in Sources */, - 46EB2E00025870 /* FIRSignUpNewUserResponse.m in Sources */, - 46EB2E00025940 /* FIRStartMFAEnrollmentRequest.m in Sources */, - 46EB2E00025950 /* FIRStartMFAEnrollmentResponse.m in Sources */, - 46EB2E00025980 /* FIRStartMFASignInRequest.m in Sources */, - 46EB2E00025990 /* FIRStartMFASignInResponse.m in Sources */, - 46EB2E000256A0 /* FIRTwitterAuthCredential.m in Sources */, - 46EB2E000256B0 /* FIRTwitterAuthProvider.m in Sources */, - 46EB2E00025B40 /* FIRUser.m in Sources */, - 46EB2E00025B50 /* FIRUserInfoImpl.m in Sources */, - 46EB2E00025B60 /* FIRUserMetadata.m in Sources */, - 46EB2E00025880 /* FIRVerifyAssertionRequest.m in Sources */, - 46EB2E00025890 /* FIRVerifyAssertionResponse.m in Sources */, - 46EB2E000258A0 /* FIRVerifyClientRequest.m in Sources */, - 46EB2E000258B0 /* FIRVerifyClientResponse.m in Sources */, - 46EB2E000258C0 /* FIRVerifyCustomTokenRequest.m in Sources */, - 46EB2E000258D0 /* FIRVerifyCustomTokenResponse.m in Sources */, - 46EB2E000258E0 /* FIRVerifyPasswordRequest.m in Sources */, - 46EB2E000258F0 /* FIRVerifyPasswordResponse.m in Sources */, - 46EB2E00025900 /* FIRVerifyPhoneNumberRequest.m in Sources */, - 46EB2E00025910 /* FIRVerifyPhoneNumberResponse.m in Sources */, - 46EB2E000259A0 /* FIRWithdrawMFARequest.m in Sources */, - 46EB2E000259B0 /* FIRWithdrawMFAResponse.m in Sources */, - 46EB2E00025BE0 /* NSData+FIRBase64.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000265D0 /* Sources */ = { + 46EB2E00025440 /* FIRActionCodeSettings.m in Sources */, + 46EB2E00025A50 /* FIRAdditionalUserInfo.m in Sources */, + 46EB2E00025450 /* FIRAuth.m in Sources */, + 46EB2E000259E0 /* FIRAuthAPNSToken.m in Sources */, + 46EB2E000259F0 /* FIRAuthAPNSTokenManager.m in Sources */, + 46EB2E00025A00 /* FIRAuthAppCredential.m in Sources */, + 46EB2E00025A10 /* FIRAuthAppCredentialManager.m in Sources */, + 46EB2E000255F0 /* FIRAuthBackend.m in Sources */, + 46EB2E000255E0 /* FIRAuthBackend+MultiFactor.m in Sources */, + 46EB2E00025500 /* FIRAuthCredential.m in Sources */, + 46EB2E00025460 /* FIRAuthDataResult.m in Sources */, + 46EB2E00025A90 /* FIRAuthDefaultUIDelegate.m in Sources */, + 46EB2E00025470 /* FIRAuthDispatcher.m in Sources */, + 46EB2E00025AA0 /* FIRAuthErrorUtils.m in Sources */, + 46EB2E00025AB0 /* FIRAuthExceptionUtils.m in Sources */, + 46EB2E00025480 /* FIRAuthGlobalWorkQueue.m in Sources */, + 46EB2E000259C0 /* FIRAuthKeychainServices.m in Sources */, + 46EB2E00025A20 /* FIRAuthNotificationManager.m in Sources */, + 46EB2E000258F0 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */, + 46EB2E00025900 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */, + 46EB2E000258E0 /* FIRAuthProtoMFAEnrollment.m in Sources */, + 46EB2E00025910 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */, + 46EB2E00025920 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */, + 46EB2E00025510 /* FIRAuthProvider.m in Sources */, + 46EB2E00025600 /* FIRAuthRequestConfiguration.m in Sources */, + 46EB2E00025490 /* FIRAuthSerialTaskQueue.m in Sources */, + 46EB2E000254A0 /* FIRAuthSettings.m in Sources */, + 46EB2E00025A30 /* FIRAuthStoredUserManager.m in Sources */, + 46EB2E000254B0 /* FIRAuthTokenResult.m in Sources */, + 46EB2E00025AC0 /* FIRAuthURLPresenter.m in Sources */, + 46EB2E000259D0 /* FIRAuthUserDefaults.m in Sources */, + 46EB2E00025AD0 /* FIRAuthWebUtils.m in Sources */, + 46EB2E00025AE0 /* FIRAuthWebView.m in Sources */, + 46EB2E00025AF0 /* FIRAuthWebViewController.m in Sources */, + 46EB2E00025620 /* FIRCreateAuthURIRequest.m in Sources */, + 46EB2E00025630 /* FIRCreateAuthURIResponse.m in Sources */, + 46EB2E00025640 /* FIRDeleteAccountRequest.m in Sources */, + 46EB2E00025650 /* FIRDeleteAccountResponse.m in Sources */, + 46EB2E00026480 /* FirebaseAuth-dummy.m in Sources */, + 46EB2E000254C0 /* FIREmailAuthProvider.m in Sources */, + 46EB2E00025660 /* FIREmailLinkSignInRequest.m in Sources */, + 46EB2E00025670 /* FIREmailLinkSignInResponse.m in Sources */, + 46EB2E000254D0 /* FIREmailPasswordAuthCredential.m in Sources */, + 46EB2E000254E0 /* FIRFacebookAuthCredential.m in Sources */, + 46EB2E000254F0 /* FIRFacebookAuthProvider.m in Sources */, + 46EB2E00025840 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */, + 46EB2E00025850 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */, + 46EB2E00025880 /* FIRFinalizeMFASignInRequest.m in Sources */, + 46EB2E00025890 /* FIRFinalizeMFASignInResponse.m in Sources */, + 46EB2E00025520 /* FIRGameCenterAuthCredential.m in Sources */, + 46EB2E00025530 /* FIRGameCenterAuthProvider.m in Sources */, + 46EB2E00025680 /* FIRGetAccountInfoRequest.m in Sources */, + 46EB2E00025690 /* FIRGetAccountInfoResponse.m in Sources */, + 46EB2E000256A0 /* FIRGetOOBConfirmationCodeRequest.m in Sources */, + 46EB2E000256B0 /* FIRGetOOBConfirmationCodeResponse.m in Sources */, + 46EB2E000256C0 /* FIRGetProjectConfigRequest.m in Sources */, + 46EB2E000256D0 /* FIRGetProjectConfigResponse.m in Sources */, + 46EB2E00025540 /* FIRGitHubAuthCredential.m in Sources */, + 46EB2E00025550 /* FIRGitHubAuthProvider.m in Sources */, + 46EB2E00025560 /* FIRGoogleAuthCredential.m in Sources */, + 46EB2E00025570 /* FIRGoogleAuthProvider.m in Sources */, + 46EB2E00025610 /* FIRIdentityToolkitRequest.m in Sources */, + 46EB2E00025930 /* FIRMultiFactor.m in Sources */, + 46EB2E00025940 /* FIRMultiFactorAssertion.m in Sources */, + 46EB2E00025950 /* FIRMultiFactorConstants.m in Sources */, + 46EB2E00025960 /* FIRMultiFactorInfo.m in Sources */, + 46EB2E00025970 /* FIRMultiFactorResolver.m in Sources */, + 46EB2E00025980 /* FIRMultiFactorSession.m in Sources */, + 46EB2E00025580 /* FIROAuthCredential.m in Sources */, + 46EB2E00025590 /* FIROAuthProvider.m in Sources */, + 46EB2E000255A0 /* FIRPhoneAuthCredential.m in Sources */, + 46EB2E000255B0 /* FIRPhoneAuthProvider.m in Sources */, + 46EB2E00025990 /* FIRPhoneMultiFactorAssertion.m in Sources */, + 46EB2E000259A0 /* FIRPhoneMultiFactorGenerator.m in Sources */, + 46EB2E000259B0 /* FIRPhoneMultiFactorInfo.m in Sources */, + 46EB2E000256E0 /* FIRResetPasswordRequest.m in Sources */, + 46EB2E000256F0 /* FIRResetPasswordResponse.m in Sources */, + 46EB2E00025700 /* FIRSecureTokenRequest.m in Sources */, + 46EB2E00025710 /* FIRSecureTokenResponse.m in Sources */, + 46EB2E00025A40 /* FIRSecureTokenService.m in Sources */, + 46EB2E00025720 /* FIRSendVerificationCodeRequest.m in Sources */, + 46EB2E00025730 /* FIRSendVerificationCodeResponse.m in Sources */, + 46EB2E00025740 /* FIRSetAccountInfoRequest.m in Sources */, + 46EB2E00025750 /* FIRSetAccountInfoResponse.m in Sources */, + 46EB2E00025760 /* FIRSignInWithGameCenterRequest.m in Sources */, + 46EB2E00025770 /* FIRSignInWithGameCenterResponse.m in Sources */, + 46EB2E00025780 /* FIRSignUpNewUserRequest.m in Sources */, + 46EB2E00025790 /* FIRSignUpNewUserResponse.m in Sources */, + 46EB2E00025860 /* FIRStartMFAEnrollmentRequest.m in Sources */, + 46EB2E00025870 /* FIRStartMFAEnrollmentResponse.m in Sources */, + 46EB2E000258A0 /* FIRStartMFASignInRequest.m in Sources */, + 46EB2E000258B0 /* FIRStartMFASignInResponse.m in Sources */, + 46EB2E000255C0 /* FIRTwitterAuthCredential.m in Sources */, + 46EB2E000255D0 /* FIRTwitterAuthProvider.m in Sources */, + 46EB2E00025A60 /* FIRUser.m in Sources */, + 46EB2E00025A70 /* FIRUserInfoImpl.m in Sources */, + 46EB2E00025A80 /* FIRUserMetadata.m in Sources */, + 46EB2E000257A0 /* FIRVerifyAssertionRequest.m in Sources */, + 46EB2E000257B0 /* FIRVerifyAssertionResponse.m in Sources */, + 46EB2E000257C0 /* FIRVerifyClientRequest.m in Sources */, + 46EB2E000257D0 /* FIRVerifyClientResponse.m in Sources */, + 46EB2E000257E0 /* FIRVerifyCustomTokenRequest.m in Sources */, + 46EB2E000257F0 /* FIRVerifyCustomTokenResponse.m in Sources */, + 46EB2E00025800 /* FIRVerifyPasswordRequest.m in Sources */, + 46EB2E00025810 /* FIRVerifyPasswordResponse.m in Sources */, + 46EB2E00025820 /* FIRVerifyPhoneNumberRequest.m in Sources */, + 46EB2E00025830 /* FIRVerifyPhoneNumberResponse.m in Sources */, + 46EB2E000258C0 /* FIRWithdrawMFARequest.m in Sources */, + 46EB2E000258D0 /* FIRWithdrawMFAResponse.m in Sources */, + 46EB2E00025B00 /* NSData+FIRBase64.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000264F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000265F0 /* FIRAnalyticsConfiguration.m in Sources */, - 46EB2E00026600 /* FIRApp.m in Sources */, - 46EB2E00026610 /* FIRBundleUtil.m in Sources */, - 46EB2E00026620 /* FIRComponent.m in Sources */, - 46EB2E00026630 /* FIRComponentContainer.m in Sources */, - 46EB2E00026640 /* FIRComponentType.m in Sources */, - 46EB2E00026650 /* FIRConfiguration.m in Sources */, - 46EB2E00026660 /* FIRCoreDiagnosticsConnector.m in Sources */, - 46EB2E00026670 /* FIRDependency.m in Sources */, - 46EB2E00026680 /* FIRDiagnosticsData.m in Sources */, - 46EB2E00026900 /* FirebaseCore-dummy.m in Sources */, - 46EB2E00026690 /* FIRFirebaseUserAgent.m in Sources */, - 46EB2E000266A0 /* FIRHeartbeatInfo.m in Sources */, - 46EB2E000266B0 /* FIRHeartbeatLogger.m in Sources */, - 46EB2E000266C0 /* FIRLogger.m in Sources */, - 46EB2E000266D0 /* FIROptions.m in Sources */, - 46EB2E000266E0 /* FIRVersion.m in Sources */, + 46EB2E00026510 /* FIRAnalyticsConfiguration.m in Sources */, + 46EB2E00026520 /* FIRApp.m in Sources */, + 46EB2E00026530 /* FIRBundleUtil.m in Sources */, + 46EB2E00026540 /* FIRComponent.m in Sources */, + 46EB2E00026550 /* FIRComponentContainer.m in Sources */, + 46EB2E00026560 /* FIRComponentType.m in Sources */, + 46EB2E00026570 /* FIRConfiguration.m in Sources */, + 46EB2E00026580 /* FIRCoreDiagnosticsConnector.m in Sources */, + 46EB2E00026590 /* FIRDependency.m in Sources */, + 46EB2E000265A0 /* FIRDiagnosticsData.m in Sources */, + 46EB2E00026820 /* FirebaseCore-dummy.m in Sources */, + 46EB2E000265B0 /* FIRFirebaseUserAgent.m in Sources */, + 46EB2E000265C0 /* FIRHeartbeatInfo.m in Sources */, + 46EB2E000265D0 /* FIRHeartbeatLogger.m in Sources */, + 46EB2E000265E0 /* FIRLogger.m in Sources */, + 46EB2E000265F0 /* FIROptions.m in Sources */, + 46EB2E00026600 /* FIRVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026970 /* Sources */ = { + 46EB2E00026890 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00026990 /* FIRCoreDiagnostics.m in Sources */, - 46EB2E000269A0 /* firebasecore.nanopb.c in Sources */, - 46EB2E00026A30 /* FirebaseCoreDiagnostics-dummy.m in Sources */, + 46EB2E000268B0 /* FIRCoreDiagnostics.m in Sources */, + 46EB2E000268C0 /* firebasecore.nanopb.c in Sources */, + 46EB2E00026950 /* FirebaseCoreDiagnostics-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026AA0 /* Sources */ = { + 46EB2E000269C0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00026AC0 /* dummy.m in Sources */, - 46EB2E00026BE0 /* FirebaseCoreExtension-dummy.m in Sources */, + 46EB2E000269E0 /* dummy.m in Sources */, + 46EB2E00026B00 /* FirebaseCoreExtension-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026C50 /* Sources */ = { + 46EB2E00026B70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00026D00 /* _ObjC_HeartbeatController.swift in Sources */, - 46EB2E00026D10 /* _ObjC_HeartbeatsPayload.swift in Sources */, - 46EB2E00026DB0 /* FirebaseCoreInternal-dummy.m in Sources */, - 46EB2E00026C70 /* Heartbeat.swift in Sources */, - 46EB2E00026C80 /* HeartbeatController.swift in Sources */, - 46EB2E00026C90 /* HeartbeatsBundle.swift in Sources */, - 46EB2E00026CA0 /* HeartbeatsPayload.swift in Sources */, - 46EB2E00026CB0 /* HeartbeatStorage.swift in Sources */, - 46EB2E00026CC0 /* RingBuffer.swift in Sources */, - 46EB2E00026CD0 /* Storage.swift in Sources */, - 46EB2E00026CE0 /* StorageFactory.swift in Sources */, - 46EB2E00026CF0 /* WeakContainer.swift in Sources */, + 46EB2E00026C20 /* _ObjC_HeartbeatController.swift in Sources */, + 46EB2E00026C30 /* _ObjC_HeartbeatsPayload.swift in Sources */, + 46EB2E00026CD0 /* FirebaseCoreInternal-dummy.m in Sources */, + 46EB2E00026B90 /* Heartbeat.swift in Sources */, + 46EB2E00026BA0 /* HeartbeatController.swift in Sources */, + 46EB2E00026BB0 /* HeartbeatsBundle.swift in Sources */, + 46EB2E00026BC0 /* HeartbeatsPayload.swift in Sources */, + 46EB2E00026BD0 /* HeartbeatStorage.swift in Sources */, + 46EB2E00026BE0 /* RingBuffer.swift in Sources */, + 46EB2E00026BF0 /* Storage.swift in Sources */, + 46EB2E00026C00 /* StorageFactory.swift in Sources */, + 46EB2E00026C10 /* WeakContainer.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00026E20 /* Sources */ = { + 46EB2E00026D40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00027230 /* crashlytics.nanopb.c in Sources */, - 46EB2E00026FD0 /* FIRCLSAllocate.c in Sources */, - 46EB2E00026EB0 /* FIRCLSAnalyticsManager.m in Sources */, - 46EB2E00026E40 /* FIRCLSApplication.m in Sources */, - 46EB2E00027190 /* FIRCLSApplicationIdentifierModel.m in Sources */, - 46EB2E00027120 /* FIRCLSAsyncOperation.m in Sources */, - 46EB2E00026E50 /* FIRCLSBinaryImage.m in Sources */, - 46EB2E00027240 /* FIRCLSByteUtility.m in Sources */, - 46EB2E00026FE0 /* FIRCLSCallStackTree.m in Sources */, - 46EB2E00027270 /* FIRCLSCodeMapping.m in Sources */, - 46EB2E000271C0 /* FIRCLSCompactUnwind.c in Sources */, - 46EB2E00027300 /* FIRCLSCompoundOperation.m in Sources */, - 46EB2E00027250 /* FIRCLSConstants.m in Sources */, - 46EB2E00026E60 /* FIRCLSContext.m in Sources */, - 46EB2E00026E70 /* FIRCLSCrashedMarkerFile.c in Sources */, - 46EB2E00026F20 /* FIRCLSDataCollectionArbiter.m in Sources */, - 46EB2E00026F30 /* FIRCLSDataCollectionToken.m in Sources */, - 46EB2E000271D0 /* FIRCLSDataParsing.c in Sources */, - 46EB2E00027140 /* FIRCLSDemangleOperation.mm in Sources */, - 46EB2E000271A0 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, - 46EB2E00027280 /* FIRCLSdSYM.m in Sources */, - 46EB2E000271E0 /* FIRCLSDwarfExpressionMachine.c in Sources */, - 46EB2E000271F0 /* FIRCLSDwarfUnwind.c in Sources */, - 46EB2E00026F90 /* FIRCLSException.mm in Sources */, - 46EB2E00027050 /* FIRCLSExecutionIdentifierModel.m in Sources */, - 46EB2E00026EC0 /* FIRCLSExistingReportManager.m in Sources */, - 46EB2E00027310 /* FIRCLSFABAsyncOperation.m in Sources */, - 46EB2E00027260 /* FIRCLSFABHost.m in Sources */, - 46EB2E000272C0 /* FIRCLSFABNetworkClient.m in Sources */, - 46EB2E00026FF0 /* FIRCLSFile.m in Sources */, - 46EB2E00027060 /* FIRCLSFileManager.m in Sources */, - 46EB2E00026FA0 /* FIRCLSHandler.m in Sources */, - 46EB2E00026E80 /* FIRCLSHost.m in Sources */, - 46EB2E00027070 /* FIRCLSInstallIdentifierModel.m in Sources */, - 46EB2E00027000 /* FIRCLSInternalLogging.c in Sources */, - 46EB2E00027080 /* FIRCLSInternalReport.m in Sources */, - 46EB2E00027090 /* FIRCLSLaunchMarkerModel.m in Sources */, - 46EB2E00027010 /* FIRCLSLogger.m in Sources */, - 46EB2E00026FB0 /* FIRCLSMachException.c in Sources */, - 46EB2E00027290 /* FIRCLSMachO.m in Sources */, - 46EB2E000272A0 /* FIRCLSMachOBinary.m in Sources */, - 46EB2E000272B0 /* FIRCLSMachOSlice.m in Sources */, - 46EB2E00026ED0 /* FIRCLSManagerData.m in Sources */, - 46EB2E00026EE0 /* FIRCLSMetricKitManager.m in Sources */, - 46EB2E000272D0 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, - 46EB2E000271B0 /* FIRCLSNetworkOperation.m in Sources */, - 46EB2E000272E0 /* FIRCLSNetworkResponseHandler.m in Sources */, - 46EB2E00026EF0 /* FIRCLSNotificationManager.m in Sources */, - 46EB2E000270A0 /* FIRCLSOnDemandModel.m in Sources */, - 46EB2E00026E90 /* FIRCLSProcess.c in Sources */, - 46EB2E00027130 /* FIRCLSProcessReportOperation.m in Sources */, - 46EB2E00027020 /* FIRCLSProfiling.c in Sources */, - 46EB2E000270D0 /* FIRCLSRecordApplication.m in Sources */, - 46EB2E000270E0 /* FIRCLSRecordBase.m in Sources */, - 46EB2E000270F0 /* FIRCLSRecordHost.m in Sources */, - 46EB2E00027100 /* FIRCLSRecordIdentity.m in Sources */, - 46EB2E00027110 /* FIRCLSReportAdapter.m in Sources */, - 46EB2E00026F00 /* FIRCLSReportManager.m in Sources */, - 46EB2E00026F10 /* FIRCLSReportUploader.m in Sources */, - 46EB2E00027150 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, - 46EB2E000270B0 /* FIRCLSSettings.m in Sources */, - 46EB2E00027180 /* FIRCLSSettingsManager.m in Sources */, - 46EB2E00026FC0 /* FIRCLSSignal.c in Sources */, - 46EB2E00027160 /* FIRCLSSymbolicationOperation.m in Sources */, - 46EB2E000270C0 /* FIRCLSSymbolResolver.m in Sources */, - 46EB2E00027170 /* FIRCLSThreadArrayOperation.m in Sources */, - 46EB2E00027030 /* FIRCLSThreadState.c in Sources */, - 46EB2E00027200 /* FIRCLSUnwind.c in Sources */, - 46EB2E00027210 /* FIRCLSUnwind_arm.c in Sources */, - 46EB2E00027220 /* FIRCLSUnwind_x86.c in Sources */, - 46EB2E000272F0 /* FIRCLSURLBuilder.m in Sources */, - 46EB2E00026F40 /* FIRCLSUserDefaults.m in Sources */, - 46EB2E00026EA0 /* FIRCLSUserLogging.m in Sources */, - 46EB2E00027040 /* FIRCLSUtility.m in Sources */, - 46EB2E00027320 /* FIRCLSUUID.m in Sources */, - 46EB2E00026F50 /* FIRCrashlytics.m in Sources */, - 46EB2E00026F60 /* FIRCrashlyticsReport.m in Sources */, - 46EB2E00027AA0 /* FirebaseCrashlytics-dummy.m in Sources */, - 46EB2E00026F70 /* FIRExceptionModel.m in Sources */, - 46EB2E00026F80 /* FIRStackFrame.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00027B10 /* Sources */ = { + 46EB2E00027150 /* crashlytics.nanopb.c in Sources */, + 46EB2E00026EF0 /* FIRCLSAllocate.c in Sources */, + 46EB2E00026DD0 /* FIRCLSAnalyticsManager.m in Sources */, + 46EB2E00026D60 /* FIRCLSApplication.m in Sources */, + 46EB2E000270B0 /* FIRCLSApplicationIdentifierModel.m in Sources */, + 46EB2E00027040 /* FIRCLSAsyncOperation.m in Sources */, + 46EB2E00026D70 /* FIRCLSBinaryImage.m in Sources */, + 46EB2E00027160 /* FIRCLSByteUtility.m in Sources */, + 46EB2E00026F00 /* FIRCLSCallStackTree.m in Sources */, + 46EB2E00027190 /* FIRCLSCodeMapping.m in Sources */, + 46EB2E000270E0 /* FIRCLSCompactUnwind.c in Sources */, + 46EB2E00027220 /* FIRCLSCompoundOperation.m in Sources */, + 46EB2E00027170 /* FIRCLSConstants.m in Sources */, + 46EB2E00026D80 /* FIRCLSContext.m in Sources */, + 46EB2E00026D90 /* FIRCLSCrashedMarkerFile.c in Sources */, + 46EB2E00026E40 /* FIRCLSDataCollectionArbiter.m in Sources */, + 46EB2E00026E50 /* FIRCLSDataCollectionToken.m in Sources */, + 46EB2E000270F0 /* FIRCLSDataParsing.c in Sources */, + 46EB2E00027060 /* FIRCLSDemangleOperation.mm in Sources */, + 46EB2E000270C0 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, + 46EB2E000271A0 /* FIRCLSdSYM.m in Sources */, + 46EB2E00027100 /* FIRCLSDwarfExpressionMachine.c in Sources */, + 46EB2E00027110 /* FIRCLSDwarfUnwind.c in Sources */, + 46EB2E00026EB0 /* FIRCLSException.mm in Sources */, + 46EB2E00026F70 /* FIRCLSExecutionIdentifierModel.m in Sources */, + 46EB2E00026DE0 /* FIRCLSExistingReportManager.m in Sources */, + 46EB2E00027230 /* FIRCLSFABAsyncOperation.m in Sources */, + 46EB2E00027180 /* FIRCLSFABHost.m in Sources */, + 46EB2E000271E0 /* FIRCLSFABNetworkClient.m in Sources */, + 46EB2E00026F10 /* FIRCLSFile.m in Sources */, + 46EB2E00026F80 /* FIRCLSFileManager.m in Sources */, + 46EB2E00026EC0 /* FIRCLSHandler.m in Sources */, + 46EB2E00026DA0 /* FIRCLSHost.m in Sources */, + 46EB2E00026F90 /* FIRCLSInstallIdentifierModel.m in Sources */, + 46EB2E00026F20 /* FIRCLSInternalLogging.c in Sources */, + 46EB2E00026FA0 /* FIRCLSInternalReport.m in Sources */, + 46EB2E00026FB0 /* FIRCLSLaunchMarkerModel.m in Sources */, + 46EB2E00026F30 /* FIRCLSLogger.m in Sources */, + 46EB2E00026ED0 /* FIRCLSMachException.c in Sources */, + 46EB2E000271B0 /* FIRCLSMachO.m in Sources */, + 46EB2E000271C0 /* FIRCLSMachOBinary.m in Sources */, + 46EB2E000271D0 /* FIRCLSMachOSlice.m in Sources */, + 46EB2E00026DF0 /* FIRCLSManagerData.m in Sources */, + 46EB2E00026E00 /* FIRCLSMetricKitManager.m in Sources */, + 46EB2E000271F0 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, + 46EB2E000270D0 /* FIRCLSNetworkOperation.m in Sources */, + 46EB2E00027200 /* FIRCLSNetworkResponseHandler.m in Sources */, + 46EB2E00026E10 /* FIRCLSNotificationManager.m in Sources */, + 46EB2E00026FC0 /* FIRCLSOnDemandModel.m in Sources */, + 46EB2E00026DB0 /* FIRCLSProcess.c in Sources */, + 46EB2E00027050 /* FIRCLSProcessReportOperation.m in Sources */, + 46EB2E00026F40 /* FIRCLSProfiling.c in Sources */, + 46EB2E00026FF0 /* FIRCLSRecordApplication.m in Sources */, + 46EB2E00027000 /* FIRCLSRecordBase.m in Sources */, + 46EB2E00027010 /* FIRCLSRecordHost.m in Sources */, + 46EB2E00027020 /* FIRCLSRecordIdentity.m in Sources */, + 46EB2E00027030 /* FIRCLSReportAdapter.m in Sources */, + 46EB2E00026E20 /* FIRCLSReportManager.m in Sources */, + 46EB2E00026E30 /* FIRCLSReportUploader.m in Sources */, + 46EB2E00027070 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, + 46EB2E00026FD0 /* FIRCLSSettings.m in Sources */, + 46EB2E000270A0 /* FIRCLSSettingsManager.m in Sources */, + 46EB2E00026EE0 /* FIRCLSSignal.c in Sources */, + 46EB2E00027080 /* FIRCLSSymbolicationOperation.m in Sources */, + 46EB2E00026FE0 /* FIRCLSSymbolResolver.m in Sources */, + 46EB2E00027090 /* FIRCLSThreadArrayOperation.m in Sources */, + 46EB2E00026F50 /* FIRCLSThreadState.c in Sources */, + 46EB2E00027120 /* FIRCLSUnwind.c in Sources */, + 46EB2E00027130 /* FIRCLSUnwind_arm.c in Sources */, + 46EB2E00027140 /* FIRCLSUnwind_x86.c in Sources */, + 46EB2E00027210 /* FIRCLSURLBuilder.m in Sources */, + 46EB2E00026E60 /* FIRCLSUserDefaults.m in Sources */, + 46EB2E00026DC0 /* FIRCLSUserLogging.m in Sources */, + 46EB2E00026F60 /* FIRCLSUtility.m in Sources */, + 46EB2E00027240 /* FIRCLSUUID.m in Sources */, + 46EB2E00026E70 /* FIRCrashlytics.m in Sources */, + 46EB2E00026E80 /* FIRCrashlyticsReport.m in Sources */, + 46EB2E000279C0 /* FirebaseCrashlytics-dummy.m in Sources */, + 46EB2E00026E90 /* FIRExceptionModel.m in Sources */, + 46EB2E00026EA0 /* FIRStackFrame.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00027A30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00028200 /* APLevelDB.mm in Sources */, - 46EB2E00027CD0 /* FAckUserWrite.m in Sources */, - 46EB2E00028020 /* FArraySortedDictionary.m in Sources */, - 46EB2E000280B0 /* FAtomicNumber.m in Sources */, - 46EB2E00028210 /* fbase64.c in Sources */, - 46EB2E00027D60 /* FCacheNode.m in Sources */, - 46EB2E00027F30 /* FCachePolicy.m in Sources */, - 46EB2E00027D70 /* FCancelEvent.m in Sources */, - 46EB2E00027D80 /* FChange.m in Sources */, - 46EB2E00027DC0 /* FChildChangeAccumulator.m in Sources */, - 46EB2E00027D90 /* FChildEventRegistration.m in Sources */, - 46EB2E00027FC0 /* FChildrenNode.m in Sources */, - 46EB2E00027E30 /* FClock.m in Sources */, - 46EB2E00027BC0 /* FCompoundHash.m in Sources */, - 46EB2E00027FD0 /* FCompoundWrite.m in Sources */, - 46EB2E00027FA0 /* FConnection.m in Sources */, - 46EB2E00027BB0 /* FConstants.m in Sources */, - 46EB2E00027DA0 /* FDataEvent.m in Sources */, - 46EB2E00027FE0 /* FEmptyNode.m in Sources */, - 46EB2E000280C0 /* FEventEmitter.m in Sources */, - 46EB2E00027E40 /* FEventGenerator.m in Sources */, - 46EB2E00027DB0 /* FEventRaiser.m in Sources */, - 46EB2E00028030 /* FImmutableSortedDictionary.m in Sources */, - 46EB2E00028040 /* FImmutableSortedSet.m in Sources */, - 46EB2E00027D10 /* FImmutableTree.m in Sources */, - 46EB2E00027E50 /* FIndex.m in Sources */, - 46EB2E00027DD0 /* FIndexedFilter.m in Sources */, - 46EB2E00027FF0 /* FIndexedNode.m in Sources */, - 46EB2E00027B30 /* FIRDatabase.m in Sources */, - 46EB2E00027B40 /* FIRDatabaseComponent.m in Sources */, - 46EB2E00027B50 /* FIRDatabaseConfig.m in Sources */, - 46EB2E00027F20 /* FIRDatabaseConnectionContextProvider.m in Sources */, - 46EB2E00027B60 /* FIRDatabaseQuery.m in Sources */, - 46EB2E00027E60 /* FIRDatabaseReference.m in Sources */, - 46EB2E00027B70 /* FIRDataSnapshot.m in Sources */, - 46EB2E00028B80 /* FirebaseDatabase-dummy.m in Sources */, - 46EB2E00027B80 /* FIRMutableData.m in Sources */, - 46EB2E00027D20 /* FIRRetryHelper.m in Sources */, - 46EB2E00027B90 /* FIRServerValue.m in Sources */, - 46EB2E00027BA0 /* FIRTransactionResult.m in Sources */, - 46EB2E00027DF0 /* FKeepSyncedEventRegistration.m in Sources */, - 46EB2E00027E70 /* FKeyIndex.m in Sources */, - 46EB2E00028000 /* FLeafNode.m in Sources */, - 46EB2E00027F40 /* FLevelDBStorageEngine.m in Sources */, - 46EB2E00027DE0 /* FLimitedFilter.m in Sources */, - 46EB2E00027E80 /* FListenComplete.m in Sources */, - 46EB2E00027BD0 /* FListenProvider.m in Sources */, - 46EB2E00028050 /* FLLRBEmptyNode.m in Sources */, - 46EB2E00028060 /* FLLRBValueNode.m in Sources */, - 46EB2E00027E90 /* FMaxNode.m in Sources */, - 46EB2E00027CE0 /* FMerge.m in Sources */, - 46EB2E00027EA0 /* FNamedNode.m in Sources */, - 46EB2E000280D0 /* FNextPushId.m in Sources */, - 46EB2E00027CF0 /* FOperationSource.m in Sources */, - 46EB2E00027D00 /* FOverwrite.m in Sources */, - 46EB2E000280E0 /* FParsedUrl.m in Sources */, - 46EB2E00027D30 /* FPath.m in Sources */, - 46EB2E00027EB0 /* FPathIndex.m in Sources */, - 46EB2E00027F50 /* FPendingPut.m in Sources */, - 46EB2E00027F60 /* FPersistenceManager.m in Sources */, - 46EB2E00027BE0 /* FPersistentConnection.m in Sources */, - 46EB2E00027EC0 /* FPriorityIndex.m in Sources */, - 46EB2E00027F70 /* FPruneForest.m in Sources */, - 46EB2E00027BF0 /* FQueryParams.m in Sources */, - 46EB2E00027C00 /* FQuerySpec.m in Sources */, - 46EB2E00027ED0 /* FRangedFilter.m in Sources */, - 46EB2E00027C10 /* FRangeMerge.m in Sources */, - 46EB2E00027C20 /* FRepo.m in Sources */, - 46EB2E00027C30 /* FRepoInfo.m in Sources */, - 46EB2E00027C40 /* FRepoManager.m in Sources */, - 46EB2E00027C50 /* FServerValues.m in Sources */, - 46EB2E00027C60 /* FSnapshotHolder.m in Sources */, - 46EB2E00028010 /* FSnapshotUtilities.m in Sources */, - 46EB2E00027C70 /* FSparseSnapshotTree.m in Sources */, - 46EB2E00028090 /* FSRWebSocket.m in Sources */, - 46EB2E000280F0 /* FStringUtilities.m in Sources */, - 46EB2E00027C80 /* FSyncPoint.m in Sources */, - 46EB2E00027C90 /* FSyncTree.m in Sources */, - 46EB2E00027F80 /* FTrackedQuery.m in Sources */, - 46EB2E00027F90 /* FTrackedQueryManager.m in Sources */, - 46EB2E00027EE0 /* FTransformedEnumerator.m in Sources */, - 46EB2E00027D40 /* FTree.m in Sources */, - 46EB2E00027D50 /* FTreeNode.m in Sources */, - 46EB2E00028070 /* FTreeSortedDictionary.m in Sources */, - 46EB2E00028080 /* FTreeSortedDictionaryEnumerator.m in Sources */, - 46EB2E00028120 /* FTupleBoolBlock.m in Sources */, - 46EB2E00028130 /* FTupleCallbackStatus.m in Sources */, - 46EB2E00028140 /* FTupleFirebase.m in Sources */, - 46EB2E00028150 /* FTupleNodePath.m in Sources */, - 46EB2E00028160 /* FTupleObjectNode.m in Sources */, - 46EB2E00028170 /* FTupleObjects.m in Sources */, - 46EB2E00028180 /* FTupleOnDisconnect.m in Sources */, - 46EB2E00028190 /* FTuplePathValue.m in Sources */, - 46EB2E000281A0 /* FTupleRemovedQueriesEvents.m in Sources */, - 46EB2E000281B0 /* FTupleSetIdPath.m in Sources */, - 46EB2E000281C0 /* FTupleStringNode.m in Sources */, - 46EB2E000281D0 /* FTupleTransaction.m in Sources */, - 46EB2E000281E0 /* FTupleTSN.m in Sources */, - 46EB2E000281F0 /* FTupleUserCallback.m in Sources */, - 46EB2E00028100 /* FUtilities.m in Sources */, - 46EB2E00028110 /* FValidation.m in Sources */, - 46EB2E00027E00 /* FValueEventRegistration.m in Sources */, - 46EB2E00027EF0 /* FValueIndex.m in Sources */, - 46EB2E00027E10 /* FView.m in Sources */, - 46EB2E00027E20 /* FViewCache.m in Sources */, - 46EB2E00027F00 /* FViewProcessor.m in Sources */, - 46EB2E00027F10 /* FViewProcessorResult.m in Sources */, - 46EB2E00027FB0 /* FWebSocketConnection.m in Sources */, - 46EB2E00027CA0 /* FWriteRecord.m in Sources */, - 46EB2E00027CB0 /* FWriteTree.m in Sources */, - 46EB2E00027CC0 /* FWriteTreeRef.m in Sources */, - 46EB2E000280A0 /* NSData+SRB64Additions.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00028BF0 /* Sources */ = { + 46EB2E00028120 /* APLevelDB.mm in Sources */, + 46EB2E00027BF0 /* FAckUserWrite.m in Sources */, + 46EB2E00027F40 /* FArraySortedDictionary.m in Sources */, + 46EB2E00027FD0 /* FAtomicNumber.m in Sources */, + 46EB2E00028130 /* fbase64.c in Sources */, + 46EB2E00027C80 /* FCacheNode.m in Sources */, + 46EB2E00027E50 /* FCachePolicy.m in Sources */, + 46EB2E00027C90 /* FCancelEvent.m in Sources */, + 46EB2E00027CA0 /* FChange.m in Sources */, + 46EB2E00027CE0 /* FChildChangeAccumulator.m in Sources */, + 46EB2E00027CB0 /* FChildEventRegistration.m in Sources */, + 46EB2E00027EE0 /* FChildrenNode.m in Sources */, + 46EB2E00027D50 /* FClock.m in Sources */, + 46EB2E00027AE0 /* FCompoundHash.m in Sources */, + 46EB2E00027EF0 /* FCompoundWrite.m in Sources */, + 46EB2E00027EC0 /* FConnection.m in Sources */, + 46EB2E00027AD0 /* FConstants.m in Sources */, + 46EB2E00027CC0 /* FDataEvent.m in Sources */, + 46EB2E00027F00 /* FEmptyNode.m in Sources */, + 46EB2E00027FE0 /* FEventEmitter.m in Sources */, + 46EB2E00027D60 /* FEventGenerator.m in Sources */, + 46EB2E00027CD0 /* FEventRaiser.m in Sources */, + 46EB2E00027F50 /* FImmutableSortedDictionary.m in Sources */, + 46EB2E00027F60 /* FImmutableSortedSet.m in Sources */, + 46EB2E00027C30 /* FImmutableTree.m in Sources */, + 46EB2E00027D70 /* FIndex.m in Sources */, + 46EB2E00027CF0 /* FIndexedFilter.m in Sources */, + 46EB2E00027F10 /* FIndexedNode.m in Sources */, + 46EB2E00027A50 /* FIRDatabase.m in Sources */, + 46EB2E00027A60 /* FIRDatabaseComponent.m in Sources */, + 46EB2E00027A70 /* FIRDatabaseConfig.m in Sources */, + 46EB2E00027E40 /* FIRDatabaseConnectionContextProvider.m in Sources */, + 46EB2E00027A80 /* FIRDatabaseQuery.m in Sources */, + 46EB2E00027D80 /* FIRDatabaseReference.m in Sources */, + 46EB2E00027A90 /* FIRDataSnapshot.m in Sources */, + 46EB2E00028AA0 /* FirebaseDatabase-dummy.m in Sources */, + 46EB2E00027AA0 /* FIRMutableData.m in Sources */, + 46EB2E00027C40 /* FIRRetryHelper.m in Sources */, + 46EB2E00027AB0 /* FIRServerValue.m in Sources */, + 46EB2E00027AC0 /* FIRTransactionResult.m in Sources */, + 46EB2E00027D10 /* FKeepSyncedEventRegistration.m in Sources */, + 46EB2E00027D90 /* FKeyIndex.m in Sources */, + 46EB2E00027F20 /* FLeafNode.m in Sources */, + 46EB2E00027E60 /* FLevelDBStorageEngine.m in Sources */, + 46EB2E00027D00 /* FLimitedFilter.m in Sources */, + 46EB2E00027DA0 /* FListenComplete.m in Sources */, + 46EB2E00027AF0 /* FListenProvider.m in Sources */, + 46EB2E00027F70 /* FLLRBEmptyNode.m in Sources */, + 46EB2E00027F80 /* FLLRBValueNode.m in Sources */, + 46EB2E00027DB0 /* FMaxNode.m in Sources */, + 46EB2E00027C00 /* FMerge.m in Sources */, + 46EB2E00027DC0 /* FNamedNode.m in Sources */, + 46EB2E00027FF0 /* FNextPushId.m in Sources */, + 46EB2E00027C10 /* FOperationSource.m in Sources */, + 46EB2E00027C20 /* FOverwrite.m in Sources */, + 46EB2E00028000 /* FParsedUrl.m in Sources */, + 46EB2E00027C50 /* FPath.m in Sources */, + 46EB2E00027DD0 /* FPathIndex.m in Sources */, + 46EB2E00027E70 /* FPendingPut.m in Sources */, + 46EB2E00027E80 /* FPersistenceManager.m in Sources */, + 46EB2E00027B00 /* FPersistentConnection.m in Sources */, + 46EB2E00027DE0 /* FPriorityIndex.m in Sources */, + 46EB2E00027E90 /* FPruneForest.m in Sources */, + 46EB2E00027B10 /* FQueryParams.m in Sources */, + 46EB2E00027B20 /* FQuerySpec.m in Sources */, + 46EB2E00027DF0 /* FRangedFilter.m in Sources */, + 46EB2E00027B30 /* FRangeMerge.m in Sources */, + 46EB2E00027B40 /* FRepo.m in Sources */, + 46EB2E00027B50 /* FRepoInfo.m in Sources */, + 46EB2E00027B60 /* FRepoManager.m in Sources */, + 46EB2E00027B70 /* FServerValues.m in Sources */, + 46EB2E00027B80 /* FSnapshotHolder.m in Sources */, + 46EB2E00027F30 /* FSnapshotUtilities.m in Sources */, + 46EB2E00027B90 /* FSparseSnapshotTree.m in Sources */, + 46EB2E00027FB0 /* FSRWebSocket.m in Sources */, + 46EB2E00028010 /* FStringUtilities.m in Sources */, + 46EB2E00027BA0 /* FSyncPoint.m in Sources */, + 46EB2E00027BB0 /* FSyncTree.m in Sources */, + 46EB2E00027EA0 /* FTrackedQuery.m in Sources */, + 46EB2E00027EB0 /* FTrackedQueryManager.m in Sources */, + 46EB2E00027E00 /* FTransformedEnumerator.m in Sources */, + 46EB2E00027C60 /* FTree.m in Sources */, + 46EB2E00027C70 /* FTreeNode.m in Sources */, + 46EB2E00027F90 /* FTreeSortedDictionary.m in Sources */, + 46EB2E00027FA0 /* FTreeSortedDictionaryEnumerator.m in Sources */, + 46EB2E00028040 /* FTupleBoolBlock.m in Sources */, + 46EB2E00028050 /* FTupleCallbackStatus.m in Sources */, + 46EB2E00028060 /* FTupleFirebase.m in Sources */, + 46EB2E00028070 /* FTupleNodePath.m in Sources */, + 46EB2E00028080 /* FTupleObjectNode.m in Sources */, + 46EB2E00028090 /* FTupleObjects.m in Sources */, + 46EB2E000280A0 /* FTupleOnDisconnect.m in Sources */, + 46EB2E000280B0 /* FTuplePathValue.m in Sources */, + 46EB2E000280C0 /* FTupleRemovedQueriesEvents.m in Sources */, + 46EB2E000280D0 /* FTupleSetIdPath.m in Sources */, + 46EB2E000280E0 /* FTupleStringNode.m in Sources */, + 46EB2E000280F0 /* FTupleTransaction.m in Sources */, + 46EB2E00028100 /* FTupleTSN.m in Sources */, + 46EB2E00028110 /* FTupleUserCallback.m in Sources */, + 46EB2E00028020 /* FUtilities.m in Sources */, + 46EB2E00028030 /* FValidation.m in Sources */, + 46EB2E00027D20 /* FValueEventRegistration.m in Sources */, + 46EB2E00027E10 /* FValueIndex.m in Sources */, + 46EB2E00027D30 /* FView.m in Sources */, + 46EB2E00027D40 /* FViewCache.m in Sources */, + 46EB2E00027E20 /* FViewProcessor.m in Sources */, + 46EB2E00027E30 /* FViewProcessorResult.m in Sources */, + 46EB2E00027ED0 /* FWebSocketConnection.m in Sources */, + 46EB2E00027BC0 /* FWriteRecord.m in Sources */, + 46EB2E00027BD0 /* FWriteTree.m in Sources */, + 46EB2E00027BE0 /* FWriteTreeRef.m in Sources */, + 46EB2E00027FC0 /* NSData+SRB64Additions.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00028B10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00028E90 /* annotations.nanopb.cc in Sources */, - 46EB2E00028F20 /* any.nanopb.cc in Sources */, - 46EB2E00029090 /* array_contains_any_filter.cc in Sources */, - 46EB2E000290A0 /* array_contains_filter.cc in Sources */, - 46EB2E00029830 /* async_queue.cc in Sources */, - 46EB2E00029220 /* auth_token.cc in Sources */, - 46EB2E00029840 /* autoid.cc in Sources */, - 46EB2E00029850 /* background_queue.cc in Sources */, - 46EB2E00029860 /* bits.cc in Sources */, - 46EB2E000290B0 /* bound.cc in Sources */, - 46EB2E00028E50 /* bundle.nanopb.cc in Sources */, - 46EB2E00029060 /* bundle_loader.cc in Sources */, - 46EB2E00029070 /* bundle_reader.cc in Sources */, - 46EB2E00029080 /* bundle_serializer.cc in Sources */, - 46EB2E00028DE0 /* byte_stream_apple.mm in Sources */, - 46EB2E00029870 /* byte_stream_cpp.cc in Sources */, - 46EB2E00029640 /* byte_string.cc in Sources */, - 46EB2E00028F90 /* collection_reference.cc in Sources */, - 46EB2E00028ED0 /* common.nanopb.cc in Sources */, - 46EB2E00029880 /* comparison.cc in Sources */, - 46EB2E000296A0 /* connectivity_monitor.cc in Sources */, - 46EB2E00028DC0 /* connectivity_monitor_apple.mm in Sources */, - 46EB2E00028C10 /* converters.mm in Sources */, - 46EB2E000294B0 /* database_id.cc in Sources */, - 46EB2E000290C0 /* database_info.cc in Sources */, - 46EB2E000296B0 /* datastore.cc in Sources */, - 46EB2E000294C0 /* delete_mutation.cc in Sources */, - 46EB2E000290D0 /* direction.cc in Sources */, - 46EB2E000294D0 /* document.cc in Sources */, - 46EB2E00028EE0 /* document.nanopb.cc in Sources */, - 46EB2E00028FA0 /* document_change.cc in Sources */, - 46EB2E000294E0 /* document_key.cc in Sources */, - 46EB2E00029290 /* document_key_reference.cc in Sources */, - 46EB2E000292A0 /* document_overlay_cache.cc in Sources */, - 46EB2E00028FB0 /* document_reference.cc in Sources */, - 46EB2E000294F0 /* document_set.cc in Sources */, - 46EB2E00028FC0 /* document_snapshot.cc in Sources */, - 46EB2E00028F30 /* empty.nanopb.cc in Sources */, - 46EB2E00028DF0 /* error_apple.mm in Sources */, - 46EB2E000290E0 /* event_manager.cc in Sources */, - 46EB2E00029890 /* exception.cc in Sources */, - 46EB2E00028E00 /* exception_apple.mm in Sources */, - 46EB2E00028E10 /* executor_libdispatch.mm in Sources */, - 46EB2E000298A0 /* executor_std.cc in Sources */, - 46EB2E000296C0 /* exponential_backoff.cc in Sources */, - 46EB2E000290F0 /* field_filter.cc in Sources */, - 46EB2E00029500 /* field_index.cc in Sources */, - 46EB2E00029510 /* field_mask.cc in Sources */, - 46EB2E00029520 /* field_path.cc in Sources */, - 46EB2E00029530 /* field_transform.cc in Sources */, - 46EB2E00028E20 /* filesystem_apple.mm in Sources */, - 46EB2E000298B0 /* filesystem_common.cc in Sources */, - 46EB2E000298C0 /* filesystem_posix.cc in Sources */, - 46EB2E00029100 /* filter.cc in Sources */, - 46EB2E00028C20 /* FIRCollectionReference.mm in Sources */, - 46EB2E00028C30 /* FIRDocumentChange.mm in Sources */, - 46EB2E00028C40 /* FIRDocumentReference.mm in Sources */, - 46EB2E00028C50 /* FIRDocumentSnapshot.mm in Sources */, - 46EB2E00028DA0 /* firebase_app_check_credentials_provider_apple.mm in Sources */, - 46EB2E00028DB0 /* firebase_auth_credentials_provider_apple.mm in Sources */, - 46EB2E000296D0 /* firebase_metadata_provider.cc in Sources */, - 46EB2E00028DD0 /* firebase_metadata_provider_apple.mm in Sources */, - 46EB2E000296E0 /* firebase_metadata_provider_noop.cc in Sources */, - 46EB2E00029C40 /* FirebaseFirestore-dummy.m in Sources */, - 46EB2E00028FD0 /* firestore.cc in Sources */, - 46EB2E00028EF0 /* firestore.nanopb.cc in Sources */, - 46EB2E00029110 /* firestore_client.cc in Sources */, - 46EB2E00029270 /* firestore_index_value_writer.cc in Sources */, - 46EB2E00029240 /* firestore_version.cc in Sources */, - 46EB2E00028C60 /* FIRFieldPath.mm in Sources */, - 46EB2E00028C70 /* FIRFieldValue.mm in Sources */, - 46EB2E00028C80 /* FIRFilter.mm in Sources */, - 46EB2E00028C90 /* FIRFirestore.mm in Sources */, - 46EB2E00028CA0 /* FIRFirestoreSettings.mm in Sources */, - 46EB2E00028CB0 /* FIRFirestoreSource.mm in Sources */, - 46EB2E00028CC0 /* FIRFirestoreVersion.mm in Sources */, - 46EB2E00028CD0 /* FIRGeoPoint.mm in Sources */, - 46EB2E00028CE0 /* FIRListenerRegistration.mm in Sources */, - 46EB2E00028CF0 /* FIRLoadBundleTask.mm in Sources */, - 46EB2E00028D00 /* FIRQuery.mm in Sources */, - 46EB2E00028D10 /* FIRQuerySnapshot.mm in Sources */, - 46EB2E00028D20 /* FIRSnapshotMetadata.mm in Sources */, - 46EB2E00028D30 /* FIRTimestamp.m in Sources */, - 46EB2E00028D40 /* FIRTransaction.mm in Sources */, - 46EB2E00028D50 /* FIRTransactionOptions.mm in Sources */, - 46EB2E00028D60 /* FIRWriteBatch.mm in Sources */, - 46EB2E00028D70 /* FSTFirestoreComponent.mm in Sources */, - 46EB2E00028D80 /* FSTUserDataReader.mm in Sources */, - 46EB2E00028D90 /* FSTUserDataWriter.mm in Sources */, - 46EB2E00029250 /* geo_point.cc in Sources */, - 46EB2E000296F0 /* grpc_completion.cc in Sources */, - 46EB2E00029700 /* grpc_connection.cc in Sources */, - 46EB2E00029710 /* grpc_nanopb.cc in Sources */, - 46EB2E00029730 /* grpc_root_certificate_finder_generated.cc in Sources */, - 46EB2E00029720 /* grpc_root_certificates_generated.cc in Sources */, - 46EB2E00029740 /* grpc_stream.cc in Sources */, - 46EB2E00029750 /* grpc_streaming_reader.cc in Sources */, - 46EB2E00029760 /* grpc_unary_call.cc in Sources */, - 46EB2E00029770 /* grpc_util.cc in Sources */, - 46EB2E000298D0 /* hard_assert.cc in Sources */, - 46EB2E00028EA0 /* http.nanopb.cc in Sources */, - 46EB2E00029120 /* in_filter.cc in Sources */, - 46EB2E00028EC0 /* index.nanopb.cc in Sources */, - 46EB2E00029280 /* index_entry.cc in Sources */, - 46EB2E00029130 /* key_field_filter.cc in Sources */, - 46EB2E00029140 /* key_field_in_filter.cc in Sources */, - 46EB2E00029150 /* key_field_not_in_filter.cc in Sources */, - 46EB2E00028F80 /* latlng.nanopb.cc in Sources */, - 46EB2E000292B0 /* leveldb_bundle_cache.cc in Sources */, - 46EB2E000292C0 /* leveldb_document_overlay_cache.cc in Sources */, - 46EB2E000292D0 /* leveldb_index_manager.cc in Sources */, - 46EB2E000292E0 /* leveldb_key.cc in Sources */, - 46EB2E000292F0 /* leveldb_lru_reference_delegate.cc in Sources */, - 46EB2E00029300 /* leveldb_migrations.cc in Sources */, - 46EB2E00029310 /* leveldb_mutation_queue.cc in Sources */, - 46EB2E00029320 /* leveldb_opener.cc in Sources */, - 46EB2E00029330 /* leveldb_overlay_migration_manager.cc in Sources */, - 46EB2E00029340 /* leveldb_persistence.cc in Sources */, - 46EB2E00029350 /* leveldb_remote_document_cache.cc in Sources */, - 46EB2E00029360 /* leveldb_target_cache.cc in Sources */, - 46EB2E00029370 /* leveldb_transaction.cc in Sources */, - 46EB2E00029380 /* leveldb_util.cc in Sources */, - 46EB2E00028FE0 /* load_bundle_task.cc in Sources */, - 46EB2E00029390 /* local_documents_view.cc in Sources */, - 46EB2E000293A0 /* local_serializer.cc in Sources */, - 46EB2E000293B0 /* local_store.cc in Sources */, - 46EB2E000293C0 /* local_view_changes.cc in Sources */, - 46EB2E00028E30 /* log_apple.mm in Sources */, - 46EB2E000293D0 /* lru_garbage_collector.cc in Sources */, - 46EB2E00028E60 /* maybe_document.nanopb.cc in Sources */, - 46EB2E000293E0 /* memory_bundle_cache.cc in Sources */, - 46EB2E000293F0 /* memory_document_overlay_cache.cc in Sources */, - 46EB2E00029400 /* memory_eager_reference_delegate.cc in Sources */, - 46EB2E00029410 /* memory_index_manager.cc in Sources */, - 46EB2E00029420 /* memory_lru_reference_delegate.cc in Sources */, - 46EB2E00029430 /* memory_mutation_queue.cc in Sources */, - 46EB2E00029440 /* memory_persistence.cc in Sources */, - 46EB2E00029450 /* memory_remote_document_cache.cc in Sources */, - 46EB2E00029460 /* memory_target_cache.cc in Sources */, - 46EB2E00029650 /* message.cc in Sources */, - 46EB2E00029540 /* mutable_document.cc in Sources */, - 46EB2E00029550 /* mutation.cc in Sources */, - 46EB2E00028E70 /* mutation.nanopb.cc in Sources */, - 46EB2E00029560 /* mutation_batch.cc in Sources */, - 46EB2E00029570 /* mutation_batch_result.cc in Sources */, - 46EB2E00029660 /* nanopb_util.cc in Sources */, - 46EB2E00029160 /* not_in_filter.cc in Sources */, - 46EB2E00029580 /* object_value.cc in Sources */, - 46EB2E00029780 /* online_state_tracker.cc in Sources */, - 46EB2E00029170 /* order_by.cc in Sources */, - 46EB2E000298E0 /* ordered_code.cc in Sources */, - 46EB2E00029590 /* overlay.cc in Sources */, - 46EB2E000295A0 /* patch_mutation.cc in Sources */, - 46EB2E000298F0 /* path.cc in Sources */, - 46EB2E000295B0 /* precondition.cc in Sources */, - 46EB2E00029670 /* pretty_printing.cc in Sources */, - 46EB2E00029470 /* proto_sizer.cc in Sources */, - 46EB2E00029180 /* query.cc in Sources */, - 46EB2E00028F00 /* query.nanopb.cc in Sources */, - 46EB2E00028FF0 /* query_core.cc in Sources */, - 46EB2E00029480 /* query_engine.cc in Sources */, - 46EB2E00029190 /* query_listener.cc in Sources */, - 46EB2E00029000 /* query_listener_registration.cc in Sources */, - 46EB2E00029010 /* query_snapshot.cc in Sources */, - 46EB2E00029680 /* reader.cc in Sources */, - 46EB2E00029490 /* reference_set.cc in Sources */, - 46EB2E00029790 /* remote_event.cc in Sources */, - 46EB2E000297A0 /* remote_objc_bridge.cc in Sources */, - 46EB2E000297B0 /* remote_store.cc in Sources */, - 46EB2E00028EB0 /* resource.nanopb.cc in Sources */, - 46EB2E000295C0 /* resource_path.cc in Sources */, - 46EB2E00029900 /* schedule.cc in Sources */, - 46EB2E00029910 /* secure_random_arc4random.cc in Sources */, - 46EB2E000297C0 /* serializer.cc in Sources */, - 46EB2E000295D0 /* server_timestamp_util.cc in Sources */, - 46EB2E000295E0 /* set_mutation.cc in Sources */, - 46EB2E00029020 /* settings.cc in Sources */, - 46EB2E00029040 /* snapshot_metadata.cc in Sources */, - 46EB2E000295F0 /* snapshot_version.cc in Sources */, - 46EB2E00029030 /* snapshots_in_sync_listener_registration.cc in Sources */, - 46EB2E00029260 /* sorted_container.cc in Sources */, - 46EB2E00029920 /* status.cc in Sources */, - 46EB2E00028F70 /* status.nanopb.cc in Sources */, - 46EB2E00028E40 /* status_apple.mm in Sources */, - 46EB2E00029940 /* status_errno.cc in Sources */, - 46EB2E00029950 /* status_win.cc in Sources */, - 46EB2E00029930 /* statusor.cc in Sources */, - 46EB2E000297D0 /* stream.cc in Sources */, - 46EB2E00029960 /* strerror.cc in Sources */, - 46EB2E00029970 /* string_apple.cc in Sources */, - 46EB2E00029980 /* string_format.cc in Sources */, - 46EB2E00029990 /* string_util.cc in Sources */, - 46EB2E000299A0 /* string_win.cc in Sources */, - 46EB2E00028F40 /* struct.nanopb.cc in Sources */, - 46EB2E000291A0 /* sync_engine.cc in Sources */, - 46EB2E000291B0 /* target.cc in Sources */, - 46EB2E00028E80 /* target.nanopb.cc in Sources */, - 46EB2E000294A0 /* target_data.cc in Sources */, - 46EB2E000291C0 /* target_id_generator.cc in Sources */, - 46EB2E00029600 /* target_index_matcher.cc in Sources */, - 46EB2E000299B0 /* task.cc in Sources */, - 46EB2E00029810 /* timestamp.cc in Sources */, - 46EB2E00028F50 /* timestamp.nanopb.cc in Sources */, - 46EB2E00029820 /* timestamp_internal.cc in Sources */, - 46EB2E000291D0 /* transaction.cc in Sources */, - 46EB2E000291E0 /* transaction_runner.cc in Sources */, - 46EB2E00029610 /* transform_operation.cc in Sources */, - 46EB2E00029230 /* user.cc in Sources */, - 46EB2E000291F0 /* user_data.cc in Sources */, - 46EB2E00029620 /* value_util.cc in Sources */, - 46EB2E00029630 /* verify_mutation.cc in Sources */, - 46EB2E00029200 /* view.cc in Sources */, - 46EB2E00029210 /* view_snapshot.cc in Sources */, - 46EB2E000297E0 /* watch_change.cc in Sources */, - 46EB2E000297F0 /* watch_stream.cc in Sources */, - 46EB2E00028F60 /* wrappers.nanopb.cc in Sources */, - 46EB2E00028F10 /* write.nanopb.cc in Sources */, - 46EB2E00029050 /* write_batch.cc in Sources */, - 46EB2E00029800 /* write_stream.cc in Sources */, - 46EB2E00029690 /* writer.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00029CB0 /* Sources */ = { + 46EB2E00028DB0 /* annotations.nanopb.cc in Sources */, + 46EB2E00028E40 /* any.nanopb.cc in Sources */, + 46EB2E00028FB0 /* array_contains_any_filter.cc in Sources */, + 46EB2E00028FC0 /* array_contains_filter.cc in Sources */, + 46EB2E00029750 /* async_queue.cc in Sources */, + 46EB2E00029140 /* auth_token.cc in Sources */, + 46EB2E00029760 /* autoid.cc in Sources */, + 46EB2E00029770 /* background_queue.cc in Sources */, + 46EB2E00029780 /* bits.cc in Sources */, + 46EB2E00028FD0 /* bound.cc in Sources */, + 46EB2E00028D70 /* bundle.nanopb.cc in Sources */, + 46EB2E00028F80 /* bundle_loader.cc in Sources */, + 46EB2E00028F90 /* bundle_reader.cc in Sources */, + 46EB2E00028FA0 /* bundle_serializer.cc in Sources */, + 46EB2E00028D00 /* byte_stream_apple.mm in Sources */, + 46EB2E00029790 /* byte_stream_cpp.cc in Sources */, + 46EB2E00029560 /* byte_string.cc in Sources */, + 46EB2E00028EB0 /* collection_reference.cc in Sources */, + 46EB2E00028DF0 /* common.nanopb.cc in Sources */, + 46EB2E000297A0 /* comparison.cc in Sources */, + 46EB2E000295C0 /* connectivity_monitor.cc in Sources */, + 46EB2E00028CE0 /* connectivity_monitor_apple.mm in Sources */, + 46EB2E00028B30 /* converters.mm in Sources */, + 46EB2E000293D0 /* database_id.cc in Sources */, + 46EB2E00028FE0 /* database_info.cc in Sources */, + 46EB2E000295D0 /* datastore.cc in Sources */, + 46EB2E000293E0 /* delete_mutation.cc in Sources */, + 46EB2E00028FF0 /* direction.cc in Sources */, + 46EB2E000293F0 /* document.cc in Sources */, + 46EB2E00028E00 /* document.nanopb.cc in Sources */, + 46EB2E00028EC0 /* document_change.cc in Sources */, + 46EB2E00029400 /* document_key.cc in Sources */, + 46EB2E000291B0 /* document_key_reference.cc in Sources */, + 46EB2E000291C0 /* document_overlay_cache.cc in Sources */, + 46EB2E00028ED0 /* document_reference.cc in Sources */, + 46EB2E00029410 /* document_set.cc in Sources */, + 46EB2E00028EE0 /* document_snapshot.cc in Sources */, + 46EB2E00028E50 /* empty.nanopb.cc in Sources */, + 46EB2E00028D10 /* error_apple.mm in Sources */, + 46EB2E00029000 /* event_manager.cc in Sources */, + 46EB2E000297B0 /* exception.cc in Sources */, + 46EB2E00028D20 /* exception_apple.mm in Sources */, + 46EB2E00028D30 /* executor_libdispatch.mm in Sources */, + 46EB2E000297C0 /* executor_std.cc in Sources */, + 46EB2E000295E0 /* exponential_backoff.cc in Sources */, + 46EB2E00029010 /* field_filter.cc in Sources */, + 46EB2E00029420 /* field_index.cc in Sources */, + 46EB2E00029430 /* field_mask.cc in Sources */, + 46EB2E00029440 /* field_path.cc in Sources */, + 46EB2E00029450 /* field_transform.cc in Sources */, + 46EB2E00028D40 /* filesystem_apple.mm in Sources */, + 46EB2E000297D0 /* filesystem_common.cc in Sources */, + 46EB2E000297E0 /* filesystem_posix.cc in Sources */, + 46EB2E00029020 /* filter.cc in Sources */, + 46EB2E00028B40 /* FIRCollectionReference.mm in Sources */, + 46EB2E00028B50 /* FIRDocumentChange.mm in Sources */, + 46EB2E00028B60 /* FIRDocumentReference.mm in Sources */, + 46EB2E00028B70 /* FIRDocumentSnapshot.mm in Sources */, + 46EB2E00028CC0 /* firebase_app_check_credentials_provider_apple.mm in Sources */, + 46EB2E00028CD0 /* firebase_auth_credentials_provider_apple.mm in Sources */, + 46EB2E000295F0 /* firebase_metadata_provider.cc in Sources */, + 46EB2E00028CF0 /* firebase_metadata_provider_apple.mm in Sources */, + 46EB2E00029600 /* firebase_metadata_provider_noop.cc in Sources */, + 46EB2E00029B60 /* FirebaseFirestore-dummy.m in Sources */, + 46EB2E00028EF0 /* firestore.cc in Sources */, + 46EB2E00028E10 /* firestore.nanopb.cc in Sources */, + 46EB2E00029030 /* firestore_client.cc in Sources */, + 46EB2E00029190 /* firestore_index_value_writer.cc in Sources */, + 46EB2E00029160 /* firestore_version.cc in Sources */, + 46EB2E00028B80 /* FIRFieldPath.mm in Sources */, + 46EB2E00028B90 /* FIRFieldValue.mm in Sources */, + 46EB2E00028BA0 /* FIRFilter.mm in Sources */, + 46EB2E00028BB0 /* FIRFirestore.mm in Sources */, + 46EB2E00028BC0 /* FIRFirestoreSettings.mm in Sources */, + 46EB2E00028BD0 /* FIRFirestoreSource.mm in Sources */, + 46EB2E00028BE0 /* FIRFirestoreVersion.mm in Sources */, + 46EB2E00028BF0 /* FIRGeoPoint.mm in Sources */, + 46EB2E00028C00 /* FIRListenerRegistration.mm in Sources */, + 46EB2E00028C10 /* FIRLoadBundleTask.mm in Sources */, + 46EB2E00028C20 /* FIRQuery.mm in Sources */, + 46EB2E00028C30 /* FIRQuerySnapshot.mm in Sources */, + 46EB2E00028C40 /* FIRSnapshotMetadata.mm in Sources */, + 46EB2E00028C50 /* FIRTimestamp.m in Sources */, + 46EB2E00028C60 /* FIRTransaction.mm in Sources */, + 46EB2E00028C70 /* FIRTransactionOptions.mm in Sources */, + 46EB2E00028C80 /* FIRWriteBatch.mm in Sources */, + 46EB2E00028C90 /* FSTFirestoreComponent.mm in Sources */, + 46EB2E00028CA0 /* FSTUserDataReader.mm in Sources */, + 46EB2E00028CB0 /* FSTUserDataWriter.mm in Sources */, + 46EB2E00029170 /* geo_point.cc in Sources */, + 46EB2E00029610 /* grpc_completion.cc in Sources */, + 46EB2E00029620 /* grpc_connection.cc in Sources */, + 46EB2E00029630 /* grpc_nanopb.cc in Sources */, + 46EB2E00029650 /* grpc_root_certificate_finder_generated.cc in Sources */, + 46EB2E00029640 /* grpc_root_certificates_generated.cc in Sources */, + 46EB2E00029660 /* grpc_stream.cc in Sources */, + 46EB2E00029670 /* grpc_streaming_reader.cc in Sources */, + 46EB2E00029680 /* grpc_unary_call.cc in Sources */, + 46EB2E00029690 /* grpc_util.cc in Sources */, + 46EB2E000297F0 /* hard_assert.cc in Sources */, + 46EB2E00028DC0 /* http.nanopb.cc in Sources */, + 46EB2E00029040 /* in_filter.cc in Sources */, + 46EB2E00028DE0 /* index.nanopb.cc in Sources */, + 46EB2E000291A0 /* index_entry.cc in Sources */, + 46EB2E00029050 /* key_field_filter.cc in Sources */, + 46EB2E00029060 /* key_field_in_filter.cc in Sources */, + 46EB2E00029070 /* key_field_not_in_filter.cc in Sources */, + 46EB2E00028EA0 /* latlng.nanopb.cc in Sources */, + 46EB2E000291D0 /* leveldb_bundle_cache.cc in Sources */, + 46EB2E000291E0 /* leveldb_document_overlay_cache.cc in Sources */, + 46EB2E000291F0 /* leveldb_index_manager.cc in Sources */, + 46EB2E00029200 /* leveldb_key.cc in Sources */, + 46EB2E00029210 /* leveldb_lru_reference_delegate.cc in Sources */, + 46EB2E00029220 /* leveldb_migrations.cc in Sources */, + 46EB2E00029230 /* leveldb_mutation_queue.cc in Sources */, + 46EB2E00029240 /* leveldb_opener.cc in Sources */, + 46EB2E00029250 /* leveldb_overlay_migration_manager.cc in Sources */, + 46EB2E00029260 /* leveldb_persistence.cc in Sources */, + 46EB2E00029270 /* leveldb_remote_document_cache.cc in Sources */, + 46EB2E00029280 /* leveldb_target_cache.cc in Sources */, + 46EB2E00029290 /* leveldb_transaction.cc in Sources */, + 46EB2E000292A0 /* leveldb_util.cc in Sources */, + 46EB2E00028F00 /* load_bundle_task.cc in Sources */, + 46EB2E000292B0 /* local_documents_view.cc in Sources */, + 46EB2E000292C0 /* local_serializer.cc in Sources */, + 46EB2E000292D0 /* local_store.cc in Sources */, + 46EB2E000292E0 /* local_view_changes.cc in Sources */, + 46EB2E00028D50 /* log_apple.mm in Sources */, + 46EB2E000292F0 /* lru_garbage_collector.cc in Sources */, + 46EB2E00028D80 /* maybe_document.nanopb.cc in Sources */, + 46EB2E00029300 /* memory_bundle_cache.cc in Sources */, + 46EB2E00029310 /* memory_document_overlay_cache.cc in Sources */, + 46EB2E00029320 /* memory_eager_reference_delegate.cc in Sources */, + 46EB2E00029330 /* memory_index_manager.cc in Sources */, + 46EB2E00029340 /* memory_lru_reference_delegate.cc in Sources */, + 46EB2E00029350 /* memory_mutation_queue.cc in Sources */, + 46EB2E00029360 /* memory_persistence.cc in Sources */, + 46EB2E00029370 /* memory_remote_document_cache.cc in Sources */, + 46EB2E00029380 /* memory_target_cache.cc in Sources */, + 46EB2E00029570 /* message.cc in Sources */, + 46EB2E00029460 /* mutable_document.cc in Sources */, + 46EB2E00029470 /* mutation.cc in Sources */, + 46EB2E00028D90 /* mutation.nanopb.cc in Sources */, + 46EB2E00029480 /* mutation_batch.cc in Sources */, + 46EB2E00029490 /* mutation_batch_result.cc in Sources */, + 46EB2E00029580 /* nanopb_util.cc in Sources */, + 46EB2E00029080 /* not_in_filter.cc in Sources */, + 46EB2E000294A0 /* object_value.cc in Sources */, + 46EB2E000296A0 /* online_state_tracker.cc in Sources */, + 46EB2E00029090 /* order_by.cc in Sources */, + 46EB2E00029800 /* ordered_code.cc in Sources */, + 46EB2E000294B0 /* overlay.cc in Sources */, + 46EB2E000294C0 /* patch_mutation.cc in Sources */, + 46EB2E00029810 /* path.cc in Sources */, + 46EB2E000294D0 /* precondition.cc in Sources */, + 46EB2E00029590 /* pretty_printing.cc in Sources */, + 46EB2E00029390 /* proto_sizer.cc in Sources */, + 46EB2E000290A0 /* query.cc in Sources */, + 46EB2E00028E20 /* query.nanopb.cc in Sources */, + 46EB2E00028F10 /* query_core.cc in Sources */, + 46EB2E000293A0 /* query_engine.cc in Sources */, + 46EB2E000290B0 /* query_listener.cc in Sources */, + 46EB2E00028F20 /* query_listener_registration.cc in Sources */, + 46EB2E00028F30 /* query_snapshot.cc in Sources */, + 46EB2E000295A0 /* reader.cc in Sources */, + 46EB2E000293B0 /* reference_set.cc in Sources */, + 46EB2E000296B0 /* remote_event.cc in Sources */, + 46EB2E000296C0 /* remote_objc_bridge.cc in Sources */, + 46EB2E000296D0 /* remote_store.cc in Sources */, + 46EB2E00028DD0 /* resource.nanopb.cc in Sources */, + 46EB2E000294E0 /* resource_path.cc in Sources */, + 46EB2E00029820 /* schedule.cc in Sources */, + 46EB2E00029830 /* secure_random_arc4random.cc in Sources */, + 46EB2E000296E0 /* serializer.cc in Sources */, + 46EB2E000294F0 /* server_timestamp_util.cc in Sources */, + 46EB2E00029500 /* set_mutation.cc in Sources */, + 46EB2E00028F40 /* settings.cc in Sources */, + 46EB2E00028F60 /* snapshot_metadata.cc in Sources */, + 46EB2E00029510 /* snapshot_version.cc in Sources */, + 46EB2E00028F50 /* snapshots_in_sync_listener_registration.cc in Sources */, + 46EB2E00029180 /* sorted_container.cc in Sources */, + 46EB2E00029840 /* status.cc in Sources */, + 46EB2E00028E90 /* status.nanopb.cc in Sources */, + 46EB2E00028D60 /* status_apple.mm in Sources */, + 46EB2E00029860 /* status_errno.cc in Sources */, + 46EB2E00029870 /* status_win.cc in Sources */, + 46EB2E00029850 /* statusor.cc in Sources */, + 46EB2E000296F0 /* stream.cc in Sources */, + 46EB2E00029880 /* strerror.cc in Sources */, + 46EB2E00029890 /* string_apple.cc in Sources */, + 46EB2E000298A0 /* string_format.cc in Sources */, + 46EB2E000298B0 /* string_util.cc in Sources */, + 46EB2E000298C0 /* string_win.cc in Sources */, + 46EB2E00028E60 /* struct.nanopb.cc in Sources */, + 46EB2E000290C0 /* sync_engine.cc in Sources */, + 46EB2E000290D0 /* target.cc in Sources */, + 46EB2E00028DA0 /* target.nanopb.cc in Sources */, + 46EB2E000293C0 /* target_data.cc in Sources */, + 46EB2E000290E0 /* target_id_generator.cc in Sources */, + 46EB2E00029520 /* target_index_matcher.cc in Sources */, + 46EB2E000298D0 /* task.cc in Sources */, + 46EB2E00029730 /* timestamp.cc in Sources */, + 46EB2E00028E70 /* timestamp.nanopb.cc in Sources */, + 46EB2E00029740 /* timestamp_internal.cc in Sources */, + 46EB2E000290F0 /* transaction.cc in Sources */, + 46EB2E00029100 /* transaction_runner.cc in Sources */, + 46EB2E00029530 /* transform_operation.cc in Sources */, + 46EB2E00029150 /* user.cc in Sources */, + 46EB2E00029110 /* user_data.cc in Sources */, + 46EB2E00029540 /* value_util.cc in Sources */, + 46EB2E00029550 /* verify_mutation.cc in Sources */, + 46EB2E00029120 /* view.cc in Sources */, + 46EB2E00029130 /* view_snapshot.cc in Sources */, + 46EB2E00029700 /* watch_change.cc in Sources */, + 46EB2E00029710 /* watch_stream.cc in Sources */, + 46EB2E00028E80 /* wrappers.nanopb.cc in Sources */, + 46EB2E00028E30 /* write.nanopb.cc in Sources */, + 46EB2E00028F70 /* write_batch.cc in Sources */, + 46EB2E00029720 /* write_stream.cc in Sources */, + 46EB2E000295B0 /* writer.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00029BD0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00029D70 /* FIRCurrentDateProvider.m in Sources */, - 46EB2E0002A040 /* FirebaseInstallations-dummy.m in Sources */, - 46EB2E00029CF0 /* FIRInstallations.m in Sources */, - 46EB2E00029D50 /* FIRInstallationsAPIService.m in Sources */, - 46EB2E00029D00 /* FIRInstallationsAuthTokenResult.m in Sources */, - 46EB2E00029D80 /* FIRInstallationsBackoffController.m in Sources */, - 46EB2E00029CD0 /* FIRInstallationsErrorUtil.m in Sources */, - 46EB2E00029CE0 /* FIRInstallationsHTTPError.m in Sources */, - 46EB2E00029D90 /* FIRInstallationsIDController.m in Sources */, - 46EB2E00029D30 /* FIRInstallationsIIDStore.m in Sources */, - 46EB2E00029D40 /* FIRInstallationsIIDTokenStore.m in Sources */, - 46EB2E00029D10 /* FIRInstallationsItem.m in Sources */, - 46EB2E00029D60 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - 46EB2E00029D20 /* FIRInstallationsLogger.m in Sources */, - 46EB2E00029DA0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - 46EB2E00029DB0 /* FIRInstallationsStore.m in Sources */, - 46EB2E00029DC0 /* FIRInstallationsStoredAuthToken.m in Sources */, - 46EB2E00029DD0 /* FIRInstallationsStoredItem.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002A0B0 /* Sources */ = { + 46EB2E00029C90 /* FIRCurrentDateProvider.m in Sources */, + 46EB2E00029F60 /* FirebaseInstallations-dummy.m in Sources */, + 46EB2E00029C10 /* FIRInstallations.m in Sources */, + 46EB2E00029C70 /* FIRInstallationsAPIService.m in Sources */, + 46EB2E00029C20 /* FIRInstallationsAuthTokenResult.m in Sources */, + 46EB2E00029CA0 /* FIRInstallationsBackoffController.m in Sources */, + 46EB2E00029BF0 /* FIRInstallationsErrorUtil.m in Sources */, + 46EB2E00029C00 /* FIRInstallationsHTTPError.m in Sources */, + 46EB2E00029CB0 /* FIRInstallationsIDController.m in Sources */, + 46EB2E00029C50 /* FIRInstallationsIIDStore.m in Sources */, + 46EB2E00029C60 /* FIRInstallationsIIDTokenStore.m in Sources */, + 46EB2E00029C30 /* FIRInstallationsItem.m in Sources */, + 46EB2E00029C80 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + 46EB2E00029C40 /* FIRInstallationsLogger.m in Sources */, + 46EB2E00029CC0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + 46EB2E00029CD0 /* FIRInstallationsStore.m in Sources */, + 46EB2E00029CE0 /* FIRInstallationsStoredAuthToken.m in Sources */, + 46EB2E00029CF0 /* FIRInstallationsStoredItem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00029FD0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002A670 /* FirebaseMessaging-dummy.m in Sources */, - 46EB2E0002A0D0 /* FIRMessaging.m in Sources */, - 46EB2E0002A0E0 /* FIRMessagingAnalytics.m in Sources */, - 46EB2E0002A1E0 /* FIRMessagingAPNSInfo.m in Sources */, - 46EB2E0002A1F0 /* FIRMessagingAuthKeychain.m in Sources */, - 46EB2E0002A200 /* FIRMessagingAuthService.m in Sources */, - 46EB2E0002A210 /* FIRMessagingBackupExcludedPlist.m in Sources */, - 46EB2E0002A220 /* FIRMessagingCheckinPreferences.m in Sources */, - 46EB2E0002A230 /* FIRMessagingCheckinService.m in Sources */, - 46EB2E0002A240 /* FIRMessagingCheckinStore.m in Sources */, - 46EB2E0002A0F0 /* FIRMessagingConstants.m in Sources */, - 46EB2E0002A100 /* FIRMessagingContextManagerService.m in Sources */, - 46EB2E0002A110 /* FIRMessagingExtensionHelper.m in Sources */, - 46EB2E0002A250 /* FIRMessagingKeychain.m in Sources */, - 46EB2E0002A120 /* FIRMessagingLogger.m in Sources */, - 46EB2E0002A130 /* FIRMessagingPendingTopicsList.m in Sources */, - 46EB2E0002A140 /* FIRMessagingPersistentSyncMessage.m in Sources */, - 46EB2E0002A150 /* FIRMessagingPubSub.m in Sources */, - 46EB2E0002A160 /* FIRMessagingRemoteNotificationsProxy.m in Sources */, - 46EB2E0002A170 /* FIRMessagingRmqManager.m in Sources */, - 46EB2E0002A180 /* FIRMessagingSyncMessageManager.m in Sources */, - 46EB2E0002A260 /* FIRMessagingTokenDeleteOperation.m in Sources */, - 46EB2E0002A270 /* FIRMessagingTokenFetchOperation.m in Sources */, - 46EB2E0002A280 /* FIRMessagingTokenInfo.m in Sources */, - 46EB2E0002A290 /* FIRMessagingTokenManager.m in Sources */, - 46EB2E0002A2A0 /* FIRMessagingTokenOperation.m in Sources */, - 46EB2E0002A2B0 /* FIRMessagingTokenStore.m in Sources */, - 46EB2E0002A190 /* FIRMessagingTopicOperation.m in Sources */, - 46EB2E0002A1A0 /* FIRMessagingUtilities.m in Sources */, - 46EB2E0002A1D0 /* me.nanopb.c in Sources */, - 46EB2E0002A1B0 /* NSDictionary+FIRMessaging.m in Sources */, - 46EB2E0002A1C0 /* NSError+FIRMessaging.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002A6E0 /* Sources */ = { + 46EB2E0002A590 /* FirebaseMessaging-dummy.m in Sources */, + 46EB2E00029FF0 /* FIRMessaging.m in Sources */, + 46EB2E0002A000 /* FIRMessagingAnalytics.m in Sources */, + 46EB2E0002A100 /* FIRMessagingAPNSInfo.m in Sources */, + 46EB2E0002A110 /* FIRMessagingAuthKeychain.m in Sources */, + 46EB2E0002A120 /* FIRMessagingAuthService.m in Sources */, + 46EB2E0002A130 /* FIRMessagingBackupExcludedPlist.m in Sources */, + 46EB2E0002A140 /* FIRMessagingCheckinPreferences.m in Sources */, + 46EB2E0002A150 /* FIRMessagingCheckinService.m in Sources */, + 46EB2E0002A160 /* FIRMessagingCheckinStore.m in Sources */, + 46EB2E0002A010 /* FIRMessagingConstants.m in Sources */, + 46EB2E0002A020 /* FIRMessagingContextManagerService.m in Sources */, + 46EB2E0002A030 /* FIRMessagingExtensionHelper.m in Sources */, + 46EB2E0002A170 /* FIRMessagingKeychain.m in Sources */, + 46EB2E0002A040 /* FIRMessagingLogger.m in Sources */, + 46EB2E0002A050 /* FIRMessagingPendingTopicsList.m in Sources */, + 46EB2E0002A060 /* FIRMessagingPersistentSyncMessage.m in Sources */, + 46EB2E0002A070 /* FIRMessagingPubSub.m in Sources */, + 46EB2E0002A080 /* FIRMessagingRemoteNotificationsProxy.m in Sources */, + 46EB2E0002A090 /* FIRMessagingRmqManager.m in Sources */, + 46EB2E0002A0A0 /* FIRMessagingSyncMessageManager.m in Sources */, + 46EB2E0002A180 /* FIRMessagingTokenDeleteOperation.m in Sources */, + 46EB2E0002A190 /* FIRMessagingTokenFetchOperation.m in Sources */, + 46EB2E0002A1A0 /* FIRMessagingTokenInfo.m in Sources */, + 46EB2E0002A1B0 /* FIRMessagingTokenManager.m in Sources */, + 46EB2E0002A1C0 /* FIRMessagingTokenOperation.m in Sources */, + 46EB2E0002A1D0 /* FIRMessagingTokenStore.m in Sources */, + 46EB2E0002A0B0 /* FIRMessagingTopicOperation.m in Sources */, + 46EB2E0002A0C0 /* FIRMessagingUtilities.m in Sources */, + 46EB2E0002A0F0 /* me.nanopb.c in Sources */, + 46EB2E0002A0D0 /* NSDictionary+FIRMessaging.m in Sources */, + 46EB2E0002A0E0 /* NSError+FIRMessaging.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002A600 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002A700 /* FIRConfigValue.m in Sources */, - 46EB2E0002AA20 /* FirebaseRemoteConfig-dummy.m in Sources */, - 46EB2E0002A710 /* FIRRemoteConfig.m in Sources */, - 46EB2E0002A720 /* FIRRemoteConfigComponent.m in Sources */, - 46EB2E0002A730 /* RCNConfigContent.m in Sources */, - 46EB2E0002A740 /* RCNConfigDBManager.m in Sources */, - 46EB2E0002A750 /* RCNConfigExperiment.m in Sources */, - 46EB2E0002A760 /* RCNConfigFetch.m in Sources */, - 46EB2E0002A770 /* RCNConfigSettings.m in Sources */, - 46EB2E0002A780 /* RCNConstants3P.m in Sources */, - 46EB2E0002A790 /* RCNDevice.m in Sources */, - 46EB2E0002A7A0 /* RCNPersonalization.m in Sources */, - 46EB2E0002A7B0 /* RCNUserDefaultsManager.m in Sources */, + 46EB2E0002A620 /* FIRConfigValue.m in Sources */, + 46EB2E0002A940 /* FirebaseRemoteConfig-dummy.m in Sources */, + 46EB2E0002A630 /* FIRRemoteConfig.m in Sources */, + 46EB2E0002A640 /* FIRRemoteConfigComponent.m in Sources */, + 46EB2E0002A650 /* RCNConfigContent.m in Sources */, + 46EB2E0002A660 /* RCNConfigDBManager.m in Sources */, + 46EB2E0002A670 /* RCNConfigExperiment.m in Sources */, + 46EB2E0002A680 /* RCNConfigFetch.m in Sources */, + 46EB2E0002A690 /* RCNConfigSettings.m in Sources */, + 46EB2E0002A6A0 /* RCNConstants3P.m in Sources */, + 46EB2E0002A6B0 /* RCNDevice.m in Sources */, + 46EB2E0002A6C0 /* RCNPersonalization.m in Sources */, + 46EB2E0002A6D0 /* RCNUserDefaultsManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002AA90 /* Sources */ = { + 46EB2E0002A9B0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002AAB0 /* CertificateUtils.cpp in Sources */, - 46EB2E0002AAC0 /* ConnectionContextStore.cpp in Sources */, - 46EB2E0002AD60 /* Flipper-dummy.m in Sources */, - 46EB2E0002AAD0 /* FlipperBase64.cpp in Sources */, - 46EB2E0002AAE0 /* FlipperClient.cpp in Sources */, - 46EB2E0002AAF0 /* FlipperConnectionManagerImpl.cpp in Sources */, - 46EB2E0002AB00 /* FlipperRSocket.cpp in Sources */, - 46EB2E0002AB10 /* FlipperRSocketResponder.cpp in Sources */, - 46EB2E0002AB20 /* FlipperSocketProvider.cpp in Sources */, - 46EB2E0002AB30 /* FlipperState.cpp in Sources */, - 46EB2E0002AB40 /* FlipperStep.cpp in Sources */, - 46EB2E0002AB50 /* FlipperURLSerializer.cpp in Sources */, - 46EB2E0002AB60 /* Log.cpp in Sources */, + 46EB2E0002A9D0 /* CertificateUtils.cpp in Sources */, + 46EB2E0002A9E0 /* ConnectionContextStore.cpp in Sources */, + 46EB2E0002AC80 /* Flipper-dummy.m in Sources */, + 46EB2E0002A9F0 /* FlipperBase64.cpp in Sources */, + 46EB2E0002AA00 /* FlipperClient.cpp in Sources */, + 46EB2E0002AA10 /* FlipperConnectionManagerImpl.cpp in Sources */, + 46EB2E0002AA20 /* FlipperRSocket.cpp in Sources */, + 46EB2E0002AA30 /* FlipperRSocketResponder.cpp in Sources */, + 46EB2E0002AA40 /* FlipperSocketProvider.cpp in Sources */, + 46EB2E0002AA50 /* FlipperState.cpp in Sources */, + 46EB2E0002AA60 /* FlipperStep.cpp in Sources */, + 46EB2E0002AA70 /* FlipperURLSerializer.cpp in Sources */, + 46EB2E0002AA80 /* Log.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002ADD0 /* Sources */ = { + 46EB2E0002ACF0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002AE70 /* Flipper-Boost-iOSX-dummy.m in Sources */, - 46EB2E0002AE10 /* jump_combined_all_macho_gas.S in Sources */, - 46EB2E0002AE00 /* make_combined_all_macho_gas.S in Sources */, - 46EB2E0002ADF0 /* ontop_combined_all_macho_gas.S in Sources */, + 46EB2E0002AD90 /* Flipper-Boost-iOSX-dummy.m in Sources */, + 46EB2E0002AD30 /* jump_combined_all_macho_gas.S in Sources */, + 46EB2E0002AD20 /* make_combined_all_macho_gas.S in Sources */, + 46EB2E0002AD10 /* ontop_combined_all_macho_gas.S in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002AEE0 /* Sources */ = { + 46EB2E0002AE00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002AF10 /* bignum.cc in Sources */, - 46EB2E0002AF00 /* bignum-dtoa.cc in Sources */, - 46EB2E0002AF20 /* cached-powers.cc in Sources */, - 46EB2E0002AF30 /* diy-fp.cc in Sources */, - 46EB2E0002AF40 /* double-conversion.cc in Sources */, - 46EB2E0002AF50 /* fast-dtoa.cc in Sources */, - 46EB2E0002AF60 /* fixed-dtoa.cc in Sources */, - 46EB2E0002B070 /* Flipper-DoubleConversion-dummy.m in Sources */, - 46EB2E0002AF70 /* strtod.cc in Sources */, + 46EB2E0002AE30 /* bignum.cc in Sources */, + 46EB2E0002AE20 /* bignum-dtoa.cc in Sources */, + 46EB2E0002AE40 /* cached-powers.cc in Sources */, + 46EB2E0002AE50 /* diy-fp.cc in Sources */, + 46EB2E0002AE60 /* double-conversion.cc in Sources */, + 46EB2E0002AE70 /* fast-dtoa.cc in Sources */, + 46EB2E0002AE80 /* fixed-dtoa.cc in Sources */, + 46EB2E0002AF90 /* Flipper-DoubleConversion-dummy.m in Sources */, + 46EB2E0002AE90 /* strtod.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B0E0 /* Sources */ = { + 46EB2E0002B000 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002B220 /* Flipper-Fmt-dummy.m in Sources */, - 46EB2E0002B100 /* format.cc in Sources */, + 46EB2E0002B140 /* Flipper-Fmt-dummy.m in Sources */, + 46EB2E0002B020 /* format.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002B290 /* Sources */ = { + 46EB2E0002B1B0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002BBB0 /* Addr2Line.cpp in Sources */, - 46EB2E0002B9A0 /* Assume.cpp in Sources */, - 46EB2E0002BAD0 /* AsymmetricMemoryBarrier.cpp in Sources */, - 46EB2E0002BCD0 /* AsyncFileWriter.cpp in Sources */, - 46EB2E0002BCE0 /* AsyncLogWriter.cpp in Sources */, - 46EB2E0002B820 /* AsyncPipe.cpp in Sources */, - 46EB2E0002B830 /* AsyncServerSocket.cpp in Sources */, - 46EB2E0002B840 /* AsyncSignalHandler.cpp in Sources */, - 46EB2E0002B850 /* AsyncSocket.cpp in Sources */, - 46EB2E0002B860 /* AsyncSocketException.cpp in Sources */, - 46EB2E0002B870 /* AsyncSSLSocket.cpp in Sources */, - 46EB2E0002B2D0 /* AsyncStack.cpp in Sources */, - 46EB2E0002B880 /* AsyncTimeout.cpp in Sources */, - 46EB2E0002B530 /* AsyncTrace.cpp in Sources */, - 46EB2E0002B890 /* AsyncUDPSocket.cpp in Sources */, - 46EB2E0002B540 /* AtFork.cpp in Sources */, - 46EB2E0002BAE0 /* AtomicNotification.cpp in Sources */, - 46EB2E0002B710 /* Barrier.cpp in Sources */, - 46EB2E0002BC50 /* BatchSemaphore.cpp in Sources */, - 46EB2E0002BC60 /* Baton.cpp in Sources */, - 46EB2E0002B2E0 /* Benchmark.cpp in Sources */, - 46EB2E0002BCF0 /* BridgeFromGoogleLogging.cpp in Sources */, - 46EB2E0002BEB0 /* Builtins.cpp in Sources */, - 46EB2E0002B500 /* CacheLocality.cpp in Sources */, - 46EB2E0002B2F0 /* CancellationToken.cpp in Sources */, - 46EB2E0002B780 /* Checksum.cpp in Sources */, - 46EB2E0002B300 /* ClockGettimeWrappers.cpp in Sources */, - 46EB2E0002B600 /* Codel.cpp in Sources */, - 46EB2E0002B310 /* Conv.cpp in Sources */, - 46EB2E0002BFD0 /* Core.cpp in Sources */, - 46EB2E0002B770 /* Core.cpp in Sources */, - 46EB2E0002B610 /* CPUThreadPoolExecutor.cpp in Sources */, - 46EB2E0002B9B0 /* CString.cpp in Sources */, - 46EB2E0002B7B0 /* Cursor.cpp in Sources */, - 46EB2E0002BD00 /* CustomLogFormatter.cpp in Sources */, - 46EB2E0002B320 /* Demangle.cpp in Sources */, - 46EB2E0002BAF0 /* DistributedMutex.cpp in Sources */, - 46EB2E0002BBC0 /* Dwarf.cpp in Sources */, - 46EB2E0002B330 /* dynamic.cpp in Sources */, - 46EB2E0002B620 /* EDFThreadPoolExecutor.cpp in Sources */, - 46EB2E0002BBD0 /* Elf.cpp in Sources */, - 46EB2E0002BBE0 /* ElfCache.cpp in Sources */, - 46EB2E0002B8A0 /* EventBase.cpp in Sources */, - 46EB2E0002B8B0 /* EventBaseBackendBase.cpp in Sources */, - 46EB2E0002B8C0 /* EventBaseLocal.cpp in Sources */, - 46EB2E0002B8D0 /* EventBaseManager.cpp in Sources */, - 46EB2E0002B8E0 /* EventBaseThread.cpp in Sources */, - 46EB2E0002B8F0 /* EventHandler.cpp in Sources */, - 46EB2E0002B9C0 /* Exception.cpp in Sources */, - 46EB2E0002B340 /* ExceptionString.cpp in Sources */, - 46EB2E0002B350 /* ExceptionWrapper.cpp in Sources */, - 46EB2E0002B360 /* Executor.cpp in Sources */, - 46EB2E0002B630 /* ExecutorWithPriority.cpp in Sources */, - 46EB2E0002B520 /* F14Table.cpp in Sources */, - 46EB2E0002BF90 /* Fcntl.cpp in Sources */, - 46EB2E0002BC70 /* Fiber.cpp in Sources */, - 46EB2E0002BC80 /* FiberManager.cpp in Sources */, - 46EB2E0002B370 /* File.cpp in Sources */, - 46EB2E0002BD10 /* FileHandlerFactory.cpp in Sources */, - 46EB2E0002B380 /* FileUtil.cpp in Sources */, - 46EB2E0002BD20 /* FileWriterFactory.cpp in Sources */, - 46EB2E0002B390 /* Fingerprint.cpp in Sources */, - 46EB2E0002E8F0 /* Flipper-Folly-dummy.m in Sources */, - 46EB2E0002B3A0 /* FollyMemcpy.cpp in Sources */, - 46EB2E0002B3B0 /* Format.cpp in Sources */, - 46EB2E0002B550 /* Futex.cpp in Sources */, - 46EB2E0002B720 /* Future.cpp in Sources */, - 46EB2E0002B640 /* GlobalExecutor.cpp in Sources */, - 46EB2E0002B7C0 /* GlobalShutdownSocketSet.cpp in Sources */, - 46EB2E0002B650 /* GlobalThreadPoolList.cpp in Sources */, - 46EB2E0002BD30 /* GlogStyleFormatter.cpp in Sources */, - 46EB2E0002B3C0 /* GroupVarint.cpp in Sources */, - 46EB2E0002BC90 /* GuardPageAllocator.cpp in Sources */, - 46EB2E0002B2B0 /* Hardware.cpp in Sources */, - 46EB2E0002BB50 /* HardwareConcurrency.cpp in Sources */, - 46EB2E0002BB00 /* Hazptr.cpp in Sources */, - 46EB2E0002BB10 /* HazptrThreadPoolExecutor.cpp in Sources */, - 46EB2E0002B900 /* HHWheelTimer.cpp in Sources */, - 46EB2E0002BD40 /* ImmediateFileWriter.cpp in Sources */, - 46EB2E0002BD50 /* Init.cpp in Sources */, - 46EB2E0002BA70 /* Init.cpp in Sources */, - 46EB2E0002BD60 /* InitWeak.cpp in Sources */, - 46EB2E0002B660 /* InlineExecutor.cpp in Sources */, - 46EB2E0002B7D0 /* IOBuf.cpp in Sources */, - 46EB2E0002B7E0 /* IOBufQueue.cpp in Sources */, - 46EB2E0002B670 /* IOThreadPoolExecutor.cpp in Sources */, - 46EB2E0002B560 /* IPAddress.cpp in Sources */, - 46EB2E0002B3D0 /* IPAddress.cpp in Sources */, - 46EB2E0002B3E0 /* IPAddressV4.cpp in Sources */, - 46EB2E0002B3F0 /* IPAddressV6.cpp in Sources */, - 46EB2E0002B400 /* json.cpp in Sources */, - 46EB2E0002B410 /* json_patch.cpp in Sources */, - 46EB2E0002B420 /* json_pointer.cpp in Sources */, - 46EB2E0002BBF0 /* LineReader.cpp in Sources */, - 46EB2E0002BD70 /* LogCategory.cpp in Sources */, - 46EB2E0002BD80 /* LogCategoryConfig.cpp in Sources */, - 46EB2E0002BD90 /* LogConfig.cpp in Sources */, - 46EB2E0002BDA0 /* LogConfigParser.cpp in Sources */, - 46EB2E0002BDB0 /* Logger.cpp in Sources */, - 46EB2E0002BDC0 /* LoggerDB.cpp in Sources */, - 46EB2E0002BDD0 /* LogHandlerConfig.cpp in Sources */, - 46EB2E0002BDE0 /* LogLevel.cpp in Sources */, - 46EB2E0002BDF0 /* LogMessage.cpp in Sources */, - 46EB2E0002BE00 /* LogName.cpp in Sources */, - 46EB2E0002BE10 /* LogStream.cpp in Sources */, - 46EB2E0002BE20 /* LogStreamProcessor.cpp in Sources */, - 46EB2E0002B430 /* MacAddress.cpp in Sources */, - 46EB2E0002B9F0 /* MallctlHelper.cpp in Sources */, - 46EB2E0002BE90 /* Malloc.cpp in Sources */, - 46EB2E0002BEC0 /* Malloc.cpp in Sources */, - 46EB2E0002BA40 /* MallocImpl.cpp in Sources */, - 46EB2E0002B680 /* ManualExecutor.cpp in Sources */, - 46EB2E0002B730 /* ManualTimekeeper.cpp in Sources */, - 46EB2E0002B570 /* MemoryIdler.cpp in Sources */, - 46EB2E0002BB60 /* MemoryMapping.cpp in Sources */, - 46EB2E0002B690 /* MeteredExecutor.cpp in Sources */, - 46EB2E0002B440 /* MicroLock.cpp in Sources */, - 46EB2E0002BA50 /* NetOps.cpp in Sources */, - 46EB2E0002BA60 /* NetOpsDispatcher.cpp in Sources */, - 46EB2E0002BE30 /* ObjectToString.cpp in Sources */, - 46EB2E0002BFE0 /* ObserverManager.cpp in Sources */, - 46EB2E0002BED0 /* OpenSSL.cpp in Sources */, - 46EB2E0002BA80 /* OpenSSLCertUtils.cpp in Sources */, - 46EB2E0002BA90 /* OpenSSLHash.cpp in Sources */, - 46EB2E0002BAB0 /* OpenSSLSession.cpp in Sources */, - 46EB2E0002BAC0 /* OpenSSLThreading.cpp in Sources */, - 46EB2E0002B980 /* OpenSSLUtils.cpp in Sources */, - 46EB2E0002BB20 /* ParkingLot.cpp in Sources */, - 46EB2E0002B910 /* PasswordInFile.cpp in Sources */, - 46EB2E0002BB70 /* Pid.cpp in Sources */, - 46EB2E0002B740 /* Promise.cpp in Sources */, - 46EB2E0002BEE0 /* PThread.cpp in Sources */, - 46EB2E0002B6A0 /* QueuedImmediateExecutor.cpp in Sources */, - 46EB2E0002B510 /* QueueObserver.cpp in Sources */, - 46EB2E0002B450 /* Random.cpp in Sources */, - 46EB2E0002B580 /* RangeCommon.cpp in Sources */, - 46EB2E0002B590 /* RangeSse42.cpp in Sources */, - 46EB2E0002BE40 /* RateLimiter.cpp in Sources */, - 46EB2E0002B7F0 /* RecordIO.cpp in Sources */, - 46EB2E0002BA00 /* ReentrantAllocator.cpp in Sources */, - 46EB2E0002B920 /* Request.cpp in Sources */, - 46EB2E0002B9D0 /* SafeAssert.cpp in Sources */, - 46EB2E0002BA10 /* SanitizeAddress.cpp in Sources */, - 46EB2E0002BA20 /* SanitizeLeak.cpp in Sources */, - 46EB2E0002BB30 /* SanitizeThread.cpp in Sources */, - 46EB2E0002BFC0 /* Sched.cpp in Sources */, - 46EB2E0002B930 /* ScopedEventBaseThread.cpp in Sources */, - 46EB2E0002B460 /* ScopeGuard.cpp in Sources */, - 46EB2E0002BCA0 /* Semaphore.cpp in Sources */, - 46EB2E0002BCB0 /* SemaphoreBase.cpp in Sources */, - 46EB2E0002B6B0 /* SerialExecutor.cpp in Sources */, - 46EB2E0002B470 /* SharedMutex.cpp in Sources */, - 46EB2E0002B750 /* SharedPromise.cpp in Sources */, - 46EB2E0002BB80 /* Shell.cpp in Sources */, - 46EB2E0002B800 /* ShutdownSocketSet.cpp in Sources */, - 46EB2E0002BC00 /* SignalHandler.cpp in Sources */, - 46EB2E0002BCC0 /* SimpleLoopController.cpp in Sources */, - 46EB2E0002B480 /* Singleton.cpp in Sources */, - 46EB2E0002B5A0 /* SingletonStackTrace.cpp in Sources */, - 46EB2E0002B2C0 /* Sleeper.cpp in Sources */, - 46EB2E0002B490 /* SocketAddress.cpp in Sources */, - 46EB2E0002B5B0 /* SocketFastOpen.cpp in Sources */, - 46EB2E0002B810 /* SocketOptionMap.cpp in Sources */, - 46EB2E0002BF50 /* Sockets.cpp in Sources */, - 46EB2E0002B790 /* SpookyHashV1.cpp in Sources */, - 46EB2E0002B7A0 /* SpookyHashV2.cpp in Sources */, - 46EB2E0002B5C0 /* Sse.cpp in Sources */, - 46EB2E0002B940 /* SSLContext.cpp in Sources */, - 46EB2E0002B990 /* SSLErrors.cpp in Sources */, - 46EB2E0002B950 /* SSLOptions.cpp in Sources */, - 46EB2E0002BAA0 /* SSLSessionManager.cpp in Sources */, - 46EB2E0002BC10 /* StackTrace.cpp in Sources */, - 46EB2E0002BE50 /* StandardLogHandler.cpp in Sources */, - 46EB2E0002BE60 /* StandardLogHandlerFactory.cpp in Sources */, - 46EB2E0002B5D0 /* StaticSingletonManager.cpp in Sources */, - 46EB2E0002BFB0 /* Stdio.cpp in Sources */, - 46EB2E0002BFA0 /* Stdlib.cpp in Sources */, - 46EB2E0002B6C0 /* StrandExecutor.cpp in Sources */, - 46EB2E0002BE70 /* StreamHandlerFactory.cpp in Sources */, - 46EB2E0002BF80 /* String.cpp in Sources */, - 46EB2E0002B4A0 /* String.cpp in Sources */, - 46EB2E0002B4B0 /* Subprocess.cpp in Sources */, - 46EB2E0002BC20 /* SymbolizedFrame.cpp in Sources */, - 46EB2E0002BC30 /* SymbolizePrinter.cpp in Sources */, - 46EB2E0002BC40 /* Symbolizer.cpp in Sources */, - 46EB2E0002BF70 /* SysFile.cpp in Sources */, - 46EB2E0002BF60 /* SysMembarrier.cpp in Sources */, - 46EB2E0002BF40 /* SysMman.cpp in Sources */, - 46EB2E0002BEF0 /* SysResource.cpp in Sources */, - 46EB2E0002BF30 /* SysStat.cpp in Sources */, - 46EB2E0002BF20 /* SysTime.cpp in Sources */, - 46EB2E0002BF10 /* SysUio.cpp in Sources */, - 46EB2E0002BA30 /* ThreadCachedArena.cpp in Sources */, - 46EB2E0002B6D0 /* ThreadedExecutor.cpp in Sources */, - 46EB2E0002BB90 /* ThreadId.cpp in Sources */, - 46EB2E0002B5E0 /* ThreadLocalDetail.cpp in Sources */, - 46EB2E0002BBA0 /* ThreadName.cpp in Sources */, - 46EB2E0002B6E0 /* ThreadPoolExecutor.cpp in Sources */, - 46EB2E0002B760 /* ThreadWheelTimekeeper.cpp in Sources */, - 46EB2E0002BF00 /* Time.cpp in Sources */, - 46EB2E0002B6F0 /* TimedDrivableExecutor.cpp in Sources */, - 46EB2E0002B700 /* TimekeeperScheduledExecutor.cpp in Sources */, - 46EB2E0002B960 /* TimeoutManager.cpp in Sources */, - 46EB2E0002B4C0 /* TimeoutQueue.cpp in Sources */, - 46EB2E0002B9E0 /* ToAscii.cpp in Sources */, - 46EB2E0002B4D0 /* Try.cpp in Sources */, - 46EB2E0002B4E0 /* Unicode.cpp in Sources */, - 46EB2E0002B5F0 /* UniqueInstance.cpp in Sources */, - 46EB2E0002BEA0 /* Unistd.cpp in Sources */, - 46EB2E0002B4F0 /* Uri.cpp in Sources */, - 46EB2E0002B970 /* VirtualEventBase.cpp in Sources */, - 46EB2E0002BB40 /* WaitOptions.cpp in Sources */, - 46EB2E0002BE80 /* xlog.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002E9E0 /* Sources */ = { + 46EB2E0002BAD0 /* Addr2Line.cpp in Sources */, + 46EB2E0002B8C0 /* Assume.cpp in Sources */, + 46EB2E0002B9F0 /* AsymmetricMemoryBarrier.cpp in Sources */, + 46EB2E0002BBF0 /* AsyncFileWriter.cpp in Sources */, + 46EB2E0002BC00 /* AsyncLogWriter.cpp in Sources */, + 46EB2E0002B740 /* AsyncPipe.cpp in Sources */, + 46EB2E0002B750 /* AsyncServerSocket.cpp in Sources */, + 46EB2E0002B760 /* AsyncSignalHandler.cpp in Sources */, + 46EB2E0002B770 /* AsyncSocket.cpp in Sources */, + 46EB2E0002B780 /* AsyncSocketException.cpp in Sources */, + 46EB2E0002B790 /* AsyncSSLSocket.cpp in Sources */, + 46EB2E0002B1F0 /* AsyncStack.cpp in Sources */, + 46EB2E0002B7A0 /* AsyncTimeout.cpp in Sources */, + 46EB2E0002B450 /* AsyncTrace.cpp in Sources */, + 46EB2E0002B7B0 /* AsyncUDPSocket.cpp in Sources */, + 46EB2E0002B460 /* AtFork.cpp in Sources */, + 46EB2E0002BA00 /* AtomicNotification.cpp in Sources */, + 46EB2E0002B630 /* Barrier.cpp in Sources */, + 46EB2E0002BB70 /* BatchSemaphore.cpp in Sources */, + 46EB2E0002BB80 /* Baton.cpp in Sources */, + 46EB2E0002B200 /* Benchmark.cpp in Sources */, + 46EB2E0002BC10 /* BridgeFromGoogleLogging.cpp in Sources */, + 46EB2E0002BDD0 /* Builtins.cpp in Sources */, + 46EB2E0002B420 /* CacheLocality.cpp in Sources */, + 46EB2E0002B210 /* CancellationToken.cpp in Sources */, + 46EB2E0002B6A0 /* Checksum.cpp in Sources */, + 46EB2E0002B220 /* ClockGettimeWrappers.cpp in Sources */, + 46EB2E0002B520 /* Codel.cpp in Sources */, + 46EB2E0002B230 /* Conv.cpp in Sources */, + 46EB2E0002BEF0 /* Core.cpp in Sources */, + 46EB2E0002B690 /* Core.cpp in Sources */, + 46EB2E0002B530 /* CPUThreadPoolExecutor.cpp in Sources */, + 46EB2E0002B8D0 /* CString.cpp in Sources */, + 46EB2E0002B6D0 /* Cursor.cpp in Sources */, + 46EB2E0002BC20 /* CustomLogFormatter.cpp in Sources */, + 46EB2E0002B240 /* Demangle.cpp in Sources */, + 46EB2E0002BA10 /* DistributedMutex.cpp in Sources */, + 46EB2E0002BAE0 /* Dwarf.cpp in Sources */, + 46EB2E0002B250 /* dynamic.cpp in Sources */, + 46EB2E0002B540 /* EDFThreadPoolExecutor.cpp in Sources */, + 46EB2E0002BAF0 /* Elf.cpp in Sources */, + 46EB2E0002BB00 /* ElfCache.cpp in Sources */, + 46EB2E0002B7C0 /* EventBase.cpp in Sources */, + 46EB2E0002B7D0 /* EventBaseBackendBase.cpp in Sources */, + 46EB2E0002B7E0 /* EventBaseLocal.cpp in Sources */, + 46EB2E0002B7F0 /* EventBaseManager.cpp in Sources */, + 46EB2E0002B800 /* EventBaseThread.cpp in Sources */, + 46EB2E0002B810 /* EventHandler.cpp in Sources */, + 46EB2E0002B8E0 /* Exception.cpp in Sources */, + 46EB2E0002B260 /* ExceptionString.cpp in Sources */, + 46EB2E0002B270 /* ExceptionWrapper.cpp in Sources */, + 46EB2E0002B280 /* Executor.cpp in Sources */, + 46EB2E0002B550 /* ExecutorWithPriority.cpp in Sources */, + 46EB2E0002B440 /* F14Table.cpp in Sources */, + 46EB2E0002BEB0 /* Fcntl.cpp in Sources */, + 46EB2E0002BB90 /* Fiber.cpp in Sources */, + 46EB2E0002BBA0 /* FiberManager.cpp in Sources */, + 46EB2E0002B290 /* File.cpp in Sources */, + 46EB2E0002BC30 /* FileHandlerFactory.cpp in Sources */, + 46EB2E0002B2A0 /* FileUtil.cpp in Sources */, + 46EB2E0002BC40 /* FileWriterFactory.cpp in Sources */, + 46EB2E0002B2B0 /* Fingerprint.cpp in Sources */, + 46EB2E0002E810 /* Flipper-Folly-dummy.m in Sources */, + 46EB2E0002B2C0 /* FollyMemcpy.cpp in Sources */, + 46EB2E0002B2D0 /* Format.cpp in Sources */, + 46EB2E0002B470 /* Futex.cpp in Sources */, + 46EB2E0002B640 /* Future.cpp in Sources */, + 46EB2E0002B560 /* GlobalExecutor.cpp in Sources */, + 46EB2E0002B6E0 /* GlobalShutdownSocketSet.cpp in Sources */, + 46EB2E0002B570 /* GlobalThreadPoolList.cpp in Sources */, + 46EB2E0002BC50 /* GlogStyleFormatter.cpp in Sources */, + 46EB2E0002B2E0 /* GroupVarint.cpp in Sources */, + 46EB2E0002BBB0 /* GuardPageAllocator.cpp in Sources */, + 46EB2E0002B1D0 /* Hardware.cpp in Sources */, + 46EB2E0002BA70 /* HardwareConcurrency.cpp in Sources */, + 46EB2E0002BA20 /* Hazptr.cpp in Sources */, + 46EB2E0002BA30 /* HazptrThreadPoolExecutor.cpp in Sources */, + 46EB2E0002B820 /* HHWheelTimer.cpp in Sources */, + 46EB2E0002BC60 /* ImmediateFileWriter.cpp in Sources */, + 46EB2E0002BC70 /* Init.cpp in Sources */, + 46EB2E0002B990 /* Init.cpp in Sources */, + 46EB2E0002BC80 /* InitWeak.cpp in Sources */, + 46EB2E0002B580 /* InlineExecutor.cpp in Sources */, + 46EB2E0002B6F0 /* IOBuf.cpp in Sources */, + 46EB2E0002B700 /* IOBufQueue.cpp in Sources */, + 46EB2E0002B590 /* IOThreadPoolExecutor.cpp in Sources */, + 46EB2E0002B480 /* IPAddress.cpp in Sources */, + 46EB2E0002B2F0 /* IPAddress.cpp in Sources */, + 46EB2E0002B300 /* IPAddressV4.cpp in Sources */, + 46EB2E0002B310 /* IPAddressV6.cpp in Sources */, + 46EB2E0002B320 /* json.cpp in Sources */, + 46EB2E0002B330 /* json_patch.cpp in Sources */, + 46EB2E0002B340 /* json_pointer.cpp in Sources */, + 46EB2E0002BB10 /* LineReader.cpp in Sources */, + 46EB2E0002BC90 /* LogCategory.cpp in Sources */, + 46EB2E0002BCA0 /* LogCategoryConfig.cpp in Sources */, + 46EB2E0002BCB0 /* LogConfig.cpp in Sources */, + 46EB2E0002BCC0 /* LogConfigParser.cpp in Sources */, + 46EB2E0002BCD0 /* Logger.cpp in Sources */, + 46EB2E0002BCE0 /* LoggerDB.cpp in Sources */, + 46EB2E0002BCF0 /* LogHandlerConfig.cpp in Sources */, + 46EB2E0002BD00 /* LogLevel.cpp in Sources */, + 46EB2E0002BD10 /* LogMessage.cpp in Sources */, + 46EB2E0002BD20 /* LogName.cpp in Sources */, + 46EB2E0002BD30 /* LogStream.cpp in Sources */, + 46EB2E0002BD40 /* LogStreamProcessor.cpp in Sources */, + 46EB2E0002B350 /* MacAddress.cpp in Sources */, + 46EB2E0002B910 /* MallctlHelper.cpp in Sources */, + 46EB2E0002BDB0 /* Malloc.cpp in Sources */, + 46EB2E0002BDE0 /* Malloc.cpp in Sources */, + 46EB2E0002B960 /* MallocImpl.cpp in Sources */, + 46EB2E0002B5A0 /* ManualExecutor.cpp in Sources */, + 46EB2E0002B650 /* ManualTimekeeper.cpp in Sources */, + 46EB2E0002B490 /* MemoryIdler.cpp in Sources */, + 46EB2E0002BA80 /* MemoryMapping.cpp in Sources */, + 46EB2E0002B5B0 /* MeteredExecutor.cpp in Sources */, + 46EB2E0002B360 /* MicroLock.cpp in Sources */, + 46EB2E0002B970 /* NetOps.cpp in Sources */, + 46EB2E0002B980 /* NetOpsDispatcher.cpp in Sources */, + 46EB2E0002BD50 /* ObjectToString.cpp in Sources */, + 46EB2E0002BF00 /* ObserverManager.cpp in Sources */, + 46EB2E0002BDF0 /* OpenSSL.cpp in Sources */, + 46EB2E0002B9A0 /* OpenSSLCertUtils.cpp in Sources */, + 46EB2E0002B9B0 /* OpenSSLHash.cpp in Sources */, + 46EB2E0002B9D0 /* OpenSSLSession.cpp in Sources */, + 46EB2E0002B9E0 /* OpenSSLThreading.cpp in Sources */, + 46EB2E0002B8A0 /* OpenSSLUtils.cpp in Sources */, + 46EB2E0002BA40 /* ParkingLot.cpp in Sources */, + 46EB2E0002B830 /* PasswordInFile.cpp in Sources */, + 46EB2E0002BA90 /* Pid.cpp in Sources */, + 46EB2E0002B660 /* Promise.cpp in Sources */, + 46EB2E0002BE00 /* PThread.cpp in Sources */, + 46EB2E0002B5C0 /* QueuedImmediateExecutor.cpp in Sources */, + 46EB2E0002B430 /* QueueObserver.cpp in Sources */, + 46EB2E0002B370 /* Random.cpp in Sources */, + 46EB2E0002B4A0 /* RangeCommon.cpp in Sources */, + 46EB2E0002B4B0 /* RangeSse42.cpp in Sources */, + 46EB2E0002BD60 /* RateLimiter.cpp in Sources */, + 46EB2E0002B710 /* RecordIO.cpp in Sources */, + 46EB2E0002B920 /* ReentrantAllocator.cpp in Sources */, + 46EB2E0002B840 /* Request.cpp in Sources */, + 46EB2E0002B8F0 /* SafeAssert.cpp in Sources */, + 46EB2E0002B930 /* SanitizeAddress.cpp in Sources */, + 46EB2E0002B940 /* SanitizeLeak.cpp in Sources */, + 46EB2E0002BA50 /* SanitizeThread.cpp in Sources */, + 46EB2E0002BEE0 /* Sched.cpp in Sources */, + 46EB2E0002B850 /* ScopedEventBaseThread.cpp in Sources */, + 46EB2E0002B380 /* ScopeGuard.cpp in Sources */, + 46EB2E0002BBC0 /* Semaphore.cpp in Sources */, + 46EB2E0002BBD0 /* SemaphoreBase.cpp in Sources */, + 46EB2E0002B5D0 /* SerialExecutor.cpp in Sources */, + 46EB2E0002B390 /* SharedMutex.cpp in Sources */, + 46EB2E0002B670 /* SharedPromise.cpp in Sources */, + 46EB2E0002BAA0 /* Shell.cpp in Sources */, + 46EB2E0002B720 /* ShutdownSocketSet.cpp in Sources */, + 46EB2E0002BB20 /* SignalHandler.cpp in Sources */, + 46EB2E0002BBE0 /* SimpleLoopController.cpp in Sources */, + 46EB2E0002B3A0 /* Singleton.cpp in Sources */, + 46EB2E0002B4C0 /* SingletonStackTrace.cpp in Sources */, + 46EB2E0002B1E0 /* Sleeper.cpp in Sources */, + 46EB2E0002B3B0 /* SocketAddress.cpp in Sources */, + 46EB2E0002B4D0 /* SocketFastOpen.cpp in Sources */, + 46EB2E0002B730 /* SocketOptionMap.cpp in Sources */, + 46EB2E0002BE70 /* Sockets.cpp in Sources */, + 46EB2E0002B6B0 /* SpookyHashV1.cpp in Sources */, + 46EB2E0002B6C0 /* SpookyHashV2.cpp in Sources */, + 46EB2E0002B4E0 /* Sse.cpp in Sources */, + 46EB2E0002B860 /* SSLContext.cpp in Sources */, + 46EB2E0002B8B0 /* SSLErrors.cpp in Sources */, + 46EB2E0002B870 /* SSLOptions.cpp in Sources */, + 46EB2E0002B9C0 /* SSLSessionManager.cpp in Sources */, + 46EB2E0002BB30 /* StackTrace.cpp in Sources */, + 46EB2E0002BD70 /* StandardLogHandler.cpp in Sources */, + 46EB2E0002BD80 /* StandardLogHandlerFactory.cpp in Sources */, + 46EB2E0002B4F0 /* StaticSingletonManager.cpp in Sources */, + 46EB2E0002BED0 /* Stdio.cpp in Sources */, + 46EB2E0002BEC0 /* Stdlib.cpp in Sources */, + 46EB2E0002B5E0 /* StrandExecutor.cpp in Sources */, + 46EB2E0002BD90 /* StreamHandlerFactory.cpp in Sources */, + 46EB2E0002BEA0 /* String.cpp in Sources */, + 46EB2E0002B3C0 /* String.cpp in Sources */, + 46EB2E0002B3D0 /* Subprocess.cpp in Sources */, + 46EB2E0002BB40 /* SymbolizedFrame.cpp in Sources */, + 46EB2E0002BB50 /* SymbolizePrinter.cpp in Sources */, + 46EB2E0002BB60 /* Symbolizer.cpp in Sources */, + 46EB2E0002BE90 /* SysFile.cpp in Sources */, + 46EB2E0002BE80 /* SysMembarrier.cpp in Sources */, + 46EB2E0002BE60 /* SysMman.cpp in Sources */, + 46EB2E0002BE10 /* SysResource.cpp in Sources */, + 46EB2E0002BE50 /* SysStat.cpp in Sources */, + 46EB2E0002BE40 /* SysTime.cpp in Sources */, + 46EB2E0002BE30 /* SysUio.cpp in Sources */, + 46EB2E0002B950 /* ThreadCachedArena.cpp in Sources */, + 46EB2E0002B5F0 /* ThreadedExecutor.cpp in Sources */, + 46EB2E0002BAB0 /* ThreadId.cpp in Sources */, + 46EB2E0002B500 /* ThreadLocalDetail.cpp in Sources */, + 46EB2E0002BAC0 /* ThreadName.cpp in Sources */, + 46EB2E0002B600 /* ThreadPoolExecutor.cpp in Sources */, + 46EB2E0002B680 /* ThreadWheelTimekeeper.cpp in Sources */, + 46EB2E0002BE20 /* Time.cpp in Sources */, + 46EB2E0002B610 /* TimedDrivableExecutor.cpp in Sources */, + 46EB2E0002B620 /* TimekeeperScheduledExecutor.cpp in Sources */, + 46EB2E0002B880 /* TimeoutManager.cpp in Sources */, + 46EB2E0002B3E0 /* TimeoutQueue.cpp in Sources */, + 46EB2E0002B900 /* ToAscii.cpp in Sources */, + 46EB2E0002B3F0 /* Try.cpp in Sources */, + 46EB2E0002B400 /* Unicode.cpp in Sources */, + 46EB2E0002B510 /* UniqueInstance.cpp in Sources */, + 46EB2E0002BDC0 /* Unistd.cpp in Sources */, + 46EB2E0002B410 /* Uri.cpp in Sources */, + 46EB2E0002B890 /* VirtualEventBase.cpp in Sources */, + 46EB2E0002BA60 /* WaitOptions.cpp in Sources */, + 46EB2E0002BDA0 /* xlog.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002E900 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002EAD0 /* Flipper-PeerTalk-dummy.m in Sources */, - 46EB2E0002EA00 /* PTChannel.m in Sources */, - 46EB2E0002EA10 /* PTProtocol.m in Sources */, - 46EB2E0002EA20 /* PTUSBHub.m in Sources */, + 46EB2E0002E9F0 /* Flipper-PeerTalk-dummy.m in Sources */, + 46EB2E0002E920 /* PTChannel.m in Sources */, + 46EB2E0002E930 /* PTProtocol.m in Sources */, + 46EB2E0002E940 /* PTUSBHub.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002EB40 /* Sources */ = { + 46EB2E0002EA60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002EB60 /* BaselinesAsyncSocket.cpp in Sources */, - 46EB2E0002EB70 /* BaselinesTcp.cpp in Sources */, - 46EB2E0002EB80 /* Benchmarks.cpp in Sources */, - 46EB2E0002ED60 /* ChannelRequester.cpp in Sources */, - 46EB2E0002ED70 /* ChannelResponder.cpp in Sources */, - 46EB2E0002EEA0 /* ColdResumeHandler.cpp in Sources */, - 46EB2E0002ECD0 /* Common.cpp in Sources */, - 46EB2E0002ECE0 /* ConnectionSet.cpp in Sources */, - 46EB2E0002ED80 /* ConsumerBase.cpp in Sources */, - 46EB2E0002EBE0 /* ErrorCode.cpp in Sources */, - 46EB2E0002ED90 /* FireAndForgetResponder.cpp in Sources */, - 46EB2E0002EB90 /* FireForgetThroughputTcp.cpp in Sources */, - 46EB2E0002EBA0 /* Fixture.cpp in Sources */, - 46EB2E0002F580 /* Flipper-RSocket-dummy.m in Sources */, - 46EB2E0002EE80 /* Flowables.cpp in Sources */, - 46EB2E0002EBF0 /* Frame.cpp in Sources */, - 46EB2E0002EC00 /* FramedDuplexConnection.cpp in Sources */, - 46EB2E0002EC10 /* FramedReader.cpp in Sources */, - 46EB2E0002EC20 /* FrameFlags.cpp in Sources */, - 46EB2E0002EC30 /* FrameHeader.cpp in Sources */, - 46EB2E0002EC40 /* Framer.cpp in Sources */, - 46EB2E0002EC50 /* FrameSerializer.cpp in Sources */, - 46EB2E0002EC60 /* FrameSerializer_v1_0.cpp in Sources */, - 46EB2E0002EC70 /* FrameTransportImpl.cpp in Sources */, - 46EB2E0002EC80 /* FrameType.cpp in Sources */, - 46EB2E0002ECF0 /* KeepaliveTimer.cpp in Sources */, - 46EB2E0002EE60 /* Observables.cpp in Sources */, - 46EB2E0002EEB0 /* Payload.cpp in Sources */, - 46EB2E0002EC90 /* ProtocolVersion.cpp in Sources */, - 46EB2E0002EDA0 /* PublisherBase.cpp in Sources */, - 46EB2E0002EDB0 /* RequestResponseRequester.cpp in Sources */, - 46EB2E0002EDC0 /* RequestResponseResponder.cpp in Sources */, - 46EB2E0002EBB0 /* RequestResponseThroughputTcp.cpp in Sources */, - 46EB2E0002ECA0 /* ResumeIdentificationToken.cpp in Sources */, - 46EB2E0002EEC0 /* RSocket.cpp in Sources */, - 46EB2E0002EED0 /* RSocketClient.cpp in Sources */, - 46EB2E0002EEE0 /* RSocketParameters.cpp in Sources */, - 46EB2E0002EEF0 /* RSocketRequester.cpp in Sources */, - 46EB2E0002EF00 /* RSocketResponder.cpp in Sources */, - 46EB2E0002EF10 /* RSocketServer.cpp in Sources */, - 46EB2E0002EF20 /* RSocketServiceHandler.cpp in Sources */, - 46EB2E0002EDD0 /* RSocketStateMachine.cpp in Sources */, - 46EB2E0002EF30 /* RSocketStats.cpp in Sources */, - 46EB2E0002ECB0 /* ScheduledFrameProcessor.cpp in Sources */, - 46EB2E0002ECC0 /* ScheduledFrameTransport.cpp in Sources */, - 46EB2E0002ED00 /* ScheduledRSocketResponder.cpp in Sources */, - 46EB2E0002ED10 /* ScheduledSingleSubscription.cpp in Sources */, - 46EB2E0002ED20 /* ScheduledSubscription.cpp in Sources */, - 46EB2E0002ED30 /* SetupResumeAcceptor.cpp in Sources */, - 46EB2E0002EDE0 /* StreamFragmentAccumulator.cpp in Sources */, - 46EB2E0002EDF0 /* StreamRequester.cpp in Sources */, - 46EB2E0002EE00 /* StreamResponder.cpp in Sources */, - 46EB2E0002EE10 /* StreamStateMachineBase.cpp in Sources */, - 46EB2E0002EE20 /* StreamsWriter.cpp in Sources */, - 46EB2E0002EBC0 /* StreamThroughputMemory.cpp in Sources */, - 46EB2E0002EBD0 /* StreamThroughputTcp.cpp in Sources */, - 46EB2E0002EE90 /* Subscription.cpp in Sources */, - 46EB2E0002EE70 /* Subscription.cpp in Sources */, - 46EB2E0002ED40 /* SwappableEventBase.cpp in Sources */, - 46EB2E0002EE30 /* TcpConnectionAcceptor.cpp in Sources */, - 46EB2E0002EE40 /* TcpConnectionFactory.cpp in Sources */, - 46EB2E0002EE50 /* TcpDuplexConnection.cpp in Sources */, - 46EB2E0002ED50 /* WarmResumeManager.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002F5F0 /* Sources */ = { + 46EB2E0002EA80 /* BaselinesAsyncSocket.cpp in Sources */, + 46EB2E0002EA90 /* BaselinesTcp.cpp in Sources */, + 46EB2E0002EAA0 /* Benchmarks.cpp in Sources */, + 46EB2E0002EC80 /* ChannelRequester.cpp in Sources */, + 46EB2E0002EC90 /* ChannelResponder.cpp in Sources */, + 46EB2E0002EDC0 /* ColdResumeHandler.cpp in Sources */, + 46EB2E0002EBF0 /* Common.cpp in Sources */, + 46EB2E0002EC00 /* ConnectionSet.cpp in Sources */, + 46EB2E0002ECA0 /* ConsumerBase.cpp in Sources */, + 46EB2E0002EB00 /* ErrorCode.cpp in Sources */, + 46EB2E0002ECB0 /* FireAndForgetResponder.cpp in Sources */, + 46EB2E0002EAB0 /* FireForgetThroughputTcp.cpp in Sources */, + 46EB2E0002EAC0 /* Fixture.cpp in Sources */, + 46EB2E0002F4A0 /* Flipper-RSocket-dummy.m in Sources */, + 46EB2E0002EDA0 /* Flowables.cpp in Sources */, + 46EB2E0002EB10 /* Frame.cpp in Sources */, + 46EB2E0002EB20 /* FramedDuplexConnection.cpp in Sources */, + 46EB2E0002EB30 /* FramedReader.cpp in Sources */, + 46EB2E0002EB40 /* FrameFlags.cpp in Sources */, + 46EB2E0002EB50 /* FrameHeader.cpp in Sources */, + 46EB2E0002EB60 /* Framer.cpp in Sources */, + 46EB2E0002EB70 /* FrameSerializer.cpp in Sources */, + 46EB2E0002EB80 /* FrameSerializer_v1_0.cpp in Sources */, + 46EB2E0002EB90 /* FrameTransportImpl.cpp in Sources */, + 46EB2E0002EBA0 /* FrameType.cpp in Sources */, + 46EB2E0002EC10 /* KeepaliveTimer.cpp in Sources */, + 46EB2E0002ED80 /* Observables.cpp in Sources */, + 46EB2E0002EDD0 /* Payload.cpp in Sources */, + 46EB2E0002EBB0 /* ProtocolVersion.cpp in Sources */, + 46EB2E0002ECC0 /* PublisherBase.cpp in Sources */, + 46EB2E0002ECD0 /* RequestResponseRequester.cpp in Sources */, + 46EB2E0002ECE0 /* RequestResponseResponder.cpp in Sources */, + 46EB2E0002EAD0 /* RequestResponseThroughputTcp.cpp in Sources */, + 46EB2E0002EBC0 /* ResumeIdentificationToken.cpp in Sources */, + 46EB2E0002EDE0 /* RSocket.cpp in Sources */, + 46EB2E0002EDF0 /* RSocketClient.cpp in Sources */, + 46EB2E0002EE00 /* RSocketParameters.cpp in Sources */, + 46EB2E0002EE10 /* RSocketRequester.cpp in Sources */, + 46EB2E0002EE20 /* RSocketResponder.cpp in Sources */, + 46EB2E0002EE30 /* RSocketServer.cpp in Sources */, + 46EB2E0002EE40 /* RSocketServiceHandler.cpp in Sources */, + 46EB2E0002ECF0 /* RSocketStateMachine.cpp in Sources */, + 46EB2E0002EE50 /* RSocketStats.cpp in Sources */, + 46EB2E0002EBD0 /* ScheduledFrameProcessor.cpp in Sources */, + 46EB2E0002EBE0 /* ScheduledFrameTransport.cpp in Sources */, + 46EB2E0002EC20 /* ScheduledRSocketResponder.cpp in Sources */, + 46EB2E0002EC30 /* ScheduledSingleSubscription.cpp in Sources */, + 46EB2E0002EC40 /* ScheduledSubscription.cpp in Sources */, + 46EB2E0002EC50 /* SetupResumeAcceptor.cpp in Sources */, + 46EB2E0002ED00 /* StreamFragmentAccumulator.cpp in Sources */, + 46EB2E0002ED10 /* StreamRequester.cpp in Sources */, + 46EB2E0002ED20 /* StreamResponder.cpp in Sources */, + 46EB2E0002ED30 /* StreamStateMachineBase.cpp in Sources */, + 46EB2E0002ED40 /* StreamsWriter.cpp in Sources */, + 46EB2E0002EAE0 /* StreamThroughputMemory.cpp in Sources */, + 46EB2E0002EAF0 /* StreamThroughputTcp.cpp in Sources */, + 46EB2E0002EDB0 /* Subscription.cpp in Sources */, + 46EB2E0002ED90 /* Subscription.cpp in Sources */, + 46EB2E0002EC60 /* SwappableEventBase.cpp in Sources */, + 46EB2E0002ED50 /* TcpConnectionAcceptor.cpp in Sources */, + 46EB2E0002ED60 /* TcpConnectionFactory.cpp in Sources */, + 46EB2E0002ED70 /* TcpDuplexConnection.cpp in Sources */, + 46EB2E0002EC70 /* WarmResumeManager.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002F510 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002F7A0 /* FBCxxFollyDynamicConvert.mm in Sources */, - 46EB2E0002F7D0 /* FKPortForwardingServer.m in Sources */, - 46EB2E0002FBB0 /* FKUserDefaultsPlugin.m in Sources */, - 46EB2E0002FBC0 /* FKUserDefaultsSwizzleUtility.m in Sources */, - 46EB2E0002FBF0 /* FLEXNetworkObserver.mm in Sources */, - 46EB2E0002FC00 /* FLEXNetworkRecorder.mm in Sources */, - 46EB2E0002FC10 /* FLEXNetworkTransaction.m in Sources */, - 46EB2E0002FC20 /* FLEXUtility.mm in Sources */, - 46EB2E0002F610 /* FlipperClient.mm in Sources */, - 46EB2E0002F680 /* FlipperCppBridgingConnection.mm in Sources */, - 46EB2E0002F690 /* FlipperCppBridgingResponder.mm in Sources */, - 46EB2E0002F620 /* FlipperDiagnosticsViewController.m in Sources */, - 46EB2E0002FD10 /* FlipperKit-dummy.m in Sources */, - 46EB2E0002FA80 /* FlipperKitLayoutPlugin.mm in Sources */, - 46EB2E0002FAD0 /* FlipperKitNetworkPlugin.mm in Sources */, - 46EB2E0002FB90 /* FlipperKitReactPlugin.m in Sources */, - 46EB2E0002F630 /* FlipperPlatformWebSocket.mm in Sources */, - 46EB2E0002F640 /* FlipperUtil.m in Sources */, - 46EB2E0002F650 /* FlipperWebSocket.mm in Sources */, - 46EB2E0002F9E0 /* SKApplicationDescriptor.m in Sources */, - 46EB2E0002FAE0 /* SKBufferingPlugin.mm in Sources */, - 46EB2E0002F9F0 /* SKButtonDescriptor.mm in Sources */, - 46EB2E0002FA90 /* SKDescriptorMapper.mm in Sources */, - 46EB2E0002F660 /* SKEnvironmentVariables.m in Sources */, - 46EB2E0002F820 /* SKHiddenWindow.m in Sources */, - 46EB2E0002F800 /* SKHighlightOverlay.mm in Sources */, - 46EB2E0002F830 /* SKInvalidation.m in Sources */, - 46EB2E0002FC30 /* SKIOSNetworkAdapter.mm in Sources */, - 46EB2E0002F840 /* SKNamed.mm in Sources */, - 46EB2E0002F850 /* SKNodeDescriptor.mm in Sources */, - 46EB2E0002F860 /* SKObject.mm in Sources */, - 46EB2E0002FAF0 /* SKRequestInfo.m in Sources */, - 46EB2E0002FB00 /* SKResponseInfo.m in Sources */, - 46EB2E0002FA00 /* SKScrollViewDescriptor.m in Sources */, - 46EB2E0002F870 /* SKSearchResultNode.m in Sources */, - 46EB2E0002F670 /* SKStateUpdateCPPWrapper.mm in Sources */, - 46EB2E0002F880 /* SKSwizzle.mm in Sources */, - 46EB2E0002F890 /* SKTapListenerImpl.m in Sources */, - 46EB2E0002F8A0 /* SKTouch.m in Sources */, - 46EB2E0002FA10 /* SKViewControllerDescriptor.m in Sources */, - 46EB2E0002FA20 /* SKViewDescriptor.mm in Sources */, - 46EB2E0002F8B0 /* UICollectionView+SKInvalidation.mm in Sources */, - 46EB2E0002F8C0 /* UIColor+SKSonarValueCoder.mm in Sources */, - 46EB2E0002F8D0 /* UIView+SKInvalidation.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0002FD80 /* Sources */ = { + 46EB2E0002F6C0 /* FBCxxFollyDynamicConvert.mm in Sources */, + 46EB2E0002F6F0 /* FKPortForwardingServer.m in Sources */, + 46EB2E0002FAD0 /* FKUserDefaultsPlugin.m in Sources */, + 46EB2E0002FAE0 /* FKUserDefaultsSwizzleUtility.m in Sources */, + 46EB2E0002FB10 /* FLEXNetworkObserver.mm in Sources */, + 46EB2E0002FB20 /* FLEXNetworkRecorder.mm in Sources */, + 46EB2E0002FB30 /* FLEXNetworkTransaction.m in Sources */, + 46EB2E0002FB40 /* FLEXUtility.mm in Sources */, + 46EB2E0002F530 /* FlipperClient.mm in Sources */, + 46EB2E0002F5A0 /* FlipperCppBridgingConnection.mm in Sources */, + 46EB2E0002F5B0 /* FlipperCppBridgingResponder.mm in Sources */, + 46EB2E0002F540 /* FlipperDiagnosticsViewController.m in Sources */, + 46EB2E0002FC30 /* FlipperKit-dummy.m in Sources */, + 46EB2E0002F9A0 /* FlipperKitLayoutPlugin.mm in Sources */, + 46EB2E0002F9F0 /* FlipperKitNetworkPlugin.mm in Sources */, + 46EB2E0002FAB0 /* FlipperKitReactPlugin.m in Sources */, + 46EB2E0002F550 /* FlipperPlatformWebSocket.mm in Sources */, + 46EB2E0002F560 /* FlipperUtil.m in Sources */, + 46EB2E0002F570 /* FlipperWebSocket.mm in Sources */, + 46EB2E0002F900 /* SKApplicationDescriptor.m in Sources */, + 46EB2E0002FA00 /* SKBufferingPlugin.mm in Sources */, + 46EB2E0002F910 /* SKButtonDescriptor.mm in Sources */, + 46EB2E0002F9B0 /* SKDescriptorMapper.mm in Sources */, + 46EB2E0002F580 /* SKEnvironmentVariables.m in Sources */, + 46EB2E0002F740 /* SKHiddenWindow.m in Sources */, + 46EB2E0002F720 /* SKHighlightOverlay.mm in Sources */, + 46EB2E0002F750 /* SKInvalidation.m in Sources */, + 46EB2E0002FB50 /* SKIOSNetworkAdapter.mm in Sources */, + 46EB2E0002F760 /* SKNamed.mm in Sources */, + 46EB2E0002F770 /* SKNodeDescriptor.mm in Sources */, + 46EB2E0002F780 /* SKObject.mm in Sources */, + 46EB2E0002FA10 /* SKRequestInfo.m in Sources */, + 46EB2E0002FA20 /* SKResponseInfo.m in Sources */, + 46EB2E0002F920 /* SKScrollViewDescriptor.m in Sources */, + 46EB2E0002F790 /* SKSearchResultNode.m in Sources */, + 46EB2E0002F590 /* SKStateUpdateCPPWrapper.mm in Sources */, + 46EB2E0002F7A0 /* SKSwizzle.mm in Sources */, + 46EB2E0002F7B0 /* SKTapListenerImpl.m in Sources */, + 46EB2E0002F7C0 /* SKTouch.m in Sources */, + 46EB2E0002F930 /* SKViewControllerDescriptor.m in Sources */, + 46EB2E0002F940 /* SKViewDescriptor.mm in Sources */, + 46EB2E0002F7D0 /* UICollectionView+SKInvalidation.mm in Sources */, + 46EB2E0002F7E0 /* UIColor+SKSonarValueCoder.mm in Sources */, + 46EB2E0002F7F0 /* UIView+SKInvalidation.mm in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0002FCA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0002FDA0 /* GTMSessionFetcher.m in Sources */, - 46EB2E0002FE60 /* GTMSessionFetcher-dummy.m in Sources */, - 46EB2E0002FDB0 /* GTMSessionFetcherLogging.m in Sources */, - 46EB2E0002FDC0 /* GTMSessionFetcherService.m in Sources */, - 46EB2E0002FDD0 /* GTMSessionUploadFetcher.m in Sources */, + 46EB2E0002FCC0 /* GTMSessionFetcher.m in Sources */, + 46EB2E0002FD80 /* GTMSessionFetcher-dummy.m in Sources */, + 46EB2E0002FCD0 /* GTMSessionFetcherLogging.m in Sources */, + 46EB2E0002FCE0 /* GTMSessionFetcherService.m in Sources */, + 46EB2E0002FCF0 /* GTMSessionUploadFetcher.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0002FF50 /* Sources */ = { + 46EB2E0002FE70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000300D0 /* cct.nanopb.c in Sources */, - 46EB2E00030080 /* GDTCCTCompressionHelper.m in Sources */, - 46EB2E00030090 /* GDTCCTNanopbHelpers.m in Sources */, - 46EB2E000300A0 /* GDTCCTUploader.m in Sources */, - 46EB2E000300B0 /* GDTCCTUploadOperation.m in Sources */, - 46EB2E0002FF70 /* GDTCORAssert.m in Sources */, - 46EB2E0002FF80 /* GDTCORClock.m in Sources */, - 46EB2E0002FF90 /* GDTCORConsoleLogger.m in Sources */, - 46EB2E0002FFA0 /* GDTCORDirectorySizeTracker.m in Sources */, - 46EB2E0002FFB0 /* GDTCOREndpoints.m in Sources */, - 46EB2E0002FFC0 /* GDTCOREvent.m in Sources */, - 46EB2E000300C0 /* GDTCOREvent+GDTCCTSupport.m in Sources */, - 46EB2E0002FFE0 /* GDTCORFlatFileStorage.m in Sources */, - 46EB2E0002FFD0 /* GDTCORFlatFileStorage+Promises.m in Sources */, - 46EB2E0002FFF0 /* GDTCORLifecycle.m in Sources */, - 46EB2E00030000 /* GDTCORPlatform.m in Sources */, - 46EB2E00030010 /* GDTCORReachability.m in Sources */, - 46EB2E00030020 /* GDTCORRegistrar.m in Sources */, - 46EB2E00030030 /* GDTCORStorageEventSelector.m in Sources */, - 46EB2E00030040 /* GDTCORTransformer.m in Sources */, - 46EB2E00030050 /* GDTCORTransport.m in Sources */, - 46EB2E00030060 /* GDTCORUploadBatch.m in Sources */, - 46EB2E00030070 /* GDTCORUploadCoordinator.m in Sources */, - 46EB2E00030350 /* GoogleDataTransport-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000303C0 /* Sources */ = { + 46EB2E0002FFF0 /* cct.nanopb.c in Sources */, + 46EB2E0002FFA0 /* GDTCCTCompressionHelper.m in Sources */, + 46EB2E0002FFB0 /* GDTCCTNanopbHelpers.m in Sources */, + 46EB2E0002FFC0 /* GDTCCTUploader.m in Sources */, + 46EB2E0002FFD0 /* GDTCCTUploadOperation.m in Sources */, + 46EB2E0002FE90 /* GDTCORAssert.m in Sources */, + 46EB2E0002FEA0 /* GDTCORClock.m in Sources */, + 46EB2E0002FEB0 /* GDTCORConsoleLogger.m in Sources */, + 46EB2E0002FEC0 /* GDTCORDirectorySizeTracker.m in Sources */, + 46EB2E0002FED0 /* GDTCOREndpoints.m in Sources */, + 46EB2E0002FEE0 /* GDTCOREvent.m in Sources */, + 46EB2E0002FFE0 /* GDTCOREvent+GDTCCTSupport.m in Sources */, + 46EB2E0002FF00 /* GDTCORFlatFileStorage.m in Sources */, + 46EB2E0002FEF0 /* GDTCORFlatFileStorage+Promises.m in Sources */, + 46EB2E0002FF10 /* GDTCORLifecycle.m in Sources */, + 46EB2E0002FF20 /* GDTCORPlatform.m in Sources */, + 46EB2E0002FF30 /* GDTCORReachability.m in Sources */, + 46EB2E0002FF40 /* GDTCORRegistrar.m in Sources */, + 46EB2E0002FF50 /* GDTCORStorageEventSelector.m in Sources */, + 46EB2E0002FF60 /* GDTCORTransformer.m in Sources */, + 46EB2E0002FF70 /* GDTCORTransport.m in Sources */, + 46EB2E0002FF80 /* GDTCORUploadBatch.m in Sources */, + 46EB2E0002FF90 /* GDTCORUploadCoordinator.m in Sources */, + 46EB2E00030270 /* GoogleDataTransport-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000302E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000308D0 /* GoogleUtilities-dummy.m in Sources */, - 46EB2E000303E0 /* GULAppDelegateSwizzler.m in Sources */, - 46EB2E000304B0 /* GULAppEnvironmentUtil.m in Sources */, - 46EB2E00030460 /* GULHeartbeatDateStorage.m in Sources */, - 46EB2E00030470 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, - 46EB2E00030490 /* GULKeychainStorage.m in Sources */, - 46EB2E000304A0 /* GULKeychainUtils.m in Sources */, - 46EB2E000305C0 /* GULLogger.m in Sources */, - 46EB2E00030640 /* GULMutableDictionary.m in Sources */, - 46EB2E00030650 /* GULNetwork.m in Sources */, - 46EB2E00030660 /* GULNetworkConstants.m in Sources */, - 46EB2E00030670 /* GULNetworkURLSession.m in Sources */, - 46EB2E00030620 /* GULNSData+zlib.m in Sources */, - 46EB2E00030570 /* GULObjectSwizzler.m in Sources */, - 46EB2E00030730 /* GULProxy.m in Sources */, - 46EB2E000306F0 /* GULReachabilityChecker.m in Sources */, - 46EB2E00030740 /* GULRuntimeClassDiff.m in Sources */, - 46EB2E00030750 /* GULRuntimeClassSnapshot.m in Sources */, - 46EB2E00030760 /* GULRuntimeDiff.m in Sources */, - 46EB2E00030770 /* GULRuntimeSnapshot.m in Sources */, - 46EB2E00030780 /* GULRuntimeStateHelper.m in Sources */, - 46EB2E000303F0 /* GULSceneDelegateSwizzler.m in Sources */, - 46EB2E00030480 /* GULSecureCoding.m in Sources */, - 46EB2E00030580 /* GULSwizzledObject.m in Sources */, - 46EB2E000305F0 /* GULSwizzler.m in Sources */, - 46EB2E00030790 /* GULSwizzler+Unswizzle.m in Sources */, - 46EB2E000307A0 /* GULSwizzlingCache.m in Sources */, - 46EB2E000304C0 /* GULURLSessionDataResponse.m in Sources */, - 46EB2E00030840 /* GULUserDefaults.m in Sources */, - 46EB2E000304D0 /* NSURLSession+GULPromises.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00030940 /* Sources */ = { + 46EB2E000307F0 /* GoogleUtilities-dummy.m in Sources */, + 46EB2E00030300 /* GULAppDelegateSwizzler.m in Sources */, + 46EB2E000303D0 /* GULAppEnvironmentUtil.m in Sources */, + 46EB2E00030380 /* GULHeartbeatDateStorage.m in Sources */, + 46EB2E00030390 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, + 46EB2E000303B0 /* GULKeychainStorage.m in Sources */, + 46EB2E000303C0 /* GULKeychainUtils.m in Sources */, + 46EB2E000304E0 /* GULLogger.m in Sources */, + 46EB2E00030560 /* GULMutableDictionary.m in Sources */, + 46EB2E00030570 /* GULNetwork.m in Sources */, + 46EB2E00030580 /* GULNetworkConstants.m in Sources */, + 46EB2E00030590 /* GULNetworkURLSession.m in Sources */, + 46EB2E00030540 /* GULNSData+zlib.m in Sources */, + 46EB2E00030490 /* GULObjectSwizzler.m in Sources */, + 46EB2E00030650 /* GULProxy.m in Sources */, + 46EB2E00030610 /* GULReachabilityChecker.m in Sources */, + 46EB2E00030660 /* GULRuntimeClassDiff.m in Sources */, + 46EB2E00030670 /* GULRuntimeClassSnapshot.m in Sources */, + 46EB2E00030680 /* GULRuntimeDiff.m in Sources */, + 46EB2E00030690 /* GULRuntimeSnapshot.m in Sources */, + 46EB2E000306A0 /* GULRuntimeStateHelper.m in Sources */, + 46EB2E00030310 /* GULSceneDelegateSwizzler.m in Sources */, + 46EB2E000303A0 /* GULSecureCoding.m in Sources */, + 46EB2E000304A0 /* GULSwizzledObject.m in Sources */, + 46EB2E00030510 /* GULSwizzler.m in Sources */, + 46EB2E000306B0 /* GULSwizzler+Unswizzle.m in Sources */, + 46EB2E000306C0 /* GULSwizzlingCache.m in Sources */, + 46EB2E000303E0 /* GULURLSessionDataResponse.m in Sources */, + 46EB2E00030760 /* GULUserDefaults.m in Sources */, + 46EB2E000303F0 /* NSURLSession+GULPromises.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00030860 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00030F60 /* JWT-dummy.m in Sources */, - 46EB2E000309A0 /* JWTAlgorithmAsymmetricBase.m in Sources */, - 46EB2E000309D0 /* JWTAlgorithmDataHolder.m in Sources */, - 46EB2E000309C0 /* JWTAlgorithmDataHolder+FluentStyle.m in Sources */, - 46EB2E000309E0 /* JWTAlgorithmDataHolderChain.m in Sources */, - 46EB2E00030970 /* JWTAlgorithmErrorDescription.m in Sources */, - 46EB2E00030960 /* JWTAlgorithmErrorDescription+Subclass.m in Sources */, - 46EB2E000309B0 /* JWTAlgorithmESBase.m in Sources */, - 46EB2E00030980 /* JWTAlgorithmFactory.m in Sources */, - 46EB2E000309F0 /* JWTAlgorithmHSBase.m in Sources */, - 46EB2E00030990 /* JWTAlgorithmNone.m in Sources */, - 46EB2E00030A00 /* JWTAlgorithmRSBase.m in Sources */, - 46EB2E00030BF0 /* JWTBase64Coder.m in Sources */, - 46EB2E00030B80 /* JWTBuilder+FluentStyle.m in Sources */, - 46EB2E00030A80 /* JWTClaim.m in Sources */, - 46EB2E00030A90 /* JWTClaimBase.m in Sources */, - 46EB2E00030AA0 /* JWTClaimSerializerBase.m in Sources */, - 46EB2E00030AB0 /* JWTClaimSerializerVariations.m in Sources */, - 46EB2E00030AC0 /* JWTClaimsProviderBase.m in Sources */, - 46EB2E00030AD0 /* JWTClaimsSet.m in Sources */, - 46EB2E00030AE0 /* JWTClaimsSetBase.m in Sources */, - 46EB2E00030AF0 /* JWTClaimsSetCoordinatorBase.m in Sources */, - 46EB2E00030B00 /* JWTClaimsSetDSLBase.m in Sources */, - 46EB2E00030B10 /* JWTClaimsSetSerializer.m in Sources */, - 46EB2E00030B20 /* JWTClaimsSetSerializerBase.m in Sources */, - 46EB2E00030B30 /* JWTClaimsSetVerifier.m in Sources */, - 46EB2E00030B40 /* JWTClaimsSetVerifierBase.m in Sources */, - 46EB2E00030B50 /* JWTClaimVariations.m in Sources */, - 46EB2E00030B60 /* JWTClaimVerifierBase.m in Sources */, - 46EB2E00030B70 /* JWTClaimVerifierVariations.m in Sources */, - 46EB2E00030BD0 /* JWTCoding.m in Sources */, - 46EB2E00030B90 /* JWTCoding+ResultTypes.m in Sources */, - 46EB2E00030BA0 /* JWTCoding+VersionOne.m in Sources */, - 46EB2E00030BB0 /* JWTCoding+VersionThree.m in Sources */, - 46EB2E00030BC0 /* JWTCoding+VersionTwo.m in Sources */, - 46EB2E00030BE0 /* JWTCodingBuilder+FluentStyle.m in Sources */, - 46EB2E00030A10 /* JWTCryptoKey.m in Sources */, - 46EB2E00030A30 /* JWTCryptoKeyExtractor.m in Sources */, - 46EB2E00030A20 /* JWTCryptoKeyExtractor+FluentStyle.m in Sources */, - 46EB2E00030A70 /* JWTCryptoSecurity.m in Sources */, - 46EB2E00030A40 /* JWTCryptoSecurity+ErrorHandling.m in Sources */, - 46EB2E00030A50 /* JWTCryptoSecurity+ExternalRepresentation.m in Sources */, - 46EB2E00030A60 /* JWTCryptoSecurity+Extraction.m in Sources */, - 46EB2E00030C00 /* JWTErrorDescription.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00030FD0 /* Sources */ = { + 46EB2E00030CF0 /* JWT-dummy.m in Sources */, + 46EB2E000308C0 /* JWTAlgorithmAsymmetricBase.m in Sources */, + 46EB2E000308F0 /* JWTAlgorithmDataHolder.m in Sources */, + 46EB2E000308E0 /* JWTAlgorithmDataHolder+FluentStyle.m in Sources */, + 46EB2E00030900 /* JWTAlgorithmDataHolderChain.m in Sources */, + 46EB2E00030890 /* JWTAlgorithmErrorDescription.m in Sources */, + 46EB2E00030880 /* JWTAlgorithmErrorDescription+Subclass.m in Sources */, + 46EB2E000308D0 /* JWTAlgorithmESBase.m in Sources */, + 46EB2E000308A0 /* JWTAlgorithmFactory.m in Sources */, + 46EB2E00030910 /* JWTAlgorithmHSBase.m in Sources */, + 46EB2E000308B0 /* JWTAlgorithmNone.m in Sources */, + 46EB2E00030920 /* JWTAlgorithmRSBase.m in Sources */, + 46EB2E00030A50 /* JWTBase64Coder.m in Sources */, + 46EB2E000309E0 /* JWTBuilder+FluentStyle.m in Sources */, + 46EB2E000309A0 /* JWTClaim.m in Sources */, + 46EB2E000309B0 /* JWTClaimsSet.m in Sources */, + 46EB2E000309C0 /* JWTClaimsSetSerializer.m in Sources */, + 46EB2E000309D0 /* JWTClaimsSetVerifier.m in Sources */, + 46EB2E00030A30 /* JWTCoding.m in Sources */, + 46EB2E000309F0 /* JWTCoding+ResultTypes.m in Sources */, + 46EB2E00030A00 /* JWTCoding+VersionOne.m in Sources */, + 46EB2E00030A10 /* JWTCoding+VersionThree.m in Sources */, + 46EB2E00030A20 /* JWTCoding+VersionTwo.m in Sources */, + 46EB2E00030A40 /* JWTCodingBuilder+FluentStyle.m in Sources */, + 46EB2E00030930 /* JWTCryptoKey.m in Sources */, + 46EB2E00030950 /* JWTCryptoKeyExtractor.m in Sources */, + 46EB2E00030940 /* JWTCryptoKeyExtractor+FluentStyle.m in Sources */, + 46EB2E00030990 /* JWTCryptoSecurity.m in Sources */, + 46EB2E00030960 /* JWTCryptoSecurity+ErrorHandling.m in Sources */, + 46EB2E00030970 /* JWTCryptoSecurity+ExternalRepresentation.m in Sources */, + 46EB2E00030980 /* JWTCryptoSecurity+Extraction.m in Sources */, + 46EB2E00030A60 /* JWTErrorDescription.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00030D60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00031080 /* async.c in Sources */, - 46EB2E00031190 /* bsd-ifaddrs.c in Sources */, - 46EB2E00031090 /* core.c in Sources */, - 46EB2E000311A0 /* darwin.c in Sources */, - 46EB2E000311D0 /* darwin-proctitle.c in Sources */, - 46EB2E000310A0 /* dl.c in Sources */, - 46EB2E000310B0 /* fs.c in Sources */, - 46EB2E00030FF0 /* fs-poll.c in Sources */, - 46EB2E000311B0 /* fsevents.c in Sources */, - 46EB2E000310C0 /* getaddrinfo.c in Sources */, - 46EB2E000310D0 /* getnameinfo.c in Sources */, - 46EB2E00031000 /* idna.c in Sources */, - 46EB2E00031010 /* inet.c in Sources */, - 46EB2E000311C0 /* kqueue.c in Sources */, - 46EB2E00031330 /* Libuv-gRPC-dummy.m in Sources */, - 46EB2E000310E0 /* loop.c in Sources */, - 46EB2E000310F0 /* loop-watcher.c in Sources */, - 46EB2E00031100 /* pipe.c in Sources */, - 46EB2E00031110 /* poll.c in Sources */, - 46EB2E00031120 /* process.c in Sources */, - 46EB2E000311E0 /* proctitle.c in Sources */, - 46EB2E00031130 /* signal.c in Sources */, - 46EB2E00031140 /* stream.c in Sources */, - 46EB2E00031020 /* strscpy.c in Sources */, - 46EB2E00031150 /* tcp.c in Sources */, - 46EB2E00031160 /* thread.c in Sources */, - 46EB2E00031030 /* threadpool.c in Sources */, - 46EB2E00031040 /* timer.c in Sources */, - 46EB2E00031170 /* tty.c in Sources */, - 46EB2E00031180 /* udp.c in Sources */, - 46EB2E00031060 /* uv-common.c in Sources */, - 46EB2E00031050 /* uv-data-getter-setters.c in Sources */, - 46EB2E00031070 /* version.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00031420 /* Sources */ = { + 46EB2E00030E10 /* async.c in Sources */, + 46EB2E00030F20 /* bsd-ifaddrs.c in Sources */, + 46EB2E00030E20 /* core.c in Sources */, + 46EB2E00030F30 /* darwin.c in Sources */, + 46EB2E00030F60 /* darwin-proctitle.c in Sources */, + 46EB2E00030E30 /* dl.c in Sources */, + 46EB2E00030E40 /* fs.c in Sources */, + 46EB2E00030D80 /* fs-poll.c in Sources */, + 46EB2E00030F40 /* fsevents.c in Sources */, + 46EB2E00030E50 /* getaddrinfo.c in Sources */, + 46EB2E00030E60 /* getnameinfo.c in Sources */, + 46EB2E00030D90 /* idna.c in Sources */, + 46EB2E00030DA0 /* inet.c in Sources */, + 46EB2E00030F50 /* kqueue.c in Sources */, + 46EB2E000310C0 /* Libuv-gRPC-dummy.m in Sources */, + 46EB2E00030E70 /* loop.c in Sources */, + 46EB2E00030E80 /* loop-watcher.c in Sources */, + 46EB2E00030E90 /* pipe.c in Sources */, + 46EB2E00030EA0 /* poll.c in Sources */, + 46EB2E00030EB0 /* process.c in Sources */, + 46EB2E00030F70 /* proctitle.c in Sources */, + 46EB2E00030EC0 /* signal.c in Sources */, + 46EB2E00030ED0 /* stream.c in Sources */, + 46EB2E00030DB0 /* strscpy.c in Sources */, + 46EB2E00030EE0 /* tcp.c in Sources */, + 46EB2E00030EF0 /* thread.c in Sources */, + 46EB2E00030DC0 /* threadpool.c in Sources */, + 46EB2E00030DD0 /* timer.c in Sources */, + 46EB2E00030F00 /* tty.c in Sources */, + 46EB2E00030F10 /* udp.c in Sources */, + 46EB2E00030DF0 /* uv-common.c in Sources */, + 46EB2E00030DE0 /* uv-data-getter-setters.c in Sources */, + 46EB2E00030E00 /* version.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000311B0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00031550 /* FBLPromise.m in Sources */, - 46EB2E00031440 /* FBLPromise+All.m in Sources */, - 46EB2E00031450 /* FBLPromise+Always.m in Sources */, - 46EB2E00031460 /* FBLPromise+Any.m in Sources */, - 46EB2E00031470 /* FBLPromise+Async.m in Sources */, - 46EB2E00031480 /* FBLPromise+Await.m in Sources */, - 46EB2E00031490 /* FBLPromise+Catch.m in Sources */, - 46EB2E000314A0 /* FBLPromise+Delay.m in Sources */, - 46EB2E000314B0 /* FBLPromise+Do.m in Sources */, - 46EB2E000314C0 /* FBLPromise+Race.m in Sources */, - 46EB2E000314D0 /* FBLPromise+Recover.m in Sources */, - 46EB2E000314E0 /* FBLPromise+Reduce.m in Sources */, - 46EB2E000314F0 /* FBLPromise+Retry.m in Sources */, - 46EB2E00031500 /* FBLPromise+Testing.m in Sources */, - 46EB2E00031510 /* FBLPromise+Then.m in Sources */, - 46EB2E00031520 /* FBLPromise+Timeout.m in Sources */, - 46EB2E00031530 /* FBLPromise+Validate.m in Sources */, - 46EB2E00031540 /* FBLPromise+Wrap.m in Sources */, - 46EB2E00031560 /* FBLPromiseError.m in Sources */, - 46EB2E00031730 /* PromisesObjC-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000317A0 /* Sources */ = { + 46EB2E000312E0 /* FBLPromise.m in Sources */, + 46EB2E000311D0 /* FBLPromise+All.m in Sources */, + 46EB2E000311E0 /* FBLPromise+Always.m in Sources */, + 46EB2E000311F0 /* FBLPromise+Any.m in Sources */, + 46EB2E00031200 /* FBLPromise+Async.m in Sources */, + 46EB2E00031210 /* FBLPromise+Await.m in Sources */, + 46EB2E00031220 /* FBLPromise+Catch.m in Sources */, + 46EB2E00031230 /* FBLPromise+Delay.m in Sources */, + 46EB2E00031240 /* FBLPromise+Do.m in Sources */, + 46EB2E00031250 /* FBLPromise+Race.m in Sources */, + 46EB2E00031260 /* FBLPromise+Recover.m in Sources */, + 46EB2E00031270 /* FBLPromise+Reduce.m in Sources */, + 46EB2E00031280 /* FBLPromise+Retry.m in Sources */, + 46EB2E00031290 /* FBLPromise+Testing.m in Sources */, + 46EB2E000312A0 /* FBLPromise+Then.m in Sources */, + 46EB2E000312B0 /* FBLPromise+Timeout.m in Sources */, + 46EB2E000312C0 /* FBLPromise+Validate.m in Sources */, + 46EB2E000312D0 /* FBLPromise+Wrap.m in Sources */, + 46EB2E000312F0 /* FBLPromiseError.m in Sources */, + 46EB2E000314C0 /* PromisesObjC-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00031530 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000318B0 /* Assume.cpp in Sources */, - 46EB2E00032B90 /* AsymmetricMemoryBarrier.cpp in Sources */, - 46EB2E00032D20 /* AsyncStack.cpp in Sources */, - 46EB2E00032C50 /* AsyncTimeout.cpp in Sources */, - 46EB2E00032D80 /* AsyncTrace.cpp in Sources */, - 46EB2E00032D90 /* AtFork.cpp in Sources */, - 46EB2E00032BA0 /* AtomicNotification.cpp in Sources */, - 46EB2E000329B0 /* Barrier.cpp in Sources */, - 46EB2E00032E10 /* BatchSemaphore.cpp in Sources */, - 46EB2E00032E20 /* Baton.cpp in Sources */, - 46EB2E00032B40 /* CacheLocality.cpp in Sources */, - 46EB2E00032A20 /* Codel.cpp in Sources */, - 46EB2E000317D0 /* Conv.cpp in Sources */, - 46EB2E00032A10 /* Core.cpp in Sources */, - 46EB2E00032A30 /* CPUThreadPoolExecutor.cpp in Sources */, - 46EB2E000318C0 /* CString.cpp in Sources */, - 46EB2E00032CF0 /* Cursor.cpp in Sources */, - 46EB2E00032B50 /* DeadlockDetector.cpp in Sources */, - 46EB2E000317E0 /* Demangle.cpp in Sources */, - 46EB2E00032BB0 /* DistributedMutex.cpp in Sources */, - 46EB2E00031850 /* dynamic.cpp in Sources */, - 46EB2E00032A40 /* EDFThreadPoolExecutor.cpp in Sources */, - 46EB2E00032C60 /* EventBase.cpp in Sources */, - 46EB2E00032C70 /* EventBaseBackendBase.cpp in Sources */, - 46EB2E00032C80 /* EventBaseLocal.cpp in Sources */, - 46EB2E00032C90 /* EventBaseManager.cpp in Sources */, - 46EB2E00032CA0 /* EventHandler.cpp in Sources */, - 46EB2E000318D0 /* Exception.cpp in Sources */, - 46EB2E00032D30 /* ExceptionString.cpp in Sources */, - 46EB2E00032D40 /* ExceptionWrapper.cpp in Sources */, - 46EB2E00032D50 /* Executor.cpp in Sources */, - 46EB2E00032A50 /* ExecutorWithPriority.cpp in Sources */, - 46EB2E00031880 /* F14Table.cpp in Sources */, - 46EB2E00032E30 /* Fiber.cpp in Sources */, - 46EB2E00032E40 /* FiberManager.cpp in Sources */, - 46EB2E000317F0 /* FileUtil.cpp in Sources */, - 46EB2E00031800 /* Format.cpp in Sources */, - 46EB2E00032DA0 /* Futex.cpp in Sources */, - 46EB2E000329C0 /* Future.cpp in Sources */, - 46EB2E00032A60 /* GlobalExecutor.cpp in Sources */, - 46EB2E00032A70 /* GlobalThreadPoolList.cpp in Sources */, - 46EB2E00032E50 /* GuardPageAllocator.cpp in Sources */, - 46EB2E00032C20 /* Hardware.cpp in Sources */, - 46EB2E00032B70 /* HardwareConcurrency.cpp in Sources */, - 46EB2E00032BC0 /* Hazptr.cpp in Sources */, - 46EB2E00032BD0 /* HazptrThreadPoolExecutor.cpp in Sources */, - 46EB2E00032CB0 /* HHWheelTimer.cpp in Sources */, - 46EB2E00032A80 /* InlineExecutor.cpp in Sources */, - 46EB2E00032D00 /* IOBuf.cpp in Sources */, - 46EB2E00032D10 /* IOBufQueue.cpp in Sources */, - 46EB2E00032A90 /* IOThreadPoolDeadlockDetectorObserver.cpp in Sources */, - 46EB2E00032AA0 /* IOThreadPoolExecutor.cpp in Sources */, - 46EB2E00031860 /* json.cpp in Sources */, - 46EB2E00031870 /* json_pointer.cpp in Sources */, - 46EB2E00032DF0 /* MallctlHelper.cpp in Sources */, - 46EB2E000318E0 /* MallocImpl.cpp in Sources */, - 46EB2E00032AB0 /* ManualExecutor.cpp in Sources */, - 46EB2E000329D0 /* ManualTimekeeper.cpp in Sources */, - 46EB2E00032DB0 /* MemoryIdler.cpp in Sources */, - 46EB2E00032AC0 /* MeteredExecutor.cpp in Sources */, - 46EB2E000318F0 /* NetOps.cpp in Sources */, - 46EB2E00032BE0 /* ParkingLot.cpp in Sources */, - 46EB2E00032E90 /* Pid.cpp in Sources */, - 46EB2E000329E0 /* Promise.cpp in Sources */, - 46EB2E00032AD0 /* QueuedImmediateExecutor.cpp in Sources */, - 46EB2E00032B60 /* QueueObserver.cpp in Sources */, - 46EB2E00034410 /* RCT-Folly-dummy.m in Sources */, - 46EB2E00032BF0 /* Rcu.cpp in Sources */, - 46EB2E00032CC0 /* Request.cpp in Sources */, - 46EB2E00031810 /* SafeAssert.cpp in Sources */, - 46EB2E00032C00 /* SanitizeThread.cpp in Sources */, - 46EB2E00031830 /* ScopeGuard.cpp in Sources */, - 46EB2E00032E60 /* Semaphore.cpp in Sources */, - 46EB2E00032E70 /* SemaphoreBase.cpp in Sources */, - 46EB2E00032AE0 /* SerialExecutor.cpp in Sources */, - 46EB2E00032D60 /* SharedMutex.cpp in Sources */, - 46EB2E000329F0 /* SharedPromise.cpp in Sources */, - 46EB2E00032E80 /* SimpleLoopController.cpp in Sources */, - 46EB2E00032D70 /* Singleton.cpp in Sources */, - 46EB2E00032DC0 /* SingletonStackTrace.cpp in Sources */, - 46EB2E00032C30 /* Sleeper.cpp in Sources */, - 46EB2E000318A0 /* SpookyHashV2.cpp in Sources */, - 46EB2E00032DD0 /* StaticSingletonManager.cpp in Sources */, - 46EB2E00032AF0 /* StrandExecutor.cpp in Sources */, - 46EB2E000317C0 /* String.cpp in Sources */, - 46EB2E00032E00 /* SysMembarrier.cpp in Sources */, - 46EB2E00031900 /* SysUio.cpp in Sources */, - 46EB2E00032B00 /* ThreadedExecutor.cpp in Sources */, - 46EB2E00031910 /* ThreadId.cpp in Sources */, - 46EB2E00032DE0 /* ThreadLocalDetail.cpp in Sources */, - 46EB2E00032B80 /* ThreadName.cpp in Sources */, - 46EB2E00032B10 /* ThreadPoolExecutor.cpp in Sources */, - 46EB2E00032A00 /* ThreadWheelTimekeeper.cpp in Sources */, - 46EB2E00032B20 /* TimedDrivableExecutor.cpp in Sources */, - 46EB2E00032B30 /* TimekeeperScheduledExecutor.cpp in Sources */, - 46EB2E00032CD0 /* TimeoutManager.cpp in Sources */, - 46EB2E00031820 /* ToAscii.cpp in Sources */, - 46EB2E00032C40 /* Try.cpp in Sources */, - 46EB2E00031840 /* Unicode.cpp in Sources */, - 46EB2E00031890 /* UniqueInstance.cpp in Sources */, - 46EB2E00032CE0 /* VirtualEventBase.cpp in Sources */, - 46EB2E00032C10 /* WaitOptions.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000344F0 /* Sources */ = { + 46EB2E00031640 /* Assume.cpp in Sources */, + 46EB2E00032920 /* AsymmetricMemoryBarrier.cpp in Sources */, + 46EB2E00032AB0 /* AsyncStack.cpp in Sources */, + 46EB2E000329E0 /* AsyncTimeout.cpp in Sources */, + 46EB2E00032B10 /* AsyncTrace.cpp in Sources */, + 46EB2E00032B20 /* AtFork.cpp in Sources */, + 46EB2E00032930 /* AtomicNotification.cpp in Sources */, + 46EB2E00032740 /* Barrier.cpp in Sources */, + 46EB2E00032BA0 /* BatchSemaphore.cpp in Sources */, + 46EB2E00032BB0 /* Baton.cpp in Sources */, + 46EB2E000328D0 /* CacheLocality.cpp in Sources */, + 46EB2E000327B0 /* Codel.cpp in Sources */, + 46EB2E00031560 /* Conv.cpp in Sources */, + 46EB2E000327A0 /* Core.cpp in Sources */, + 46EB2E000327C0 /* CPUThreadPoolExecutor.cpp in Sources */, + 46EB2E00031650 /* CString.cpp in Sources */, + 46EB2E00032A80 /* Cursor.cpp in Sources */, + 46EB2E000328E0 /* DeadlockDetector.cpp in Sources */, + 46EB2E00031570 /* Demangle.cpp in Sources */, + 46EB2E00032940 /* DistributedMutex.cpp in Sources */, + 46EB2E000315E0 /* dynamic.cpp in Sources */, + 46EB2E000327D0 /* EDFThreadPoolExecutor.cpp in Sources */, + 46EB2E000329F0 /* EventBase.cpp in Sources */, + 46EB2E00032A00 /* EventBaseBackendBase.cpp in Sources */, + 46EB2E00032A10 /* EventBaseLocal.cpp in Sources */, + 46EB2E00032A20 /* EventBaseManager.cpp in Sources */, + 46EB2E00032A30 /* EventHandler.cpp in Sources */, + 46EB2E00031660 /* Exception.cpp in Sources */, + 46EB2E00032AC0 /* ExceptionString.cpp in Sources */, + 46EB2E00032AD0 /* ExceptionWrapper.cpp in Sources */, + 46EB2E00032AE0 /* Executor.cpp in Sources */, + 46EB2E000327E0 /* ExecutorWithPriority.cpp in Sources */, + 46EB2E00031610 /* F14Table.cpp in Sources */, + 46EB2E00032BC0 /* Fiber.cpp in Sources */, + 46EB2E00032BD0 /* FiberManager.cpp in Sources */, + 46EB2E00031580 /* FileUtil.cpp in Sources */, + 46EB2E00031590 /* Format.cpp in Sources */, + 46EB2E00032B30 /* Futex.cpp in Sources */, + 46EB2E00032750 /* Future.cpp in Sources */, + 46EB2E000327F0 /* GlobalExecutor.cpp in Sources */, + 46EB2E00032800 /* GlobalThreadPoolList.cpp in Sources */, + 46EB2E00032BE0 /* GuardPageAllocator.cpp in Sources */, + 46EB2E000329B0 /* Hardware.cpp in Sources */, + 46EB2E00032900 /* HardwareConcurrency.cpp in Sources */, + 46EB2E00032950 /* Hazptr.cpp in Sources */, + 46EB2E00032960 /* HazptrThreadPoolExecutor.cpp in Sources */, + 46EB2E00032A40 /* HHWheelTimer.cpp in Sources */, + 46EB2E00032810 /* InlineExecutor.cpp in Sources */, + 46EB2E00032A90 /* IOBuf.cpp in Sources */, + 46EB2E00032AA0 /* IOBufQueue.cpp in Sources */, + 46EB2E00032820 /* IOThreadPoolDeadlockDetectorObserver.cpp in Sources */, + 46EB2E00032830 /* IOThreadPoolExecutor.cpp in Sources */, + 46EB2E000315F0 /* json.cpp in Sources */, + 46EB2E00031600 /* json_pointer.cpp in Sources */, + 46EB2E00032B80 /* MallctlHelper.cpp in Sources */, + 46EB2E00031670 /* MallocImpl.cpp in Sources */, + 46EB2E00032840 /* ManualExecutor.cpp in Sources */, + 46EB2E00032760 /* ManualTimekeeper.cpp in Sources */, + 46EB2E00032B40 /* MemoryIdler.cpp in Sources */, + 46EB2E00032850 /* MeteredExecutor.cpp in Sources */, + 46EB2E00031680 /* NetOps.cpp in Sources */, + 46EB2E00032970 /* ParkingLot.cpp in Sources */, + 46EB2E00032C20 /* Pid.cpp in Sources */, + 46EB2E00032770 /* Promise.cpp in Sources */, + 46EB2E00032860 /* QueuedImmediateExecutor.cpp in Sources */, + 46EB2E000328F0 /* QueueObserver.cpp in Sources */, + 46EB2E000341A0 /* RCT-Folly-dummy.m in Sources */, + 46EB2E00032980 /* Rcu.cpp in Sources */, + 46EB2E00032A50 /* Request.cpp in Sources */, + 46EB2E000315A0 /* SafeAssert.cpp in Sources */, + 46EB2E00032990 /* SanitizeThread.cpp in Sources */, + 46EB2E000315C0 /* ScopeGuard.cpp in Sources */, + 46EB2E00032BF0 /* Semaphore.cpp in Sources */, + 46EB2E00032C00 /* SemaphoreBase.cpp in Sources */, + 46EB2E00032870 /* SerialExecutor.cpp in Sources */, + 46EB2E00032AF0 /* SharedMutex.cpp in Sources */, + 46EB2E00032780 /* SharedPromise.cpp in Sources */, + 46EB2E00032C10 /* SimpleLoopController.cpp in Sources */, + 46EB2E00032B00 /* Singleton.cpp in Sources */, + 46EB2E00032B50 /* SingletonStackTrace.cpp in Sources */, + 46EB2E000329C0 /* Sleeper.cpp in Sources */, + 46EB2E00031630 /* SpookyHashV2.cpp in Sources */, + 46EB2E00032B60 /* StaticSingletonManager.cpp in Sources */, + 46EB2E00032880 /* StrandExecutor.cpp in Sources */, + 46EB2E00031550 /* String.cpp in Sources */, + 46EB2E00032B90 /* SysMembarrier.cpp in Sources */, + 46EB2E00031690 /* SysUio.cpp in Sources */, + 46EB2E00032890 /* ThreadedExecutor.cpp in Sources */, + 46EB2E000316A0 /* ThreadId.cpp in Sources */, + 46EB2E00032B70 /* ThreadLocalDetail.cpp in Sources */, + 46EB2E00032910 /* ThreadName.cpp in Sources */, + 46EB2E000328A0 /* ThreadPoolExecutor.cpp in Sources */, + 46EB2E00032790 /* ThreadWheelTimekeeper.cpp in Sources */, + 46EB2E000328B0 /* TimedDrivableExecutor.cpp in Sources */, + 46EB2E000328C0 /* TimekeeperScheduledExecutor.cpp in Sources */, + 46EB2E00032A60 /* TimeoutManager.cpp in Sources */, + 46EB2E000315B0 /* ToAscii.cpp in Sources */, + 46EB2E000329D0 /* Try.cpp in Sources */, + 46EB2E000315D0 /* Unicode.cpp in Sources */, + 46EB2E00031620 /* UniqueInstance.cpp in Sources */, + 46EB2E00032A70 /* VirtualEventBase.cpp in Sources */, + 46EB2E000329A0 /* WaitOptions.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00034280 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034510 /* RCTConvertHelpers.mm in Sources */, - 46EB2E00034520 /* RCTTypedModuleConstants.mm in Sources */, - 46EB2E000345D0 /* RCTTypeSafety-dummy.m in Sources */, + 46EB2E000342A0 /* RCTConvertHelpers.mm in Sources */, + 46EB2E000342B0 /* RCTTypedModuleConstants.mm in Sources */, + 46EB2E00034360 /* RCTTypeSafety-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034640 /* Sources */ = { + 46EB2E000343D0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034660 /* RNCAsyncStorage.m in Sources */, - 46EB2E000346E0 /* RNCAsyncStorage-dummy.m in Sources */, + 46EB2E000343F0 /* RNCAsyncStorage.m in Sources */, + 46EB2E00034470 /* RNCAsyncStorage-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034750 /* Sources */ = { + 46EB2E000344E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034770 /* RNCMaskedView.m in Sources */, - 46EB2E00034800 /* RNCMaskedView-dummy.m in Sources */, - 46EB2E00034780 /* RNCMaskedViewManager.m in Sources */, + 46EB2E00034500 /* RNCMaskedView.m in Sources */, + 46EB2E00034590 /* RNCMaskedView-dummy.m in Sources */, + 46EB2E00034510 /* RNCMaskedViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034870 /* Sources */ = { + 46EB2E00034600 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034890 /* RNCPicker.m in Sources */, - 46EB2E00034940 /* RNCPicker-dummy.m in Sources */, - 46EB2E000348A0 /* RNCPickerLabel.m in Sources */, - 46EB2E000348B0 /* RNCPickerManager.m in Sources */, + 46EB2E00034620 /* RNCPicker.m in Sources */, + 46EB2E000346D0 /* RNCPicker-dummy.m in Sources */, + 46EB2E00034630 /* RNCPickerLabel.m in Sources */, + 46EB2E00034640 /* RNCPickerManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000349B0 /* Sources */ = { + 46EB2E00034740 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000349D0 /* DeviceUID.m in Sources */, - 46EB2E000349E0 /* EnvironmentUtil.m in Sources */, - 46EB2E000349F0 /* RNDeviceInfo.m in Sources */, - 46EB2E00034A80 /* RNDeviceInfo-dummy.m in Sources */, + 46EB2E00034760 /* DeviceUID.m in Sources */, + 46EB2E00034770 /* EnvironmentUtil.m in Sources */, + 46EB2E00034780 /* RNDeviceInfo.m in Sources */, + 46EB2E00034810 /* RNDeviceInfo-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034AF0 /* Sources */ = { + 46EB2E00034880 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034B80 /* RNFBAnalytics-dummy.m in Sources */, - 46EB2E00034B10 /* RNFBAnalyticsModule.m in Sources */, + 46EB2E00034910 /* RNFBAnalytics-dummy.m in Sources */, + 46EB2E000348A0 /* RNFBAnalyticsModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034BF0 /* Sources */ = { + 46EB2E00034980 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034C10 /* RCTConvert+FIRApp.m in Sources */, - 46EB2E00034C20 /* RCTConvert+FIROptions.m in Sources */, - 46EB2E00034DA0 /* RNFBApp-dummy.m in Sources */, - 46EB2E00034C30 /* RNFBAppModule.m in Sources */, - 46EB2E00034C40 /* RNFBJSON.m in Sources */, - 46EB2E00034C50 /* RNFBMeta.m in Sources */, - 46EB2E00034C60 /* RNFBPreferences.m in Sources */, - 46EB2E00034C70 /* RNFBRCTEventEmitter.m in Sources */, - 46EB2E00034C80 /* RNFBSharedUtils.m in Sources */, - 46EB2E00034C90 /* RNFBUtilsModule.m in Sources */, - 46EB2E00034CA0 /* RNFBVersion.m in Sources */, + 46EB2E000349A0 /* RCTConvert+FIRApp.m in Sources */, + 46EB2E000349B0 /* RCTConvert+FIROptions.m in Sources */, + 46EB2E00034B30 /* RNFBApp-dummy.m in Sources */, + 46EB2E000349C0 /* RNFBAppModule.m in Sources */, + 46EB2E000349D0 /* RNFBJSON.m in Sources */, + 46EB2E000349E0 /* RNFBMeta.m in Sources */, + 46EB2E000349F0 /* RNFBPreferences.m in Sources */, + 46EB2E00034A00 /* RNFBRCTEventEmitter.m in Sources */, + 46EB2E00034A10 /* RNFBSharedUtils.m in Sources */, + 46EB2E00034A20 /* RNFBUtilsModule.m in Sources */, + 46EB2E00034A30 /* RNFBVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034E10 /* Sources */ = { + 46EB2E00034BA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034EA0 /* RNFBAuth-dummy.m in Sources */, - 46EB2E00034E30 /* RNFBAuthModule.m in Sources */, + 46EB2E00034C30 /* RNFBAuth-dummy.m in Sources */, + 46EB2E00034BC0 /* RNFBAuthModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00034F10 /* Sources */ = { + 46EB2E00034CA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00034FE0 /* RNFBCrashlytics-dummy.m in Sources */, - 46EB2E00034F30 /* RNFBCrashlyticsInitProvider.m in Sources */, - 46EB2E00034F40 /* RNFBCrashlyticsModule.m in Sources */, - 46EB2E00034F50 /* RNFBCrashlyticsNativeHelper.m in Sources */, + 46EB2E00034D70 /* RNFBCrashlytics-dummy.m in Sources */, + 46EB2E00034CC0 /* RNFBCrashlyticsInitProvider.m in Sources */, + 46EB2E00034CD0 /* RNFBCrashlyticsModule.m in Sources */, + 46EB2E00034CE0 /* RNFBCrashlyticsNativeHelper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035050 /* Sources */ = { + 46EB2E00034DE0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000351A0 /* RNFBDatabase-dummy.m in Sources */, - 46EB2E00035070 /* RNFBDatabaseCommon.m in Sources */, - 46EB2E00035080 /* RNFBDatabaseModule.m in Sources */, - 46EB2E00035090 /* RNFBDatabaseOnDisconnectModule.m in Sources */, - 46EB2E000350A0 /* RNFBDatabaseQuery.m in Sources */, - 46EB2E000350B0 /* RNFBDatabaseQueryModule.m in Sources */, - 46EB2E000350C0 /* RNFBDatabaseReferenceModule.m in Sources */, - 46EB2E000350D0 /* RNFBDatabaseTransactionModule.m in Sources */, + 46EB2E00034F30 /* RNFBDatabase-dummy.m in Sources */, + 46EB2E00034E00 /* RNFBDatabaseCommon.m in Sources */, + 46EB2E00034E10 /* RNFBDatabaseModule.m in Sources */, + 46EB2E00034E20 /* RNFBDatabaseOnDisconnectModule.m in Sources */, + 46EB2E00034E30 /* RNFBDatabaseQuery.m in Sources */, + 46EB2E00034E40 /* RNFBDatabaseQueryModule.m in Sources */, + 46EB2E00034E50 /* RNFBDatabaseReferenceModule.m in Sources */, + 46EB2E00034E60 /* RNFBDatabaseTransactionModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035210 /* Sources */ = { + 46EB2E00034FA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035230 /* RCTConvert+FIRLoggerLevel.m in Sources */, - 46EB2E00035380 /* RNFBFirestore-dummy.m in Sources */, - 46EB2E00035240 /* RNFBFirestoreCollectionModule.m in Sources */, - 46EB2E00035250 /* RNFBFirestoreCommon.m in Sources */, - 46EB2E00035260 /* RNFBFirestoreDocumentModule.m in Sources */, - 46EB2E00035270 /* RNFBFirestoreModule.m in Sources */, - 46EB2E00035280 /* RNFBFirestoreQuery.m in Sources */, - 46EB2E00035290 /* RNFBFirestoreSerialize.m in Sources */, - 46EB2E000352A0 /* RNFBFirestoreTransactionModule.m in Sources */, + 46EB2E00034FC0 /* RCTConvert+FIRLoggerLevel.m in Sources */, + 46EB2E00035110 /* RNFBFirestore-dummy.m in Sources */, + 46EB2E00034FD0 /* RNFBFirestoreCollectionModule.m in Sources */, + 46EB2E00034FE0 /* RNFBFirestoreCommon.m in Sources */, + 46EB2E00034FF0 /* RNFBFirestoreDocumentModule.m in Sources */, + 46EB2E00035000 /* RNFBFirestoreModule.m in Sources */, + 46EB2E00035010 /* RNFBFirestoreQuery.m in Sources */, + 46EB2E00035020 /* RNFBFirestoreSerialize.m in Sources */, + 46EB2E00035030 /* RNFBFirestoreTransactionModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000353F0 /* Sources */ = { + 46EB2E00035180 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035410 /* RNFBMessaging+AppDelegate.m in Sources */, - 46EB2E00035420 /* RNFBMessaging+FIRMessagingDelegate.m in Sources */, - 46EB2E00035430 /* RNFBMessaging+NSNotificationCenter.m in Sources */, - 46EB2E00035440 /* RNFBMessaging+UNUserNotificationCenter.m in Sources */, - 46EB2E00035520 /* RNFBMessaging-dummy.m in Sources */, - 46EB2E00035450 /* RNFBMessagingModule.m in Sources */, - 46EB2E00035460 /* RNFBMessagingSerializer.m in Sources */, + 46EB2E000351A0 /* RNFBMessaging+AppDelegate.m in Sources */, + 46EB2E000351B0 /* RNFBMessaging+FIRMessagingDelegate.m in Sources */, + 46EB2E000351C0 /* RNFBMessaging+NSNotificationCenter.m in Sources */, + 46EB2E000351D0 /* RNFBMessaging+UNUserNotificationCenter.m in Sources */, + 46EB2E000352B0 /* RNFBMessaging-dummy.m in Sources */, + 46EB2E000351E0 /* RNFBMessagingModule.m in Sources */, + 46EB2E000351F0 /* RNFBMessagingSerializer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035590 /* Sources */ = { + 46EB2E00035320 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000355B0 /* RNFBConfigModule.m in Sources */, - 46EB2E00035620 /* RNFBRemoteConfig-dummy.m in Sources */, + 46EB2E00035340 /* RNFBConfigModule.m in Sources */, + 46EB2E000353B0 /* RNFBRemoteConfig-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035690 /* Sources */ = { + 46EB2E00035420 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000356B0 /* FFFastImageSource.m in Sources */, - 46EB2E000356C0 /* FFFastImageView.m in Sources */, - 46EB2E000356D0 /* FFFastImageViewManager.m in Sources */, - 46EB2E000356E0 /* RCTConvert+FFFastImage.m in Sources */, - 46EB2E00035780 /* RNFastImage-dummy.m in Sources */, + 46EB2E00035440 /* FFFastImageSource.m in Sources */, + 46EB2E00035450 /* FFFastImageView.m in Sources */, + 46EB2E00035460 /* FFFastImageViewManager.m in Sources */, + 46EB2E00035470 /* RCTConvert+FFFastImage.m in Sources */, + 46EB2E00035510 /* RNFastImage-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000357F0 /* Sources */ = { + 46EB2E00035580 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035810 /* RNFlingHandler.m in Sources */, - 46EB2E00035820 /* RNForceTouchHandler.m in Sources */, - 46EB2E000358A0 /* RNGestureHandler.m in Sources */, - 46EB2E00035B40 /* RNGestureHandler-dummy.m in Sources */, - 46EB2E000358B0 /* RNGestureHandlerButton.m in Sources */, - 46EB2E000358C0 /* RNGestureHandlerButtonComponentView.mm in Sources */, - 46EB2E000358D0 /* RNGestureHandlerButtonManager.m in Sources */, - 46EB2E000358E0 /* RNGestureHandlerEvents.m in Sources */, - 46EB2E000358F0 /* RNGestureHandlerManager.mm in Sources */, - 46EB2E00035900 /* RNGestureHandlerModule.mm in Sources */, - 46EB2E00035910 /* RNGestureHandlerPointerTracker.m in Sources */, - 46EB2E00035920 /* RNGestureHandlerRegistry.m in Sources */, - 46EB2E00035930 /* RNGestureHandlerRootViewComponentView.mm in Sources */, - 46EB2E00035830 /* RNLongPressHandler.m in Sources */, - 46EB2E00035940 /* RNManualActivationRecognizer.m in Sources */, - 46EB2E00035840 /* RNManualHandler.m in Sources */, - 46EB2E00035850 /* RNNativeViewHandler.mm in Sources */, - 46EB2E00035860 /* RNPanHandler.m in Sources */, - 46EB2E00035870 /* RNPinchHandler.m in Sources */, - 46EB2E00035950 /* RNRootViewGestureRecognizer.m in Sources */, - 46EB2E00035880 /* RNRotationHandler.m in Sources */, - 46EB2E00035890 /* RNTapHandler.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00035BB0 /* Sources */ = { + 46EB2E000355A0 /* RNFlingHandler.m in Sources */, + 46EB2E000355B0 /* RNForceTouchHandler.m in Sources */, + 46EB2E00035630 /* RNGestureHandler.m in Sources */, + 46EB2E000358D0 /* RNGestureHandler-dummy.m in Sources */, + 46EB2E00035640 /* RNGestureHandlerButton.m in Sources */, + 46EB2E00035650 /* RNGestureHandlerButtonComponentView.mm in Sources */, + 46EB2E00035660 /* RNGestureHandlerButtonManager.m in Sources */, + 46EB2E00035670 /* RNGestureHandlerEvents.m in Sources */, + 46EB2E00035680 /* RNGestureHandlerManager.mm in Sources */, + 46EB2E00035690 /* RNGestureHandlerModule.mm in Sources */, + 46EB2E000356A0 /* RNGestureHandlerPointerTracker.m in Sources */, + 46EB2E000356B0 /* RNGestureHandlerRegistry.m in Sources */, + 46EB2E000356C0 /* RNGestureHandlerRootViewComponentView.mm in Sources */, + 46EB2E000355C0 /* RNLongPressHandler.m in Sources */, + 46EB2E000356D0 /* RNManualActivationRecognizer.m in Sources */, + 46EB2E000355D0 /* RNManualHandler.m in Sources */, + 46EB2E000355E0 /* RNNativeViewHandler.mm in Sources */, + 46EB2E000355F0 /* RNPanHandler.m in Sources */, + 46EB2E00035600 /* RNPinchHandler.m in Sources */, + 46EB2E000356E0 /* RNRootViewGestureRecognizer.m in Sources */, + 46EB2E00035610 /* RNRotationHandler.m in Sources */, + 46EB2E00035620 /* RNTapHandler.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00035940 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035BD0 /* RNRate.m in Sources */, - 46EB2E00035C40 /* RNRate-dummy.m in Sources */, + 46EB2E00035960 /* RNRate.m in Sources */, + 46EB2E000359D0 /* RNRate-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00035CB0 /* Sources */ = { + 46EB2E00035A40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00035F50 /* AnimatedSensorModule.cpp in Sources */, - 46EB2E00035F90 /* EventHandlerRegistry.cpp in Sources */, - 46EB2E00036010 /* FeaturesConfig.cpp in Sources */, - 46EB2E00035FC0 /* FrozenObject.cpp in Sources */, - 46EB2E00036020 /* JSIStoreValueUser.cpp in Sources */, - 46EB2E00035F60 /* LayoutAnimationsProxy.cpp in Sources */, - 46EB2E00036030 /* Mapper.cpp in Sources */, - 46EB2E00035FA0 /* MapperRegistry.cpp in Sources */, - 46EB2E00035FD0 /* MutableValue.cpp in Sources */, - 46EB2E00035FE0 /* MutableValueSetterProxy.cpp in Sources */, - 46EB2E00035D00 /* NativeMethods.mm in Sources */, - 46EB2E00035D10 /* NativeProxy.mm in Sources */, - 46EB2E00035F70 /* NativeReanimatedModule.cpp in Sources */, - 46EB2E00035F80 /* NativeReanimatedModuleSpec.cpp in Sources */, - 46EB2E00035EF0 /* RCTConvert+REATransition.m in Sources */, - 46EB2E00035F00 /* REAAllTransitions.m in Sources */, - 46EB2E00035D70 /* REAAlwaysNode.m in Sources */, - 46EB2E00035CD0 /* REAAnimationsManager.m in Sources */, - 46EB2E00035D80 /* REABezierNode.m in Sources */, - 46EB2E00035D90 /* REABlockNode.m in Sources */, - 46EB2E00035DA0 /* REACallFuncNode.m in Sources */, - 46EB2E00035DB0 /* REAClockNodes.m in Sources */, - 46EB2E00035DC0 /* REAConcatNode.m in Sources */, - 46EB2E00035DD0 /* REACondNode.m in Sources */, - 46EB2E00035DE0 /* READebugNode.m in Sources */, - 46EB2E00035EA0 /* REAEventDispatcher.m in Sources */, - 46EB2E00035DF0 /* REAEventNode.m in Sources */, - 46EB2E00035E00 /* REAFunctionNode.m in Sources */, - 46EB2E00035D20 /* REAInitializer.mm in Sources */, - 46EB2E00035D30 /* REAIOSErrorHandler.mm in Sources */, - 46EB2E00035D40 /* REAIOSLogger.mm in Sources */, - 46EB2E00035D50 /* REAIOSScheduler.mm in Sources */, - 46EB2E00035E10 /* REAJSCallNode.m in Sources */, - 46EB2E00035EB0 /* REAModule.m in Sources */, - 46EB2E00035ED0 /* ReanimatedSensor.m in Sources */, - 46EB2E00035EE0 /* ReanimatedSensorContainer.m in Sources */, - 46EB2E00035E20 /* REANode.m in Sources */, - 46EB2E00035EC0 /* REANodesManager.m in Sources */, - 46EB2E00035E30 /* REAOperatorNode.m in Sources */, - 46EB2E00035E40 /* REAParamNode.m in Sources */, - 46EB2E00035E50 /* REAPropsNode.m in Sources */, - 46EB2E00035E60 /* REASetNode.m in Sources */, - 46EB2E00035CE0 /* REASnapshot.m in Sources */, - 46EB2E00035E70 /* REAStyleNode.m in Sources */, - 46EB2E00035E80 /* REATransformNode.m in Sources */, - 46EB2E00035F10 /* REATransition.m in Sources */, - 46EB2E00035F20 /* REATransitionAnimation.m in Sources */, - 46EB2E00035F30 /* REATransitionManager.m in Sources */, - 46EB2E00035F40 /* REATransitionValues.m in Sources */, - 46EB2E00035CF0 /* REAUIManager.mm in Sources */, - 46EB2E00035E90 /* REAValueNode.m in Sources */, - 46EB2E00035FF0 /* RemoteObject.cpp in Sources */, - 46EB2E00036500 /* RNReanimated-dummy.m in Sources */, - 46EB2E00036040 /* RuntimeDecorator.cpp in Sources */, - 46EB2E00036050 /* Scheduler.cpp in Sources */, - 46EB2E00036000 /* ShareableValue.cpp in Sources */, - 46EB2E00035D60 /* UIResponder+Reanimated.mm in Sources */, - 46EB2E00036060 /* WorkletEventHandler.cpp in Sources */, - 46EB2E00035FB0 /* WorkletsCache.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00036570 /* Sources */ = { + 46EB2E00035CE0 /* AnimatedSensorModule.cpp in Sources */, + 46EB2E00035D20 /* EventHandlerRegistry.cpp in Sources */, + 46EB2E00035DA0 /* FeaturesConfig.cpp in Sources */, + 46EB2E00035D50 /* FrozenObject.cpp in Sources */, + 46EB2E00035DB0 /* JSIStoreValueUser.cpp in Sources */, + 46EB2E00035CF0 /* LayoutAnimationsProxy.cpp in Sources */, + 46EB2E00035DC0 /* Mapper.cpp in Sources */, + 46EB2E00035D30 /* MapperRegistry.cpp in Sources */, + 46EB2E00035D60 /* MutableValue.cpp in Sources */, + 46EB2E00035D70 /* MutableValueSetterProxy.cpp in Sources */, + 46EB2E00035A90 /* NativeMethods.mm in Sources */, + 46EB2E00035AA0 /* NativeProxy.mm in Sources */, + 46EB2E00035D00 /* NativeReanimatedModule.cpp in Sources */, + 46EB2E00035D10 /* NativeReanimatedModuleSpec.cpp in Sources */, + 46EB2E00035C80 /* RCTConvert+REATransition.m in Sources */, + 46EB2E00035C90 /* REAAllTransitions.m in Sources */, + 46EB2E00035B00 /* REAAlwaysNode.m in Sources */, + 46EB2E00035A60 /* REAAnimationsManager.m in Sources */, + 46EB2E00035B10 /* REABezierNode.m in Sources */, + 46EB2E00035B20 /* REABlockNode.m in Sources */, + 46EB2E00035B30 /* REACallFuncNode.m in Sources */, + 46EB2E00035B40 /* REAClockNodes.m in Sources */, + 46EB2E00035B50 /* REAConcatNode.m in Sources */, + 46EB2E00035B60 /* REACondNode.m in Sources */, + 46EB2E00035B70 /* READebugNode.m in Sources */, + 46EB2E00035C30 /* REAEventDispatcher.m in Sources */, + 46EB2E00035B80 /* REAEventNode.m in Sources */, + 46EB2E00035B90 /* REAFunctionNode.m in Sources */, + 46EB2E00035AB0 /* REAInitializer.mm in Sources */, + 46EB2E00035AC0 /* REAIOSErrorHandler.mm in Sources */, + 46EB2E00035AD0 /* REAIOSLogger.mm in Sources */, + 46EB2E00035AE0 /* REAIOSScheduler.mm in Sources */, + 46EB2E00035BA0 /* REAJSCallNode.m in Sources */, + 46EB2E00035C40 /* REAModule.m in Sources */, + 46EB2E00035C60 /* ReanimatedSensor.m in Sources */, + 46EB2E00035C70 /* ReanimatedSensorContainer.m in Sources */, + 46EB2E00035BB0 /* REANode.m in Sources */, + 46EB2E00035C50 /* REANodesManager.m in Sources */, + 46EB2E00035BC0 /* REAOperatorNode.m in Sources */, + 46EB2E00035BD0 /* REAParamNode.m in Sources */, + 46EB2E00035BE0 /* REAPropsNode.m in Sources */, + 46EB2E00035BF0 /* REASetNode.m in Sources */, + 46EB2E00035A70 /* REASnapshot.m in Sources */, + 46EB2E00035C00 /* REAStyleNode.m in Sources */, + 46EB2E00035C10 /* REATransformNode.m in Sources */, + 46EB2E00035CA0 /* REATransition.m in Sources */, + 46EB2E00035CB0 /* REATransitionAnimation.m in Sources */, + 46EB2E00035CC0 /* REATransitionManager.m in Sources */, + 46EB2E00035CD0 /* REATransitionValues.m in Sources */, + 46EB2E00035A80 /* REAUIManager.mm in Sources */, + 46EB2E00035C20 /* REAValueNode.m in Sources */, + 46EB2E00035D80 /* RemoteObject.cpp in Sources */, + 46EB2E00036290 /* RNReanimated-dummy.m in Sources */, + 46EB2E00035DD0 /* RuntimeDecorator.cpp in Sources */, + 46EB2E00035DE0 /* Scheduler.cpp in Sources */, + 46EB2E00035D90 /* ShareableValue.cpp in Sources */, + 46EB2E00035AF0 /* UIResponder+Reanimated.mm in Sources */, + 46EB2E00035DF0 /* WorkletEventHandler.cpp in Sources */, + 46EB2E00035D40 /* WorkletsCache.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00036300 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000367A0 /* RCTConvert+RNSVG.m in Sources */, - 46EB2E00036E30 /* RNSVG-dummy.m in Sources */, - 46EB2E000367B0 /* RNSVGBezierElement.m in Sources */, - 46EB2E00036590 /* RNSVGBrush.m in Sources */, - 46EB2E000366E0 /* RNSVGCircle.m in Sources */, - 46EB2E00036810 /* RNSVGCircleManager.m in Sources */, - 46EB2E000365E0 /* RNSVGClipPath.m in Sources */, - 46EB2E00036820 /* RNSVGClipPathManager.m in Sources */, - 46EB2E000365A0 /* RNSVGContextBrush.m in Sources */, - 46EB2E000365F0 /* RNSVGDefs.m in Sources */, - 46EB2E00036830 /* RNSVGDefsManager.m in Sources */, - 46EB2E000366F0 /* RNSVGEllipse.m in Sources */, - 46EB2E00036840 /* RNSVGEllipseManager.m in Sources */, - 46EB2E00036720 /* RNSVGFontData.m in Sources */, - 46EB2E00036600 /* RNSVGForeignObject.m in Sources */, - 46EB2E00036850 /* RNSVGForeignObjectManager.m in Sources */, - 46EB2E00036730 /* RNSVGGlyphContext.m in Sources */, - 46EB2E00036610 /* RNSVGGroup.m in Sources */, - 46EB2E00036860 /* RNSVGGroupManager.m in Sources */, - 46EB2E00036620 /* RNSVGImage.m in Sources */, - 46EB2E00036870 /* RNSVGImageManager.m in Sources */, - 46EB2E000367C0 /* RNSVGLength.m in Sources */, - 46EB2E00036700 /* RNSVGLine.m in Sources */, - 46EB2E00036630 /* RNSVGLinearGradient.m in Sources */, - 46EB2E00036880 /* RNSVGLinearGradientManager.m in Sources */, - 46EB2E00036890 /* RNSVGLineManager.m in Sources */, - 46EB2E00036640 /* RNSVGMarker.m in Sources */, - 46EB2E000368A0 /* RNSVGMarkerManager.m in Sources */, - 46EB2E000367D0 /* RNSVGMarkerPosition.m in Sources */, - 46EB2E00036650 /* RNSVGMask.m in Sources */, - 46EB2E000368B0 /* RNSVGMaskManager.m in Sources */, - 46EB2E000366C0 /* RNSVGNode.m in Sources */, - 46EB2E000368C0 /* RNSVGNodeManager.m in Sources */, - 46EB2E000365B0 /* RNSVGPainter.m in Sources */, - 46EB2E000365C0 /* RNSVGPainterBrush.m in Sources */, - 46EB2E00036660 /* RNSVGPath.m in Sources */, - 46EB2E000368D0 /* RNSVGPathManager.m in Sources */, - 46EB2E000367E0 /* RNSVGPathMeasure.m in Sources */, - 46EB2E000367F0 /* RNSVGPathParser.m in Sources */, - 46EB2E00036670 /* RNSVGPattern.m in Sources */, - 46EB2E000368E0 /* RNSVGPatternManager.m in Sources */, - 46EB2E00036740 /* RNSVGPropHelper.m in Sources */, - 46EB2E00036680 /* RNSVGRadialGradient.m in Sources */, - 46EB2E000368F0 /* RNSVGRadialGradientManager.m in Sources */, - 46EB2E00036710 /* RNSVGRect.m in Sources */, - 46EB2E00036900 /* RNSVGRectManager.m in Sources */, - 46EB2E000366D0 /* RNSVGRenderable.m in Sources */, - 46EB2E00036910 /* RNSVGRenderableManager.m in Sources */, - 46EB2E000365D0 /* RNSVGSolidColorBrush.m in Sources */, - 46EB2E00036690 /* RNSVGSvgView.m in Sources */, - 46EB2E00036920 /* RNSVGSvgViewManager.m in Sources */, - 46EB2E000366A0 /* RNSVGSymbol.m in Sources */, - 46EB2E00036930 /* RNSVGSymbolManager.m in Sources */, - 46EB2E00036750 /* RNSVGText.m in Sources */, - 46EB2E00036940 /* RNSVGTextManager.m in Sources */, - 46EB2E00036760 /* RNSVGTextPath.m in Sources */, - 46EB2E00036950 /* RNSVGTextPathManager.m in Sources */, - 46EB2E00036770 /* RNSVGTextProperties.m in Sources */, - 46EB2E00036780 /* RNSVGTopAlignedLabel.ios.m in Sources */, - 46EB2E00036790 /* RNSVGTSpan.m in Sources */, - 46EB2E00036960 /* RNSVGTSpanManager.m in Sources */, - 46EB2E000366B0 /* RNSVGUse.m in Sources */, - 46EB2E00036970 /* RNSVGUseManager.m in Sources */, - 46EB2E00036800 /* RNSVGViewBox.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00036EA0 /* Sources */ = { + 46EB2E00036530 /* RCTConvert+RNSVG.m in Sources */, + 46EB2E00036BC0 /* RNSVG-dummy.m in Sources */, + 46EB2E00036540 /* RNSVGBezierElement.m in Sources */, + 46EB2E00036320 /* RNSVGBrush.m in Sources */, + 46EB2E00036470 /* RNSVGCircle.m in Sources */, + 46EB2E000365A0 /* RNSVGCircleManager.m in Sources */, + 46EB2E00036370 /* RNSVGClipPath.m in Sources */, + 46EB2E000365B0 /* RNSVGClipPathManager.m in Sources */, + 46EB2E00036330 /* RNSVGContextBrush.m in Sources */, + 46EB2E00036380 /* RNSVGDefs.m in Sources */, + 46EB2E000365C0 /* RNSVGDefsManager.m in Sources */, + 46EB2E00036480 /* RNSVGEllipse.m in Sources */, + 46EB2E000365D0 /* RNSVGEllipseManager.m in Sources */, + 46EB2E000364B0 /* RNSVGFontData.m in Sources */, + 46EB2E00036390 /* RNSVGForeignObject.m in Sources */, + 46EB2E000365E0 /* RNSVGForeignObjectManager.m in Sources */, + 46EB2E000364C0 /* RNSVGGlyphContext.m in Sources */, + 46EB2E000363A0 /* RNSVGGroup.m in Sources */, + 46EB2E000365F0 /* RNSVGGroupManager.m in Sources */, + 46EB2E000363B0 /* RNSVGImage.m in Sources */, + 46EB2E00036600 /* RNSVGImageManager.m in Sources */, + 46EB2E00036550 /* RNSVGLength.m in Sources */, + 46EB2E00036490 /* RNSVGLine.m in Sources */, + 46EB2E000363C0 /* RNSVGLinearGradient.m in Sources */, + 46EB2E00036610 /* RNSVGLinearGradientManager.m in Sources */, + 46EB2E00036620 /* RNSVGLineManager.m in Sources */, + 46EB2E000363D0 /* RNSVGMarker.m in Sources */, + 46EB2E00036630 /* RNSVGMarkerManager.m in Sources */, + 46EB2E00036560 /* RNSVGMarkerPosition.m in Sources */, + 46EB2E000363E0 /* RNSVGMask.m in Sources */, + 46EB2E00036640 /* RNSVGMaskManager.m in Sources */, + 46EB2E00036450 /* RNSVGNode.m in Sources */, + 46EB2E00036650 /* RNSVGNodeManager.m in Sources */, + 46EB2E00036340 /* RNSVGPainter.m in Sources */, + 46EB2E00036350 /* RNSVGPainterBrush.m in Sources */, + 46EB2E000363F0 /* RNSVGPath.m in Sources */, + 46EB2E00036660 /* RNSVGPathManager.m in Sources */, + 46EB2E00036570 /* RNSVGPathMeasure.m in Sources */, + 46EB2E00036580 /* RNSVGPathParser.m in Sources */, + 46EB2E00036400 /* RNSVGPattern.m in Sources */, + 46EB2E00036670 /* RNSVGPatternManager.m in Sources */, + 46EB2E000364D0 /* RNSVGPropHelper.m in Sources */, + 46EB2E00036410 /* RNSVGRadialGradient.m in Sources */, + 46EB2E00036680 /* RNSVGRadialGradientManager.m in Sources */, + 46EB2E000364A0 /* RNSVGRect.m in Sources */, + 46EB2E00036690 /* RNSVGRectManager.m in Sources */, + 46EB2E00036460 /* RNSVGRenderable.m in Sources */, + 46EB2E000366A0 /* RNSVGRenderableManager.m in Sources */, + 46EB2E00036360 /* RNSVGSolidColorBrush.m in Sources */, + 46EB2E00036420 /* RNSVGSvgView.m in Sources */, + 46EB2E000366B0 /* RNSVGSvgViewManager.m in Sources */, + 46EB2E00036430 /* RNSVGSymbol.m in Sources */, + 46EB2E000366C0 /* RNSVGSymbolManager.m in Sources */, + 46EB2E000364E0 /* RNSVGText.m in Sources */, + 46EB2E000366D0 /* RNSVGTextManager.m in Sources */, + 46EB2E000364F0 /* RNSVGTextPath.m in Sources */, + 46EB2E000366E0 /* RNSVGTextPathManager.m in Sources */, + 46EB2E00036500 /* RNSVGTextProperties.m in Sources */, + 46EB2E00036510 /* RNSVGTopAlignedLabel.ios.m in Sources */, + 46EB2E00036520 /* RNSVGTSpan.m in Sources */, + 46EB2E000366F0 /* RNSVGTSpanManager.m in Sources */, + 46EB2E00036440 /* RNSVGUse.m in Sources */, + 46EB2E00036700 /* RNSVGUseManager.m in Sources */, + 46EB2E00036590 /* RNSVGViewBox.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00036C30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00036EC0 /* RNSConvert.mm in Sources */, - 46EB2E00037100 /* RNScreens-dummy.m in Sources */, - 46EB2E00036ED0 /* RNSFullWindowOverlay.mm in Sources */, - 46EB2E00036EE0 /* RNSScreen.mm in Sources */, - 46EB2E00036EF0 /* RNSScreenContainer.mm in Sources */, - 46EB2E00036F00 /* RNSScreenNavigationContainer.mm in Sources */, - 46EB2E00036F10 /* RNSScreenStack.mm in Sources */, - 46EB2E00036F20 /* RNSScreenStackAnimator.mm in Sources */, - 46EB2E00036F30 /* RNSScreenStackHeaderConfig.mm in Sources */, - 46EB2E00036F40 /* RNSScreenStackHeaderSubview.mm in Sources */, - 46EB2E00036F50 /* RNSScreenViewEvent.mm in Sources */, - 46EB2E00036F60 /* RNSScreenWindowTraits.mm in Sources */, - 46EB2E00036F70 /* RNSSearchBar.mm in Sources */, - 46EB2E00036FA0 /* RNSUIBarButtonItem.mm in Sources */, - 46EB2E00036F80 /* UIViewController+RNScreens.mm in Sources */, - 46EB2E00036F90 /* UIWindow+RNScreens.mm in Sources */, + 46EB2E00036C50 /* RNSConvert.mm in Sources */, + 46EB2E00036E90 /* RNScreens-dummy.m in Sources */, + 46EB2E00036C60 /* RNSFullWindowOverlay.mm in Sources */, + 46EB2E00036C70 /* RNSScreen.mm in Sources */, + 46EB2E00036C80 /* RNSScreenContainer.mm in Sources */, + 46EB2E00036C90 /* RNSScreenNavigationContainer.mm in Sources */, + 46EB2E00036CA0 /* RNSScreenStack.mm in Sources */, + 46EB2E00036CB0 /* RNSScreenStackAnimator.mm in Sources */, + 46EB2E00036CC0 /* RNSScreenStackHeaderConfig.mm in Sources */, + 46EB2E00036CD0 /* RNSScreenStackHeaderSubview.mm in Sources */, + 46EB2E00036CE0 /* RNSScreenViewEvent.mm in Sources */, + 46EB2E00036CF0 /* RNSScreenWindowTraits.mm in Sources */, + 46EB2E00036D00 /* RNSSearchBar.mm in Sources */, + 46EB2E00036D30 /* RNSUIBarButtonItem.mm in Sources */, + 46EB2E00036D10 /* UIViewController+RNScreens.mm in Sources */, + 46EB2E00036D20 /* UIWindow+RNScreens.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037170 /* Sources */ = { + 46EB2E00036F00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037190 /* EmailShare.m in Sources */, - 46EB2E000371A0 /* FacebookStories.m in Sources */, - 46EB2E000371B0 /* GenericShare.m in Sources */, - 46EB2E000371C0 /* GooglePlusShare.m in Sources */, - 46EB2E000371D0 /* InstagramShare.m in Sources */, - 46EB2E000371E0 /* InstagramStories.m in Sources */, - 46EB2E000371F0 /* RNShare.m in Sources */, - 46EB2E00037360 /* RNShare-dummy.m in Sources */, - 46EB2E00037200 /* RNShareActivityItemSource.m in Sources */, - 46EB2E00037210 /* RNShareUtils.m in Sources */, - 46EB2E00037220 /* TelegramShare.m in Sources */, - 46EB2E00037230 /* ViberShare.m in Sources */, - 46EB2E00037240 /* WhatsAppShare.m in Sources */, + 46EB2E00036F20 /* EmailShare.m in Sources */, + 46EB2E00036F30 /* FacebookStories.m in Sources */, + 46EB2E00036F40 /* GenericShare.m in Sources */, + 46EB2E00036F50 /* GooglePlusShare.m in Sources */, + 46EB2E00036F60 /* InstagramShare.m in Sources */, + 46EB2E00036F70 /* InstagramStories.m in Sources */, + 46EB2E00036F80 /* RNShare.m in Sources */, + 46EB2E000370F0 /* RNShare-dummy.m in Sources */, + 46EB2E00036F90 /* RNShareActivityItemSource.m in Sources */, + 46EB2E00036FA0 /* RNShareUtils.m in Sources */, + 46EB2E00036FB0 /* TelegramShare.m in Sources */, + 46EB2E00036FC0 /* ViberShare.m in Sources */, + 46EB2E00036FD0 /* WhatsAppShare.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000373D0 /* Sources */ = { + 46EB2E00037160 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037460 /* RNVectorIcons-dummy.m in Sources */, - 46EB2E000373F0 /* RNVectorIconsManager.m in Sources */, + 46EB2E000371F0 /* RNVectorIcons-dummy.m in Sources */, + 46EB2E00037180 /* RNVectorIconsManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037540 /* Sources */ = { + 46EB2E000372D0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037560 /* FBReactNativeSpec-generated.mm in Sources */, - 46EB2E00037600 /* React-Codegen-dummy.m in Sources */, + 46EB2E000372F0 /* FBReactNativeSpec-generated.mm in Sources */, + 46EB2E00037390 /* React-Codegen-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00037670 /* Sources */ = { + 46EB2E00037400 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00037C20 /* JSCExecutorFactory.mm in Sources */, - 46EB2E00037C30 /* NSDataBigString.mm in Sources */, - 46EB2E00037D90 /* RCTActivityIndicatorView.m in Sources */, - 46EB2E00037DA0 /* RCTActivityIndicatorViewManager.m in Sources */, - 46EB2E00037910 /* RCTAppSetupUtils.mm in Sources */, - 46EB2E00037920 /* RCTAssert.m in Sources */, - 46EB2E00037DB0 /* RCTBorderDrawing.m in Sources */, - 46EB2E00037930 /* RCTBridge.m in Sources */, - 46EB2E00037940 /* RCTBridgeModuleDecorator.m in Sources */, - 46EB2E00037950 /* RCTBundleManager.m in Sources */, - 46EB2E00037960 /* RCTBundleURLProvider.mm in Sources */, - 46EB2E00037970 /* RCTCallableJSModules.m in Sources */, - 46EB2E00037DC0 /* RCTComponentData.m in Sources */, - 46EB2E00037980 /* RCTComponentEvent.m in Sources */, - 46EB2E00037990 /* RCTConstants.m in Sources */, - 46EB2E000379A0 /* RCTConvert.m in Sources */, - 46EB2E00037DD0 /* RCTConvert+CoreLocation.m in Sources */, - 46EB2E00037DE0 /* RCTConvert+Transform.m in Sources */, - 46EB2E00037C40 /* RCTCxxBridge.mm in Sources */, - 46EB2E000379B0 /* RCTCxxConvert.m in Sources */, - 46EB2E00037C90 /* RCTCxxMethod.mm in Sources */, - 46EB2E00037CA0 /* RCTCxxModule.mm in Sources */, - 46EB2E00037CB0 /* RCTCxxUtils.mm in Sources */, - 46EB2E00037DF0 /* RCTDatePicker.m in Sources */, - 46EB2E00037E00 /* RCTDatePickerManager.m in Sources */, - 46EB2E00037C80 /* RCTDefaultCxxLogFunction.mm in Sources */, - 46EB2E00038990 /* RCTDevLoadingViewSetEnabled.m in Sources */, - 46EB2E000379C0 /* RCTDisplayLink.m in Sources */, - 46EB2E000379D0 /* RCTErrorInfo.m in Sources */, - 46EB2E000379E0 /* RCTEventDispatcher.m in Sources */, - 46EB2E00037CE0 /* RCTEventEmitter.m in Sources */, - 46EB2E00037CD0 /* RCTFollyConvert.mm in Sources */, - 46EB2E00037E10 /* RCTFont.mm in Sources */, - 46EB2E000379F0 /* RCTFrameUpdate.m in Sources */, - 46EB2E00037CF0 /* RCTI18nUtil.m in Sources */, - 46EB2E00037A00 /* RCTImageSource.m in Sources */, - 46EB2E000389D0 /* RCTInspector.mm in Sources */, - 46EB2E000389A0 /* RCTInspectorDevServerHelper.mm in Sources */, - 46EB2E000389E0 /* RCTInspectorPackagerConnection.m in Sources */, - 46EB2E00037A10 /* RCTJavaScriptLoader.mm in Sources */, - 46EB2E00037C50 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, - 46EB2E00037A20 /* RCTJSStackFrame.m in Sources */, - 46EB2E00037A30 /* RCTJSThread.m in Sources */, - 46EB2E00037A40 /* RCTKeyCommands.m in Sources */, - 46EB2E00037E20 /* RCTLayout.m in Sources */, - 46EB2E00037D00 /* RCTLayoutAnimation.m in Sources */, - 46EB2E00037D10 /* RCTLayoutAnimationGroup.m in Sources */, - 46EB2E00037A50 /* RCTLog.mm in Sources */, - 46EB2E00037A60 /* RCTManagedPointer.mm in Sources */, - 46EB2E00037E30 /* RCTMaskedView.m in Sources */, - 46EB2E00037E40 /* RCTMaskedViewManager.m in Sources */, - 46EB2E00037C60 /* RCTMessageThread.mm in Sources */, - 46EB2E00037E50 /* RCTModalHostView.m in Sources */, - 46EB2E00037E60 /* RCTModalHostViewController.m in Sources */, - 46EB2E00037E70 /* RCTModalHostViewManager.m in Sources */, - 46EB2E00037E80 /* RCTModalManager.m in Sources */, - 46EB2E00037A70 /* RCTModuleData.mm in Sources */, - 46EB2E00037A80 /* RCTModuleMethod.mm in Sources */, - 46EB2E00037A90 /* RCTModuleRegistry.m in Sources */, - 46EB2E00037AA0 /* RCTMultipartDataTask.m in Sources */, - 46EB2E00037AB0 /* RCTMultipartStreamReader.m in Sources */, - 46EB2E00037CC0 /* RCTNativeModule.mm in Sources */, - 46EB2E00037C70 /* RCTObjcExecutor.mm in Sources */, - 46EB2E000389B0 /* RCTPackagerClient.m in Sources */, - 46EB2E000389C0 /* RCTPackagerConnection.mm in Sources */, - 46EB2E00037AC0 /* RCTParserUtils.m in Sources */, - 46EB2E00037AD0 /* RCTPerformanceLogger.m in Sources */, - 46EB2E00037AE0 /* RCTPerformanceLoggerLabels.m in Sources */, - 46EB2E00037D70 /* RCTProfile.m in Sources */, - 46EB2E00038950 /* RCTProfileTrampoline-arm.S in Sources */, - 46EB2E00038960 /* RCTProfileTrampoline-arm64.S in Sources */, - 46EB2E00038970 /* RCTProfileTrampoline-i386.S in Sources */, - 46EB2E00038980 /* RCTProfileTrampoline-x86_64.S in Sources */, - 46EB2E00037E90 /* RCTProgressViewManager.m in Sources */, - 46EB2E00039000 /* RCTReconnectingWebSocket.m in Sources */, - 46EB2E00037D20 /* RCTRedBoxExtraDataViewController.m in Sources */, - 46EB2E00037AF0 /* RCTRedBoxSetEnabled.m in Sources */, - 46EB2E00037F80 /* RCTRefreshControl.m in Sources */, - 46EB2E00037F90 /* RCTRefreshControlManager.m in Sources */, - 46EB2E00037B00 /* RCTReloadCommand.m in Sources */, - 46EB2E00037B10 /* RCTRootContentView.m in Sources */, - 46EB2E00037EA0 /* RCTRootShadowView.m in Sources */, - 46EB2E00037B20 /* RCTRootView.m in Sources */, - 46EB2E00037FA0 /* RCTSafeAreaShadowView.m in Sources */, - 46EB2E00037FB0 /* RCTSafeAreaView.m in Sources */, - 46EB2E00037FC0 /* RCTSafeAreaViewLocalData.m in Sources */, - 46EB2E00037FD0 /* RCTSafeAreaViewManager.m in Sources */, - 46EB2E00037FE0 /* RCTScrollContentShadowView.m in Sources */, - 46EB2E00037FF0 /* RCTScrollContentView.m in Sources */, - 46EB2E00038000 /* RCTScrollContentViewManager.m in Sources */, - 46EB2E00038010 /* RCTScrollEvent.m in Sources */, - 46EB2E00038020 /* RCTScrollView.m in Sources */, - 46EB2E00038030 /* RCTScrollViewManager.m in Sources */, - 46EB2E00037EB0 /* RCTSegmentedControl.m in Sources */, - 46EB2E00037EC0 /* RCTSegmentedControlManager.m in Sources */, - 46EB2E00037EF0 /* RCTShadowView.m in Sources */, - 46EB2E00037ED0 /* RCTShadowView+Internal.m in Sources */, - 46EB2E00037EE0 /* RCTShadowView+Layout.m in Sources */, - 46EB2E00037F00 /* RCTSlider.m in Sources */, - 46EB2E00037F10 /* RCTSliderManager.m in Sources */, - 46EB2E00039010 /* RCTSRWebSocket.m in Sources */, - 46EB2E00037BA0 /* RCTSurface.mm in Sources */, - 46EB2E00037BF0 /* RCTSurfaceHostingProxyRootView.mm in Sources */, - 46EB2E00037C00 /* RCTSurfaceHostingView.mm in Sources */, - 46EB2E00037D30 /* RCTSurfacePresenterStub.m in Sources */, - 46EB2E00037BB0 /* RCTSurfaceRootShadowView.m in Sources */, - 46EB2E00037BC0 /* RCTSurfaceRootView.mm in Sources */, - 46EB2E00037C10 /* RCTSurfaceSizeMeasureMode.mm in Sources */, - 46EB2E00037BD0 /* RCTSurfaceStage.m in Sources */, - 46EB2E00037BE0 /* RCTSurfaceView.mm in Sources */, - 46EB2E00037F20 /* RCTSwitch.m in Sources */, - 46EB2E00037F30 /* RCTSwitchManager.m in Sources */, - 46EB2E00037B30 /* RCTTouchEvent.m in Sources */, - 46EB2E00037B40 /* RCTTouchHandler.m in Sources */, - 46EB2E00037D40 /* RCTUIManager.m in Sources */, - 46EB2E00037D50 /* RCTUIManagerObserverCoordinator.mm in Sources */, - 46EB2E00037D60 /* RCTUIManagerUtils.m in Sources */, - 46EB2E00037D80 /* RCTUIUtils.m in Sources */, - 46EB2E00037B50 /* RCTUtils.m in Sources */, - 46EB2E00037B60 /* RCTUtilsUIOverride.m in Sources */, - 46EB2E00037B70 /* RCTVersion.m in Sources */, - 46EB2E00037F40 /* RCTView.m in Sources */, - 46EB2E00037F50 /* RCTViewManager.m in Sources */, - 46EB2E00037B80 /* RCTViewRegistry.m in Sources */, - 46EB2E00037F60 /* RCTViewUtils.m in Sources */, - 46EB2E00037B90 /* RCTWeakProxy.m in Sources */, - 46EB2E00037F70 /* RCTWrapperViewController.m in Sources */, - 46EB2E000390B0 /* React-Core-dummy.m in Sources */, - 46EB2E00038040 /* UIView+React.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000376E0 /* Sources */ = { + 46EB2E000379B0 /* JSCExecutorFactory.mm in Sources */, + 46EB2E000379C0 /* NSDataBigString.mm in Sources */, + 46EB2E00037B20 /* RCTActivityIndicatorView.m in Sources */, + 46EB2E00037B30 /* RCTActivityIndicatorViewManager.m in Sources */, + 46EB2E000376A0 /* RCTAppSetupUtils.mm in Sources */, + 46EB2E000376B0 /* RCTAssert.m in Sources */, + 46EB2E00037B40 /* RCTBorderDrawing.m in Sources */, + 46EB2E000376C0 /* RCTBridge.m in Sources */, + 46EB2E000376D0 /* RCTBridgeModuleDecorator.m in Sources */, + 46EB2E000376E0 /* RCTBundleManager.m in Sources */, + 46EB2E000376F0 /* RCTBundleURLProvider.mm in Sources */, + 46EB2E00037700 /* RCTCallableJSModules.m in Sources */, + 46EB2E00037B50 /* RCTComponentData.m in Sources */, + 46EB2E00037710 /* RCTComponentEvent.m in Sources */, + 46EB2E00037720 /* RCTConstants.m in Sources */, + 46EB2E00037730 /* RCTConvert.m in Sources */, + 46EB2E00037B60 /* RCTConvert+CoreLocation.m in Sources */, + 46EB2E00037B70 /* RCTConvert+Transform.m in Sources */, + 46EB2E000379D0 /* RCTCxxBridge.mm in Sources */, + 46EB2E00037740 /* RCTCxxConvert.m in Sources */, + 46EB2E00037A20 /* RCTCxxMethod.mm in Sources */, + 46EB2E00037A30 /* RCTCxxModule.mm in Sources */, + 46EB2E00037A40 /* RCTCxxUtils.mm in Sources */, + 46EB2E00037B80 /* RCTDatePicker.m in Sources */, + 46EB2E00037B90 /* RCTDatePickerManager.m in Sources */, + 46EB2E00037A10 /* RCTDefaultCxxLogFunction.mm in Sources */, + 46EB2E00038720 /* RCTDevLoadingViewSetEnabled.m in Sources */, + 46EB2E00037750 /* RCTDisplayLink.m in Sources */, + 46EB2E00037760 /* RCTErrorInfo.m in Sources */, + 46EB2E00037770 /* RCTEventDispatcher.m in Sources */, + 46EB2E00037A70 /* RCTEventEmitter.m in Sources */, + 46EB2E00037A60 /* RCTFollyConvert.mm in Sources */, + 46EB2E00037BA0 /* RCTFont.mm in Sources */, + 46EB2E00037780 /* RCTFrameUpdate.m in Sources */, + 46EB2E00037A80 /* RCTI18nUtil.m in Sources */, + 46EB2E00037790 /* RCTImageSource.m in Sources */, + 46EB2E00038760 /* RCTInspector.mm in Sources */, + 46EB2E00038730 /* RCTInspectorDevServerHelper.mm in Sources */, + 46EB2E00038770 /* RCTInspectorPackagerConnection.m in Sources */, + 46EB2E000377A0 /* RCTJavaScriptLoader.mm in Sources */, + 46EB2E000379E0 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, + 46EB2E000377B0 /* RCTJSStackFrame.m in Sources */, + 46EB2E000377C0 /* RCTJSThread.m in Sources */, + 46EB2E000377D0 /* RCTKeyCommands.m in Sources */, + 46EB2E00037BB0 /* RCTLayout.m in Sources */, + 46EB2E00037A90 /* RCTLayoutAnimation.m in Sources */, + 46EB2E00037AA0 /* RCTLayoutAnimationGroup.m in Sources */, + 46EB2E000377E0 /* RCTLog.mm in Sources */, + 46EB2E000377F0 /* RCTManagedPointer.mm in Sources */, + 46EB2E00037BC0 /* RCTMaskedView.m in Sources */, + 46EB2E00037BD0 /* RCTMaskedViewManager.m in Sources */, + 46EB2E000379F0 /* RCTMessageThread.mm in Sources */, + 46EB2E00037BE0 /* RCTModalHostView.m in Sources */, + 46EB2E00037BF0 /* RCTModalHostViewController.m in Sources */, + 46EB2E00037C00 /* RCTModalHostViewManager.m in Sources */, + 46EB2E00037C10 /* RCTModalManager.m in Sources */, + 46EB2E00037800 /* RCTModuleData.mm in Sources */, + 46EB2E00037810 /* RCTModuleMethod.mm in Sources */, + 46EB2E00037820 /* RCTModuleRegistry.m in Sources */, + 46EB2E00037830 /* RCTMultipartDataTask.m in Sources */, + 46EB2E00037840 /* RCTMultipartStreamReader.m in Sources */, + 46EB2E00037A50 /* RCTNativeModule.mm in Sources */, + 46EB2E00037A00 /* RCTObjcExecutor.mm in Sources */, + 46EB2E00038740 /* RCTPackagerClient.m in Sources */, + 46EB2E00038750 /* RCTPackagerConnection.mm in Sources */, + 46EB2E00037850 /* RCTParserUtils.m in Sources */, + 46EB2E00037860 /* RCTPerformanceLogger.m in Sources */, + 46EB2E00037870 /* RCTPerformanceLoggerLabels.m in Sources */, + 46EB2E00037B00 /* RCTProfile.m in Sources */, + 46EB2E000386E0 /* RCTProfileTrampoline-arm.S in Sources */, + 46EB2E000386F0 /* RCTProfileTrampoline-arm64.S in Sources */, + 46EB2E00038700 /* RCTProfileTrampoline-i386.S in Sources */, + 46EB2E00038710 /* RCTProfileTrampoline-x86_64.S in Sources */, + 46EB2E00037C20 /* RCTProgressViewManager.m in Sources */, + 46EB2E00038D90 /* RCTReconnectingWebSocket.m in Sources */, + 46EB2E00037AB0 /* RCTRedBoxExtraDataViewController.m in Sources */, + 46EB2E00037880 /* RCTRedBoxSetEnabled.m in Sources */, + 46EB2E00037D10 /* RCTRefreshControl.m in Sources */, + 46EB2E00037D20 /* RCTRefreshControlManager.m in Sources */, + 46EB2E00037890 /* RCTReloadCommand.m in Sources */, + 46EB2E000378A0 /* RCTRootContentView.m in Sources */, + 46EB2E00037C30 /* RCTRootShadowView.m in Sources */, + 46EB2E000378B0 /* RCTRootView.m in Sources */, + 46EB2E00037D30 /* RCTSafeAreaShadowView.m in Sources */, + 46EB2E00037D40 /* RCTSafeAreaView.m in Sources */, + 46EB2E00037D50 /* RCTSafeAreaViewLocalData.m in Sources */, + 46EB2E00037D60 /* RCTSafeAreaViewManager.m in Sources */, + 46EB2E00037D70 /* RCTScrollContentShadowView.m in Sources */, + 46EB2E00037D80 /* RCTScrollContentView.m in Sources */, + 46EB2E00037D90 /* RCTScrollContentViewManager.m in Sources */, + 46EB2E00037DA0 /* RCTScrollEvent.m in Sources */, + 46EB2E00037DB0 /* RCTScrollView.m in Sources */, + 46EB2E00037DC0 /* RCTScrollViewManager.m in Sources */, + 46EB2E00037C40 /* RCTSegmentedControl.m in Sources */, + 46EB2E00037C50 /* RCTSegmentedControlManager.m in Sources */, + 46EB2E00037C80 /* RCTShadowView.m in Sources */, + 46EB2E00037C60 /* RCTShadowView+Internal.m in Sources */, + 46EB2E00037C70 /* RCTShadowView+Layout.m in Sources */, + 46EB2E00037C90 /* RCTSlider.m in Sources */, + 46EB2E00037CA0 /* RCTSliderManager.m in Sources */, + 46EB2E00038DA0 /* RCTSRWebSocket.m in Sources */, + 46EB2E00037930 /* RCTSurface.mm in Sources */, + 46EB2E00037980 /* RCTSurfaceHostingProxyRootView.mm in Sources */, + 46EB2E00037990 /* RCTSurfaceHostingView.mm in Sources */, + 46EB2E00037AC0 /* RCTSurfacePresenterStub.m in Sources */, + 46EB2E00037940 /* RCTSurfaceRootShadowView.m in Sources */, + 46EB2E00037950 /* RCTSurfaceRootView.mm in Sources */, + 46EB2E000379A0 /* RCTSurfaceSizeMeasureMode.mm in Sources */, + 46EB2E00037960 /* RCTSurfaceStage.m in Sources */, + 46EB2E00037970 /* RCTSurfaceView.mm in Sources */, + 46EB2E00037CB0 /* RCTSwitch.m in Sources */, + 46EB2E00037CC0 /* RCTSwitchManager.m in Sources */, + 46EB2E000378C0 /* RCTTouchEvent.m in Sources */, + 46EB2E000378D0 /* RCTTouchHandler.m in Sources */, + 46EB2E00037AD0 /* RCTUIManager.m in Sources */, + 46EB2E00037AE0 /* RCTUIManagerObserverCoordinator.mm in Sources */, + 46EB2E00037AF0 /* RCTUIManagerUtils.m in Sources */, + 46EB2E00037B10 /* RCTUIUtils.m in Sources */, + 46EB2E000378E0 /* RCTUtils.m in Sources */, + 46EB2E000378F0 /* RCTUtilsUIOverride.m in Sources */, + 46EB2E00037900 /* RCTVersion.m in Sources */, + 46EB2E00037CD0 /* RCTView.m in Sources */, + 46EB2E00037CE0 /* RCTViewManager.m in Sources */, + 46EB2E00037910 /* RCTViewRegistry.m in Sources */, + 46EB2E00037CF0 /* RCTViewUtils.m in Sources */, + 46EB2E00037920 /* RCTWeakProxy.m in Sources */, + 46EB2E00037D00 /* RCTWrapperViewController.m in Sources */, + 46EB2E00038E40 /* React-Core-dummy.m in Sources */, + 46EB2E00037DD0 /* UIView+React.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00037470 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039120 /* Sources */ = { + 46EB2E00038EB0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039140 /* CoreModulesPlugins.mm in Sources */, - 46EB2E00039150 /* RCTAccessibilityManager.mm in Sources */, - 46EB2E00039160 /* RCTActionSheetManager.mm in Sources */, - 46EB2E00039170 /* RCTAlertController.m in Sources */, - 46EB2E00039180 /* RCTAlertManager.mm in Sources */, - 46EB2E00039190 /* RCTAppearance.mm in Sources */, - 46EB2E000391A0 /* RCTAppState.mm in Sources */, - 46EB2E000391B0 /* RCTAsyncLocalStorage.mm in Sources */, - 46EB2E000391C0 /* RCTClipboard.mm in Sources */, - 46EB2E000391D0 /* RCTDeviceInfo.mm in Sources */, - 46EB2E000391E0 /* RCTDevLoadingView.mm in Sources */, - 46EB2E000391F0 /* RCTDevMenu.mm in Sources */, - 46EB2E00039200 /* RCTDevSettings.mm in Sources */, - 46EB2E00039210 /* RCTDevSplitBundleLoader.mm in Sources */, - 46EB2E00039220 /* RCTEventDispatcher.mm in Sources */, - 46EB2E00039230 /* RCTExceptionsManager.mm in Sources */, - 46EB2E00039240 /* RCTFPSGraph.m in Sources */, - 46EB2E00039250 /* RCTI18nManager.mm in Sources */, - 46EB2E00039260 /* RCTKeyboardObserver.mm in Sources */, - 46EB2E00039270 /* RCTLogBox.mm in Sources */, - 46EB2E00039280 /* RCTLogBoxView.mm in Sources */, - 46EB2E00039290 /* RCTPerfMonitor.mm in Sources */, - 46EB2E000392A0 /* RCTPlatform.mm in Sources */, - 46EB2E000392B0 /* RCTRedBox.mm in Sources */, - 46EB2E000392C0 /* RCTSourceCode.mm in Sources */, - 46EB2E000392D0 /* RCTStatusBarManager.mm in Sources */, - 46EB2E000392E0 /* RCTTiming.mm in Sources */, - 46EB2E000392F0 /* RCTWebSocketExecutor.mm in Sources */, - 46EB2E00039300 /* RCTWebSocketModule.mm in Sources */, - 46EB2E00039360 /* React-CoreModules-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00039440 /* Sources */ = { + 46EB2E00038ED0 /* CoreModulesPlugins.mm in Sources */, + 46EB2E00038EE0 /* RCTAccessibilityManager.mm in Sources */, + 46EB2E00038EF0 /* RCTActionSheetManager.mm in Sources */, + 46EB2E00038F00 /* RCTAlertController.m in Sources */, + 46EB2E00038F10 /* RCTAlertManager.mm in Sources */, + 46EB2E00038F20 /* RCTAppearance.mm in Sources */, + 46EB2E00038F30 /* RCTAppState.mm in Sources */, + 46EB2E00038F40 /* RCTAsyncLocalStorage.mm in Sources */, + 46EB2E00038F50 /* RCTClipboard.mm in Sources */, + 46EB2E00038F60 /* RCTDeviceInfo.mm in Sources */, + 46EB2E00038F70 /* RCTDevLoadingView.mm in Sources */, + 46EB2E00038F80 /* RCTDevMenu.mm in Sources */, + 46EB2E00038F90 /* RCTDevSettings.mm in Sources */, + 46EB2E00038FA0 /* RCTDevSplitBundleLoader.mm in Sources */, + 46EB2E00038FB0 /* RCTEventDispatcher.mm in Sources */, + 46EB2E00038FC0 /* RCTExceptionsManager.mm in Sources */, + 46EB2E00038FD0 /* RCTFPSGraph.m in Sources */, + 46EB2E00038FE0 /* RCTI18nManager.mm in Sources */, + 46EB2E00038FF0 /* RCTKeyboardObserver.mm in Sources */, + 46EB2E00039000 /* RCTLogBox.mm in Sources */, + 46EB2E00039010 /* RCTLogBoxView.mm in Sources */, + 46EB2E00039020 /* RCTPerfMonitor.mm in Sources */, + 46EB2E00039030 /* RCTPlatform.mm in Sources */, + 46EB2E00039040 /* RCTRedBox.mm in Sources */, + 46EB2E00039050 /* RCTSourceCode.mm in Sources */, + 46EB2E00039060 /* RCTStatusBarManager.mm in Sources */, + 46EB2E00039070 /* RCTTiming.mm in Sources */, + 46EB2E00039080 /* RCTWebSocketExecutor.mm in Sources */, + 46EB2E00039090 /* RCTWebSocketModule.mm in Sources */, + 46EB2E000390F0 /* React-CoreModules-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000391D0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000394A0 /* RCTAdditionAnimatedNode.m in Sources */, - 46EB2E000394B0 /* RCTAnimatedNode.m in Sources */, - 46EB2E00039580 /* RCTAnimationPlugins.mm in Sources */, - 46EB2E00039590 /* RCTAnimationUtils.m in Sources */, - 46EB2E000394C0 /* RCTColorAnimatedNode.m in Sources */, - 46EB2E00039460 /* RCTDecayAnimation.m in Sources */, - 46EB2E000394D0 /* RCTDiffClampAnimatedNode.m in Sources */, - 46EB2E000394E0 /* RCTDivisionAnimatedNode.m in Sources */, - 46EB2E00039470 /* RCTEventAnimation.m in Sources */, - 46EB2E00039480 /* RCTFrameAnimation.m in Sources */, - 46EB2E000394F0 /* RCTInterpolationAnimatedNode.m in Sources */, - 46EB2E00039500 /* RCTModuloAnimatedNode.m in Sources */, - 46EB2E00039510 /* RCTMultiplicationAnimatedNode.m in Sources */, - 46EB2E000395A0 /* RCTNativeAnimatedModule.mm in Sources */, - 46EB2E000395B0 /* RCTNativeAnimatedNodesManager.m in Sources */, - 46EB2E000395C0 /* RCTNativeAnimatedTurboModule.mm in Sources */, - 46EB2E00039520 /* RCTPropsAnimatedNode.m in Sources */, - 46EB2E00039490 /* RCTSpringAnimation.m in Sources */, - 46EB2E00039530 /* RCTStyleAnimatedNode.m in Sources */, - 46EB2E00039540 /* RCTSubtractionAnimatedNode.m in Sources */, - 46EB2E00039550 /* RCTTrackingAnimatedNode.m in Sources */, - 46EB2E00039560 /* RCTTransformAnimatedNode.m in Sources */, - 46EB2E00039570 /* RCTValueAnimatedNode.m in Sources */, - 46EB2E000397A0 /* React-RCTAnimation-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00039810 /* Sources */ = { + 46EB2E00039230 /* RCTAdditionAnimatedNode.m in Sources */, + 46EB2E00039240 /* RCTAnimatedNode.m in Sources */, + 46EB2E00039310 /* RCTAnimationPlugins.mm in Sources */, + 46EB2E00039320 /* RCTAnimationUtils.m in Sources */, + 46EB2E00039250 /* RCTColorAnimatedNode.m in Sources */, + 46EB2E000391F0 /* RCTDecayAnimation.m in Sources */, + 46EB2E00039260 /* RCTDiffClampAnimatedNode.m in Sources */, + 46EB2E00039270 /* RCTDivisionAnimatedNode.m in Sources */, + 46EB2E00039200 /* RCTEventAnimation.m in Sources */, + 46EB2E00039210 /* RCTFrameAnimation.m in Sources */, + 46EB2E00039280 /* RCTInterpolationAnimatedNode.m in Sources */, + 46EB2E00039290 /* RCTModuloAnimatedNode.m in Sources */, + 46EB2E000392A0 /* RCTMultiplicationAnimatedNode.m in Sources */, + 46EB2E00039330 /* RCTNativeAnimatedModule.mm in Sources */, + 46EB2E00039340 /* RCTNativeAnimatedNodesManager.m in Sources */, + 46EB2E00039350 /* RCTNativeAnimatedTurboModule.mm in Sources */, + 46EB2E000392B0 /* RCTPropsAnimatedNode.m in Sources */, + 46EB2E00039220 /* RCTSpringAnimation.m in Sources */, + 46EB2E000392C0 /* RCTStyleAnimatedNode.m in Sources */, + 46EB2E000392D0 /* RCTSubtractionAnimatedNode.m in Sources */, + 46EB2E000392E0 /* RCTTrackingAnimatedNode.m in Sources */, + 46EB2E000392F0 /* RCTTransformAnimatedNode.m in Sources */, + 46EB2E00039300 /* RCTValueAnimatedNode.m in Sources */, + 46EB2E00039530 /* React-RCTAnimation-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000395A0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039830 /* RCTBlobCollector.mm in Sources */, - 46EB2E00039840 /* RCTBlobManager.mm in Sources */, - 46EB2E00039850 /* RCTBlobPlugins.mm in Sources */, - 46EB2E00039860 /* RCTFileReaderModule.mm in Sources */, - 46EB2E00039900 /* React-RCTBlob-dummy.m in Sources */, + 46EB2E000395C0 /* RCTBlobCollector.mm in Sources */, + 46EB2E000395D0 /* RCTBlobManager.mm in Sources */, + 46EB2E000395E0 /* RCTBlobPlugins.mm in Sources */, + 46EB2E000395F0 /* RCTFileReaderModule.mm in Sources */, + 46EB2E00039690 /* React-RCTBlob-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039970 /* Sources */ = { + 46EB2E00039700 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039990 /* RCTAnimatedImage.m in Sources */, - 46EB2E000399A0 /* RCTDisplayWeakRefreshable.m in Sources */, - 46EB2E000399B0 /* RCTGIFImageDecoder.mm in Sources */, - 46EB2E000399C0 /* RCTImageBlurUtils.m in Sources */, - 46EB2E000399D0 /* RCTImageCache.m in Sources */, - 46EB2E000399E0 /* RCTImageEditingManager.mm in Sources */, - 46EB2E000399F0 /* RCTImageLoader.mm in Sources */, - 46EB2E00039A00 /* RCTImagePlugins.mm in Sources */, - 46EB2E00039A10 /* RCTImageShadowView.m in Sources */, - 46EB2E00039A20 /* RCTImageStoreManager.mm in Sources */, - 46EB2E00039A30 /* RCTImageURLLoaderWithAttribution.mm in Sources */, - 46EB2E00039A40 /* RCTImageUtils.m in Sources */, - 46EB2E00039A50 /* RCTImageView.mm in Sources */, - 46EB2E00039A60 /* RCTImageViewManager.mm in Sources */, - 46EB2E00039A70 /* RCTLocalAssetImageLoader.mm in Sources */, - 46EB2E00039A80 /* RCTResizeMode.m in Sources */, - 46EB2E00039A90 /* RCTUIImageViewAnimated.m in Sources */, - 46EB2E00039AF0 /* React-RCTImage-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00039B60 /* Sources */ = { + 46EB2E00039720 /* RCTAnimatedImage.m in Sources */, + 46EB2E00039730 /* RCTDisplayWeakRefreshable.m in Sources */, + 46EB2E00039740 /* RCTGIFImageDecoder.mm in Sources */, + 46EB2E00039750 /* RCTImageBlurUtils.m in Sources */, + 46EB2E00039760 /* RCTImageCache.m in Sources */, + 46EB2E00039770 /* RCTImageEditingManager.mm in Sources */, + 46EB2E00039780 /* RCTImageLoader.mm in Sources */, + 46EB2E00039790 /* RCTImagePlugins.mm in Sources */, + 46EB2E000397A0 /* RCTImageShadowView.m in Sources */, + 46EB2E000397B0 /* RCTImageStoreManager.mm in Sources */, + 46EB2E000397C0 /* RCTImageURLLoaderWithAttribution.mm in Sources */, + 46EB2E000397D0 /* RCTImageUtils.m in Sources */, + 46EB2E000397E0 /* RCTImageView.mm in Sources */, + 46EB2E000397F0 /* RCTImageViewManager.mm in Sources */, + 46EB2E00039800 /* RCTLocalAssetImageLoader.mm in Sources */, + 46EB2E00039810 /* RCTResizeMode.m in Sources */, + 46EB2E00039820 /* RCTUIImageViewAnimated.m in Sources */, + 46EB2E00039880 /* React-RCTImage-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E000398F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039B80 /* RCTLinkingManager.mm in Sources */, - 46EB2E00039B90 /* RCTLinkingPlugins.mm in Sources */, - 46EB2E00039BF0 /* React-RCTLinking-dummy.m in Sources */, + 46EB2E00039910 /* RCTLinkingManager.mm in Sources */, + 46EB2E00039920 /* RCTLinkingPlugins.mm in Sources */, + 46EB2E00039980 /* React-RCTLinking-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039C60 /* Sources */ = { + 46EB2E000399F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039C80 /* RCTDataRequestHandler.mm in Sources */, - 46EB2E00039C90 /* RCTFileRequestHandler.mm in Sources */, - 46EB2E00039CA0 /* RCTHTTPRequestHandler.mm in Sources */, - 46EB2E00039CB0 /* RCTNetworking.mm in Sources */, - 46EB2E00039CC0 /* RCTNetworkPlugins.mm in Sources */, - 46EB2E00039CD0 /* RCTNetworkTask.mm in Sources */, - 46EB2E00039D30 /* React-RCTNetwork-dummy.m in Sources */, + 46EB2E00039A10 /* RCTDataRequestHandler.mm in Sources */, + 46EB2E00039A20 /* RCTFileRequestHandler.mm in Sources */, + 46EB2E00039A30 /* RCTHTTPRequestHandler.mm in Sources */, + 46EB2E00039A40 /* RCTNetworking.mm in Sources */, + 46EB2E00039A50 /* RCTNetworkPlugins.mm in Sources */, + 46EB2E00039A60 /* RCTNetworkTask.mm in Sources */, + 46EB2E00039AC0 /* React-RCTNetwork-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039DA0 /* Sources */ = { + 46EB2E00039B30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039DC0 /* RCTSettingsManager.mm in Sources */, - 46EB2E00039DD0 /* RCTSettingsPlugins.mm in Sources */, - 46EB2E00039E30 /* React-RCTSettings-dummy.m in Sources */, + 46EB2E00039B50 /* RCTSettingsManager.mm in Sources */, + 46EB2E00039B60 /* RCTSettingsPlugins.mm in Sources */, + 46EB2E00039BC0 /* React-RCTSettings-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00039EA0 /* Sources */ = { + 46EB2E00039C30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00039F20 /* NSTextStorage+FontScaling.m in Sources */, - 46EB2E00039F90 /* RCTBackedTextInputDelegateAdapter.m in Sources */, - 46EB2E00039FA0 /* RCTBaseTextInputShadowView.m in Sources */, - 46EB2E00039FB0 /* RCTBaseTextInputView.m in Sources */, - 46EB2E00039FC0 /* RCTBaseTextInputViewManager.m in Sources */, - 46EB2E00039EC0 /* RCTBaseTextShadowView.m in Sources */, - 46EB2E00039ED0 /* RCTBaseTextViewManager.m in Sources */, - 46EB2E00039F00 /* RCTConvert+Text.m in Sources */, - 46EB2E00039FD0 /* RCTInputAccessoryShadowView.m in Sources */, - 46EB2E00039FE0 /* RCTInputAccessoryView.m in Sources */, - 46EB2E00039FF0 /* RCTInputAccessoryViewContent.m in Sources */, - 46EB2E0003A000 /* RCTInputAccessoryViewManager.m in Sources */, - 46EB2E00039F60 /* RCTMultilineTextInputView.m in Sources */, - 46EB2E00039F70 /* RCTMultilineTextInputViewManager.m in Sources */, - 46EB2E00039EE0 /* RCTRawTextShadowView.m in Sources */, - 46EB2E00039EF0 /* RCTRawTextViewManager.m in Sources */, - 46EB2E0003A020 /* RCTSinglelineTextInputView.m in Sources */, - 46EB2E0003A030 /* RCTSinglelineTextInputViewManager.m in Sources */, - 46EB2E00039F10 /* RCTTextAttributes.m in Sources */, - 46EB2E0003A010 /* RCTTextSelection.m in Sources */, - 46EB2E00039F30 /* RCTTextShadowView.m in Sources */, - 46EB2E00039F40 /* RCTTextView.m in Sources */, - 46EB2E00039F50 /* RCTTextViewManager.m in Sources */, - 46EB2E0003A040 /* RCTUITextField.m in Sources */, - 46EB2E00039F80 /* RCTUITextView.m in Sources */, - 46EB2E0003A050 /* RCTVirtualTextShadowView.m in Sources */, - 46EB2E0003A060 /* RCTVirtualTextViewManager.m in Sources */, - 46EB2E0003A2A0 /* React-RCTText-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003A310 /* Sources */ = { + 46EB2E00039CB0 /* NSTextStorage+FontScaling.m in Sources */, + 46EB2E00039D20 /* RCTBackedTextInputDelegateAdapter.m in Sources */, + 46EB2E00039D30 /* RCTBaseTextInputShadowView.m in Sources */, + 46EB2E00039D40 /* RCTBaseTextInputView.m in Sources */, + 46EB2E00039D50 /* RCTBaseTextInputViewManager.m in Sources */, + 46EB2E00039C50 /* RCTBaseTextShadowView.m in Sources */, + 46EB2E00039C60 /* RCTBaseTextViewManager.m in Sources */, + 46EB2E00039C90 /* RCTConvert+Text.m in Sources */, + 46EB2E00039D60 /* RCTInputAccessoryShadowView.m in Sources */, + 46EB2E00039D70 /* RCTInputAccessoryView.m in Sources */, + 46EB2E00039D80 /* RCTInputAccessoryViewContent.m in Sources */, + 46EB2E00039D90 /* RCTInputAccessoryViewManager.m in Sources */, + 46EB2E00039CF0 /* RCTMultilineTextInputView.m in Sources */, + 46EB2E00039D00 /* RCTMultilineTextInputViewManager.m in Sources */, + 46EB2E00039C70 /* RCTRawTextShadowView.m in Sources */, + 46EB2E00039C80 /* RCTRawTextViewManager.m in Sources */, + 46EB2E00039DB0 /* RCTSinglelineTextInputView.m in Sources */, + 46EB2E00039DC0 /* RCTSinglelineTextInputViewManager.m in Sources */, + 46EB2E00039CA0 /* RCTTextAttributes.m in Sources */, + 46EB2E00039DA0 /* RCTTextSelection.m in Sources */, + 46EB2E00039CC0 /* RCTTextShadowView.m in Sources */, + 46EB2E00039CD0 /* RCTTextView.m in Sources */, + 46EB2E00039CE0 /* RCTTextViewManager.m in Sources */, + 46EB2E00039DD0 /* RCTUITextField.m in Sources */, + 46EB2E00039D10 /* RCTUITextView.m in Sources */, + 46EB2E00039DE0 /* RCTVirtualTextShadowView.m in Sources */, + 46EB2E00039DF0 /* RCTVirtualTextViewManager.m in Sources */, + 46EB2E0003A030 /* React-RCTText-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003A0A0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A330 /* RCTVibration.mm in Sources */, - 46EB2E0003A340 /* RCTVibrationPlugins.mm in Sources */, - 46EB2E0003A3A0 /* React-RCTVibration-dummy.m in Sources */, + 46EB2E0003A0C0 /* RCTVibration.mm in Sources */, + 46EB2E0003A0D0 /* RCTVibrationPlugins.mm in Sources */, + 46EB2E0003A130 /* React-RCTVibration-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A410 /* Sources */ = { + 46EB2E0003A1A0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A430 /* LongLivedObject.cpp in Sources */, - 46EB2E0003A580 /* React-bridging-dummy.m in Sources */, + 46EB2E0003A1C0 /* LongLivedObject.cpp in Sources */, + 46EB2E0003A310 /* React-bridging-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A660 /* Sources */ = { + 46EB2E0003A3F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A680 /* CxxNativeModule.cpp in Sources */, - 46EB2E0003A690 /* Instance.cpp in Sources */, - 46EB2E0003A6A0 /* JSBigString.cpp in Sources */, - 46EB2E0003A6B0 /* JSBundleType.cpp in Sources */, - 46EB2E0003A6C0 /* JSExecutor.cpp in Sources */, - 46EB2E0003A6D0 /* JSIndexedRAMBundle.cpp in Sources */, - 46EB2E0003A6E0 /* MethodCall.cpp in Sources */, - 46EB2E0003A6F0 /* ModuleRegistry.cpp in Sources */, - 46EB2E0003A700 /* NativeToJsBridge.cpp in Sources */, - 46EB2E0003A710 /* RAMBundleRegistry.cpp in Sources */, - 46EB2E0003A8E0 /* React-cxxreact-dummy.m in Sources */, - 46EB2E0003A720 /* ReactMarker.cpp in Sources */, + 46EB2E0003A410 /* CxxNativeModule.cpp in Sources */, + 46EB2E0003A420 /* Instance.cpp in Sources */, + 46EB2E0003A430 /* JSBigString.cpp in Sources */, + 46EB2E0003A440 /* JSBundleType.cpp in Sources */, + 46EB2E0003A450 /* JSExecutor.cpp in Sources */, + 46EB2E0003A460 /* JSIndexedRAMBundle.cpp in Sources */, + 46EB2E0003A470 /* MethodCall.cpp in Sources */, + 46EB2E0003A480 /* ModuleRegistry.cpp in Sources */, + 46EB2E0003A490 /* NativeToJsBridge.cpp in Sources */, + 46EB2E0003A4A0 /* RAMBundleRegistry.cpp in Sources */, + 46EB2E0003A670 /* React-cxxreact-dummy.m in Sources */, + 46EB2E0003A4B0 /* ReactMarker.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003A950 /* Sources */ = { + 46EB2E0003A6E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003A9C0 /* AutoAttachUtils.cpp in Sources */, - 46EB2E0003AA30 /* CallbackOStream.cpp in Sources */, - 46EB2E0003A9D0 /* Connection.cpp in Sources */, - 46EB2E0003A9E0 /* ConnectionDemux.cpp in Sources */, - 46EB2E0003A970 /* HermesExecutorFactory.cpp in Sources */, - 46EB2E0003A990 /* Inspector.cpp in Sources */, - 46EB2E0003A9A0 /* InspectorState.cpp in Sources */, - 46EB2E0003A980 /* JSITracing.cpp in Sources */, - 46EB2E0003A9F0 /* MessageConverters.cpp in Sources */, - 46EB2E0003AA00 /* MessageTypes.cpp in Sources */, - 46EB2E0003ABE0 /* React-hermes-dummy.m in Sources */, - 46EB2E0003AA10 /* Registration.cpp in Sources */, - 46EB2E0003AA20 /* RemoteObjectsTable.cpp in Sources */, - 46EB2E0003A9B0 /* RuntimeAdapter.cpp in Sources */, - 46EB2E0003AA40 /* SerialExecutor.cpp in Sources */, - 46EB2E0003AA50 /* Thread.cpp in Sources */, + 46EB2E0003A750 /* AutoAttachUtils.cpp in Sources */, + 46EB2E0003A7C0 /* CallbackOStream.cpp in Sources */, + 46EB2E0003A760 /* Connection.cpp in Sources */, + 46EB2E0003A770 /* ConnectionDemux.cpp in Sources */, + 46EB2E0003A700 /* HermesExecutorFactory.cpp in Sources */, + 46EB2E0003A720 /* Inspector.cpp in Sources */, + 46EB2E0003A730 /* InspectorState.cpp in Sources */, + 46EB2E0003A710 /* JSITracing.cpp in Sources */, + 46EB2E0003A780 /* MessageConverters.cpp in Sources */, + 46EB2E0003A790 /* MessageTypes.cpp in Sources */, + 46EB2E0003A970 /* React-hermes-dummy.m in Sources */, + 46EB2E0003A7A0 /* Registration.cpp in Sources */, + 46EB2E0003A7B0 /* RemoteObjectsTable.cpp in Sources */, + 46EB2E0003A740 /* RuntimeAdapter.cpp in Sources */, + 46EB2E0003A7D0 /* SerialExecutor.cpp in Sources */, + 46EB2E0003A7E0 /* Thread.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AC50 /* Sources */ = { + 46EB2E0003A9E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AC70 /* JSCRuntime.cpp in Sources */, - 46EB2E0003AC80 /* jsi.cpp in Sources */, - 46EB2E0003AC90 /* JSIDynamic.cpp in Sources */, - 46EB2E0003ACA0 /* jsilib-posix.cpp in Sources */, - 46EB2E0003ACB0 /* jsilib-windows.cpp in Sources */, - 46EB2E0003AD90 /* React-jsi-dummy.m in Sources */, + 46EB2E0003AA00 /* JSCRuntime.cpp in Sources */, + 46EB2E0003AA10 /* jsi.cpp in Sources */, + 46EB2E0003AA20 /* JSIDynamic.cpp in Sources */, + 46EB2E0003AA30 /* jsilib-posix.cpp in Sources */, + 46EB2E0003AA40 /* jsilib-windows.cpp in Sources */, + 46EB2E0003AB20 /* React-jsi-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AE00 /* Sources */ = { + 46EB2E0003AB90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AE20 /* JSIExecutor.cpp in Sources */, - 46EB2E0003AE30 /* JSINativeModules.cpp in Sources */, - 46EB2E0003AEB0 /* React-jsiexecutor-dummy.m in Sources */, + 46EB2E0003ABB0 /* JSIExecutor.cpp in Sources */, + 46EB2E0003ABC0 /* JSINativeModules.cpp in Sources */, + 46EB2E0003AC40 /* React-jsiexecutor-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003AF20 /* Sources */ = { + 46EB2E0003ACB0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003AF40 /* InspectorInterfaces.cpp in Sources */, - 46EB2E0003AFB0 /* React-jsinspector-dummy.m in Sources */, + 46EB2E0003ACD0 /* InspectorInterfaces.cpp in Sources */, + 46EB2E0003AD40 /* React-jsinspector-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B020 /* Sources */ = { + 46EB2E0003ADB0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B0B0 /* React-logger-dummy.m in Sources */, - 46EB2E0003B040 /* react_native_log.cpp in Sources */, + 46EB2E0003AE40 /* React-logger-dummy.m in Sources */, + 46EB2E0003ADD0 /* react_native_log.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B120 /* Sources */ = { + 46EB2E0003AEB0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B140 /* BridgeNativeModulePerfLogger.cpp in Sources */, - 46EB2E0003B1C0 /* React-perflogger-dummy.m in Sources */, + 46EB2E0003AED0 /* BridgeNativeModulePerfLogger.cpp in Sources */, + 46EB2E0003AF50 /* React-perflogger-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B2A0 /* Sources */ = { + 46EB2E0003B030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B310 /* RCTBlockGuard.mm in Sources */, - 46EB2E0003B320 /* RCTTurboModule.mm in Sources */, - 46EB2E0003B330 /* RCTTurboModuleManager.mm in Sources */, - 46EB2E0003B450 /* ReactCommon-dummy.m in Sources */, - 46EB2E0003B2C0 /* TurboCxxModule.cpp in Sources */, - 46EB2E0003B2D0 /* TurboModule.cpp in Sources */, - 46EB2E0003B2E0 /* TurboModuleBinding.cpp in Sources */, - 46EB2E0003B2F0 /* TurboModulePerfLogger.cpp in Sources */, - 46EB2E0003B300 /* TurboModuleUtils.cpp in Sources */, + 46EB2E0003B0A0 /* RCTBlockGuard.mm in Sources */, + 46EB2E0003B0B0 /* RCTTurboModule.mm in Sources */, + 46EB2E0003B0C0 /* RCTTurboModuleManager.mm in Sources */, + 46EB2E0003B1E0 /* ReactCommon-dummy.m in Sources */, + 46EB2E0003B050 /* TurboCxxModule.cpp in Sources */, + 46EB2E0003B060 /* TurboModule.cpp in Sources */, + 46EB2E0003B070 /* TurboModuleBinding.cpp in Sources */, + 46EB2E0003B080 /* TurboModulePerfLogger.cpp in Sources */, + 46EB2E0003B090 /* TurboModuleUtils.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003B4C0 /* Sources */ = { + 46EB2E0003B250 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003B880 /* NSBezierPath+SDRoundedCorners.m in Sources */, - 46EB2E0003B4E0 /* NSButton+WebCache.m in Sources */, - 46EB2E0003B4F0 /* NSData+ImageContentType.m in Sources */, - 46EB2E0003B500 /* NSImage+Compatibility.m in Sources */, - 46EB2E0003B510 /* SDAnimatedImage.m in Sources */, - 46EB2E0003B520 /* SDAnimatedImagePlayer.m in Sources */, - 46EB2E0003B530 /* SDAnimatedImageRep.m in Sources */, - 46EB2E0003B550 /* SDAnimatedImageView.m in Sources */, - 46EB2E0003B540 /* SDAnimatedImageView+WebCache.m in Sources */, - 46EB2E0003B890 /* SDAssociatedObject.m in Sources */, - 46EB2E0003B8A0 /* SDAsyncBlockOperation.m in Sources */, - 46EB2E0003B8B0 /* SDDeviceHelper.m in Sources */, - 46EB2E0003B560 /* SDDiskCache.m in Sources */, - 46EB2E0003B8C0 /* SDDisplayLink.m in Sources */, - 46EB2E0003B8D0 /* SDFileAttributeHelper.m in Sources */, - 46EB2E0003B570 /* SDGraphicsImageRenderer.m in Sources */, - 46EB2E0003B580 /* SDImageAPNGCoder.m in Sources */, - 46EB2E0003B8E0 /* SDImageAssetManager.m in Sources */, - 46EB2E0003B590 /* SDImageAWebPCoder.m in Sources */, - 46EB2E0003B5A0 /* SDImageCache.m in Sources */, - 46EB2E0003B5B0 /* SDImageCacheConfig.m in Sources */, - 46EB2E0003B5C0 /* SDImageCacheDefine.m in Sources */, - 46EB2E0003B5D0 /* SDImageCachesManager.m in Sources */, - 46EB2E0003B8F0 /* SDImageCachesManagerOperation.m in Sources */, - 46EB2E0003B5E0 /* SDImageCoder.m in Sources */, - 46EB2E0003B5F0 /* SDImageCoderHelper.m in Sources */, - 46EB2E0003B600 /* SDImageCodersManager.m in Sources */, - 46EB2E0003B610 /* SDImageFrame.m in Sources */, - 46EB2E0003B620 /* SDImageGIFCoder.m in Sources */, - 46EB2E0003B630 /* SDImageGraphics.m in Sources */, - 46EB2E0003B640 /* SDImageHEICCoder.m in Sources */, - 46EB2E0003B650 /* SDImageIOAnimatedCoder.m in Sources */, - 46EB2E0003B660 /* SDImageIOCoder.m in Sources */, - 46EB2E0003B670 /* SDImageLoader.m in Sources */, - 46EB2E0003B680 /* SDImageLoadersManager.m in Sources */, - 46EB2E0003B690 /* SDImageTransformer.m in Sources */, - 46EB2E0003B900 /* SDInternalMacros.m in Sources */, - 46EB2E0003B6A0 /* SDMemoryCache.m in Sources */, - 46EB2E0003B910 /* SDWeakProxy.m in Sources */, - 46EB2E0003BE10 /* SDWebImage-dummy.m in Sources */, - 46EB2E0003B6B0 /* SDWebImageCacheKeyFilter.m in Sources */, - 46EB2E0003B6C0 /* SDWebImageCacheSerializer.m in Sources */, - 46EB2E0003B6D0 /* SDWebImageCompat.m in Sources */, - 46EB2E0003B6E0 /* SDWebImageDefine.m in Sources */, - 46EB2E0003B6F0 /* SDWebImageDownloader.m in Sources */, - 46EB2E0003B700 /* SDWebImageDownloaderConfig.m in Sources */, - 46EB2E0003B710 /* SDWebImageDownloaderDecryptor.m in Sources */, - 46EB2E0003B720 /* SDWebImageDownloaderOperation.m in Sources */, - 46EB2E0003B730 /* SDWebImageDownloaderRequestModifier.m in Sources */, - 46EB2E0003B740 /* SDWebImageDownloaderResponseModifier.m in Sources */, - 46EB2E0003B750 /* SDWebImageError.m in Sources */, - 46EB2E0003B760 /* SDWebImageIndicator.m in Sources */, - 46EB2E0003B770 /* SDWebImageManager.m in Sources */, - 46EB2E0003B780 /* SDWebImageOperation.m in Sources */, - 46EB2E0003B790 /* SDWebImageOptionsProcessor.m in Sources */, - 46EB2E0003B7A0 /* SDWebImagePrefetcher.m in Sources */, - 46EB2E0003B7B0 /* SDWebImageTransition.m in Sources */, - 46EB2E0003B7C0 /* UIButton+WebCache.m in Sources */, - 46EB2E0003B920 /* UIColor+SDHexString.m in Sources */, - 46EB2E0003B7D0 /* UIImage+ExtendedCacheData.m in Sources */, - 46EB2E0003B7E0 /* UIImage+ForceDecode.m in Sources */, - 46EB2E0003B7F0 /* UIImage+GIF.m in Sources */, - 46EB2E0003B800 /* UIImage+MemoryCacheCost.m in Sources */, - 46EB2E0003B810 /* UIImage+Metadata.m in Sources */, - 46EB2E0003B820 /* UIImage+MultiFormat.m in Sources */, - 46EB2E0003B830 /* UIImage+Transform.m in Sources */, - 46EB2E0003B840 /* UIImageView+HighlightedWebCache.m in Sources */, - 46EB2E0003B850 /* UIImageView+WebCache.m in Sources */, - 46EB2E0003B860 /* UIView+WebCache.m in Sources */, - 46EB2E0003B870 /* UIView+WebCacheOperation.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003BE80 /* Sources */ = { + 46EB2E0003B610 /* NSBezierPath+SDRoundedCorners.m in Sources */, + 46EB2E0003B270 /* NSButton+WebCache.m in Sources */, + 46EB2E0003B280 /* NSData+ImageContentType.m in Sources */, + 46EB2E0003B290 /* NSImage+Compatibility.m in Sources */, + 46EB2E0003B2A0 /* SDAnimatedImage.m in Sources */, + 46EB2E0003B2B0 /* SDAnimatedImagePlayer.m in Sources */, + 46EB2E0003B2C0 /* SDAnimatedImageRep.m in Sources */, + 46EB2E0003B2E0 /* SDAnimatedImageView.m in Sources */, + 46EB2E0003B2D0 /* SDAnimatedImageView+WebCache.m in Sources */, + 46EB2E0003B620 /* SDAssociatedObject.m in Sources */, + 46EB2E0003B630 /* SDAsyncBlockOperation.m in Sources */, + 46EB2E0003B640 /* SDDeviceHelper.m in Sources */, + 46EB2E0003B2F0 /* SDDiskCache.m in Sources */, + 46EB2E0003B650 /* SDDisplayLink.m in Sources */, + 46EB2E0003B660 /* SDFileAttributeHelper.m in Sources */, + 46EB2E0003B300 /* SDGraphicsImageRenderer.m in Sources */, + 46EB2E0003B310 /* SDImageAPNGCoder.m in Sources */, + 46EB2E0003B670 /* SDImageAssetManager.m in Sources */, + 46EB2E0003B320 /* SDImageAWebPCoder.m in Sources */, + 46EB2E0003B330 /* SDImageCache.m in Sources */, + 46EB2E0003B340 /* SDImageCacheConfig.m in Sources */, + 46EB2E0003B350 /* SDImageCacheDefine.m in Sources */, + 46EB2E0003B360 /* SDImageCachesManager.m in Sources */, + 46EB2E0003B680 /* SDImageCachesManagerOperation.m in Sources */, + 46EB2E0003B370 /* SDImageCoder.m in Sources */, + 46EB2E0003B380 /* SDImageCoderHelper.m in Sources */, + 46EB2E0003B390 /* SDImageCodersManager.m in Sources */, + 46EB2E0003B3A0 /* SDImageFrame.m in Sources */, + 46EB2E0003B3B0 /* SDImageGIFCoder.m in Sources */, + 46EB2E0003B3C0 /* SDImageGraphics.m in Sources */, + 46EB2E0003B3D0 /* SDImageHEICCoder.m in Sources */, + 46EB2E0003B3E0 /* SDImageIOAnimatedCoder.m in Sources */, + 46EB2E0003B3F0 /* SDImageIOCoder.m in Sources */, + 46EB2E0003B400 /* SDImageLoader.m in Sources */, + 46EB2E0003B410 /* SDImageLoadersManager.m in Sources */, + 46EB2E0003B420 /* SDImageTransformer.m in Sources */, + 46EB2E0003B690 /* SDInternalMacros.m in Sources */, + 46EB2E0003B430 /* SDMemoryCache.m in Sources */, + 46EB2E0003B6A0 /* SDWeakProxy.m in Sources */, + 46EB2E0003BBA0 /* SDWebImage-dummy.m in Sources */, + 46EB2E0003B440 /* SDWebImageCacheKeyFilter.m in Sources */, + 46EB2E0003B450 /* SDWebImageCacheSerializer.m in Sources */, + 46EB2E0003B460 /* SDWebImageCompat.m in Sources */, + 46EB2E0003B470 /* SDWebImageDefine.m in Sources */, + 46EB2E0003B480 /* SDWebImageDownloader.m in Sources */, + 46EB2E0003B490 /* SDWebImageDownloaderConfig.m in Sources */, + 46EB2E0003B4A0 /* SDWebImageDownloaderDecryptor.m in Sources */, + 46EB2E0003B4B0 /* SDWebImageDownloaderOperation.m in Sources */, + 46EB2E0003B4C0 /* SDWebImageDownloaderRequestModifier.m in Sources */, + 46EB2E0003B4D0 /* SDWebImageDownloaderResponseModifier.m in Sources */, + 46EB2E0003B4E0 /* SDWebImageError.m in Sources */, + 46EB2E0003B4F0 /* SDWebImageIndicator.m in Sources */, + 46EB2E0003B500 /* SDWebImageManager.m in Sources */, + 46EB2E0003B510 /* SDWebImageOperation.m in Sources */, + 46EB2E0003B520 /* SDWebImageOptionsProcessor.m in Sources */, + 46EB2E0003B530 /* SDWebImagePrefetcher.m in Sources */, + 46EB2E0003B540 /* SDWebImageTransition.m in Sources */, + 46EB2E0003B550 /* UIButton+WebCache.m in Sources */, + 46EB2E0003B6B0 /* UIColor+SDHexString.m in Sources */, + 46EB2E0003B560 /* UIImage+ExtendedCacheData.m in Sources */, + 46EB2E0003B570 /* UIImage+ForceDecode.m in Sources */, + 46EB2E0003B580 /* UIImage+GIF.m in Sources */, + 46EB2E0003B590 /* UIImage+MemoryCacheCost.m in Sources */, + 46EB2E0003B5A0 /* UIImage+Metadata.m in Sources */, + 46EB2E0003B5B0 /* UIImage+MultiFormat.m in Sources */, + 46EB2E0003B5C0 /* UIImage+Transform.m in Sources */, + 46EB2E0003B5D0 /* UIImageView+HighlightedWebCache.m in Sources */, + 46EB2E0003B5E0 /* UIImageView+WebCache.m in Sources */, + 46EB2E0003B5F0 /* UIView+WebCache.m in Sources */, + 46EB2E0003B600 /* UIView+WebCacheOperation.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003BC10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003BEA0 /* SDImageWebPCoder.m in Sources */, - 46EB2E0003BF60 /* SDWebImageWebPCoder-dummy.m in Sources */, - 46EB2E0003BEB0 /* SDWebImageWebPCoderDefine.m in Sources */, - 46EB2E0003BEC0 /* UIImage+WebP.m in Sources */, + 46EB2E0003BC30 /* SDImageWebPCoder.m in Sources */, + 46EB2E0003BCF0 /* SDWebImageWebPCoder-dummy.m in Sources */, + 46EB2E0003BC40 /* SDWebImageWebPCoderDefine.m in Sources */, + 46EB2E0003BC50 /* UIImage+WebP.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003BFD0 /* Sources */ = { + 46EB2E0003BD60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C000 /* mz_compat.c in Sources */, - 46EB2E0003C010 /* mz_crypt.c in Sources */, - 46EB2E0003C020 /* mz_crypt_apple.c in Sources */, - 46EB2E0003C030 /* mz_os.c in Sources */, - 46EB2E0003C040 /* mz_os_posix.c in Sources */, - 46EB2E0003C050 /* mz_strm.c in Sources */, - 46EB2E0003C060 /* mz_strm_buf.c in Sources */, - 46EB2E0003C070 /* mz_strm_mem.c in Sources */, - 46EB2E0003C080 /* mz_strm_os_posix.c in Sources */, - 46EB2E0003C090 /* mz_strm_pkcrypt.c in Sources */, - 46EB2E0003C0A0 /* mz_strm_split.c in Sources */, - 46EB2E0003C0B0 /* mz_strm_wzaes.c in Sources */, - 46EB2E0003C0C0 /* mz_strm_zlib.c in Sources */, - 46EB2E0003C0D0 /* mz_zip.c in Sources */, - 46EB2E0003C0E0 /* mz_zip_rw.c in Sources */, - 46EB2E0003BFF0 /* SSZipArchive.m in Sources */, - 46EB2E0003C280 /* SSZipArchive-dummy.m in Sources */, + 46EB2E0003BD90 /* mz_compat.c in Sources */, + 46EB2E0003BDA0 /* mz_crypt.c in Sources */, + 46EB2E0003BDB0 /* mz_crypt_apple.c in Sources */, + 46EB2E0003BDC0 /* mz_os.c in Sources */, + 46EB2E0003BDD0 /* mz_os_posix.c in Sources */, + 46EB2E0003BDE0 /* mz_strm.c in Sources */, + 46EB2E0003BDF0 /* mz_strm_buf.c in Sources */, + 46EB2E0003BE00 /* mz_strm_mem.c in Sources */, + 46EB2E0003BE10 /* mz_strm_os_posix.c in Sources */, + 46EB2E0003BE20 /* mz_strm_pkcrypt.c in Sources */, + 46EB2E0003BE30 /* mz_strm_split.c in Sources */, + 46EB2E0003BE40 /* mz_strm_wzaes.c in Sources */, + 46EB2E0003BE50 /* mz_strm_zlib.c in Sources */, + 46EB2E0003BE60 /* mz_zip.c in Sources */, + 46EB2E0003BE70 /* mz_zip_rw.c in Sources */, + 46EB2E0003BD80 /* SSZipArchive.m in Sources */, + 46EB2E0003C010 /* SSZipArchive-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003C2F0 /* Sources */ = { + 46EB2E0003C080 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C400 /* NSRunLoop+SRWebSocket.m in Sources */, - 46EB2E0003C410 /* NSURLRequest+SRWebSocket.m in Sources */, - 46EB2E0003C5F0 /* SocketRocket-dummy.m in Sources */, - 46EB2E0003C370 /* SRConstants.m in Sources */, - 46EB2E0003C310 /* SRDelegateController.m in Sources */, - 46EB2E0003C380 /* SRError.m in Sources */, - 46EB2E0003C390 /* SRHash.m in Sources */, - 46EB2E0003C3A0 /* SRHTTPConnectMessage.m in Sources */, - 46EB2E0003C320 /* SRIOConsumer.m in Sources */, - 46EB2E0003C330 /* SRIOConsumerPool.m in Sources */, - 46EB2E0003C3B0 /* SRLog.m in Sources */, - 46EB2E0003C3C0 /* SRMutex.m in Sources */, - 46EB2E0003C360 /* SRPinningSecurityPolicy.m in Sources */, - 46EB2E0003C340 /* SRProxyConnect.m in Sources */, - 46EB2E0003C3D0 /* SRRandom.m in Sources */, - 46EB2E0003C350 /* SRRunLoopThread.m in Sources */, - 46EB2E0003C420 /* SRSecurityPolicy.m in Sources */, - 46EB2E0003C3E0 /* SRSIMDHelpers.m in Sources */, - 46EB2E0003C3F0 /* SRURLUtilities.m in Sources */, - 46EB2E0003C430 /* SRWebSocket.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003C660 /* Sources */ = { + 46EB2E0003C190 /* NSRunLoop+SRWebSocket.m in Sources */, + 46EB2E0003C1A0 /* NSURLRequest+SRWebSocket.m in Sources */, + 46EB2E0003C380 /* SocketRocket-dummy.m in Sources */, + 46EB2E0003C100 /* SRConstants.m in Sources */, + 46EB2E0003C0A0 /* SRDelegateController.m in Sources */, + 46EB2E0003C110 /* SRError.m in Sources */, + 46EB2E0003C120 /* SRHash.m in Sources */, + 46EB2E0003C130 /* SRHTTPConnectMessage.m in Sources */, + 46EB2E0003C0B0 /* SRIOConsumer.m in Sources */, + 46EB2E0003C0C0 /* SRIOConsumerPool.m in Sources */, + 46EB2E0003C140 /* SRLog.m in Sources */, + 46EB2E0003C150 /* SRMutex.m in Sources */, + 46EB2E0003C0F0 /* SRPinningSecurityPolicy.m in Sources */, + 46EB2E0003C0D0 /* SRProxyConnect.m in Sources */, + 46EB2E0003C160 /* SRRandom.m in Sources */, + 46EB2E0003C0E0 /* SRRunLoopThread.m in Sources */, + 46EB2E0003C1B0 /* SRSecurityPolicy.m in Sources */, + 46EB2E0003C170 /* SRSIMDHelpers.m in Sources */, + 46EB2E0003C180 /* SRURLUtilities.m in Sources */, + 46EB2E0003C1C0 /* SRWebSocket.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003C3F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C680 /* event.cpp in Sources */, - 46EB2E0003C690 /* experiments.cpp in Sources */, - 46EB2E0003C6A0 /* log.cpp in Sources */, - 46EB2E0003C6B0 /* Utils.cpp in Sources */, - 46EB2E0003C6C0 /* YGConfig.cpp in Sources */, - 46EB2E0003C6D0 /* YGEnums.cpp in Sources */, - 46EB2E0003C6E0 /* YGLayout.cpp in Sources */, - 46EB2E0003C6F0 /* YGNode.cpp in Sources */, - 46EB2E0003C700 /* YGNodePrint.cpp in Sources */, - 46EB2E0003C710 /* YGStyle.cpp in Sources */, - 46EB2E0003C720 /* YGValue.cpp in Sources */, - 46EB2E0003C730 /* Yoga.cpp in Sources */, - 46EB2E0003C8E0 /* Yoga-dummy.m in Sources */, + 46EB2E0003C410 /* event.cpp in Sources */, + 46EB2E0003C420 /* experiments.cpp in Sources */, + 46EB2E0003C430 /* log.cpp in Sources */, + 46EB2E0003C440 /* Utils.cpp in Sources */, + 46EB2E0003C450 /* YGConfig.cpp in Sources */, + 46EB2E0003C460 /* YGEnums.cpp in Sources */, + 46EB2E0003C470 /* YGLayout.cpp in Sources */, + 46EB2E0003C480 /* YGNode.cpp in Sources */, + 46EB2E0003C490 /* YGNodePrint.cpp in Sources */, + 46EB2E0003C4A0 /* YGStyle.cpp in Sources */, + 46EB2E0003C4B0 /* YGValue.cpp in Sources */, + 46EB2E0003C4C0 /* Yoga.cpp in Sources */, + 46EB2E0003C670 /* Yoga-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003C950 /* Sources */ = { + 46EB2E0003C6E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003C970 /* UIView+Yoga.m in Sources */, - 46EB2E0003C980 /* YGLayout.m in Sources */, - 46EB2E0003C990 /* YGLayoutExtensions.swift in Sources */, - 46EB2E0003CA60 /* YogaKit-dummy.m in Sources */, + 46EB2E0003C700 /* UIView+Yoga.m in Sources */, + 46EB2E0003C710 /* YGLayout.m in Sources */, + 46EB2E0003C720 /* YGLayoutExtensions.swift in Sources */, + 46EB2E0003C7F0 /* YogaKit-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003CAD0 /* Sources */ = { + 46EB2E0003C860 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003DF60 /* abseil-dummy.m in Sources */, - 46EB2E0003CFA0 /* address_is_readable.cc in Sources */, - 46EB2E0003D840 /* arg.cc in Sources */, - 46EB2E0003D910 /* ascii.cc in Sources */, - 46EB2E0003DE40 /* bad_any_cast.cc in Sources */, - 46EB2E0003DE50 /* bad_optional_access.cc in Sources */, - 46EB2E0003DE70 /* bad_variant_access.cc in Sources */, - 46EB2E0003DB40 /* barrier.cc in Sources */, - 46EB2E0003D850 /* bind.cc in Sources */, - 46EB2E0003DB50 /* blocking_counter.cc in Sources */, - 46EB2E0003D920 /* charconv.cc in Sources */, - 46EB2E0003D940 /* charconv_bigint.cc in Sources */, - 46EB2E0003D950 /* charconv_parse.cc in Sources */, - 46EB2E0003D1A0 /* city.cc in Sources */, - 46EB2E0003DD80 /* civil_time.cc in Sources */, - 46EB2E0003DC30 /* civil_time_detail.cc in Sources */, - 46EB2E0003DD90 /* clock.cc in Sources */, - 46EB2E0003D620 /* cord.cc in Sources */, - 46EB2E0003D640 /* cord_internal.cc in Sources */, - 46EB2E0003D650 /* cord_rep_btree.cc in Sources */, - 46EB2E0003D660 /* cord_rep_btree_navigator.cc in Sources */, - 46EB2E0003D670 /* cord_rep_btree_reader.cc in Sources */, - 46EB2E0003D680 /* cord_rep_consume.cc in Sources */, - 46EB2E0003D690 /* cord_rep_ring.cc in Sources */, - 46EB2E0003D720 /* cordz_functions.cc in Sources */, - 46EB2E0003D740 /* cordz_handle.cc in Sources */, - 46EB2E0003D760 /* cordz_info.cc in Sources */, - 46EB2E0003DB60 /* create_thread_identity.cc in Sources */, - 46EB2E0003CB20 /* cycleclock.cc in Sources */, - 46EB2E0003D000 /* demangle.cc in Sources */, - 46EB2E0003D2D0 /* discrete_distribution.cc in Sources */, - 46EB2E0003DDA0 /* duration.cc in Sources */, - 46EB2E0003CFB0 /* elf_mem_image.cc in Sources */, - 46EB2E0003D930 /* escaping.cc in Sources */, - 46EB2E0003D7B0 /* escaping.cc in Sources */, - 46EB2E0003D2A0 /* exponential_biased.cc in Sources */, - 46EB2E0003D860 /* extension.cc in Sources */, - 46EB2E0003D870 /* float_conversion.cc in Sources */, - 46EB2E0003DDB0 /* format.cc in Sources */, - 46EB2E0003D2E0 /* gaussian_distribution.cc in Sources */, - 46EB2E0003DB10 /* graphcycles.cc in Sources */, - 46EB2E0003D1C0 /* hash.cc in Sources */, - 46EB2E0003CF00 /* hashtablez_sampler.cc in Sources */, - 46EB2E0003CF10 /* hashtablez_sampler_force_weak_definition.cc in Sources */, - 46EB2E0003D250 /* int128.cc in Sources */, - 46EB2E0003CD60 /* log_severity.cc in Sources */, - 46EB2E0003CD80 /* low_level_alloc.cc in Sources */, - 46EB2E0003D1F0 /* low_level_hash.cc in Sources */, - 46EB2E0003D970 /* match.cc in Sources */, - 46EB2E0003D960 /* memutil.cc in Sources */, - 46EB2E0003DB90 /* mutex.cc in Sources */, - 46EB2E0003DBA0 /* notification.cc in Sources */, - 46EB2E0003D980 /* numbers.cc in Sources */, - 46EB2E0003D7C0 /* ostringstream.cc in Sources */, - 46EB2E0003D880 /* output.cc in Sources */, - 46EB2E0003D890 /* parser.cc in Sources */, - 46EB2E0003DB70 /* per_thread_sem.cc in Sources */, - 46EB2E0003D440 /* pool_urbg.cc in Sources */, - 46EB2E0003D460 /* randen.cc in Sources */, - 46EB2E0003D490 /* randen_detect.cc in Sources */, - 46EB2E0003D4C0 /* randen_hwaes.cc in Sources */, - 46EB2E0003D410 /* randen_round_keys.cc in Sources */, - 46EB2E0003D4D0 /* randen_slow.cc in Sources */, - 46EB2E0003CF80 /* raw_hash_set.cc in Sources */, - 46EB2E0003CDC0 /* raw_logging.cc in Sources */, - 46EB2E0003D560 /* seed_gen_exception.cc in Sources */, - 46EB2E0003D500 /* seed_material.cc in Sources */, - 46EB2E0003D580 /* seed_sequences.cc in Sources */, - 46EB2E0003CB30 /* spinlock.cc in Sources */, - 46EB2E0003CDE0 /* spinlock_wait.cc in Sources */, - 46EB2E0003D020 /* stacktrace.cc in Sources */, - 46EB2E0003D5A0 /* status.cc in Sources */, - 46EB2E0003D5B0 /* status_payload_printer.cc in Sources */, - 46EB2E0003D5F0 /* statusor.cc in Sources */, - 46EB2E0003D990 /* str_cat.cc in Sources */, - 46EB2E0003D9A0 /* str_replace.cc in Sources */, - 46EB2E0003D9B0 /* str_split.cc in Sources */, - 46EB2E0003CE40 /* strerror.cc in Sources */, - 46EB2E0003D9C0 /* string_view.cc in Sources */, - 46EB2E0003D9D0 /* substitute.cc in Sources */, - 46EB2E0003D0E0 /* symbolize.cc in Sources */, - 46EB2E0003CB40 /* sysinfo.cc in Sources */, - 46EB2E0003CB50 /* thread_identity.cc in Sources */, - 46EB2E0003CE60 /* throw_delegate.cc in Sources */, - 46EB2E0003DDC0 /* time.cc in Sources */, - 46EB2E0003DC60 /* time_zone_fixed.cc in Sources */, - 46EB2E0003DC70 /* time_zone_format.cc in Sources */, - 46EB2E0003DC80 /* time_zone_if.cc in Sources */, - 46EB2E0003DC90 /* time_zone_impl.cc in Sources */, - 46EB2E0003DCA0 /* time_zone_info.cc in Sources */, - 46EB2E0003DCB0 /* time_zone_libc.cc in Sources */, - 46EB2E0003DCC0 /* time_zone_lookup.cc in Sources */, - 46EB2E0003DCD0 /* time_zone_posix.cc in Sources */, - 46EB2E0003CB60 /* unscaledcycleclock.cc in Sources */, - 46EB2E0003D7D0 /* utf8.cc in Sources */, - 46EB2E0003CFC0 /* vdso_support.cc in Sources */, - 46EB2E0003DB80 /* waiter.cc in Sources */, - 46EB2E0003DCE0 /* zone_info_source.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003E040 /* Sources */ = { + 46EB2E0003DCF0 /* abseil-dummy.m in Sources */, + 46EB2E0003CD30 /* address_is_readable.cc in Sources */, + 46EB2E0003D5D0 /* arg.cc in Sources */, + 46EB2E0003D6A0 /* ascii.cc in Sources */, + 46EB2E0003DBD0 /* bad_any_cast.cc in Sources */, + 46EB2E0003DBE0 /* bad_optional_access.cc in Sources */, + 46EB2E0003DC00 /* bad_variant_access.cc in Sources */, + 46EB2E0003D8D0 /* barrier.cc in Sources */, + 46EB2E0003D5E0 /* bind.cc in Sources */, + 46EB2E0003D8E0 /* blocking_counter.cc in Sources */, + 46EB2E0003D6B0 /* charconv.cc in Sources */, + 46EB2E0003D6D0 /* charconv_bigint.cc in Sources */, + 46EB2E0003D6E0 /* charconv_parse.cc in Sources */, + 46EB2E0003CF30 /* city.cc in Sources */, + 46EB2E0003DB10 /* civil_time.cc in Sources */, + 46EB2E0003D9C0 /* civil_time_detail.cc in Sources */, + 46EB2E0003DB20 /* clock.cc in Sources */, + 46EB2E0003D3B0 /* cord.cc in Sources */, + 46EB2E0003D3D0 /* cord_internal.cc in Sources */, + 46EB2E0003D3E0 /* cord_rep_btree.cc in Sources */, + 46EB2E0003D3F0 /* cord_rep_btree_navigator.cc in Sources */, + 46EB2E0003D400 /* cord_rep_btree_reader.cc in Sources */, + 46EB2E0003D410 /* cord_rep_consume.cc in Sources */, + 46EB2E0003D420 /* cord_rep_ring.cc in Sources */, + 46EB2E0003D4B0 /* cordz_functions.cc in Sources */, + 46EB2E0003D4D0 /* cordz_handle.cc in Sources */, + 46EB2E0003D4F0 /* cordz_info.cc in Sources */, + 46EB2E0003D8F0 /* create_thread_identity.cc in Sources */, + 46EB2E0003C8B0 /* cycleclock.cc in Sources */, + 46EB2E0003CD90 /* demangle.cc in Sources */, + 46EB2E0003D060 /* discrete_distribution.cc in Sources */, + 46EB2E0003DB30 /* duration.cc in Sources */, + 46EB2E0003CD40 /* elf_mem_image.cc in Sources */, + 46EB2E0003D6C0 /* escaping.cc in Sources */, + 46EB2E0003D540 /* escaping.cc in Sources */, + 46EB2E0003D030 /* exponential_biased.cc in Sources */, + 46EB2E0003D5F0 /* extension.cc in Sources */, + 46EB2E0003D600 /* float_conversion.cc in Sources */, + 46EB2E0003DB40 /* format.cc in Sources */, + 46EB2E0003D070 /* gaussian_distribution.cc in Sources */, + 46EB2E0003D8A0 /* graphcycles.cc in Sources */, + 46EB2E0003CF50 /* hash.cc in Sources */, + 46EB2E0003CC90 /* hashtablez_sampler.cc in Sources */, + 46EB2E0003CCA0 /* hashtablez_sampler_force_weak_definition.cc in Sources */, + 46EB2E0003CFE0 /* int128.cc in Sources */, + 46EB2E0003CAF0 /* log_severity.cc in Sources */, + 46EB2E0003CB10 /* low_level_alloc.cc in Sources */, + 46EB2E0003CF80 /* low_level_hash.cc in Sources */, + 46EB2E0003D700 /* match.cc in Sources */, + 46EB2E0003D6F0 /* memutil.cc in Sources */, + 46EB2E0003D920 /* mutex.cc in Sources */, + 46EB2E0003D930 /* notification.cc in Sources */, + 46EB2E0003D710 /* numbers.cc in Sources */, + 46EB2E0003D550 /* ostringstream.cc in Sources */, + 46EB2E0003D610 /* output.cc in Sources */, + 46EB2E0003D620 /* parser.cc in Sources */, + 46EB2E0003D900 /* per_thread_sem.cc in Sources */, + 46EB2E0003D1D0 /* pool_urbg.cc in Sources */, + 46EB2E0003D1F0 /* randen.cc in Sources */, + 46EB2E0003D220 /* randen_detect.cc in Sources */, + 46EB2E0003D250 /* randen_hwaes.cc in Sources */, + 46EB2E0003D1A0 /* randen_round_keys.cc in Sources */, + 46EB2E0003D260 /* randen_slow.cc in Sources */, + 46EB2E0003CD10 /* raw_hash_set.cc in Sources */, + 46EB2E0003CB50 /* raw_logging.cc in Sources */, + 46EB2E0003D2F0 /* seed_gen_exception.cc in Sources */, + 46EB2E0003D290 /* seed_material.cc in Sources */, + 46EB2E0003D310 /* seed_sequences.cc in Sources */, + 46EB2E0003C8C0 /* spinlock.cc in Sources */, + 46EB2E0003CB70 /* spinlock_wait.cc in Sources */, + 46EB2E0003CDB0 /* stacktrace.cc in Sources */, + 46EB2E0003D330 /* status.cc in Sources */, + 46EB2E0003D340 /* status_payload_printer.cc in Sources */, + 46EB2E0003D380 /* statusor.cc in Sources */, + 46EB2E0003D720 /* str_cat.cc in Sources */, + 46EB2E0003D730 /* str_replace.cc in Sources */, + 46EB2E0003D740 /* str_split.cc in Sources */, + 46EB2E0003CBD0 /* strerror.cc in Sources */, + 46EB2E0003D750 /* string_view.cc in Sources */, + 46EB2E0003D760 /* substitute.cc in Sources */, + 46EB2E0003CE70 /* symbolize.cc in Sources */, + 46EB2E0003C8D0 /* sysinfo.cc in Sources */, + 46EB2E0003C8E0 /* thread_identity.cc in Sources */, + 46EB2E0003CBF0 /* throw_delegate.cc in Sources */, + 46EB2E0003DB50 /* time.cc in Sources */, + 46EB2E0003D9F0 /* time_zone_fixed.cc in Sources */, + 46EB2E0003DA00 /* time_zone_format.cc in Sources */, + 46EB2E0003DA10 /* time_zone_if.cc in Sources */, + 46EB2E0003DA20 /* time_zone_impl.cc in Sources */, + 46EB2E0003DA30 /* time_zone_info.cc in Sources */, + 46EB2E0003DA40 /* time_zone_libc.cc in Sources */, + 46EB2E0003DA50 /* time_zone_lookup.cc in Sources */, + 46EB2E0003DA60 /* time_zone_posix.cc in Sources */, + 46EB2E0003C8F0 /* unscaledcycleclock.cc in Sources */, + 46EB2E0003D560 /* utf8.cc in Sources */, + 46EB2E0003CD50 /* vdso_support.cc in Sources */, + 46EB2E0003D910 /* waiter.cc in Sources */, + 46EB2E0003DA70 /* zone_info_source.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003DDD0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003E180 /* fmt-dummy.m in Sources */, - 46EB2E0003E060 /* format.cc in Sources */, + 46EB2E0003DF10 /* fmt-dummy.m in Sources */, + 46EB2E0003DDF0 /* format.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E0003E1F0 /* Sources */ = { + 46EB2E0003DF80 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E0003E4A0 /* alarm.cc in Sources */, - 46EB2E0003E5A0 /* async_generic_service.cc in Sources */, - 46EB2E0003E4B0 /* auth_property_iterator.cc in Sources */, - 46EB2E0003E390 /* binder_android.cc in Sources */, - 46EB2E0003E2C0 /* binder_connector.cc in Sources */, - 46EB2E0003E3A0 /* binder_constants.cc in Sources */, - 46EB2E0003E330 /* binder_security_policy.cc in Sources */, - 46EB2E0003E340 /* binder_server.cc in Sources */, - 46EB2E0003E350 /* binder_server_credentials.cc in Sources */, - 46EB2E0003E360 /* binder_transport.cc in Sources */, - 46EB2E0003E6C0 /* byte_buffer_cc.cc in Sources */, - 46EB2E0003E5B0 /* channel_argument_option.cc in Sources */, - 46EB2E0003E4C0 /* channel_arguments.cc in Sources */, - 46EB2E0003E3E0 /* channel_cc.cc in Sources */, - 46EB2E0003E2D0 /* channel_create.cc in Sources */, - 46EB2E0003E2E0 /* channel_create_impl.cc in Sources */, - 46EB2E0003E4D0 /* channel_filter.cc in Sources */, - 46EB2E0003E3F0 /* client_callback.cc in Sources */, - 46EB2E0003E400 /* client_context.cc in Sources */, - 46EB2E0003E410 /* client_interceptor.cc in Sources */, - 46EB2E0003E490 /* codegen_init.cc in Sources */, - 46EB2E0003E4E0 /* completion_queue_cc.cc in Sources */, - 46EB2E0003E2F0 /* connection_id_generator.cc in Sources */, - 46EB2E0003E4F0 /* core_codegen.cc in Sources */, - 46EB2E0003E420 /* create_channel.cc in Sources */, - 46EB2E0003E430 /* create_channel_internal.cc in Sources */, - 46EB2E0003E440 /* create_channel_posix.cc in Sources */, - 46EB2E0003E5C0 /* create_default_thread_pool.cc in Sources */, - 46EB2E0003E450 /* credentials_cc.cc in Sources */, - 46EB2E0003E5F0 /* default_health_check_service.cc in Sources */, - 46EB2E0003E5D0 /* dynamic_thread_pool.cc in Sources */, - 46EB2E0003E300 /* endpoint_binder_pool.cc in Sources */, - 46EB2E0003E5E0 /* external_connection_acceptor_impl.cc in Sources */, - 46EB2E00041710 /* gRPC-C++-dummy.m in Sources */, - 46EB2E0003E600 /* health_check_service.cc in Sources */, - 46EB2E0003E610 /* health_check_service_server_builder_option.cc in Sources */, - 46EB2E0003E460 /* insecure_credentials.cc in Sources */, - 46EB2E0003E620 /* insecure_server_credentials.cc in Sources */, - 46EB2E0003E310 /* jni_utils.cc in Sources */, - 46EB2E0003E370 /* ndk_binder.cc in Sources */, - 46EB2E0003E500 /* resource_quota_cc.cc in Sources */, - 46EB2E0003E510 /* rpc_method.cc in Sources */, - 46EB2E0003E520 /* secure_auth_context.cc in Sources */, - 46EB2E0003E530 /* secure_channel_arguments.cc in Sources */, - 46EB2E0003E540 /* secure_create_auth_context.cc in Sources */, - 46EB2E0003E470 /* secure_credentials.cc in Sources */, - 46EB2E0003E630 /* secure_server_credentials.cc in Sources */, - 46EB2E0003E320 /* security_policy_setting.cc in Sources */, - 46EB2E0003E640 /* server_builder.cc in Sources */, - 46EB2E0003E650 /* server_callback.cc in Sources */, - 46EB2E0003E660 /* server_cc.cc in Sources */, - 46EB2E0003E670 /* server_context.cc in Sources */, - 46EB2E0003E680 /* server_credentials.cc in Sources */, - 46EB2E0003E690 /* server_posix.cc in Sources */, - 46EB2E0003E6D0 /* status.cc in Sources */, - 46EB2E0003E6E0 /* string_ref.cc in Sources */, - 46EB2E0003E6B0 /* thread_manager.cc in Sources */, - 46EB2E0003E6F0 /* time_cc.cc in Sources */, - 46EB2E0003E550 /* tls_certificate_provider.cc in Sources */, - 46EB2E0003E560 /* tls_certificate_verifier.cc in Sources */, - 46EB2E0003E570 /* tls_credentials_options.cc in Sources */, - 46EB2E0003E3B0 /* transaction.cc in Sources */, - 46EB2E0003E380 /* transport_stream_receiver_impl.cc in Sources */, - 46EB2E0003E580 /* validate_service_config.cc in Sources */, - 46EB2E0003E590 /* version_cc.cc in Sources */, - 46EB2E0003E3C0 /* wire_reader_impl.cc in Sources */, - 46EB2E0003E3D0 /* wire_writer.cc in Sources */, - 46EB2E0003E480 /* xds_credentials.cc in Sources */, - 46EB2E0003E6A0 /* xds_server_credentials.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E0003E260 /* Sources */ = { + 46EB2E0003E230 /* alarm.cc in Sources */, + 46EB2E0003E330 /* async_generic_service.cc in Sources */, + 46EB2E0003E240 /* auth_property_iterator.cc in Sources */, + 46EB2E0003E120 /* binder_android.cc in Sources */, + 46EB2E0003E050 /* binder_connector.cc in Sources */, + 46EB2E0003E130 /* binder_constants.cc in Sources */, + 46EB2E0003E0C0 /* binder_security_policy.cc in Sources */, + 46EB2E0003E0D0 /* binder_server.cc in Sources */, + 46EB2E0003E0E0 /* binder_server_credentials.cc in Sources */, + 46EB2E0003E0F0 /* binder_transport.cc in Sources */, + 46EB2E0003E450 /* byte_buffer_cc.cc in Sources */, + 46EB2E0003E340 /* channel_argument_option.cc in Sources */, + 46EB2E0003E250 /* channel_arguments.cc in Sources */, + 46EB2E0003E170 /* channel_cc.cc in Sources */, + 46EB2E0003E060 /* channel_create.cc in Sources */, + 46EB2E0003E070 /* channel_create_impl.cc in Sources */, + 46EB2E0003E260 /* channel_filter.cc in Sources */, + 46EB2E0003E180 /* client_callback.cc in Sources */, + 46EB2E0003E190 /* client_context.cc in Sources */, + 46EB2E0003E1A0 /* client_interceptor.cc in Sources */, + 46EB2E0003E220 /* codegen_init.cc in Sources */, + 46EB2E0003E270 /* completion_queue_cc.cc in Sources */, + 46EB2E0003E080 /* connection_id_generator.cc in Sources */, + 46EB2E0003E280 /* core_codegen.cc in Sources */, + 46EB2E0003E1B0 /* create_channel.cc in Sources */, + 46EB2E0003E1C0 /* create_channel_internal.cc in Sources */, + 46EB2E0003E1D0 /* create_channel_posix.cc in Sources */, + 46EB2E0003E350 /* create_default_thread_pool.cc in Sources */, + 46EB2E0003E1E0 /* credentials_cc.cc in Sources */, + 46EB2E0003E380 /* default_health_check_service.cc in Sources */, + 46EB2E0003E360 /* dynamic_thread_pool.cc in Sources */, + 46EB2E0003E090 /* endpoint_binder_pool.cc in Sources */, + 46EB2E0003E370 /* external_connection_acceptor_impl.cc in Sources */, + 46EB2E000414A0 /* gRPC-C++-dummy.m in Sources */, + 46EB2E0003E390 /* health_check_service.cc in Sources */, + 46EB2E0003E3A0 /* health_check_service_server_builder_option.cc in Sources */, + 46EB2E0003E1F0 /* insecure_credentials.cc in Sources */, + 46EB2E0003E3B0 /* insecure_server_credentials.cc in Sources */, + 46EB2E0003E0A0 /* jni_utils.cc in Sources */, + 46EB2E0003E100 /* ndk_binder.cc in Sources */, + 46EB2E0003E290 /* resource_quota_cc.cc in Sources */, + 46EB2E0003E2A0 /* rpc_method.cc in Sources */, + 46EB2E0003E2B0 /* secure_auth_context.cc in Sources */, + 46EB2E0003E2C0 /* secure_channel_arguments.cc in Sources */, + 46EB2E0003E2D0 /* secure_create_auth_context.cc in Sources */, + 46EB2E0003E200 /* secure_credentials.cc in Sources */, + 46EB2E0003E3C0 /* secure_server_credentials.cc in Sources */, + 46EB2E0003E0B0 /* security_policy_setting.cc in Sources */, + 46EB2E0003E3D0 /* server_builder.cc in Sources */, + 46EB2E0003E3E0 /* server_callback.cc in Sources */, + 46EB2E0003E3F0 /* server_cc.cc in Sources */, + 46EB2E0003E400 /* server_context.cc in Sources */, + 46EB2E0003E410 /* server_credentials.cc in Sources */, + 46EB2E0003E420 /* server_posix.cc in Sources */, + 46EB2E0003E460 /* status.cc in Sources */, + 46EB2E0003E470 /* string_ref.cc in Sources */, + 46EB2E0003E440 /* thread_manager.cc in Sources */, + 46EB2E0003E480 /* time_cc.cc in Sources */, + 46EB2E0003E2E0 /* tls_certificate_provider.cc in Sources */, + 46EB2E0003E2F0 /* tls_certificate_verifier.cc in Sources */, + 46EB2E0003E300 /* tls_credentials_options.cc in Sources */, + 46EB2E0003E140 /* transaction.cc in Sources */, + 46EB2E0003E110 /* transport_stream_receiver_impl.cc in Sources */, + 46EB2E0003E310 /* validate_service_config.cc in Sources */, + 46EB2E0003E320 /* version_cc.cc in Sources */, + 46EB2E0003E150 /* wire_reader_impl.cc in Sources */, + 46EB2E0003E160 /* wire_writer.cc in Sources */, + 46EB2E0003E210 /* xds_credentials.cc in Sources */, + 46EB2E0003E430 /* xds_server_credentials.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E0003DFF0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00041780 /* Sources */ = { + 46EB2E00041510 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00041EA0 /* accesslog.upb.c in Sources */, - 46EB2E00042570 /* accesslog.upbdefs.c in Sources */, - 46EB2E000437B0 /* activity.cc in Sources */, - 46EB2E00041F00 /* address.upb.c in Sources */, - 46EB2E000425D0 /* address.upbdefs.c in Sources */, - 46EB2E00041890 /* address_filtering.cc in Sources */, - 46EB2E00042190 /* ads.upb.c in Sources */, - 46EB2E00042860 /* ads.upbdefs.c in Sources */, - 46EB2E00043EB0 /* aes_gcm.cc in Sources */, - 46EB2E00042E90 /* alloc.cc in Sources */, - 46EB2E00041C50 /* alpn.cc in Sources */, - 46EB2E00043ED0 /* alts_counter.cc in Sources */, - 46EB2E000438C0 /* alts_credentials.cc in Sources */, - 46EB2E00043EE0 /* alts_crypter.cc in Sources */, - 46EB2E00043EF0 /* alts_frame_protector.cc in Sources */, - 46EB2E00043F90 /* alts_grpc_integrity_only_record_protocol.cc in Sources */, - 46EB2E00043FA0 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, - 46EB2E00043FB0 /* alts_grpc_record_protocol_common.cc in Sources */, - 46EB2E00043F40 /* alts_handshaker_client.cc in Sources */, - 46EB2E00043FC0 /* alts_iovec_record_protocol.cc in Sources */, - 46EB2E00043F00 /* alts_record_protocol_crypter_common.cc in Sources */, - 46EB2E00043F10 /* alts_seal_privacy_integrity_crypter.cc in Sources */, - 46EB2E00043AE0 /* alts_security_connector.cc in Sources */, - 46EB2E00043F50 /* alts_shared_resource.cc in Sources */, - 46EB2E00043F60 /* alts_tsi_handshaker.cc in Sources */, - 46EB2E00043F70 /* alts_tsi_utils.cc in Sources */, - 46EB2E00043F20 /* alts_unseal_privacy_integrity_crypter.cc in Sources */, - 46EB2E00043FD0 /* alts_zero_copy_grpc_protector.cc in Sources */, - 46EB2E000423F0 /* altscontext.upb.c in Sources */, - 46EB2E00042300 /* annotations.upb.c in Sources */, - 46EB2E000429D0 /* annotations.upbdefs.c in Sources */, - 46EB2E00042370 /* any.upb.c in Sources */, - 46EB2E00042A40 /* any.upbdefs.c in Sources */, - 46EB2E000437F0 /* api.cc in Sources */, - 46EB2E00042020 /* api_listener.upb.c in Sources */, - 46EB2E000426F0 /* api_listener.upbdefs.c in Sources */, - 46EB2E00043CA0 /* api_trace.cc in Sources */, - 46EB2E00043800 /* arena.cc in Sources */, - 46EB2E00042EA0 /* atm.cc in Sources */, - 46EB2E000424C0 /* authority.upb.c in Sources */, - 46EB2E00042B30 /* authority.upbdefs.c in Sources */, - 46EB2E00043850 /* authorization_policy_provider_vtable.cc in Sources */, - 46EB2E00043960 /* aws_external_account_credentials.cc in Sources */, - 46EB2E00043970 /* aws_request_signer.cc in Sources */, - 46EB2E00043C10 /* b64.cc in Sources */, - 46EB2E000417B0 /* backend_metric.cc in Sources */, - 46EB2E00042D10 /* backoff.cc in Sources */, - 46EB2E00041F10 /* backoff.upb.c in Sources */, - 46EB2E000425E0 /* backoff.upbdefs.c in Sources */, - 46EB2E000417C0 /* backup_poller.cc in Sources */, - 46EB2E00041F20 /* base.upb.c in Sources */, - 46EB2E000425F0 /* base.upbdefs.c in Sources */, - 46EB2E00043790 /* basic_timers.cc in Sources */, - 46EB2E00043DF0 /* bdp_estimator.cc in Sources */, - 46EB2E00041CE0 /* bin_decoder.cc in Sources */, - 46EB2E00041CF0 /* bin_encoder.cc in Sources */, - 46EB2E000419E0 /* binder_resolver.cc in Sources */, - 46EB2E00044060 /* bitstate.cc in Sources */, - 46EB2E00041EB0 /* bootstrap.upb.c in Sources */, - 46EB2E00042580 /* bootstrap.upbdefs.c in Sources */, - 46EB2E00043170 /* buffer_list.cc in Sources */, - 46EB2E00043CB0 /* builtins.cc in Sources */, - 46EB2E00043CC0 /* byte_buffer.cc in Sources */, - 46EB2E00043CD0 /* byte_buffer_reader.cc in Sources */, - 46EB2E00043E00 /* byte_stream.cc in Sources */, - 46EB2E00043CE0 /* call.cc in Sources */, - 46EB2E00043180 /* call_combiner.cc in Sources */, - 46EB2E00043CF0 /* call_details.cc in Sources */, - 46EB2E00043D00 /* call_log_batch.cc in Sources */, - 46EB2E00041970 /* cds.cc in Sources */, - 46EB2E00042180 /* cds.upb.c in Sources */, - 46EB2E00042850 /* cds.upbdefs.c in Sources */, - 46EB2E00042140 /* cert.upb.c in Sources */, - 46EB2E00042810 /* cert.upbdefs.c in Sources */, - 46EB2E00042BA0 /* certificate_provider_registry.cc in Sources */, - 46EB2E00042BB0 /* certificate_provider_store.cc in Sources */, - 46EB2E00043190 /* cfstream_handle.cc in Sources */, - 46EB2E00043D10 /* channel.cc in Sources */, - 46EB2E00042D20 /* channel_args.cc in Sources */, - 46EB2E00042E40 /* channel_args_endpoint_config.cc in Sources */, - 46EB2E00042D30 /* channel_args_preconditioning.cc in Sources */, - 46EB2E000417D0 /* channel_connectivity.cc in Sources */, - 46EB2E00041C70 /* channel_create.cc in Sources */, - 46EB2E00041C80 /* channel_create_posix.cc in Sources */, - 46EB2E00043D20 /* channel_init.cc in Sources */, - 46EB2E00043D30 /* channel_ping.cc in Sources */, - 46EB2E00042D40 /* channel_stack.cc in Sources */, - 46EB2E00042D50 /* channel_stack_builder.cc in Sources */, - 46EB2E00043D40 /* channel_stack_type.cc in Sources */, - 46EB2E00042D60 /* channel_trace.cc in Sources */, - 46EB2E00042D70 /* channelz.cc in Sources */, - 46EB2E00042D80 /* channelz_registry.cc in Sources */, - 46EB2E000438D0 /* check_gcp_environment.cc in Sources */, - 46EB2E000438E0 /* check_gcp_environment_linux.cc in Sources */, - 46EB2E000438F0 /* check_gcp_environment_no_op.cc in Sources */, - 46EB2E00043900 /* check_gcp_environment_windows.cc in Sources */, - 46EB2E00042310 /* checked.upb.c in Sources */, - 46EB2E000429E0 /* checked.upbdefs.c in Sources */, - 46EB2E000418A0 /* child_policy_handler.cc in Sources */, - 46EB2E00041C60 /* chttp2_connector.cc in Sources */, - 46EB2E00041D00 /* chttp2_plugin.cc in Sources */, - 46EB2E00041CA0 /* chttp2_server.cc in Sources */, - 46EB2E00041D10 /* chttp2_transport.cc in Sources */, - 46EB2E00041EC0 /* circuit_breaker.upb.c in Sources */, - 46EB2E00042590 /* circuit_breaker.upbdefs.c in Sources */, - 46EB2E00043B90 /* client_auth_filter.cc in Sources */, - 46EB2E00041BA0 /* client_authority_filter.cc in Sources */, - 46EB2E000417E0 /* client_channel.cc in Sources */, - 46EB2E000417F0 /* client_channel_channelz.cc in Sources */, - 46EB2E00041800 /* client_channel_factory.cc in Sources */, - 46EB2E00041810 /* client_channel_plugin.cc in Sources */, - 46EB2E00041B40 /* client_idle_filter.cc in Sources */, - 46EB2E000418B0 /* client_load_reporting_filter.cc in Sources */, - 46EB2E00043290 /* closure.cc in Sources */, - 46EB2E00041ED0 /* cluster.upb.c in Sources */, - 46EB2E000420E0 /* cluster.upb.c in Sources */, - 46EB2E000425A0 /* cluster.upbdefs.c in Sources */, - 46EB2E000427B0 /* cluster.upbdefs.c in Sources */, - 46EB2E000424D0 /* collection_entry.upb.c in Sources */, - 46EB2E00042B40 /* collection_entry.upbdefs.c in Sources */, - 46EB2E000431A0 /* combiner.cc in Sources */, - 46EB2E00042150 /* common.upb.c in Sources */, - 46EB2E00042820 /* common.upbdefs.c in Sources */, - 46EB2E00044070 /* compile.cc in Sources */, - 46EB2E00043D50 /* completion_queue.cc in Sources */, - 46EB2E00043D60 /* completion_queue_factory.cc in Sources */, - 46EB2E00043940 /* composite_credentials.cc in Sources */, - 46EB2E00042DD0 /* compression.cc in Sources */, - 46EB2E00042DE0 /* compression_internal.cc in Sources */, - 46EB2E00041E70 /* config_dump.upb.c in Sources */, - 46EB2E00042540 /* config_dump.upbdefs.c in Sources */, - 46EB2E00041820 /* config_selector.cc in Sources */, - 46EB2E00041F30 /* config_source.upb.c in Sources */, - 46EB2E00042600 /* config_source.upbdefs.c in Sources */, - 46EB2E00042D90 /* connected_channel.cc in Sources */, - 46EB2E00043E10 /* connectivity_state.cc in Sources */, - 46EB2E00041D20 /* context_list.cc in Sources */, - 46EB2E000424E0 /* context_params.upb.c in Sources */, - 46EB2E00042B50 /* context_params.upbdefs.c in Sources */, - 46EB2E00042E00 /* core_configuration.cc in Sources */, - 46EB2E00042EB0 /* cpu_iphone.cc in Sources */, - 46EB2E00042EC0 /* cpu_linux.cc in Sources */, - 46EB2E00042ED0 /* cpu_posix.cc in Sources */, - 46EB2E00042EE0 /* cpu_windows.cc in Sources */, - 46EB2E00043950 /* credentials.cc in Sources */, - 46EB2E000439C0 /* credentials_generic.cc in Sources */, - 46EB2E00042200 /* csds.upb.c in Sources */, - 46EB2E000428D0 /* csds.upbdefs.c in Sources */, - 46EB2E000422B0 /* custom_tag.upb.c in Sources */, - 46EB2E00042980 /* custom_tag.upbdefs.c in Sources */, - 46EB2E00041B60 /* deadline_filter.cc in Sources */, - 46EB2E000441D0 /* decode.c in Sources */, - 46EB2E000441E0 /* decode_fast.c in Sources */, - 46EB2E000441F0 /* def.c in Sources */, - 46EB2E00041E80 /* deprecation.upb.c in Sources */, - 46EB2E00042550 /* deprecation.upbdefs.c in Sources */, - 46EB2E00042380 /* descriptor.upb.c in Sources */, - 46EB2E00042A50 /* descriptor.upbdefs.c in Sources */, - 46EB2E00044080 /* dfa.cc in Sources */, - 46EB2E000421A0 /* discovery.upb.c in Sources */, - 46EB2E00042870 /* discovery.upbdefs.c in Sources */, - 46EB2E00041A80 /* dns_resolver.cc in Sources */, - 46EB2E000419F0 /* dns_resolver_ares.cc in Sources */, - 46EB2E00041A70 /* dns_resolver_selection.cc in Sources */, - 46EB2E000431B0 /* dualstack_socket_posix.cc in Sources */, - 46EB2E00042390 /* duration.upb.c in Sources */, - 46EB2E00042A60 /* duration.upbdefs.c in Sources */, - 46EB2E00041830 /* dynamic_filters.cc in Sources */, - 46EB2E000421B0 /* eds.upb.c in Sources */, - 46EB2E00042880 /* eds.upbdefs.c in Sources */, - 46EB2E000423A0 /* empty.upb.c in Sources */, - 46EB2E00042A70 /* empty.upbdefs.c in Sources */, - 46EB2E00044200 /* encode.c in Sources */, - 46EB2E000431C0 /* endpoint.cc in Sources */, - 46EB2E000432A0 /* endpoint.cc in Sources */, - 46EB2E00041FF0 /* endpoint.upb.c in Sources */, - 46EB2E000426C0 /* endpoint.upbdefs.c in Sources */, - 46EB2E000431D0 /* endpoint_cfstream.cc in Sources */, - 46EB2E00042000 /* endpoint_components.upb.c in Sources */, - 46EB2E000426D0 /* endpoint_components.upbdefs.c in Sources */, - 46EB2E000431E0 /* endpoint_pair_event_engine.cc in Sources */, - 46EB2E000431F0 /* endpoint_pair_posix.cc in Sources */, - 46EB2E00043200 /* endpoint_pair_windows.cc in Sources */, - 46EB2E00042EF0 /* env_linux.cc in Sources */, - 46EB2E00042F00 /* env_posix.cc in Sources */, - 46EB2E00042F10 /* env_windows.cc in Sources */, - 46EB2E00043210 /* error.cc in Sources */, - 46EB2E00043220 /* error_cfstream.cc in Sources */, - 46EB2E00043E20 /* error_utils.cc in Sources */, - 46EB2E00043230 /* ev_apple.cc in Sources */, - 46EB2E00043240 /* ev_epoll1_linux.cc in Sources */, - 46EB2E00043250 /* ev_epollex_linux.cc in Sources */, - 46EB2E00043260 /* ev_poll_posix.cc in Sources */, - 46EB2E00043270 /* ev_posix.cc in Sources */, - 46EB2E00043280 /* ev_windows.cc in Sources */, - 46EB2E00042320 /* eval.upb.c in Sources */, - 46EB2E000429F0 /* eval.upbdefs.c in Sources */, - 46EB2E00043860 /* evaluate_args.cc in Sources */, - 46EB2E00042E50 /* event_engine.cc in Sources */, - 46EB2E00042E60 /* event_engine_factory.cc in Sources */, - 46EB2E00041F40 /* event_service_config.upb.c in Sources */, - 46EB2E00042610 /* event_service_config.upbdefs.c in Sources */, - 46EB2E00043D70 /* event_string.cc in Sources */, - 46EB2E00043080 /* examine_stack.cc in Sources */, - 46EB2E00043310 /* exec_ctx.cc in Sources */, - 46EB2E00043320 /* executor.cc in Sources */, - 46EB2E00042330 /* explain.upb.c in Sources */, - 46EB2E00042A00 /* explain.upbdefs.c in Sources */, - 46EB2E00041F50 /* extension.upb.c in Sources */, - 46EB2E00042620 /* extension.upbdefs.c in Sources */, - 46EB2E00043980 /* external_account_credentials.cc in Sources */, - 46EB2E000439B0 /* fake_credentials.cc in Sources */, - 46EB2E00041A90 /* fake_resolver.cc in Sources */, - 46EB2E00043AF0 /* fake_security_connector.cc in Sources */, - 46EB2E00043FE0 /* fake_transport_security.cc in Sources */, - 46EB2E000420F0 /* fault.upb.c in Sources */, - 46EB2E00042100 /* fault.upb.c in Sources */, - 46EB2E000427C0 /* fault.upbdefs.c in Sources */, - 46EB2E000427D0 /* fault.upbdefs.c in Sources */, - 46EB2E00041B70 /* fault_injection_filter.cc in Sources */, - 46EB2E00043990 /* file_external_account_credentials.cc in Sources */, - 46EB2E00042BC0 /* file_watcher_certificate_provider_factory.cc in Sources */, - 46EB2E00041EE0 /* filter.upb.c in Sources */, - 46EB2E000425B0 /* filter.upbdefs.c in Sources */, - 46EB2E00044090 /* filtered_re2.cc in Sources */, - 46EB2E00041D30 /* flow_control.cc in Sources */, - 46EB2E00043090 /* fork.cc in Sources */, - 46EB2E00043350 /* fork_posix.cc in Sources */, - 46EB2E00043360 /* fork_windows.cc in Sources */, - 46EB2E00043130 /* format_request.cc in Sources */, - 46EB2E00041D40 /* frame_data.cc in Sources */, - 46EB2E00041D50 /* frame_goaway.cc in Sources */, - 46EB2E00043F30 /* frame_handler.cc in Sources */, - 46EB2E00041D60 /* frame_ping.cc in Sources */, - 46EB2E00041D70 /* frame_rst_stream.cc in Sources */, - 46EB2E00041D80 /* frame_settings.cc in Sources */, - 46EB2E00041D90 /* frame_window_update.cc in Sources */, - 46EB2E00043370 /* gethostname_fallback.cc in Sources */, - 46EB2E00043380 /* gethostname_host_name_max.cc in Sources */, - 46EB2E00043390 /* gethostname_sysconf.cc in Sources */, - 46EB2E000430A0 /* global_config_env.cc in Sources */, - 46EB2E00041840 /* global_subchannel_pool.cc in Sources */, - 46EB2E00041AA0 /* google_c2p_resolver.cc in Sources */, - 46EB2E000439D0 /* google_default_credentials.cc in Sources */, - 46EB2E00046F40 /* gRPC-Core-dummy.m in Sources */, - 46EB2E00043910 /* grpc_alts_credentials_client_options.cc in Sources */, - 46EB2E00043920 /* grpc_alts_credentials_options.cc in Sources */, - 46EB2E00043930 /* grpc_alts_credentials_server_options.cc in Sources */, - 46EB2E00041A00 /* grpc_ares_ev_driver_event_engine.cc in Sources */, - 46EB2E00041A10 /* grpc_ares_ev_driver_posix.cc in Sources */, - 46EB2E00041A20 /* grpc_ares_ev_driver_windows.cc in Sources */, - 46EB2E00041A30 /* grpc_ares_wrapper.cc in Sources */, - 46EB2E00041A40 /* grpc_ares_wrapper_event_engine.cc in Sources */, - 46EB2E00041A50 /* grpc_ares_wrapper_posix.cc in Sources */, - 46EB2E00041A60 /* grpc_ares_wrapper_windows.cc in Sources */, - 46EB2E00043870 /* grpc_authorization_engine.cc in Sources */, - 46EB2E000417A0 /* grpc_context.cc in Sources */, - 46EB2E000433A0 /* grpc_if_nametoindex_posix.cc in Sources */, - 46EB2E000433B0 /* grpc_if_nametoindex_unsupported.cc in Sources */, - 46EB2E00043EA0 /* grpc_plugin_registry.cc in Sources */, - 46EB2E00041F60 /* grpc_service.upb.c in Sources */, - 46EB2E00042630 /* grpc_service.upbdefs.c in Sources */, - 46EB2E00043A70 /* grpc_tls_certificate_distributor.cc in Sources */, - 46EB2E00043A80 /* grpc_tls_certificate_provider.cc in Sources */, - 46EB2E00043A90 /* grpc_tls_certificate_verifier.cc in Sources */, - 46EB2E00043AA0 /* grpc_tls_credentials_options.cc in Sources */, - 46EB2E000418C0 /* grpclb.cc in Sources */, - 46EB2E000418D0 /* grpclb_balancer_addresses.cc in Sources */, - 46EB2E000418E0 /* grpclb_channel_secure.cc in Sources */, - 46EB2E000418F0 /* grpclb_client_stats.cc in Sources */, - 46EB2E00043EC0 /* gsec.cc in Sources */, - 46EB2E00042DA0 /* handshaker.cc in Sources */, - 46EB2E00042400 /* handshaker.upb.c in Sources */, - 46EB2E00042DB0 /* handshaker_registry.cc in Sources */, - 46EB2E00042420 /* health.upb.c in Sources */, - 46EB2E00041F70 /* health_check.upb.c in Sources */, - 46EB2E00042640 /* health_check.upbdefs.c in Sources */, - 46EB2E00041850 /* health_check_client.cc in Sources */, - 46EB2E000430B0 /* host_port.cc in Sources */, - 46EB2E00041DA0 /* hpack_encoder.cc in Sources */, - 46EB2E00041DB0 /* hpack_encoder_table.cc in Sources */, - 46EB2E00041DC0 /* hpack_parser.cc in Sources */, - 46EB2E00041DD0 /* hpack_parser_table.cc in Sources */, - 46EB2E000422C0 /* http.upb.c in Sources */, - 46EB2E00042360 /* http.upb.c in Sources */, - 46EB2E00042990 /* http.upbdefs.c in Sources */, - 46EB2E00042A30 /* http.upbdefs.c in Sources */, - 46EB2E00041DE0 /* http2_settings.cc in Sources */, - 46EB2E00041B90 /* http_client_filter.cc in Sources */, - 46EB2E00041860 /* http_connect_handshaker.cc in Sources */, - 46EB2E00042130 /* http_connection_manager.upb.c in Sources */, - 46EB2E00042800 /* http_connection_manager.upbdefs.c in Sources */, - 46EB2E00041BB0 /* http_filters_plugin.cc in Sources */, - 46EB2E00041870 /* http_proxy.cc in Sources */, - 46EB2E00041BE0 /* http_server_filter.cc in Sources */, - 46EB2E000420D0 /* http_tracer.upb.c in Sources */, - 46EB2E000427A0 /* http_tracer.upbdefs.c in Sources */, - 46EB2E00041F80 /* http_uri.upb.c in Sources */, - 46EB2E00042650 /* http_uri.upbdefs.c in Sources */, - 46EB2E00043140 /* httpcli.cc in Sources */, - 46EB2E00043150 /* httpcli_security_connector.cc in Sources */, - 46EB2E00041DF0 /* huffsyms.cc in Sources */, - 46EB2E000439E0 /* iam_credentials.cc in Sources */, - 46EB2E00041B50 /* idle_filter_state.cc in Sources */, - 46EB2E00043D80 /* init.cc in Sources */, - 46EB2E00043D90 /* init_secure.cc in Sources */, - 46EB2E00041E50 /* inproc_plugin.cc in Sources */, - 46EB2E00041E60 /* inproc_transport.cc in Sources */, - 46EB2E000439F0 /* insecure_credentials.cc in Sources */, - 46EB2E00043B00 /* insecure_security_connector.cc in Sources */, - 46EB2E000433C0 /* internal_errqueue.cc in Sources */, - 46EB2E000433D0 /* iocp_windows.cc in Sources */, - 46EB2E000432B0 /* iomgr.cc in Sources */, - 46EB2E000433E0 /* iomgr.cc in Sources */, - 46EB2E000433F0 /* iomgr_custom.cc in Sources */, - 46EB2E00043400 /* iomgr_internal.cc in Sources */, - 46EB2E00043410 /* iomgr_posix.cc in Sources */, - 46EB2E00043420 /* iomgr_posix_cfstream.cc in Sources */, - 46EB2E00043430 /* iomgr_windows.cc in Sources */, - 46EB2E00043440 /* is_epollexclusive_available.cc in Sources */, - 46EB2E00043750 /* json_reader.cc in Sources */, - 46EB2E00043A00 /* json_token.cc in Sources */, - 46EB2E00043760 /* json_util.cc in Sources */, - 46EB2E00043BE0 /* json_util.cc in Sources */, - 46EB2E00043770 /* json_writer.cc in Sources */, - 46EB2E00043A10 /* jwt_credentials.cc in Sources */, - 46EB2E00043A20 /* jwt_verifier.cc in Sources */, - 46EB2E00043DA0 /* lame_client.cc in Sources */, - 46EB2E00041880 /* lb_policy.cc in Sources */, - 46EB2E000419B0 /* lb_policy_registry.cc in Sources */, - 46EB2E000421C0 /* lds.upb.c in Sources */, - 46EB2E00042890 /* lds.upbdefs.c in Sources */, - 46EB2E00042030 /* listener.upb.c in Sources */, - 46EB2E00042700 /* listener.upbdefs.c in Sources */, - 46EB2E00042040 /* listener_components.upb.c in Sources */, - 46EB2E00042710 /* listener_components.upbdefs.c in Sources */, - 46EB2E00042430 /* load_balancer.upb.c in Sources */, - 46EB2E00041900 /* load_balancer_api.cc in Sources */, - 46EB2E00043450 /* load_file.cc in Sources */, - 46EB2E00042010 /* load_report.upb.c in Sources */, - 46EB2E000426E0 /* load_report.upbdefs.c in Sources */, - 46EB2E00043B10 /* load_system_roots_fallback.cc in Sources */, - 46EB2E00043B20 /* load_system_roots_linux.cc in Sources */, - 46EB2E00043A30 /* local_credentials.cc in Sources */, - 46EB2E00043B30 /* local_security_connector.cc in Sources */, - 46EB2E000419C0 /* local_subchannel_pool.cc in Sources */, - 46EB2E00043FF0 /* local_transport_security.cc in Sources */, - 46EB2E00043460 /* lockfree_event.cc in Sources */, - 46EB2E00042F20 /* log.cc in Sources */, - 46EB2E00042F30 /* log_android.cc in Sources */, - 46EB2E00042F40 /* log_linux.cc in Sources */, - 46EB2E00042F50 /* log_posix.cc in Sources */, - 46EB2E00042F60 /* log_windows.cc in Sources */, - 46EB2E000421D0 /* lrs.upb.c in Sources */, - 46EB2E000428A0 /* lrs.upbdefs.c in Sources */, - 46EB2E00043780 /* matchers.cc in Sources */, - 46EB2E00043880 /* matchers.cc in Sources */, - 46EB2E00041BF0 /* max_age_filter.cc in Sources */, - 46EB2E00042E70 /* memory_allocator.cc in Sources */, - 46EB2E00043810 /* memory_quota.cc in Sources */, - 46EB2E00042DF0 /* message_compress.cc in Sources */, - 46EB2E00041BC0 /* message_compress_filter.cc in Sources */, - 46EB2E00041BD0 /* message_decompress_filter.cc in Sources */, - 46EB2E00041C00 /* message_size_filter.cc in Sources */, - 46EB2E00042220 /* metadata.upb.c in Sources */, - 46EB2E000422A0 /* metadata.upb.c in Sources */, - 46EB2E000428F0 /* metadata.upbdefs.c in Sources */, - 46EB2E00042970 /* metadata.upbdefs.c in Sources */, - 46EB2E00043DB0 /* metadata_array.cc in Sources */, - 46EB2E00042450 /* migrate.upb.c in Sources */, - 46EB2E00042AC0 /* migrate.upbdefs.c in Sources */, - 46EB2E000440A0 /* mimics_pcre.cc in Sources */, - 46EB2E00043330 /* mpmcqueue.cc in Sources */, - 46EB2E000430C0 /* mpscq.cc in Sources */, - 46EB2E00044210 /* msg.c in Sources */, - 46EB2E00042F70 /* murmur_hash.cc in Sources */, - 46EB2E000440B0 /* nfa.cc in Sources */, - 46EB2E00042230 /* node.upb.c in Sources */, - 46EB2E00042900 /* node.upbdefs.c in Sources */, - 46EB2E00042240 /* number.upb.c in Sources */, - 46EB2E00042910 /* number.upbdefs.c in Sources */, - 46EB2E00043A40 /* oauth2_credentials.cc in Sources */, - 46EB2E000440C0 /* onepass.cc in Sources */, - 46EB2E00042520 /* orca_load_report.upb.c in Sources */, - 46EB2E00041EF0 /* outlier_detection.upb.c in Sources */, - 46EB2E000425C0 /* outlier_detection.upbdefs.c in Sources */, - 46EB2E00042080 /* overload.upb.c in Sources */, - 46EB2E00042750 /* overload.upbdefs.c in Sources */, - 46EB2E000440D0 /* parse.cc in Sources */, - 46EB2E00042CF0 /* parse_address.cc in Sources */, - 46EB2E00043E30 /* parsed_metadata.cc in Sources */, - 46EB2E00043160 /* parser.cc in Sources */, - 46EB2E00041E00 /* parsing.cc in Sources */, - 46EB2E00042250 /* path.upb.c in Sources */, - 46EB2E00042920 /* path.upbdefs.c in Sources */, - 46EB2E00042210 /* path_transformation.upb.c in Sources */, - 46EB2E000428E0 /* path_transformation.upbdefs.c in Sources */, - 46EB2E000441A0 /* pcre.cc in Sources */, - 46EB2E000422D0 /* percent.upb.c in Sources */, - 46EB2E000429A0 /* percent.upbdefs.c in Sources */, - 46EB2E00043C20 /* percent_encoding.cc in Sources */, - 46EB2E000440E0 /* perl_groups.cc in Sources */, - 46EB2E00041910 /* pick_first.cc in Sources */, - 46EB2E00043E40 /* pid_controller.cc in Sources */, - 46EB2E00043A50 /* plugin_credentials.cc in Sources */, - 46EB2E00043470 /* polling_entity.cc in Sources */, - 46EB2E000432C0 /* pollset.cc in Sources */, - 46EB2E00043480 /* pollset.cc in Sources */, - 46EB2E00043490 /* pollset_custom.cc in Sources */, - 46EB2E000434A0 /* pollset_set.cc in Sources */, - 46EB2E000434B0 /* pollset_set_custom.cc in Sources */, - 46EB2E000434C0 /* pollset_set_windows.cc in Sources */, - 46EB2E000434D0 /* pollset_windows.cc in Sources */, - 46EB2E000440F0 /* prefilter.cc in Sources */, - 46EB2E00044100 /* prefilter_tree.cc in Sources */, - 46EB2E00041920 /* priority.cc in Sources */, - 46EB2E00044110 /* prog.cc in Sources */, - 46EB2E00041F90 /* protocol.upb.c in Sources */, - 46EB2E00042660 /* protocol.upbdefs.c in Sources */, - 46EB2E000419D0 /* proxy_mapper_registry.cc in Sources */, - 46EB2E00041FA0 /* proxy_protocol.upb.c in Sources */, - 46EB2E00042670 /* proxy_protocol.upbdefs.c in Sources */, - 46EB2E00042050 /* quic_config.upb.c in Sources */, - 46EB2E00042720 /* quic_config.upbdefs.c in Sources */, - 46EB2E000422E0 /* range.upb.c in Sources */, - 46EB2E000429B0 /* range.upbdefs.c in Sources */, - 46EB2E00042090 /* rbac.upb.c in Sources */, - 46EB2E00042110 /* rbac.upb.c in Sources */, - 46EB2E00042760 /* rbac.upbdefs.c in Sources */, - 46EB2E000427E0 /* rbac.upbdefs.c in Sources */, - 46EB2E00041C10 /* rbac_filter.cc in Sources */, - 46EB2E00043890 /* rbac_policy.cc in Sources */, - 46EB2E00041C20 /* rbac_service_config_parser.cc in Sources */, - 46EB2E000421E0 /* rds.upb.c in Sources */, - 46EB2E000428B0 /* rds.upbdefs.c in Sources */, - 46EB2E00044120 /* re2.cc in Sources */, - 46EB2E00044220 /* reflection.c in Sources */, - 46EB2E00042260 /* regex.upb.c in Sources */, - 46EB2E00042930 /* regex.upbdefs.c in Sources */, - 46EB2E00044130 /* regexp.cc in Sources */, - 46EB2E000434E0 /* resolve_address.cc in Sources */, - 46EB2E000434F0 /* resolve_address_custom.cc in Sources */, - 46EB2E00043500 /* resolve_address_posix.cc in Sources */, - 46EB2E00043510 /* resolve_address_windows.cc in Sources */, - 46EB2E000432D0 /* resolved_address_internal.cc in Sources */, - 46EB2E000432E0 /* resolver.cc in Sources */, - 46EB2E000437C0 /* resolver.cc in Sources */, - 46EB2E00041FB0 /* resolver.upb.c in Sources */, - 46EB2E00042680 /* resolver.upbdefs.c in Sources */, - 46EB2E000437D0 /* resolver_registry.cc in Sources */, - 46EB2E00041AD0 /* resolver_result_parsing.cc in Sources */, - 46EB2E00041E90 /* resource.upb.c in Sources */, - 46EB2E000424F0 /* resource.upb.c in Sources */, - 46EB2E00042560 /* resource.upbdefs.c in Sources */, - 46EB2E00042B60 /* resource.upbdefs.c in Sources */, - 46EB2E00042500 /* resource_locator.upb.c in Sources */, - 46EB2E00042B70 /* resource_locator.upbdefs.c in Sources */, - 46EB2E00042510 /* resource_name.upb.c in Sources */, - 46EB2E00042B80 /* resource_name.upbdefs.c in Sources */, - 46EB2E00043820 /* resource_quota.cc in Sources */, - 46EB2E00041AE0 /* retry_filter.cc in Sources */, - 46EB2E00041AF0 /* retry_service_config.cc in Sources */, - 46EB2E00041B00 /* retry_throttle.cc in Sources */, - 46EB2E00041930 /* ring_hash.cc in Sources */, - 46EB2E00041940 /* rls.cc in Sources */, - 46EB2E00042440 /* rls.upb.c in Sources */, - 46EB2E00041950 /* round_robin.cc in Sources */, - 46EB2E000420A0 /* route.upb.c in Sources */, - 46EB2E00042770 /* route.upbdefs.c in Sources */, - 46EB2E000420B0 /* route_components.upb.c in Sources */, - 46EB2E00042780 /* route_components.upbdefs.c in Sources */, - 46EB2E00042120 /* router.upb.c in Sources */, - 46EB2E000427F0 /* router.upbdefs.c in Sources */, - 46EB2E000441B0 /* rune.cc in Sources */, - 46EB2E000420C0 /* scoped_route.upb.c in Sources */, - 46EB2E00042790 /* scoped_route.upbdefs.c in Sources */, - 46EB2E000438A0 /* sdk_server_authz_filter.cc in Sources */, - 46EB2E00042160 /* secret.upb.c in Sources */, - 46EB2E00042830 /* secret.upbdefs.c in Sources */, - 46EB2E00041C90 /* secure_channel_create.cc in Sources */, - 46EB2E00043BA0 /* secure_endpoint.cc in Sources */, - 46EB2E00042460 /* security.upb.c in Sources */, - 46EB2E00042AD0 /* security.upbdefs.c in Sources */, - 46EB2E00043B40 /* security_connector.cc in Sources */, - 46EB2E000438B0 /* security_context.cc in Sources */, - 46EB2E00043BB0 /* security_handshaker.cc in Sources */, - 46EB2E000422F0 /* semantic_version.upb.c in Sources */, - 46EB2E000429C0 /* semantic_version.upbdefs.c in Sources */, - 46EB2E00042470 /* sensitive.upb.c in Sources */, - 46EB2E00042AE0 /* sensitive.upbdefs.c in Sources */, - 46EB2E00043DC0 /* server.cc in Sources */, - 46EB2E000437E0 /* server_address.cc in Sources */, - 46EB2E00043BC0 /* server_auth_filter.cc in Sources */, - 46EB2E00041CB0 /* server_chttp2.cc in Sources */, - 46EB2E00041CC0 /* server_chttp2_posix.cc in Sources */, - 46EB2E00041C30 /* server_config_selector.cc in Sources */, - 46EB2E00041C40 /* server_config_selector_filter.cc in Sources */, - 46EB2E00041CD0 /* server_secure_chttp2.cc in Sources */, - 46EB2E00043BF0 /* service_config.cc in Sources */, - 46EB2E00041B10 /* service_config_channel_arg_filter.cc in Sources */, - 46EB2E00041B80 /* service_config_parser.cc in Sources */, - 46EB2E00043C00 /* service_config_parser.cc in Sources */, - 46EB2E00044140 /* set.cc in Sources */, - 46EB2E00044150 /* simplify.cc in Sources */, - 46EB2E00043C30 /* slice.cc in Sources */, - 46EB2E00043C40 /* slice_api.cc in Sources */, - 46EB2E00043C50 /* slice_buffer.cc in Sources */, - 46EB2E00043C60 /* slice_intern.cc in Sources */, - 46EB2E00043C70 /* slice_refcount.cc in Sources */, - 46EB2E00043C80 /* slice_split.cc in Sources */, - 46EB2E00043C90 /* slice_string_helpers.cc in Sources */, - 46EB2E00042E80 /* sockaddr.cc in Sources */, - 46EB2E00041AB0 /* sockaddr_resolver.cc in Sources */, - 46EB2E00042D00 /* sockaddr_utils.cc in Sources */, - 46EB2E00043520 /* socket_factory_posix.cc in Sources */, - 46EB2E00043530 /* socket_mutator.cc in Sources */, - 46EB2E00041FC0 /* socket_option.upb.c in Sources */, - 46EB2E00042690 /* socket_option.upbdefs.c in Sources */, - 46EB2E00043540 /* socket_utils_common_posix.cc in Sources */, - 46EB2E00043550 /* socket_utils_linux.cc in Sources */, - 46EB2E00043560 /* socket_utils_posix.cc in Sources */, - 46EB2E00043570 /* socket_utils_windows.cc in Sources */, - 46EB2E00043580 /* socket_windows.cc in Sources */, - 46EB2E000421F0 /* srds.upb.c in Sources */, - 46EB2E000428C0 /* srds.upbdefs.c in Sources */, - 46EB2E00043A60 /* ssl_credentials.cc in Sources */, - 46EB2E00043B50 /* ssl_security_connector.cc in Sources */, - 46EB2E00044000 /* ssl_session_boringssl.cc in Sources */, - 46EB2E00044010 /* ssl_session_cache.cc in Sources */, - 46EB2E00044020 /* ssl_session_openssl.cc in Sources */, - 46EB2E00044030 /* ssl_transport_security.cc in Sources */, - 46EB2E00043B60 /* ssl_utils.cc in Sources */, - 46EB2E00043B70 /* ssl_utils_config.cc in Sources */, - 46EB2E000437A0 /* stap_timers.cc in Sources */, - 46EB2E000430D0 /* stat_posix.cc in Sources */, - 46EB2E000430E0 /* stat_windows.cc in Sources */, - 46EB2E00042E10 /* stats.cc in Sources */, - 46EB2E00042070 /* stats.upb.c in Sources */, - 46EB2E00042740 /* stats.upbdefs.c in Sources */, - 46EB2E00042E20 /* stats_data.cc in Sources */, - 46EB2E000423E0 /* status.upb.c in Sources */, - 46EB2E00042480 /* status.upb.c in Sources */, - 46EB2E000424B0 /* status.upb.c in Sources */, - 46EB2E00042AB0 /* status.upbdefs.c in Sources */, - 46EB2E00042AF0 /* status.upbdefs.c in Sources */, - 46EB2E00042B20 /* status.upbdefs.c in Sources */, - 46EB2E00043E50 /* status_conversion.cc in Sources */, - 46EB2E000430F0 /* status_helper.cc in Sources */, - 46EB2E00042DC0 /* status_util.cc in Sources */, - 46EB2E00041E10 /* stream_lists.cc in Sources */, - 46EB2E00041E20 /* stream_map.cc in Sources */, - 46EB2E00042F80 /* string.cc in Sources */, - 46EB2E00042270 /* string.upb.c in Sources */, - 46EB2E00042940 /* string.upbdefs.c in Sources */, - 46EB2E00042F90 /* string_posix.cc in Sources */, - 46EB2E00042FA0 /* string_util_windows.cc in Sources */, - 46EB2E00042FB0 /* string_windows.cc in Sources */, - 46EB2E00044160 /* stringpiece.cc in Sources */, - 46EB2E00042280 /* struct.upb.c in Sources */, - 46EB2E000423B0 /* struct.upb.c in Sources */, - 46EB2E00042950 /* struct.upbdefs.c in Sources */, - 46EB2E00042A80 /* struct.upbdefs.c in Sources */, - 46EB2E000441C0 /* strutil.cc in Sources */, - 46EB2E00041B20 /* subchannel.cc in Sources */, - 46EB2E00041B30 /* subchannel_pool_interface.cc in Sources */, - 46EB2E00041FD0 /* substitution_format_string.upb.c in Sources */, - 46EB2E000426A0 /* substitution_format_string.upbdefs.c in Sources */, - 46EB2E00042FC0 /* sync.cc in Sources */, - 46EB2E00042FD0 /* sync_abseil.cc in Sources */, - 46EB2E00042FE0 /* sync_posix.cc in Sources */, - 46EB2E00042FF0 /* sync_windows.cc in Sources */, - 46EB2E00042340 /* syntax.upb.c in Sources */, - 46EB2E00042A10 /* syntax.upbdefs.c in Sources */, - 46EB2E00044230 /* table.c in Sources */, - 46EB2E000432F0 /* tcp.cc in Sources */, - 46EB2E00043590 /* tcp_client.cc in Sources */, - 46EB2E000435A0 /* tcp_client_cfstream.cc in Sources */, - 46EB2E000435B0 /* tcp_client_custom.cc in Sources */, - 46EB2E000435C0 /* tcp_client_posix.cc in Sources */, - 46EB2E000435D0 /* tcp_client_windows.cc in Sources */, - 46EB2E000435E0 /* tcp_custom.cc in Sources */, - 46EB2E000435F0 /* tcp_posix.cc in Sources */, - 46EB2E00043600 /* tcp_server.cc in Sources */, - 46EB2E00043610 /* tcp_server_custom.cc in Sources */, - 46EB2E00043620 /* tcp_server_posix.cc in Sources */, - 46EB2E00043630 /* tcp_server_utils_posix_common.cc in Sources */, - 46EB2E00043640 /* tcp_server_utils_posix_ifaddrs.cc in Sources */, - 46EB2E00043650 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, - 46EB2E00043660 /* tcp_server_windows.cc in Sources */, - 46EB2E00043670 /* tcp_windows.cc in Sources */, - 46EB2E00044240 /* text_encode.c in Sources */, - 46EB2E00043100 /* thd_posix.cc in Sources */, - 46EB2E00043110 /* thd_windows.cc in Sources */, - 46EB2E00043830 /* thread_quota.cc in Sources */, - 46EB2E00043340 /* threadpool.cc in Sources */, - 46EB2E00043000 /* time.cc in Sources */, - 46EB2E00043680 /* time_averaged_stats.cc in Sources */, - 46EB2E00043010 /* time_posix.cc in Sources */, - 46EB2E00043020 /* time_precise.cc in Sources */, - 46EB2E00043120 /* time_util.cc in Sources */, - 46EB2E00043030 /* time_windows.cc in Sources */, - 46EB2E00043E60 /* timeout_encoding.cc in Sources */, - 46EB2E00043300 /* timer.cc in Sources */, - 46EB2E00043690 /* timer.cc in Sources */, - 46EB2E000436A0 /* timer_custom.cc in Sources */, - 46EB2E000436B0 /* timer_generic.cc in Sources */, - 46EB2E000436C0 /* timer_heap.cc in Sources */, - 46EB2E000436D0 /* timer_manager.cc in Sources */, - 46EB2E000423C0 /* timestamp.upb.c in Sources */, - 46EB2E00042A90 /* timestamp.upbdefs.c in Sources */, - 46EB2E00042170 /* tls.upb.c in Sources */, - 46EB2E00042840 /* tls.upbdefs.c in Sources */, - 46EB2E00043AB0 /* tls_credentials.cc in Sources */, - 46EB2E00043B80 /* tls_security_connector.cc in Sources */, - 46EB2E00043AC0 /* tls_utils.cc in Sources */, - 46EB2E00043040 /* tmpfile_msys.cc in Sources */, - 46EB2E00043050 /* tmpfile_posix.cc in Sources */, - 46EB2E00043060 /* tmpfile_windows.cc in Sources */, - 46EB2E00044170 /* tostring.cc in Sources */, - 46EB2E00042E30 /* trace.cc in Sources */, - 46EB2E00043840 /* trace.cc in Sources */, - 46EB2E00043E70 /* transport.cc in Sources */, - 46EB2E00043E80 /* transport_op_string.cc in Sources */, - 46EB2E00044040 /* transport_security.cc in Sources */, - 46EB2E00042410 /* transport_security_common.upb.c in Sources */, - 46EB2E00043F80 /* transport_security_common_api.cc in Sources */, - 46EB2E00044050 /* transport_security_grpc.cc in Sources */, - 46EB2E00043BD0 /* tsi_error.cc in Sources */, - 46EB2E00042530 /* typed_struct.upb.c in Sources */, - 46EB2E00042B90 /* typed_struct.upbdefs.c in Sources */, - 46EB2E00042060 /* udp_listener_config.upb.c in Sources */, - 46EB2E00042730 /* udp_listener_config.upbdefs.c in Sources */, - 46EB2E00041FE0 /* udp_socket_config.upb.c in Sources */, - 46EB2E000426B0 /* udp_socket_config.upbdefs.c in Sources */, - 46EB2E00044180 /* unicode_casefold.cc in Sources */, - 46EB2E00044190 /* unicode_groups.cc in Sources */, - 46EB2E000436E0 /* unix_sockets_posix.cc in Sources */, - 46EB2E000436F0 /* unix_sockets_posix_noop.cc in Sources */, - 46EB2E00044250 /* upb.c in Sources */, - 46EB2E00043E90 /* uri_parser.cc in Sources */, - 46EB2E000439A0 /* url_external_account_credentials.cc in Sources */, - 46EB2E000424A0 /* validate.upb.c in Sources */, - 46EB2E00042B10 /* validate.upbdefs.c in Sources */, - 46EB2E00043DD0 /* validate_metadata.cc in Sources */, - 46EB2E00042290 /* value.upb.c in Sources */, - 46EB2E00042350 /* value.upb.c in Sources */, - 46EB2E00042960 /* value.upbdefs.c in Sources */, - 46EB2E00042A20 /* value.upbdefs.c in Sources */, - 46EB2E00041E30 /* varint.cc in Sources */, - 46EB2E00043DE0 /* version.cc in Sources */, - 46EB2E00042490 /* versioning.upb.c in Sources */, - 46EB2E00042B00 /* versioning.upbdefs.c in Sources */, - 46EB2E00043700 /* wakeup_fd_eventfd.cc in Sources */, - 46EB2E00043710 /* wakeup_fd_nospecial.cc in Sources */, - 46EB2E00043720 /* wakeup_fd_pipe.cc in Sources */, - 46EB2E00043730 /* wakeup_fd_posix.cc in Sources */, - 46EB2E00041960 /* weighted_target.cc in Sources */, - 46EB2E00043740 /* work_serializer.cc in Sources */, - 46EB2E00043070 /* wrap_memcpy.cc in Sources */, - 46EB2E000423D0 /* wrappers.upb.c in Sources */, - 46EB2E00042AA0 /* wrappers.upbdefs.c in Sources */, - 46EB2E00041E40 /* writing.cc in Sources */, - 46EB2E00042BD0 /* xds_api.cc in Sources */, - 46EB2E00042BE0 /* xds_bootstrap.cc in Sources */, - 46EB2E00042BF0 /* xds_certificate_provider.cc in Sources */, - 46EB2E00042C00 /* xds_channel_creds.cc in Sources */, - 46EB2E00042C10 /* xds_channel_stack_modifier.cc in Sources */, - 46EB2E00042C20 /* xds_client.cc in Sources */, - 46EB2E00042C30 /* xds_client_stats.cc in Sources */, - 46EB2E00042C40 /* xds_cluster.cc in Sources */, - 46EB2E00041980 /* xds_cluster_impl.cc in Sources */, - 46EB2E00041990 /* xds_cluster_manager.cc in Sources */, - 46EB2E000419A0 /* xds_cluster_resolver.cc in Sources */, - 46EB2E00042C50 /* xds_common_types.cc in Sources */, - 46EB2E00043AD0 /* xds_credentials.cc in Sources */, - 46EB2E00042C60 /* xds_endpoint.cc in Sources */, - 46EB2E00042C70 /* xds_http_fault_filter.cc in Sources */, - 46EB2E00042C80 /* xds_http_filters.cc in Sources */, - 46EB2E00042C90 /* xds_http_rbac_filter.cc in Sources */, - 46EB2E00042CA0 /* xds_listener.cc in Sources */, - 46EB2E00041AC0 /* xds_resolver.cc in Sources */, - 46EB2E00042CB0 /* xds_resource_type.cc in Sources */, - 46EB2E00042CC0 /* xds_route_config.cc in Sources */, - 46EB2E00042CD0 /* xds_routing.cc in Sources */, - 46EB2E00042CE0 /* xds_server_config_fetcher.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00046FB0 /* Sources */ = { + 46EB2E00041C30 /* accesslog.upb.c in Sources */, + 46EB2E00042300 /* accesslog.upbdefs.c in Sources */, + 46EB2E00043540 /* activity.cc in Sources */, + 46EB2E00041C90 /* address.upb.c in Sources */, + 46EB2E00042360 /* address.upbdefs.c in Sources */, + 46EB2E00041620 /* address_filtering.cc in Sources */, + 46EB2E00041F20 /* ads.upb.c in Sources */, + 46EB2E000425F0 /* ads.upbdefs.c in Sources */, + 46EB2E00043C40 /* aes_gcm.cc in Sources */, + 46EB2E00042C20 /* alloc.cc in Sources */, + 46EB2E000419E0 /* alpn.cc in Sources */, + 46EB2E00043C60 /* alts_counter.cc in Sources */, + 46EB2E00043650 /* alts_credentials.cc in Sources */, + 46EB2E00043C70 /* alts_crypter.cc in Sources */, + 46EB2E00043C80 /* alts_frame_protector.cc in Sources */, + 46EB2E00043D20 /* alts_grpc_integrity_only_record_protocol.cc in Sources */, + 46EB2E00043D30 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, + 46EB2E00043D40 /* alts_grpc_record_protocol_common.cc in Sources */, + 46EB2E00043CD0 /* alts_handshaker_client.cc in Sources */, + 46EB2E00043D50 /* alts_iovec_record_protocol.cc in Sources */, + 46EB2E00043C90 /* alts_record_protocol_crypter_common.cc in Sources */, + 46EB2E00043CA0 /* alts_seal_privacy_integrity_crypter.cc in Sources */, + 46EB2E00043870 /* alts_security_connector.cc in Sources */, + 46EB2E00043CE0 /* alts_shared_resource.cc in Sources */, + 46EB2E00043CF0 /* alts_tsi_handshaker.cc in Sources */, + 46EB2E00043D00 /* alts_tsi_utils.cc in Sources */, + 46EB2E00043CB0 /* alts_unseal_privacy_integrity_crypter.cc in Sources */, + 46EB2E00043D60 /* alts_zero_copy_grpc_protector.cc in Sources */, + 46EB2E00042180 /* altscontext.upb.c in Sources */, + 46EB2E00042090 /* annotations.upb.c in Sources */, + 46EB2E00042760 /* annotations.upbdefs.c in Sources */, + 46EB2E00042100 /* any.upb.c in Sources */, + 46EB2E000427D0 /* any.upbdefs.c in Sources */, + 46EB2E00043580 /* api.cc in Sources */, + 46EB2E00041DB0 /* api_listener.upb.c in Sources */, + 46EB2E00042480 /* api_listener.upbdefs.c in Sources */, + 46EB2E00043A30 /* api_trace.cc in Sources */, + 46EB2E00043590 /* arena.cc in Sources */, + 46EB2E00042C30 /* atm.cc in Sources */, + 46EB2E00042250 /* authority.upb.c in Sources */, + 46EB2E000428C0 /* authority.upbdefs.c in Sources */, + 46EB2E000435E0 /* authorization_policy_provider_vtable.cc in Sources */, + 46EB2E000436F0 /* aws_external_account_credentials.cc in Sources */, + 46EB2E00043700 /* aws_request_signer.cc in Sources */, + 46EB2E000439A0 /* b64.cc in Sources */, + 46EB2E00041540 /* backend_metric.cc in Sources */, + 46EB2E00042AA0 /* backoff.cc in Sources */, + 46EB2E00041CA0 /* backoff.upb.c in Sources */, + 46EB2E00042370 /* backoff.upbdefs.c in Sources */, + 46EB2E00041550 /* backup_poller.cc in Sources */, + 46EB2E00041CB0 /* base.upb.c in Sources */, + 46EB2E00042380 /* base.upbdefs.c in Sources */, + 46EB2E00043520 /* basic_timers.cc in Sources */, + 46EB2E00043B80 /* bdp_estimator.cc in Sources */, + 46EB2E00041A70 /* bin_decoder.cc in Sources */, + 46EB2E00041A80 /* bin_encoder.cc in Sources */, + 46EB2E00041770 /* binder_resolver.cc in Sources */, + 46EB2E00043DF0 /* bitstate.cc in Sources */, + 46EB2E00041C40 /* bootstrap.upb.c in Sources */, + 46EB2E00042310 /* bootstrap.upbdefs.c in Sources */, + 46EB2E00042F00 /* buffer_list.cc in Sources */, + 46EB2E00043A40 /* builtins.cc in Sources */, + 46EB2E00043A50 /* byte_buffer.cc in Sources */, + 46EB2E00043A60 /* byte_buffer_reader.cc in Sources */, + 46EB2E00043B90 /* byte_stream.cc in Sources */, + 46EB2E00043A70 /* call.cc in Sources */, + 46EB2E00042F10 /* call_combiner.cc in Sources */, + 46EB2E00043A80 /* call_details.cc in Sources */, + 46EB2E00043A90 /* call_log_batch.cc in Sources */, + 46EB2E00041700 /* cds.cc in Sources */, + 46EB2E00041F10 /* cds.upb.c in Sources */, + 46EB2E000425E0 /* cds.upbdefs.c in Sources */, + 46EB2E00041ED0 /* cert.upb.c in Sources */, + 46EB2E000425A0 /* cert.upbdefs.c in Sources */, + 46EB2E00042930 /* certificate_provider_registry.cc in Sources */, + 46EB2E00042940 /* certificate_provider_store.cc in Sources */, + 46EB2E00042F20 /* cfstream_handle.cc in Sources */, + 46EB2E00043AA0 /* channel.cc in Sources */, + 46EB2E00042AB0 /* channel_args.cc in Sources */, + 46EB2E00042BD0 /* channel_args_endpoint_config.cc in Sources */, + 46EB2E00042AC0 /* channel_args_preconditioning.cc in Sources */, + 46EB2E00041560 /* channel_connectivity.cc in Sources */, + 46EB2E00041A00 /* channel_create.cc in Sources */, + 46EB2E00041A10 /* channel_create_posix.cc in Sources */, + 46EB2E00043AB0 /* channel_init.cc in Sources */, + 46EB2E00043AC0 /* channel_ping.cc in Sources */, + 46EB2E00042AD0 /* channel_stack.cc in Sources */, + 46EB2E00042AE0 /* channel_stack_builder.cc in Sources */, + 46EB2E00043AD0 /* channel_stack_type.cc in Sources */, + 46EB2E00042AF0 /* channel_trace.cc in Sources */, + 46EB2E00042B00 /* channelz.cc in Sources */, + 46EB2E00042B10 /* channelz_registry.cc in Sources */, + 46EB2E00043660 /* check_gcp_environment.cc in Sources */, + 46EB2E00043670 /* check_gcp_environment_linux.cc in Sources */, + 46EB2E00043680 /* check_gcp_environment_no_op.cc in Sources */, + 46EB2E00043690 /* check_gcp_environment_windows.cc in Sources */, + 46EB2E000420A0 /* checked.upb.c in Sources */, + 46EB2E00042770 /* checked.upbdefs.c in Sources */, + 46EB2E00041630 /* child_policy_handler.cc in Sources */, + 46EB2E000419F0 /* chttp2_connector.cc in Sources */, + 46EB2E00041A90 /* chttp2_plugin.cc in Sources */, + 46EB2E00041A30 /* chttp2_server.cc in Sources */, + 46EB2E00041AA0 /* chttp2_transport.cc in Sources */, + 46EB2E00041C50 /* circuit_breaker.upb.c in Sources */, + 46EB2E00042320 /* circuit_breaker.upbdefs.c in Sources */, + 46EB2E00043920 /* client_auth_filter.cc in Sources */, + 46EB2E00041930 /* client_authority_filter.cc in Sources */, + 46EB2E00041570 /* client_channel.cc in Sources */, + 46EB2E00041580 /* client_channel_channelz.cc in Sources */, + 46EB2E00041590 /* client_channel_factory.cc in Sources */, + 46EB2E000415A0 /* client_channel_plugin.cc in Sources */, + 46EB2E000418D0 /* client_idle_filter.cc in Sources */, + 46EB2E00041640 /* client_load_reporting_filter.cc in Sources */, + 46EB2E00043020 /* closure.cc in Sources */, + 46EB2E00041C60 /* cluster.upb.c in Sources */, + 46EB2E00041E70 /* cluster.upb.c in Sources */, + 46EB2E00042330 /* cluster.upbdefs.c in Sources */, + 46EB2E00042540 /* cluster.upbdefs.c in Sources */, + 46EB2E00042260 /* collection_entry.upb.c in Sources */, + 46EB2E000428D0 /* collection_entry.upbdefs.c in Sources */, + 46EB2E00042F30 /* combiner.cc in Sources */, + 46EB2E00041EE0 /* common.upb.c in Sources */, + 46EB2E000425B0 /* common.upbdefs.c in Sources */, + 46EB2E00043E00 /* compile.cc in Sources */, + 46EB2E00043AE0 /* completion_queue.cc in Sources */, + 46EB2E00043AF0 /* completion_queue_factory.cc in Sources */, + 46EB2E000436D0 /* composite_credentials.cc in Sources */, + 46EB2E00042B60 /* compression.cc in Sources */, + 46EB2E00042B70 /* compression_internal.cc in Sources */, + 46EB2E00041C00 /* config_dump.upb.c in Sources */, + 46EB2E000422D0 /* config_dump.upbdefs.c in Sources */, + 46EB2E000415B0 /* config_selector.cc in Sources */, + 46EB2E00041CC0 /* config_source.upb.c in Sources */, + 46EB2E00042390 /* config_source.upbdefs.c in Sources */, + 46EB2E00042B20 /* connected_channel.cc in Sources */, + 46EB2E00043BA0 /* connectivity_state.cc in Sources */, + 46EB2E00041AB0 /* context_list.cc in Sources */, + 46EB2E00042270 /* context_params.upb.c in Sources */, + 46EB2E000428E0 /* context_params.upbdefs.c in Sources */, + 46EB2E00042B90 /* core_configuration.cc in Sources */, + 46EB2E00042C40 /* cpu_iphone.cc in Sources */, + 46EB2E00042C50 /* cpu_linux.cc in Sources */, + 46EB2E00042C60 /* cpu_posix.cc in Sources */, + 46EB2E00042C70 /* cpu_windows.cc in Sources */, + 46EB2E000436E0 /* credentials.cc in Sources */, + 46EB2E00043750 /* credentials_generic.cc in Sources */, + 46EB2E00041F90 /* csds.upb.c in Sources */, + 46EB2E00042660 /* csds.upbdefs.c in Sources */, + 46EB2E00042040 /* custom_tag.upb.c in Sources */, + 46EB2E00042710 /* custom_tag.upbdefs.c in Sources */, + 46EB2E000418F0 /* deadline_filter.cc in Sources */, + 46EB2E00043F60 /* decode.c in Sources */, + 46EB2E00043F70 /* decode_fast.c in Sources */, + 46EB2E00043F80 /* def.c in Sources */, + 46EB2E00041C10 /* deprecation.upb.c in Sources */, + 46EB2E000422E0 /* deprecation.upbdefs.c in Sources */, + 46EB2E00042110 /* descriptor.upb.c in Sources */, + 46EB2E000427E0 /* descriptor.upbdefs.c in Sources */, + 46EB2E00043E10 /* dfa.cc in Sources */, + 46EB2E00041F30 /* discovery.upb.c in Sources */, + 46EB2E00042600 /* discovery.upbdefs.c in Sources */, + 46EB2E00041810 /* dns_resolver.cc in Sources */, + 46EB2E00041780 /* dns_resolver_ares.cc in Sources */, + 46EB2E00041800 /* dns_resolver_selection.cc in Sources */, + 46EB2E00042F40 /* dualstack_socket_posix.cc in Sources */, + 46EB2E00042120 /* duration.upb.c in Sources */, + 46EB2E000427F0 /* duration.upbdefs.c in Sources */, + 46EB2E000415C0 /* dynamic_filters.cc in Sources */, + 46EB2E00041F40 /* eds.upb.c in Sources */, + 46EB2E00042610 /* eds.upbdefs.c in Sources */, + 46EB2E00042130 /* empty.upb.c in Sources */, + 46EB2E00042800 /* empty.upbdefs.c in Sources */, + 46EB2E00043F90 /* encode.c in Sources */, + 46EB2E00042F50 /* endpoint.cc in Sources */, + 46EB2E00043030 /* endpoint.cc in Sources */, + 46EB2E00041D80 /* endpoint.upb.c in Sources */, + 46EB2E00042450 /* endpoint.upbdefs.c in Sources */, + 46EB2E00042F60 /* endpoint_cfstream.cc in Sources */, + 46EB2E00041D90 /* endpoint_components.upb.c in Sources */, + 46EB2E00042460 /* endpoint_components.upbdefs.c in Sources */, + 46EB2E00042F70 /* endpoint_pair_event_engine.cc in Sources */, + 46EB2E00042F80 /* endpoint_pair_posix.cc in Sources */, + 46EB2E00042F90 /* endpoint_pair_windows.cc in Sources */, + 46EB2E00042C80 /* env_linux.cc in Sources */, + 46EB2E00042C90 /* env_posix.cc in Sources */, + 46EB2E00042CA0 /* env_windows.cc in Sources */, + 46EB2E00042FA0 /* error.cc in Sources */, + 46EB2E00042FB0 /* error_cfstream.cc in Sources */, + 46EB2E00043BB0 /* error_utils.cc in Sources */, + 46EB2E00042FC0 /* ev_apple.cc in Sources */, + 46EB2E00042FD0 /* ev_epoll1_linux.cc in Sources */, + 46EB2E00042FE0 /* ev_epollex_linux.cc in Sources */, + 46EB2E00042FF0 /* ev_poll_posix.cc in Sources */, + 46EB2E00043000 /* ev_posix.cc in Sources */, + 46EB2E00043010 /* ev_windows.cc in Sources */, + 46EB2E000420B0 /* eval.upb.c in Sources */, + 46EB2E00042780 /* eval.upbdefs.c in Sources */, + 46EB2E000435F0 /* evaluate_args.cc in Sources */, + 46EB2E00042BE0 /* event_engine.cc in Sources */, + 46EB2E00042BF0 /* event_engine_factory.cc in Sources */, + 46EB2E00041CD0 /* event_service_config.upb.c in Sources */, + 46EB2E000423A0 /* event_service_config.upbdefs.c in Sources */, + 46EB2E00043B00 /* event_string.cc in Sources */, + 46EB2E00042E10 /* examine_stack.cc in Sources */, + 46EB2E000430A0 /* exec_ctx.cc in Sources */, + 46EB2E000430B0 /* executor.cc in Sources */, + 46EB2E000420C0 /* explain.upb.c in Sources */, + 46EB2E00042790 /* explain.upbdefs.c in Sources */, + 46EB2E00041CE0 /* extension.upb.c in Sources */, + 46EB2E000423B0 /* extension.upbdefs.c in Sources */, + 46EB2E00043710 /* external_account_credentials.cc in Sources */, + 46EB2E00043740 /* fake_credentials.cc in Sources */, + 46EB2E00041820 /* fake_resolver.cc in Sources */, + 46EB2E00043880 /* fake_security_connector.cc in Sources */, + 46EB2E00043D70 /* fake_transport_security.cc in Sources */, + 46EB2E00041E80 /* fault.upb.c in Sources */, + 46EB2E00041E90 /* fault.upb.c in Sources */, + 46EB2E00042550 /* fault.upbdefs.c in Sources */, + 46EB2E00042560 /* fault.upbdefs.c in Sources */, + 46EB2E00041900 /* fault_injection_filter.cc in Sources */, + 46EB2E00043720 /* file_external_account_credentials.cc in Sources */, + 46EB2E00042950 /* file_watcher_certificate_provider_factory.cc in Sources */, + 46EB2E00041C70 /* filter.upb.c in Sources */, + 46EB2E00042340 /* filter.upbdefs.c in Sources */, + 46EB2E00043E20 /* filtered_re2.cc in Sources */, + 46EB2E00041AC0 /* flow_control.cc in Sources */, + 46EB2E00042E20 /* fork.cc in Sources */, + 46EB2E000430E0 /* fork_posix.cc in Sources */, + 46EB2E000430F0 /* fork_windows.cc in Sources */, + 46EB2E00042EC0 /* format_request.cc in Sources */, + 46EB2E00041AD0 /* frame_data.cc in Sources */, + 46EB2E00041AE0 /* frame_goaway.cc in Sources */, + 46EB2E00043CC0 /* frame_handler.cc in Sources */, + 46EB2E00041AF0 /* frame_ping.cc in Sources */, + 46EB2E00041B00 /* frame_rst_stream.cc in Sources */, + 46EB2E00041B10 /* frame_settings.cc in Sources */, + 46EB2E00041B20 /* frame_window_update.cc in Sources */, + 46EB2E00043100 /* gethostname_fallback.cc in Sources */, + 46EB2E00043110 /* gethostname_host_name_max.cc in Sources */, + 46EB2E00043120 /* gethostname_sysconf.cc in Sources */, + 46EB2E00042E30 /* global_config_env.cc in Sources */, + 46EB2E000415D0 /* global_subchannel_pool.cc in Sources */, + 46EB2E00041830 /* google_c2p_resolver.cc in Sources */, + 46EB2E00043760 /* google_default_credentials.cc in Sources */, + 46EB2E00046CD0 /* gRPC-Core-dummy.m in Sources */, + 46EB2E000436A0 /* grpc_alts_credentials_client_options.cc in Sources */, + 46EB2E000436B0 /* grpc_alts_credentials_options.cc in Sources */, + 46EB2E000436C0 /* grpc_alts_credentials_server_options.cc in Sources */, + 46EB2E00041790 /* grpc_ares_ev_driver_event_engine.cc in Sources */, + 46EB2E000417A0 /* grpc_ares_ev_driver_posix.cc in Sources */, + 46EB2E000417B0 /* grpc_ares_ev_driver_windows.cc in Sources */, + 46EB2E000417C0 /* grpc_ares_wrapper.cc in Sources */, + 46EB2E000417D0 /* grpc_ares_wrapper_event_engine.cc in Sources */, + 46EB2E000417E0 /* grpc_ares_wrapper_posix.cc in Sources */, + 46EB2E000417F0 /* grpc_ares_wrapper_windows.cc in Sources */, + 46EB2E00043600 /* grpc_authorization_engine.cc in Sources */, + 46EB2E00041530 /* grpc_context.cc in Sources */, + 46EB2E00043130 /* grpc_if_nametoindex_posix.cc in Sources */, + 46EB2E00043140 /* grpc_if_nametoindex_unsupported.cc in Sources */, + 46EB2E00043C30 /* grpc_plugin_registry.cc in Sources */, + 46EB2E00041CF0 /* grpc_service.upb.c in Sources */, + 46EB2E000423C0 /* grpc_service.upbdefs.c in Sources */, + 46EB2E00043800 /* grpc_tls_certificate_distributor.cc in Sources */, + 46EB2E00043810 /* grpc_tls_certificate_provider.cc in Sources */, + 46EB2E00043820 /* grpc_tls_certificate_verifier.cc in Sources */, + 46EB2E00043830 /* grpc_tls_credentials_options.cc in Sources */, + 46EB2E00041650 /* grpclb.cc in Sources */, + 46EB2E00041660 /* grpclb_balancer_addresses.cc in Sources */, + 46EB2E00041670 /* grpclb_channel_secure.cc in Sources */, + 46EB2E00041680 /* grpclb_client_stats.cc in Sources */, + 46EB2E00043C50 /* gsec.cc in Sources */, + 46EB2E00042B30 /* handshaker.cc in Sources */, + 46EB2E00042190 /* handshaker.upb.c in Sources */, + 46EB2E00042B40 /* handshaker_registry.cc in Sources */, + 46EB2E000421B0 /* health.upb.c in Sources */, + 46EB2E00041D00 /* health_check.upb.c in Sources */, + 46EB2E000423D0 /* health_check.upbdefs.c in Sources */, + 46EB2E000415E0 /* health_check_client.cc in Sources */, + 46EB2E00042E40 /* host_port.cc in Sources */, + 46EB2E00041B30 /* hpack_encoder.cc in Sources */, + 46EB2E00041B40 /* hpack_encoder_table.cc in Sources */, + 46EB2E00041B50 /* hpack_parser.cc in Sources */, + 46EB2E00041B60 /* hpack_parser_table.cc in Sources */, + 46EB2E00042050 /* http.upb.c in Sources */, + 46EB2E000420F0 /* http.upb.c in Sources */, + 46EB2E00042720 /* http.upbdefs.c in Sources */, + 46EB2E000427C0 /* http.upbdefs.c in Sources */, + 46EB2E00041B70 /* http2_settings.cc in Sources */, + 46EB2E00041920 /* http_client_filter.cc in Sources */, + 46EB2E000415F0 /* http_connect_handshaker.cc in Sources */, + 46EB2E00041EC0 /* http_connection_manager.upb.c in Sources */, + 46EB2E00042590 /* http_connection_manager.upbdefs.c in Sources */, + 46EB2E00041940 /* http_filters_plugin.cc in Sources */, + 46EB2E00041600 /* http_proxy.cc in Sources */, + 46EB2E00041970 /* http_server_filter.cc in Sources */, + 46EB2E00041E60 /* http_tracer.upb.c in Sources */, + 46EB2E00042530 /* http_tracer.upbdefs.c in Sources */, + 46EB2E00041D10 /* http_uri.upb.c in Sources */, + 46EB2E000423E0 /* http_uri.upbdefs.c in Sources */, + 46EB2E00042ED0 /* httpcli.cc in Sources */, + 46EB2E00042EE0 /* httpcli_security_connector.cc in Sources */, + 46EB2E00041B80 /* huffsyms.cc in Sources */, + 46EB2E00043770 /* iam_credentials.cc in Sources */, + 46EB2E000418E0 /* idle_filter_state.cc in Sources */, + 46EB2E00043B10 /* init.cc in Sources */, + 46EB2E00043B20 /* init_secure.cc in Sources */, + 46EB2E00041BE0 /* inproc_plugin.cc in Sources */, + 46EB2E00041BF0 /* inproc_transport.cc in Sources */, + 46EB2E00043780 /* insecure_credentials.cc in Sources */, + 46EB2E00043890 /* insecure_security_connector.cc in Sources */, + 46EB2E00043150 /* internal_errqueue.cc in Sources */, + 46EB2E00043160 /* iocp_windows.cc in Sources */, + 46EB2E00043040 /* iomgr.cc in Sources */, + 46EB2E00043170 /* iomgr.cc in Sources */, + 46EB2E00043180 /* iomgr_custom.cc in Sources */, + 46EB2E00043190 /* iomgr_internal.cc in Sources */, + 46EB2E000431A0 /* iomgr_posix.cc in Sources */, + 46EB2E000431B0 /* iomgr_posix_cfstream.cc in Sources */, + 46EB2E000431C0 /* iomgr_windows.cc in Sources */, + 46EB2E000431D0 /* is_epollexclusive_available.cc in Sources */, + 46EB2E000434E0 /* json_reader.cc in Sources */, + 46EB2E00043790 /* json_token.cc in Sources */, + 46EB2E000434F0 /* json_util.cc in Sources */, + 46EB2E00043970 /* json_util.cc in Sources */, + 46EB2E00043500 /* json_writer.cc in Sources */, + 46EB2E000437A0 /* jwt_credentials.cc in Sources */, + 46EB2E000437B0 /* jwt_verifier.cc in Sources */, + 46EB2E00043B30 /* lame_client.cc in Sources */, + 46EB2E00041610 /* lb_policy.cc in Sources */, + 46EB2E00041740 /* lb_policy_registry.cc in Sources */, + 46EB2E00041F50 /* lds.upb.c in Sources */, + 46EB2E00042620 /* lds.upbdefs.c in Sources */, + 46EB2E00041DC0 /* listener.upb.c in Sources */, + 46EB2E00042490 /* listener.upbdefs.c in Sources */, + 46EB2E00041DD0 /* listener_components.upb.c in Sources */, + 46EB2E000424A0 /* listener_components.upbdefs.c in Sources */, + 46EB2E000421C0 /* load_balancer.upb.c in Sources */, + 46EB2E00041690 /* load_balancer_api.cc in Sources */, + 46EB2E000431E0 /* load_file.cc in Sources */, + 46EB2E00041DA0 /* load_report.upb.c in Sources */, + 46EB2E00042470 /* load_report.upbdefs.c in Sources */, + 46EB2E000438A0 /* load_system_roots_fallback.cc in Sources */, + 46EB2E000438B0 /* load_system_roots_linux.cc in Sources */, + 46EB2E000437C0 /* local_credentials.cc in Sources */, + 46EB2E000438C0 /* local_security_connector.cc in Sources */, + 46EB2E00041750 /* local_subchannel_pool.cc in Sources */, + 46EB2E00043D80 /* local_transport_security.cc in Sources */, + 46EB2E000431F0 /* lockfree_event.cc in Sources */, + 46EB2E00042CB0 /* log.cc in Sources */, + 46EB2E00042CC0 /* log_android.cc in Sources */, + 46EB2E00042CD0 /* log_linux.cc in Sources */, + 46EB2E00042CE0 /* log_posix.cc in Sources */, + 46EB2E00042CF0 /* log_windows.cc in Sources */, + 46EB2E00041F60 /* lrs.upb.c in Sources */, + 46EB2E00042630 /* lrs.upbdefs.c in Sources */, + 46EB2E00043510 /* matchers.cc in Sources */, + 46EB2E00043610 /* matchers.cc in Sources */, + 46EB2E00041980 /* max_age_filter.cc in Sources */, + 46EB2E00042C00 /* memory_allocator.cc in Sources */, + 46EB2E000435A0 /* memory_quota.cc in Sources */, + 46EB2E00042B80 /* message_compress.cc in Sources */, + 46EB2E00041950 /* message_compress_filter.cc in Sources */, + 46EB2E00041960 /* message_decompress_filter.cc in Sources */, + 46EB2E00041990 /* message_size_filter.cc in Sources */, + 46EB2E00041FB0 /* metadata.upb.c in Sources */, + 46EB2E00042030 /* metadata.upb.c in Sources */, + 46EB2E00042680 /* metadata.upbdefs.c in Sources */, + 46EB2E00042700 /* metadata.upbdefs.c in Sources */, + 46EB2E00043B40 /* metadata_array.cc in Sources */, + 46EB2E000421E0 /* migrate.upb.c in Sources */, + 46EB2E00042850 /* migrate.upbdefs.c in Sources */, + 46EB2E00043E30 /* mimics_pcre.cc in Sources */, + 46EB2E000430C0 /* mpmcqueue.cc in Sources */, + 46EB2E00042E50 /* mpscq.cc in Sources */, + 46EB2E00043FA0 /* msg.c in Sources */, + 46EB2E00042D00 /* murmur_hash.cc in Sources */, + 46EB2E00043E40 /* nfa.cc in Sources */, + 46EB2E00041FC0 /* node.upb.c in Sources */, + 46EB2E00042690 /* node.upbdefs.c in Sources */, + 46EB2E00041FD0 /* number.upb.c in Sources */, + 46EB2E000426A0 /* number.upbdefs.c in Sources */, + 46EB2E000437D0 /* oauth2_credentials.cc in Sources */, + 46EB2E00043E50 /* onepass.cc in Sources */, + 46EB2E000422B0 /* orca_load_report.upb.c in Sources */, + 46EB2E00041C80 /* outlier_detection.upb.c in Sources */, + 46EB2E00042350 /* outlier_detection.upbdefs.c in Sources */, + 46EB2E00041E10 /* overload.upb.c in Sources */, + 46EB2E000424E0 /* overload.upbdefs.c in Sources */, + 46EB2E00043E60 /* parse.cc in Sources */, + 46EB2E00042A80 /* parse_address.cc in Sources */, + 46EB2E00043BC0 /* parsed_metadata.cc in Sources */, + 46EB2E00042EF0 /* parser.cc in Sources */, + 46EB2E00041B90 /* parsing.cc in Sources */, + 46EB2E00041FE0 /* path.upb.c in Sources */, + 46EB2E000426B0 /* path.upbdefs.c in Sources */, + 46EB2E00041FA0 /* path_transformation.upb.c in Sources */, + 46EB2E00042670 /* path_transformation.upbdefs.c in Sources */, + 46EB2E00043F30 /* pcre.cc in Sources */, + 46EB2E00042060 /* percent.upb.c in Sources */, + 46EB2E00042730 /* percent.upbdefs.c in Sources */, + 46EB2E000439B0 /* percent_encoding.cc in Sources */, + 46EB2E00043E70 /* perl_groups.cc in Sources */, + 46EB2E000416A0 /* pick_first.cc in Sources */, + 46EB2E00043BD0 /* pid_controller.cc in Sources */, + 46EB2E000437E0 /* plugin_credentials.cc in Sources */, + 46EB2E00043200 /* polling_entity.cc in Sources */, + 46EB2E00043050 /* pollset.cc in Sources */, + 46EB2E00043210 /* pollset.cc in Sources */, + 46EB2E00043220 /* pollset_custom.cc in Sources */, + 46EB2E00043230 /* pollset_set.cc in Sources */, + 46EB2E00043240 /* pollset_set_custom.cc in Sources */, + 46EB2E00043250 /* pollset_set_windows.cc in Sources */, + 46EB2E00043260 /* pollset_windows.cc in Sources */, + 46EB2E00043E80 /* prefilter.cc in Sources */, + 46EB2E00043E90 /* prefilter_tree.cc in Sources */, + 46EB2E000416B0 /* priority.cc in Sources */, + 46EB2E00043EA0 /* prog.cc in Sources */, + 46EB2E00041D20 /* protocol.upb.c in Sources */, + 46EB2E000423F0 /* protocol.upbdefs.c in Sources */, + 46EB2E00041760 /* proxy_mapper_registry.cc in Sources */, + 46EB2E00041D30 /* proxy_protocol.upb.c in Sources */, + 46EB2E00042400 /* proxy_protocol.upbdefs.c in Sources */, + 46EB2E00041DE0 /* quic_config.upb.c in Sources */, + 46EB2E000424B0 /* quic_config.upbdefs.c in Sources */, + 46EB2E00042070 /* range.upb.c in Sources */, + 46EB2E00042740 /* range.upbdefs.c in Sources */, + 46EB2E00041E20 /* rbac.upb.c in Sources */, + 46EB2E00041EA0 /* rbac.upb.c in Sources */, + 46EB2E000424F0 /* rbac.upbdefs.c in Sources */, + 46EB2E00042570 /* rbac.upbdefs.c in Sources */, + 46EB2E000419A0 /* rbac_filter.cc in Sources */, + 46EB2E00043620 /* rbac_policy.cc in Sources */, + 46EB2E000419B0 /* rbac_service_config_parser.cc in Sources */, + 46EB2E00041F70 /* rds.upb.c in Sources */, + 46EB2E00042640 /* rds.upbdefs.c in Sources */, + 46EB2E00043EB0 /* re2.cc in Sources */, + 46EB2E00043FB0 /* reflection.c in Sources */, + 46EB2E00041FF0 /* regex.upb.c in Sources */, + 46EB2E000426C0 /* regex.upbdefs.c in Sources */, + 46EB2E00043EC0 /* regexp.cc in Sources */, + 46EB2E00043270 /* resolve_address.cc in Sources */, + 46EB2E00043280 /* resolve_address_custom.cc in Sources */, + 46EB2E00043290 /* resolve_address_posix.cc in Sources */, + 46EB2E000432A0 /* resolve_address_windows.cc in Sources */, + 46EB2E00043060 /* resolved_address_internal.cc in Sources */, + 46EB2E00043070 /* resolver.cc in Sources */, + 46EB2E00043550 /* resolver.cc in Sources */, + 46EB2E00041D40 /* resolver.upb.c in Sources */, + 46EB2E00042410 /* resolver.upbdefs.c in Sources */, + 46EB2E00043560 /* resolver_registry.cc in Sources */, + 46EB2E00041860 /* resolver_result_parsing.cc in Sources */, + 46EB2E00041C20 /* resource.upb.c in Sources */, + 46EB2E00042280 /* resource.upb.c in Sources */, + 46EB2E000422F0 /* resource.upbdefs.c in Sources */, + 46EB2E000428F0 /* resource.upbdefs.c in Sources */, + 46EB2E00042290 /* resource_locator.upb.c in Sources */, + 46EB2E00042900 /* resource_locator.upbdefs.c in Sources */, + 46EB2E000422A0 /* resource_name.upb.c in Sources */, + 46EB2E00042910 /* resource_name.upbdefs.c in Sources */, + 46EB2E000435B0 /* resource_quota.cc in Sources */, + 46EB2E00041870 /* retry_filter.cc in Sources */, + 46EB2E00041880 /* retry_service_config.cc in Sources */, + 46EB2E00041890 /* retry_throttle.cc in Sources */, + 46EB2E000416C0 /* ring_hash.cc in Sources */, + 46EB2E000416D0 /* rls.cc in Sources */, + 46EB2E000421D0 /* rls.upb.c in Sources */, + 46EB2E000416E0 /* round_robin.cc in Sources */, + 46EB2E00041E30 /* route.upb.c in Sources */, + 46EB2E00042500 /* route.upbdefs.c in Sources */, + 46EB2E00041E40 /* route_components.upb.c in Sources */, + 46EB2E00042510 /* route_components.upbdefs.c in Sources */, + 46EB2E00041EB0 /* router.upb.c in Sources */, + 46EB2E00042580 /* router.upbdefs.c in Sources */, + 46EB2E00043F40 /* rune.cc in Sources */, + 46EB2E00041E50 /* scoped_route.upb.c in Sources */, + 46EB2E00042520 /* scoped_route.upbdefs.c in Sources */, + 46EB2E00043630 /* sdk_server_authz_filter.cc in Sources */, + 46EB2E00041EF0 /* secret.upb.c in Sources */, + 46EB2E000425C0 /* secret.upbdefs.c in Sources */, + 46EB2E00041A20 /* secure_channel_create.cc in Sources */, + 46EB2E00043930 /* secure_endpoint.cc in Sources */, + 46EB2E000421F0 /* security.upb.c in Sources */, + 46EB2E00042860 /* security.upbdefs.c in Sources */, + 46EB2E000438D0 /* security_connector.cc in Sources */, + 46EB2E00043640 /* security_context.cc in Sources */, + 46EB2E00043940 /* security_handshaker.cc in Sources */, + 46EB2E00042080 /* semantic_version.upb.c in Sources */, + 46EB2E00042750 /* semantic_version.upbdefs.c in Sources */, + 46EB2E00042200 /* sensitive.upb.c in Sources */, + 46EB2E00042870 /* sensitive.upbdefs.c in Sources */, + 46EB2E00043B50 /* server.cc in Sources */, + 46EB2E00043570 /* server_address.cc in Sources */, + 46EB2E00043950 /* server_auth_filter.cc in Sources */, + 46EB2E00041A40 /* server_chttp2.cc in Sources */, + 46EB2E00041A50 /* server_chttp2_posix.cc in Sources */, + 46EB2E000419C0 /* server_config_selector.cc in Sources */, + 46EB2E000419D0 /* server_config_selector_filter.cc in Sources */, + 46EB2E00041A60 /* server_secure_chttp2.cc in Sources */, + 46EB2E00043980 /* service_config.cc in Sources */, + 46EB2E000418A0 /* service_config_channel_arg_filter.cc in Sources */, + 46EB2E00041910 /* service_config_parser.cc in Sources */, + 46EB2E00043990 /* service_config_parser.cc in Sources */, + 46EB2E00043ED0 /* set.cc in Sources */, + 46EB2E00043EE0 /* simplify.cc in Sources */, + 46EB2E000439C0 /* slice.cc in Sources */, + 46EB2E000439D0 /* slice_api.cc in Sources */, + 46EB2E000439E0 /* slice_buffer.cc in Sources */, + 46EB2E000439F0 /* slice_intern.cc in Sources */, + 46EB2E00043A00 /* slice_refcount.cc in Sources */, + 46EB2E00043A10 /* slice_split.cc in Sources */, + 46EB2E00043A20 /* slice_string_helpers.cc in Sources */, + 46EB2E00042C10 /* sockaddr.cc in Sources */, + 46EB2E00041840 /* sockaddr_resolver.cc in Sources */, + 46EB2E00042A90 /* sockaddr_utils.cc in Sources */, + 46EB2E000432B0 /* socket_factory_posix.cc in Sources */, + 46EB2E000432C0 /* socket_mutator.cc in Sources */, + 46EB2E00041D50 /* socket_option.upb.c in Sources */, + 46EB2E00042420 /* socket_option.upbdefs.c in Sources */, + 46EB2E000432D0 /* socket_utils_common_posix.cc in Sources */, + 46EB2E000432E0 /* socket_utils_linux.cc in Sources */, + 46EB2E000432F0 /* socket_utils_posix.cc in Sources */, + 46EB2E00043300 /* socket_utils_windows.cc in Sources */, + 46EB2E00043310 /* socket_windows.cc in Sources */, + 46EB2E00041F80 /* srds.upb.c in Sources */, + 46EB2E00042650 /* srds.upbdefs.c in Sources */, + 46EB2E000437F0 /* ssl_credentials.cc in Sources */, + 46EB2E000438E0 /* ssl_security_connector.cc in Sources */, + 46EB2E00043D90 /* ssl_session_boringssl.cc in Sources */, + 46EB2E00043DA0 /* ssl_session_cache.cc in Sources */, + 46EB2E00043DB0 /* ssl_session_openssl.cc in Sources */, + 46EB2E00043DC0 /* ssl_transport_security.cc in Sources */, + 46EB2E000438F0 /* ssl_utils.cc in Sources */, + 46EB2E00043900 /* ssl_utils_config.cc in Sources */, + 46EB2E00043530 /* stap_timers.cc in Sources */, + 46EB2E00042E60 /* stat_posix.cc in Sources */, + 46EB2E00042E70 /* stat_windows.cc in Sources */, + 46EB2E00042BA0 /* stats.cc in Sources */, + 46EB2E00041E00 /* stats.upb.c in Sources */, + 46EB2E000424D0 /* stats.upbdefs.c in Sources */, + 46EB2E00042BB0 /* stats_data.cc in Sources */, + 46EB2E00042170 /* status.upb.c in Sources */, + 46EB2E00042210 /* status.upb.c in Sources */, + 46EB2E00042240 /* status.upb.c in Sources */, + 46EB2E00042840 /* status.upbdefs.c in Sources */, + 46EB2E00042880 /* status.upbdefs.c in Sources */, + 46EB2E000428B0 /* status.upbdefs.c in Sources */, + 46EB2E00043BE0 /* status_conversion.cc in Sources */, + 46EB2E00042E80 /* status_helper.cc in Sources */, + 46EB2E00042B50 /* status_util.cc in Sources */, + 46EB2E00041BA0 /* stream_lists.cc in Sources */, + 46EB2E00041BB0 /* stream_map.cc in Sources */, + 46EB2E00042D10 /* string.cc in Sources */, + 46EB2E00042000 /* string.upb.c in Sources */, + 46EB2E000426D0 /* string.upbdefs.c in Sources */, + 46EB2E00042D20 /* string_posix.cc in Sources */, + 46EB2E00042D30 /* string_util_windows.cc in Sources */, + 46EB2E00042D40 /* string_windows.cc in Sources */, + 46EB2E00043EF0 /* stringpiece.cc in Sources */, + 46EB2E00042010 /* struct.upb.c in Sources */, + 46EB2E00042140 /* struct.upb.c in Sources */, + 46EB2E000426E0 /* struct.upbdefs.c in Sources */, + 46EB2E00042810 /* struct.upbdefs.c in Sources */, + 46EB2E00043F50 /* strutil.cc in Sources */, + 46EB2E000418B0 /* subchannel.cc in Sources */, + 46EB2E000418C0 /* subchannel_pool_interface.cc in Sources */, + 46EB2E00041D60 /* substitution_format_string.upb.c in Sources */, + 46EB2E00042430 /* substitution_format_string.upbdefs.c in Sources */, + 46EB2E00042D50 /* sync.cc in Sources */, + 46EB2E00042D60 /* sync_abseil.cc in Sources */, + 46EB2E00042D70 /* sync_posix.cc in Sources */, + 46EB2E00042D80 /* sync_windows.cc in Sources */, + 46EB2E000420D0 /* syntax.upb.c in Sources */, + 46EB2E000427A0 /* syntax.upbdefs.c in Sources */, + 46EB2E00043FC0 /* table.c in Sources */, + 46EB2E00043080 /* tcp.cc in Sources */, + 46EB2E00043320 /* tcp_client.cc in Sources */, + 46EB2E00043330 /* tcp_client_cfstream.cc in Sources */, + 46EB2E00043340 /* tcp_client_custom.cc in Sources */, + 46EB2E00043350 /* tcp_client_posix.cc in Sources */, + 46EB2E00043360 /* tcp_client_windows.cc in Sources */, + 46EB2E00043370 /* tcp_custom.cc in Sources */, + 46EB2E00043380 /* tcp_posix.cc in Sources */, + 46EB2E00043390 /* tcp_server.cc in Sources */, + 46EB2E000433A0 /* tcp_server_custom.cc in Sources */, + 46EB2E000433B0 /* tcp_server_posix.cc in Sources */, + 46EB2E000433C0 /* tcp_server_utils_posix_common.cc in Sources */, + 46EB2E000433D0 /* tcp_server_utils_posix_ifaddrs.cc in Sources */, + 46EB2E000433E0 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, + 46EB2E000433F0 /* tcp_server_windows.cc in Sources */, + 46EB2E00043400 /* tcp_windows.cc in Sources */, + 46EB2E00043FD0 /* text_encode.c in Sources */, + 46EB2E00042E90 /* thd_posix.cc in Sources */, + 46EB2E00042EA0 /* thd_windows.cc in Sources */, + 46EB2E000435C0 /* thread_quota.cc in Sources */, + 46EB2E000430D0 /* threadpool.cc in Sources */, + 46EB2E00042D90 /* time.cc in Sources */, + 46EB2E00043410 /* time_averaged_stats.cc in Sources */, + 46EB2E00042DA0 /* time_posix.cc in Sources */, + 46EB2E00042DB0 /* time_precise.cc in Sources */, + 46EB2E00042EB0 /* time_util.cc in Sources */, + 46EB2E00042DC0 /* time_windows.cc in Sources */, + 46EB2E00043BF0 /* timeout_encoding.cc in Sources */, + 46EB2E00043090 /* timer.cc in Sources */, + 46EB2E00043420 /* timer.cc in Sources */, + 46EB2E00043430 /* timer_custom.cc in Sources */, + 46EB2E00043440 /* timer_generic.cc in Sources */, + 46EB2E00043450 /* timer_heap.cc in Sources */, + 46EB2E00043460 /* timer_manager.cc in Sources */, + 46EB2E00042150 /* timestamp.upb.c in Sources */, + 46EB2E00042820 /* timestamp.upbdefs.c in Sources */, + 46EB2E00041F00 /* tls.upb.c in Sources */, + 46EB2E000425D0 /* tls.upbdefs.c in Sources */, + 46EB2E00043840 /* tls_credentials.cc in Sources */, + 46EB2E00043910 /* tls_security_connector.cc in Sources */, + 46EB2E00043850 /* tls_utils.cc in Sources */, + 46EB2E00042DD0 /* tmpfile_msys.cc in Sources */, + 46EB2E00042DE0 /* tmpfile_posix.cc in Sources */, + 46EB2E00042DF0 /* tmpfile_windows.cc in Sources */, + 46EB2E00043F00 /* tostring.cc in Sources */, + 46EB2E00042BC0 /* trace.cc in Sources */, + 46EB2E000435D0 /* trace.cc in Sources */, + 46EB2E00043C00 /* transport.cc in Sources */, + 46EB2E00043C10 /* transport_op_string.cc in Sources */, + 46EB2E00043DD0 /* transport_security.cc in Sources */, + 46EB2E000421A0 /* transport_security_common.upb.c in Sources */, + 46EB2E00043D10 /* transport_security_common_api.cc in Sources */, + 46EB2E00043DE0 /* transport_security_grpc.cc in Sources */, + 46EB2E00043960 /* tsi_error.cc in Sources */, + 46EB2E000422C0 /* typed_struct.upb.c in Sources */, + 46EB2E00042920 /* typed_struct.upbdefs.c in Sources */, + 46EB2E00041DF0 /* udp_listener_config.upb.c in Sources */, + 46EB2E000424C0 /* udp_listener_config.upbdefs.c in Sources */, + 46EB2E00041D70 /* udp_socket_config.upb.c in Sources */, + 46EB2E00042440 /* udp_socket_config.upbdefs.c in Sources */, + 46EB2E00043F10 /* unicode_casefold.cc in Sources */, + 46EB2E00043F20 /* unicode_groups.cc in Sources */, + 46EB2E00043470 /* unix_sockets_posix.cc in Sources */, + 46EB2E00043480 /* unix_sockets_posix_noop.cc in Sources */, + 46EB2E00043FE0 /* upb.c in Sources */, + 46EB2E00043C20 /* uri_parser.cc in Sources */, + 46EB2E00043730 /* url_external_account_credentials.cc in Sources */, + 46EB2E00042230 /* validate.upb.c in Sources */, + 46EB2E000428A0 /* validate.upbdefs.c in Sources */, + 46EB2E00043B60 /* validate_metadata.cc in Sources */, + 46EB2E00042020 /* value.upb.c in Sources */, + 46EB2E000420E0 /* value.upb.c in Sources */, + 46EB2E000426F0 /* value.upbdefs.c in Sources */, + 46EB2E000427B0 /* value.upbdefs.c in Sources */, + 46EB2E00041BC0 /* varint.cc in Sources */, + 46EB2E00043B70 /* version.cc in Sources */, + 46EB2E00042220 /* versioning.upb.c in Sources */, + 46EB2E00042890 /* versioning.upbdefs.c in Sources */, + 46EB2E00043490 /* wakeup_fd_eventfd.cc in Sources */, + 46EB2E000434A0 /* wakeup_fd_nospecial.cc in Sources */, + 46EB2E000434B0 /* wakeup_fd_pipe.cc in Sources */, + 46EB2E000434C0 /* wakeup_fd_posix.cc in Sources */, + 46EB2E000416F0 /* weighted_target.cc in Sources */, + 46EB2E000434D0 /* work_serializer.cc in Sources */, + 46EB2E00042E00 /* wrap_memcpy.cc in Sources */, + 46EB2E00042160 /* wrappers.upb.c in Sources */, + 46EB2E00042830 /* wrappers.upbdefs.c in Sources */, + 46EB2E00041BD0 /* writing.cc in Sources */, + 46EB2E00042960 /* xds_api.cc in Sources */, + 46EB2E00042970 /* xds_bootstrap.cc in Sources */, + 46EB2E00042980 /* xds_certificate_provider.cc in Sources */, + 46EB2E00042990 /* xds_channel_creds.cc in Sources */, + 46EB2E000429A0 /* xds_channel_stack_modifier.cc in Sources */, + 46EB2E000429B0 /* xds_client.cc in Sources */, + 46EB2E000429C0 /* xds_client_stats.cc in Sources */, + 46EB2E000429D0 /* xds_cluster.cc in Sources */, + 46EB2E00041710 /* xds_cluster_impl.cc in Sources */, + 46EB2E00041720 /* xds_cluster_manager.cc in Sources */, + 46EB2E00041730 /* xds_cluster_resolver.cc in Sources */, + 46EB2E000429E0 /* xds_common_types.cc in Sources */, + 46EB2E00043860 /* xds_credentials.cc in Sources */, + 46EB2E000429F0 /* xds_endpoint.cc in Sources */, + 46EB2E00042A00 /* xds_http_fault_filter.cc in Sources */, + 46EB2E00042A10 /* xds_http_filters.cc in Sources */, + 46EB2E00042A20 /* xds_http_rbac_filter.cc in Sources */, + 46EB2E00042A30 /* xds_listener.cc in Sources */, + 46EB2E00041850 /* xds_resolver.cc in Sources */, + 46EB2E00042A40 /* xds_resource_type.cc in Sources */, + 46EB2E00042A50 /* xds_route_config.cc in Sources */, + 46EB2E00042A60 /* xds_routing.cc in Sources */, + 46EB2E00042A70 /* xds_server_config_fetcher.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00046D40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00046FD0 /* demangle.cc in Sources */, - 46EB2E000470E0 /* glog-dummy.m in Sources */, - 46EB2E00046FE0 /* logging.cc in Sources */, - 46EB2E00046FF0 /* raw_logging.cc in Sources */, - 46EB2E00047000 /* signalhandler.cc in Sources */, - 46EB2E00047010 /* symbolize.cc in Sources */, - 46EB2E00047020 /* utilities.cc in Sources */, - 46EB2E00047030 /* vlog_is_on.cc in Sources */, + 46EB2E00046D60 /* demangle.cc in Sources */, + 46EB2E00046E70 /* glog-dummy.m in Sources */, + 46EB2E00046D70 /* logging.cc in Sources */, + 46EB2E00046D80 /* raw_logging.cc in Sources */, + 46EB2E00046D90 /* signalhandler.cc in Sources */, + 46EB2E00046DA0 /* symbolize.cc in Sources */, + 46EB2E00046DB0 /* utilities.cc in Sources */, + 46EB2E00046DC0 /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000471D0 /* Sources */ = { + 46EB2E00046F60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00047370 /* arena.cc in Sources */, - 46EB2E000472E0 /* block.cc in Sources */, - 46EB2E000472F0 /* block_builder.cc in Sources */, - 46EB2E00047380 /* bloom.cc in Sources */, - 46EB2E000471F0 /* builder.cc in Sources */, - 46EB2E00047200 /* c.cc in Sources */, - 46EB2E00047390 /* cache.cc in Sources */, - 46EB2E000473A0 /* coding.cc in Sources */, - 46EB2E000473B0 /* comparator.cc in Sources */, - 46EB2E000473C0 /* crc32c.cc in Sources */, - 46EB2E00047220 /* db_impl.cc in Sources */, - 46EB2E00047230 /* db_iter.cc in Sources */, - 46EB2E00047210 /* dbformat.cc in Sources */, - 46EB2E00047240 /* dumpfile.cc in Sources */, - 46EB2E000473D0 /* env.cc in Sources */, - 46EB2E000473E0 /* env_posix.cc in Sources */, - 46EB2E00047250 /* filename.cc in Sources */, - 46EB2E00047300 /* filter_block.cc in Sources */, - 46EB2E000473F0 /* filter_policy.cc in Sources */, - 46EB2E00047310 /* format.cc in Sources */, - 46EB2E00047400 /* hash.cc in Sources */, - 46EB2E00047410 /* histogram.cc in Sources */, - 46EB2E00047320 /* iterator.cc in Sources */, - 46EB2E00047830 /* leveldb-library-dummy.m in Sources */, - 46EB2E00047260 /* log_reader.cc in Sources */, - 46EB2E00047270 /* log_writer.cc in Sources */, - 46EB2E00047420 /* logging.cc in Sources */, - 46EB2E00047280 /* memtable.cc in Sources */, - 46EB2E00047330 /* merger.cc in Sources */, - 46EB2E00047430 /* options.cc in Sources */, - 46EB2E00047290 /* repair.cc in Sources */, - 46EB2E00047440 /* status.cc in Sources */, - 46EB2E00047340 /* table.cc in Sources */, - 46EB2E00047350 /* table_builder.cc in Sources */, - 46EB2E000472A0 /* table_cache.cc in Sources */, - 46EB2E00047450 /* testharness.cc in Sources */, - 46EB2E00047360 /* two_level_iterator.cc in Sources */, - 46EB2E000472B0 /* version_edit.cc in Sources */, - 46EB2E000472C0 /* version_set.cc in Sources */, - 46EB2E000472D0 /* write_batch.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E000478A0 /* Sources */ = { + 46EB2E00047100 /* arena.cc in Sources */, + 46EB2E00047070 /* block.cc in Sources */, + 46EB2E00047080 /* block_builder.cc in Sources */, + 46EB2E00047110 /* bloom.cc in Sources */, + 46EB2E00046F80 /* builder.cc in Sources */, + 46EB2E00046F90 /* c.cc in Sources */, + 46EB2E00047120 /* cache.cc in Sources */, + 46EB2E00047130 /* coding.cc in Sources */, + 46EB2E00047140 /* comparator.cc in Sources */, + 46EB2E00047150 /* crc32c.cc in Sources */, + 46EB2E00046FB0 /* db_impl.cc in Sources */, + 46EB2E00046FC0 /* db_iter.cc in Sources */, + 46EB2E00046FA0 /* dbformat.cc in Sources */, + 46EB2E00046FD0 /* dumpfile.cc in Sources */, + 46EB2E00047160 /* env.cc in Sources */, + 46EB2E00047170 /* env_posix.cc in Sources */, + 46EB2E00046FE0 /* filename.cc in Sources */, + 46EB2E00047090 /* filter_block.cc in Sources */, + 46EB2E00047180 /* filter_policy.cc in Sources */, + 46EB2E000470A0 /* format.cc in Sources */, + 46EB2E00047190 /* hash.cc in Sources */, + 46EB2E000471A0 /* histogram.cc in Sources */, + 46EB2E000470B0 /* iterator.cc in Sources */, + 46EB2E000475C0 /* leveldb-library-dummy.m in Sources */, + 46EB2E00046FF0 /* log_reader.cc in Sources */, + 46EB2E00047000 /* log_writer.cc in Sources */, + 46EB2E000471B0 /* logging.cc in Sources */, + 46EB2E00047010 /* memtable.cc in Sources */, + 46EB2E000470C0 /* merger.cc in Sources */, + 46EB2E000471C0 /* options.cc in Sources */, + 46EB2E00047020 /* repair.cc in Sources */, + 46EB2E000471D0 /* status.cc in Sources */, + 46EB2E000470D0 /* table.cc in Sources */, + 46EB2E000470E0 /* table_builder.cc in Sources */, + 46EB2E00047030 /* table_cache.cc in Sources */, + 46EB2E000471E0 /* testharness.cc in Sources */, + 46EB2E000470F0 /* two_level_iterator.cc in Sources */, + 46EB2E00047040 /* version_edit.cc in Sources */, + 46EB2E00047050 /* version_set.cc in Sources */, + 46EB2E00047060 /* write_batch.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00047630 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E000478C0 /* buffer.c in Sources */, - 46EB2E000478D0 /* bufferevent.c in Sources */, - 46EB2E000478E0 /* bufferevent_filter.c in Sources */, - 46EB2E000478F0 /* bufferevent_pair.c in Sources */, - 46EB2E00047900 /* bufferevent_ratelim.c in Sources */, - 46EB2E00047910 /* bufferevent_sock.c in Sources */, - 46EB2E000479F0 /* evdns.c in Sources */, - 46EB2E00047920 /* event.c in Sources */, - 46EB2E00047A00 /* event_tagging.c in Sources */, - 46EB2E00047930 /* evmap.c in Sources */, - 46EB2E00047A10 /* evrpc.c in Sources */, - 46EB2E00047940 /* evthread.c in Sources */, - 46EB2E00047950 /* evutil.c in Sources */, - 46EB2E00047960 /* evutil_rand.c in Sources */, - 46EB2E00047970 /* evutil_time.c in Sources */, - 46EB2E00047A20 /* http.c in Sources */, - 46EB2E00047980 /* kqueue.c in Sources */, - 46EB2E00047C40 /* libevent-dummy.m in Sources */, - 46EB2E00047990 /* listener.c in Sources */, - 46EB2E000479A0 /* log.c in Sources */, - 46EB2E000479B0 /* poll.c in Sources */, - 46EB2E000479C0 /* select.c in Sources */, - 46EB2E000479D0 /* signal.c in Sources */, - 46EB2E000479E0 /* strlcpy.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 46EB2E00047CB0 /* Sources */ = { + 46EB2E00047650 /* buffer.c in Sources */, + 46EB2E00047660 /* bufferevent.c in Sources */, + 46EB2E00047670 /* bufferevent_filter.c in Sources */, + 46EB2E00047680 /* bufferevent_pair.c in Sources */, + 46EB2E00047690 /* bufferevent_ratelim.c in Sources */, + 46EB2E000476A0 /* bufferevent_sock.c in Sources */, + 46EB2E00047780 /* evdns.c in Sources */, + 46EB2E000476B0 /* event.c in Sources */, + 46EB2E00047790 /* event_tagging.c in Sources */, + 46EB2E000476C0 /* evmap.c in Sources */, + 46EB2E000477A0 /* evrpc.c in Sources */, + 46EB2E000476D0 /* evthread.c in Sources */, + 46EB2E000476E0 /* evutil.c in Sources */, + 46EB2E000476F0 /* evutil_rand.c in Sources */, + 46EB2E00047700 /* evutil_time.c in Sources */, + 46EB2E000477B0 /* http.c in Sources */, + 46EB2E00047710 /* kqueue.c in Sources */, + 46EB2E000479D0 /* libevent-dummy.m in Sources */, + 46EB2E00047720 /* listener.c in Sources */, + 46EB2E00047730 /* log.c in Sources */, + 46EB2E00047740 /* poll.c in Sources */, + 46EB2E00047750 /* select.c in Sources */, + 46EB2E00047760 /* signal.c in Sources */, + 46EB2E00047770 /* strlcpy.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00047A40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048230 /* alpha_dec.c in Sources */, - 46EB2E000482D0 /* alpha_enc.c in Sources */, - 46EB2E00047E30 /* alpha_processing.c in Sources */, - 46EB2E00047E40 /* alpha_processing_mips_dsp_r2.c in Sources */, - 46EB2E00047E50 /* alpha_processing_neon.c in Sources */, - 46EB2E00047E60 /* alpha_processing_sse2.c in Sources */, - 46EB2E00047E70 /* alpha_processing_sse41.c in Sources */, - 46EB2E000482E0 /* analysis_enc.c in Sources */, - 46EB2E00047CD0 /* anim_decode.c in Sources */, - 46EB2E00047D00 /* anim_encode.c in Sources */, - 46EB2E000482F0 /* backward_references_cost_enc.c in Sources */, - 46EB2E00048300 /* backward_references_enc.c in Sources */, - 46EB2E00047D70 /* bit_reader_utils.c in Sources */, - 46EB2E00047D80 /* bit_writer_utils.c in Sources */, - 46EB2E00048240 /* buffer_dec.c in Sources */, - 46EB2E00047D90 /* color_cache_utils.c in Sources */, - 46EB2E00048310 /* config_enc.c in Sources */, - 46EB2E00047E80 /* cost.c in Sources */, - 46EB2E00048320 /* cost_enc.c in Sources */, - 46EB2E00047E90 /* cost_mips32.c in Sources */, - 46EB2E00047EA0 /* cost_mips_dsp_r2.c in Sources */, - 46EB2E00047EB0 /* cost_neon.c in Sources */, - 46EB2E00047EC0 /* cost_sse2.c in Sources */, - 46EB2E00047ED0 /* cpu.c in Sources */, - 46EB2E00047EE0 /* dec.c in Sources */, - 46EB2E00047EF0 /* dec_clip_tables.c in Sources */, - 46EB2E00047F00 /* dec_mips32.c in Sources */, - 46EB2E00047F10 /* dec_mips_dsp_r2.c in Sources */, - 46EB2E00047F20 /* dec_msa.c in Sources */, - 46EB2E00047F30 /* dec_neon.c in Sources */, - 46EB2E00047F40 /* dec_sse2.c in Sources */, - 46EB2E00047F50 /* dec_sse41.c in Sources */, - 46EB2E00047CE0 /* demux.c in Sources */, - 46EB2E00047F60 /* enc.c in Sources */, - 46EB2E00047F70 /* enc_mips32.c in Sources */, - 46EB2E00047F80 /* enc_mips_dsp_r2.c in Sources */, - 46EB2E00047F90 /* enc_msa.c in Sources */, - 46EB2E00047FA0 /* enc_neon.c in Sources */, - 46EB2E00047FB0 /* enc_sse2.c in Sources */, - 46EB2E00047FC0 /* enc_sse41.c in Sources */, - 46EB2E00048330 /* filter_enc.c in Sources */, - 46EB2E00047FD0 /* filters.c in Sources */, - 46EB2E00047FE0 /* filters_mips_dsp_r2.c in Sources */, - 46EB2E00047FF0 /* filters_msa.c in Sources */, - 46EB2E00048000 /* filters_neon.c in Sources */, - 46EB2E00048010 /* filters_sse2.c in Sources */, - 46EB2E00047DA0 /* filters_utils.c in Sources */, - 46EB2E00048250 /* frame_dec.c in Sources */, - 46EB2E00048340 /* frame_enc.c in Sources */, - 46EB2E00048350 /* histogram_enc.c in Sources */, - 46EB2E00047DB0 /* huffman_encode_utils.c in Sources */, - 46EB2E00047DC0 /* huffman_utils.c in Sources */, - 46EB2E00048260 /* idec_dec.c in Sources */, - 46EB2E00048270 /* io_dec.c in Sources */, - 46EB2E00048360 /* iterator_enc.c in Sources */, - 46EB2E00048710 /* libwebp-dummy.m in Sources */, - 46EB2E00048020 /* lossless.c in Sources */, - 46EB2E00048030 /* lossless_enc.c in Sources */, - 46EB2E00048040 /* lossless_enc_mips32.c in Sources */, - 46EB2E00048050 /* lossless_enc_mips_dsp_r2.c in Sources */, - 46EB2E00048060 /* lossless_enc_msa.c in Sources */, - 46EB2E00048070 /* lossless_enc_neon.c in Sources */, - 46EB2E00048080 /* lossless_enc_sse2.c in Sources */, - 46EB2E00048090 /* lossless_enc_sse41.c in Sources */, - 46EB2E000480A0 /* lossless_mips_dsp_r2.c in Sources */, - 46EB2E000480B0 /* lossless_msa.c in Sources */, - 46EB2E000480C0 /* lossless_neon.c in Sources */, - 46EB2E000480D0 /* lossless_sse2.c in Sources */, - 46EB2E000480E0 /* lossless_sse41.c in Sources */, - 46EB2E00047D10 /* muxedit.c in Sources */, - 46EB2E00047D20 /* muxinternal.c in Sources */, - 46EB2E00047D30 /* muxread.c in Sources */, - 46EB2E00048370 /* near_lossless_enc.c in Sources */, - 46EB2E00048380 /* picture_csp_enc.c in Sources */, - 46EB2E00048390 /* picture_enc.c in Sources */, - 46EB2E000483A0 /* picture_psnr_enc.c in Sources */, - 46EB2E000483B0 /* picture_rescale_enc.c in Sources */, - 46EB2E000483C0 /* picture_tools_enc.c in Sources */, - 46EB2E000483D0 /* predictor_enc.c in Sources */, - 46EB2E00048280 /* quant_dec.c in Sources */, - 46EB2E000483E0 /* quant_enc.c in Sources */, - 46EB2E00047DD0 /* quant_levels_dec_utils.c in Sources */, - 46EB2E00047DE0 /* quant_levels_utils.c in Sources */, - 46EB2E00047DF0 /* random_utils.c in Sources */, - 46EB2E000480F0 /* rescaler.c in Sources */, - 46EB2E00048100 /* rescaler_mips32.c in Sources */, - 46EB2E00048110 /* rescaler_mips_dsp_r2.c in Sources */, - 46EB2E00048120 /* rescaler_msa.c in Sources */, - 46EB2E00048130 /* rescaler_neon.c in Sources */, - 46EB2E00048140 /* rescaler_sse2.c in Sources */, - 46EB2E00047E00 /* rescaler_utils.c in Sources */, - 46EB2E00048150 /* ssim.c in Sources */, - 46EB2E00048160 /* ssim_sse2.c in Sources */, - 46EB2E000483F0 /* syntax_enc.c in Sources */, - 46EB2E00047E10 /* thread_utils.c in Sources */, - 46EB2E00048400 /* token_enc.c in Sources */, - 46EB2E00048290 /* tree_dec.c in Sources */, - 46EB2E00048410 /* tree_enc.c in Sources */, - 46EB2E00048170 /* upsampling.c in Sources */, - 46EB2E00048180 /* upsampling_mips_dsp_r2.c in Sources */, - 46EB2E00048190 /* upsampling_msa.c in Sources */, - 46EB2E000481A0 /* upsampling_neon.c in Sources */, - 46EB2E000481B0 /* upsampling_sse2.c in Sources */, - 46EB2E000481C0 /* upsampling_sse41.c in Sources */, - 46EB2E00047E20 /* utils.c in Sources */, - 46EB2E000482B0 /* vp8_dec.c in Sources */, - 46EB2E000482A0 /* vp8l_dec.c in Sources */, - 46EB2E00048420 /* vp8l_enc.c in Sources */, - 46EB2E000482C0 /* webp_dec.c in Sources */, - 46EB2E00048430 /* webp_enc.c in Sources */, - 46EB2E000481D0 /* yuv.c in Sources */, - 46EB2E000481E0 /* yuv_mips32.c in Sources */, - 46EB2E000481F0 /* yuv_mips_dsp_r2.c in Sources */, - 46EB2E00048200 /* yuv_neon.c in Sources */, - 46EB2E00048210 /* yuv_sse2.c in Sources */, - 46EB2E00048220 /* yuv_sse41.c in Sources */, + 46EB2E00047FC0 /* alpha_dec.c in Sources */, + 46EB2E00048060 /* alpha_enc.c in Sources */, + 46EB2E00047BC0 /* alpha_processing.c in Sources */, + 46EB2E00047BD0 /* alpha_processing_mips_dsp_r2.c in Sources */, + 46EB2E00047BE0 /* alpha_processing_neon.c in Sources */, + 46EB2E00047BF0 /* alpha_processing_sse2.c in Sources */, + 46EB2E00047C00 /* alpha_processing_sse41.c in Sources */, + 46EB2E00048070 /* analysis_enc.c in Sources */, + 46EB2E00047A60 /* anim_decode.c in Sources */, + 46EB2E00047A90 /* anim_encode.c in Sources */, + 46EB2E00048080 /* backward_references_cost_enc.c in Sources */, + 46EB2E00048090 /* backward_references_enc.c in Sources */, + 46EB2E00047B00 /* bit_reader_utils.c in Sources */, + 46EB2E00047B10 /* bit_writer_utils.c in Sources */, + 46EB2E00047FD0 /* buffer_dec.c in Sources */, + 46EB2E00047B20 /* color_cache_utils.c in Sources */, + 46EB2E000480A0 /* config_enc.c in Sources */, + 46EB2E00047C10 /* cost.c in Sources */, + 46EB2E000480B0 /* cost_enc.c in Sources */, + 46EB2E00047C20 /* cost_mips32.c in Sources */, + 46EB2E00047C30 /* cost_mips_dsp_r2.c in Sources */, + 46EB2E00047C40 /* cost_neon.c in Sources */, + 46EB2E00047C50 /* cost_sse2.c in Sources */, + 46EB2E00047C60 /* cpu.c in Sources */, + 46EB2E00047C70 /* dec.c in Sources */, + 46EB2E00047C80 /* dec_clip_tables.c in Sources */, + 46EB2E00047C90 /* dec_mips32.c in Sources */, + 46EB2E00047CA0 /* dec_mips_dsp_r2.c in Sources */, + 46EB2E00047CB0 /* dec_msa.c in Sources */, + 46EB2E00047CC0 /* dec_neon.c in Sources */, + 46EB2E00047CD0 /* dec_sse2.c in Sources */, + 46EB2E00047CE0 /* dec_sse41.c in Sources */, + 46EB2E00047A70 /* demux.c in Sources */, + 46EB2E00047CF0 /* enc.c in Sources */, + 46EB2E00047D00 /* enc_mips32.c in Sources */, + 46EB2E00047D10 /* enc_mips_dsp_r2.c in Sources */, + 46EB2E00047D20 /* enc_msa.c in Sources */, + 46EB2E00047D30 /* enc_neon.c in Sources */, + 46EB2E00047D40 /* enc_sse2.c in Sources */, + 46EB2E00047D50 /* enc_sse41.c in Sources */, + 46EB2E000480C0 /* filter_enc.c in Sources */, + 46EB2E00047D60 /* filters.c in Sources */, + 46EB2E00047D70 /* filters_mips_dsp_r2.c in Sources */, + 46EB2E00047D80 /* filters_msa.c in Sources */, + 46EB2E00047D90 /* filters_neon.c in Sources */, + 46EB2E00047DA0 /* filters_sse2.c in Sources */, + 46EB2E00047B30 /* filters_utils.c in Sources */, + 46EB2E00047FE0 /* frame_dec.c in Sources */, + 46EB2E000480D0 /* frame_enc.c in Sources */, + 46EB2E000480E0 /* histogram_enc.c in Sources */, + 46EB2E00047B40 /* huffman_encode_utils.c in Sources */, + 46EB2E00047B50 /* huffman_utils.c in Sources */, + 46EB2E00047FF0 /* idec_dec.c in Sources */, + 46EB2E00048000 /* io_dec.c in Sources */, + 46EB2E000480F0 /* iterator_enc.c in Sources */, + 46EB2E000484A0 /* libwebp-dummy.m in Sources */, + 46EB2E00047DB0 /* lossless.c in Sources */, + 46EB2E00047DC0 /* lossless_enc.c in Sources */, + 46EB2E00047DD0 /* lossless_enc_mips32.c in Sources */, + 46EB2E00047DE0 /* lossless_enc_mips_dsp_r2.c in Sources */, + 46EB2E00047DF0 /* lossless_enc_msa.c in Sources */, + 46EB2E00047E00 /* lossless_enc_neon.c in Sources */, + 46EB2E00047E10 /* lossless_enc_sse2.c in Sources */, + 46EB2E00047E20 /* lossless_enc_sse41.c in Sources */, + 46EB2E00047E30 /* lossless_mips_dsp_r2.c in Sources */, + 46EB2E00047E40 /* lossless_msa.c in Sources */, + 46EB2E00047E50 /* lossless_neon.c in Sources */, + 46EB2E00047E60 /* lossless_sse2.c in Sources */, + 46EB2E00047E70 /* lossless_sse41.c in Sources */, + 46EB2E00047AA0 /* muxedit.c in Sources */, + 46EB2E00047AB0 /* muxinternal.c in Sources */, + 46EB2E00047AC0 /* muxread.c in Sources */, + 46EB2E00048100 /* near_lossless_enc.c in Sources */, + 46EB2E00048110 /* picture_csp_enc.c in Sources */, + 46EB2E00048120 /* picture_enc.c in Sources */, + 46EB2E00048130 /* picture_psnr_enc.c in Sources */, + 46EB2E00048140 /* picture_rescale_enc.c in Sources */, + 46EB2E00048150 /* picture_tools_enc.c in Sources */, + 46EB2E00048160 /* predictor_enc.c in Sources */, + 46EB2E00048010 /* quant_dec.c in Sources */, + 46EB2E00048170 /* quant_enc.c in Sources */, + 46EB2E00047B60 /* quant_levels_dec_utils.c in Sources */, + 46EB2E00047B70 /* quant_levels_utils.c in Sources */, + 46EB2E00047B80 /* random_utils.c in Sources */, + 46EB2E00047E80 /* rescaler.c in Sources */, + 46EB2E00047E90 /* rescaler_mips32.c in Sources */, + 46EB2E00047EA0 /* rescaler_mips_dsp_r2.c in Sources */, + 46EB2E00047EB0 /* rescaler_msa.c in Sources */, + 46EB2E00047EC0 /* rescaler_neon.c in Sources */, + 46EB2E00047ED0 /* rescaler_sse2.c in Sources */, + 46EB2E00047B90 /* rescaler_utils.c in Sources */, + 46EB2E00047EE0 /* ssim.c in Sources */, + 46EB2E00047EF0 /* ssim_sse2.c in Sources */, + 46EB2E00048180 /* syntax_enc.c in Sources */, + 46EB2E00047BA0 /* thread_utils.c in Sources */, + 46EB2E00048190 /* token_enc.c in Sources */, + 46EB2E00048020 /* tree_dec.c in Sources */, + 46EB2E000481A0 /* tree_enc.c in Sources */, + 46EB2E00047F00 /* upsampling.c in Sources */, + 46EB2E00047F10 /* upsampling_mips_dsp_r2.c in Sources */, + 46EB2E00047F20 /* upsampling_msa.c in Sources */, + 46EB2E00047F30 /* upsampling_neon.c in Sources */, + 46EB2E00047F40 /* upsampling_sse2.c in Sources */, + 46EB2E00047F50 /* upsampling_sse41.c in Sources */, + 46EB2E00047BB0 /* utils.c in Sources */, + 46EB2E00048040 /* vp8_dec.c in Sources */, + 46EB2E00048030 /* vp8l_dec.c in Sources */, + 46EB2E000481B0 /* vp8l_enc.c in Sources */, + 46EB2E00048050 /* webp_dec.c in Sources */, + 46EB2E000481C0 /* webp_enc.c in Sources */, + 46EB2E00047F60 /* yuv.c in Sources */, + 46EB2E00047F70 /* yuv_mips32.c in Sources */, + 46EB2E00047F80 /* yuv_mips_dsp_r2.c in Sources */, + 46EB2E00047F90 /* yuv_neon.c in Sources */, + 46EB2E00047FA0 /* yuv_sse2.c in Sources */, + 46EB2E00047FB0 /* yuv_sse41.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 46EB2E00048510 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 46EB2E000485F0 /* nanopb-dummy.m in Sources */, + 46EB2E00048530 /* pb_common.c in Sources */, + 46EB2E00048540 /* pb_decode.c in Sources */, + 46EB2E00048550 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048780 /* Sources */ = { + 46EB2E00048660 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048860 /* nanopb-dummy.m in Sources */, - 46EB2E000487A0 /* pb_common.c in Sources */, - 46EB2E000487B0 /* pb_decode.c in Sources */, - 46EB2E000487C0 /* pb_encode.c in Sources */, + 46EB2E00048710 /* react-native-config-dummy.m in Sources */, + 46EB2E00048680 /* ReactNativeConfig.m in Sources */, + 46EB2E00048690 /* ReactNativeConfigModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000488D0 /* Sources */ = { + 46EB2E00048780 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048980 /* react-native-config-dummy.m in Sources */, - 46EB2E000488F0 /* ReactNativeConfig.m in Sources */, - 46EB2E00048900 /* ReactNativeConfigModule.m in Sources */, + 46EB2E000487A0 /* FlipperModule.m in Sources */, + 46EB2E000487B0 /* FlipperReactNativeJavaScriptPlugin.m in Sources */, + 46EB2E000487C0 /* FlipperReactNativeJavaScriptPluginManager.m in Sources */, + 46EB2E00048850 /* react-native-flipper-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E000489F0 /* Sources */ = { + 46EB2E000488C0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048A10 /* FlipperModule.m in Sources */, - 46EB2E00048A20 /* FlipperReactNativeJavaScriptPlugin.m in Sources */, - 46EB2E00048A30 /* FlipperReactNativeJavaScriptPluginManager.m in Sources */, - 46EB2E00048AC0 /* react-native-flipper-dummy.m in Sources */, + 46EB2E000488E0 /* PdfManager.m in Sources */, + 46EB2E000488F0 /* RCTPdfPageView.m in Sources */, + 46EB2E00048900 /* RCTPdfPageViewManager.m in Sources */, + 46EB2E00048910 /* RCTPdfView.m in Sources */, + 46EB2E00048920 /* RCTPdfViewManager.m in Sources */, + 46EB2E000489D0 /* react-native-pdf-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048B30 /* Sources */ = { + 46EB2E00048A40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048B50 /* PdfManager.m in Sources */, - 46EB2E00048B60 /* RCTPdfPageView.m in Sources */, - 46EB2E00048B70 /* RCTPdfPageViewManager.m in Sources */, - 46EB2E00048B80 /* RCTPdfView.m in Sources */, - 46EB2E00048B90 /* RCTPdfViewManager.m in Sources */, - 46EB2E00048C40 /* react-native-pdf-dummy.m in Sources */, + 46EB2E00048BF0 /* react-native-safe-area-context-dummy.m in Sources */, + 46EB2E00048A60 /* RNCSafeAreaContext.mm in Sources */, + 46EB2E00048A70 /* RNCSafeAreaProvider.m in Sources */, + 46EB2E00048A80 /* RNCSafeAreaProviderManager.m in Sources */, + 46EB2E00048A90 /* RNCSafeAreaShadowView.m in Sources */, + 46EB2E00048AA0 /* RNCSafeAreaUtils.m in Sources */, + 46EB2E00048AB0 /* RNCSafeAreaView.m in Sources */, + 46EB2E00048AC0 /* RNCSafeAreaViewEdges.m in Sources */, + 46EB2E00048AD0 /* RNCSafeAreaViewLocalData.m in Sources */, + 46EB2E00048AE0 /* RNCSafeAreaViewManager.m in Sources */, + 46EB2E00048AF0 /* RNCSafeAreaViewMode.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048CB0 /* Sources */ = { + 46EB2E00048C60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048E60 /* react-native-safe-area-context-dummy.m in Sources */, - 46EB2E00048CD0 /* RNCSafeAreaContext.mm in Sources */, - 46EB2E00048CE0 /* RNCSafeAreaProvider.m in Sources */, - 46EB2E00048CF0 /* RNCSafeAreaProviderManager.m in Sources */, - 46EB2E00048D00 /* RNCSafeAreaShadowView.m in Sources */, - 46EB2E00048D10 /* RNCSafeAreaUtils.m in Sources */, - 46EB2E00048D20 /* RNCSafeAreaView.m in Sources */, - 46EB2E00048D30 /* RNCSafeAreaViewEdges.m in Sources */, - 46EB2E00048D40 /* RNCSafeAreaViewLocalData.m in Sources */, - 46EB2E00048D50 /* RNCSafeAreaViewManager.m in Sources */, - 46EB2E00048D60 /* RNCSafeAreaViewMode.m in Sources */, + 46EB2E00048D30 /* react-native-webview-dummy.m in Sources */, + 46EB2E00048C80 /* RNCWebView.m in Sources */, + 46EB2E00048C90 /* RNCWebViewManager.m in Sources */, + 46EB2E00048CA0 /* RNCWKProcessPoolManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46EB2E00048ED0 /* Sources */ = { + 46EB2E00048DA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46EB2E00048FA0 /* Pods-Hurt-dummy.m in Sources */, + 46EB2E00048E70 /* Pods-Hurt-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 46EB2E00049030 /* PBXTargetDependency */ = { + 46EB2E00048F00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BVLinearGradient; target = EB28C63AFB5F6569AA780E440F9927E8 /* BVLinearGradient */; - targetProxy = 46EB2E00049020 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048EF0 /* PBXContainerItemProxy */; }; - 46EB2E00049050 /* PBXTargetDependency */ = { + 46EB2E00048F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Base64; target = DB2B17EEE15C8E869A37C1514F4D378E /* Base64 */; - targetProxy = 46EB2E00049040 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048F10 /* PBXContainerItemProxy */; }; - 46EB2E00049070 /* PBXTargetDependency */ = { + 46EB2E00048F40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "BoringSSL-GRPC"; target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 46EB2E00049060 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048F30 /* PBXContainerItemProxy */; }; - 46EB2E00049090 /* PBXTargetDependency */ = { + 46EB2E00048F60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CocoaAsyncSocket; target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 46EB2E00049080 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048F50 /* PBXContainerItemProxy */; }; - 46EB2E000490B0 /* PBXTargetDependency */ = { + 46EB2E00048F80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CodePush; target = 9C3DB3789CFE35346F3ED3F31A5ABD6C /* CodePush */; - targetProxy = 46EB2E000490A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048F70 /* PBXContainerItemProxy */; }; - 46EB2E000490D0 /* PBXTargetDependency */ = { + 46EB2E00048FA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E000490C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048F90 /* PBXContainerItemProxy */; }; - 46EB2E000490F0 /* PBXTargetDependency */ = { + 46EB2E00048FC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 46EB2E000490E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048FB0 /* PBXContainerItemProxy */; }; - 46EB2E00049110 /* PBXTargetDependency */ = { + 46EB2E00048FE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 46EB2E00049100 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048FD0 /* PBXContainerItemProxy */; }; - 46EB2E00049130 /* PBXTargetDependency */ = { + 46EB2E00049000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E00049120 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00048FF0 /* PBXContainerItemProxy */; }; - 46EB2E00049150 /* PBXTargetDependency */ = { + 46EB2E00049020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseABTesting; target = 8F68D031908A0059566798048C48F776 /* FirebaseABTesting */; - targetProxy = 46EB2E00049140 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049010 /* PBXContainerItemProxy */; }; - 46EB2E00049170 /* PBXTargetDependency */ = { + 46EB2E00049040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 46EB2E00049160 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049030 /* PBXContainerItemProxy */; }; - 46EB2E00049190 /* PBXTargetDependency */ = { + 46EB2E00049060 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAuth; target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; - targetProxy = 46EB2E00049180 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049050 /* PBXContainerItemProxy */; }; - 46EB2E000491B0 /* PBXTargetDependency */ = { + 46EB2E00049080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E000491A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049070 /* PBXContainerItemProxy */; }; - 46EB2E000491D0 /* PBXTargetDependency */ = { + 46EB2E000490A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 46EB2E000491C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049090 /* PBXContainerItemProxy */; }; - 46EB2E000491F0 /* PBXTargetDependency */ = { + 46EB2E000490C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreExtension; target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; - targetProxy = 46EB2E000491E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000490B0 /* PBXContainerItemProxy */; }; - 46EB2E00049210 /* PBXTargetDependency */ = { + 46EB2E000490E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreInternal; target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 46EB2E00049200 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000490D0 /* PBXContainerItemProxy */; }; - 46EB2E00049230 /* PBXTargetDependency */ = { + 46EB2E00049100 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCrashlytics; target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 46EB2E00049220 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000490F0 /* PBXContainerItemProxy */; }; - 46EB2E00049250 /* PBXTargetDependency */ = { + 46EB2E00049120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseDatabase; target = 736AF68F6527ACF6B4A4C54728824A1C /* FirebaseDatabase */; - targetProxy = 46EB2E00049240 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049110 /* PBXContainerItemProxy */; }; - 46EB2E00049270 /* PBXTargetDependency */ = { + 46EB2E00049140 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseFirestore; target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; - targetProxy = 46EB2E00049260 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049130 /* PBXContainerItemProxy */; }; - 46EB2E00049290 /* PBXTargetDependency */ = { + 46EB2E00049160 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 46EB2E00049280 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049150 /* PBXContainerItemProxy */; }; - 46EB2E000492B0 /* PBXTargetDependency */ = { + 46EB2E00049180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseMessaging; target = 5895B432FE4D2F6826C8FF25A09DB6D2 /* FirebaseMessaging */; - targetProxy = 46EB2E000492A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049170 /* PBXContainerItemProxy */; }; - 46EB2E000492D0 /* PBXTargetDependency */ = { + 46EB2E000491A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseRemoteConfig; target = 51471EE35F2E9E19E51A74944E5ABB7F /* FirebaseRemoteConfig */; - targetProxy = 46EB2E000492C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049190 /* PBXContainerItemProxy */; }; - 46EB2E000492F0 /* PBXTargetDependency */ = { + 46EB2E000491C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flipper; target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 46EB2E000492E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000491B0 /* PBXContainerItemProxy */; }; - 46EB2E00049310 /* PBXTargetDependency */ = { + 46EB2E000491E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Boost-iOSX"; target = CD7E4799597971CE1F9F7BB394E8DDD7 /* Flipper-Boost-iOSX */; - targetProxy = 46EB2E00049300 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000491D0 /* PBXContainerItemProxy */; }; - 46EB2E00049330 /* PBXTargetDependency */ = { + 46EB2E00049200 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 46EB2E00049320 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000491F0 /* PBXContainerItemProxy */; }; - 46EB2E00049350 /* PBXTargetDependency */ = { + 46EB2E00049220 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Fmt"; target = 0A38628B0123A2EC8A0183D4A2B2747E /* Flipper-Fmt */; - targetProxy = 46EB2E00049340 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049210 /* PBXContainerItemProxy */; }; - 46EB2E00049370 /* PBXTargetDependency */ = { + 46EB2E00049240 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 46EB2E00049360 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049230 /* PBXContainerItemProxy */; }; - 46EB2E00049390 /* PBXTargetDependency */ = { + 46EB2E00049260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Glog"; target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 46EB2E00049380 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049250 /* PBXContainerItemProxy */; }; - 46EB2E000493B0 /* PBXTargetDependency */ = { + 46EB2E00049280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-PeerTalk"; target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 46EB2E000493A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049270 /* PBXContainerItemProxy */; }; - 46EB2E000493D0 /* PBXTargetDependency */ = { + 46EB2E000492A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-RSocket"; target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 46EB2E000493C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049290 /* PBXContainerItemProxy */; }; - 46EB2E000493F0 /* PBXTargetDependency */ = { + 46EB2E000492C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FlipperKit; target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 46EB2E000493E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000492B0 /* PBXContainerItemProxy */; }; - 46EB2E00049410 /* PBXTargetDependency */ = { + 46EB2E000492E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 46EB2E00049400 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000492D0 /* PBXContainerItemProxy */; }; - 46EB2E00049430 /* PBXTargetDependency */ = { + 46EB2E00049300 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 46EB2E00049420 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000492F0 /* PBXContainerItemProxy */; }; - 46EB2E00049450 /* PBXTargetDependency */ = { + 46EB2E00049320 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 46EB2E00049440 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049310 /* PBXContainerItemProxy */; }; - 46EB2E00049470 /* PBXTargetDependency */ = { + 46EB2E00049340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E00049460 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049330 /* PBXContainerItemProxy */; }; - 46EB2E00049490 /* PBXTargetDependency */ = { + 46EB2E00049360 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JWT; target = F95BD6B7EBE4B40A06D0F914262CA972 /* JWT */; - targetProxy = 46EB2E00049480 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049350 /* PBXContainerItemProxy */; }; - 46EB2E000494B0 /* PBXTargetDependency */ = { + 46EB2E00049380 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Libuv-gRPC"; target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; - targetProxy = 46EB2E000494A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049370 /* PBXContainerItemProxy */; }; - 46EB2E000494D0 /* PBXTargetDependency */ = { + 46EB2E000493A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 46EB2E000494C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049390 /* PBXContainerItemProxy */; }; - 46EB2E000494F0 /* PBXTargetDependency */ = { + 46EB2E000493C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 46EB2E000494E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000493B0 /* PBXContainerItemProxy */; }; - 46EB2E00049510 /* PBXTargetDependency */ = { + 46EB2E000493E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E00049500 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000493D0 /* PBXContainerItemProxy */; }; - 46EB2E00049530 /* PBXTargetDependency */ = { + 46EB2E00049400 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E00049520 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000493F0 /* PBXContainerItemProxy */; }; - 46EB2E00049550 /* PBXTargetDependency */ = { + 46EB2E00049420 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E00049540 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049410 /* PBXContainerItemProxy */; }; - 46EB2E00049570 /* PBXTargetDependency */ = { + 46EB2E00049440 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCAsyncStorage; target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 46EB2E00049560 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049430 /* PBXContainerItemProxy */; }; - 46EB2E00049590 /* PBXTargetDependency */ = { + 46EB2E00049460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCMaskedView; target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 46EB2E00049580 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049450 /* PBXContainerItemProxy */; }; - 46EB2E000495B0 /* PBXTargetDependency */ = { + 46EB2E00049480 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCPicker; target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = 46EB2E000495A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049470 /* PBXContainerItemProxy */; }; - 46EB2E000495D0 /* PBXTargetDependency */ = { + 46EB2E000494A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNDeviceInfo; target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 46EB2E000495C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049490 /* PBXContainerItemProxy */; }; - 46EB2E000495F0 /* PBXTargetDependency */ = { + 46EB2E000494C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBAnalytics; target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 46EB2E000495E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000494B0 /* PBXContainerItemProxy */; }; - 46EB2E00049610 /* PBXTargetDependency */ = { + 46EB2E000494E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E00049600 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000494D0 /* PBXContainerItemProxy */; }; - 46EB2E00049630 /* PBXTargetDependency */ = { + 46EB2E00049500 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBAuth; target = 40074CA5658FB2002FAF3C521C19ADF9 /* RNFBAuth */; - targetProxy = 46EB2E00049620 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000494F0 /* PBXContainerItemProxy */; }; - 46EB2E00049650 /* PBXTargetDependency */ = { + 46EB2E00049520 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBCrashlytics; target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 46EB2E00049640 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049510 /* PBXContainerItemProxy */; }; - 46EB2E00049670 /* PBXTargetDependency */ = { + 46EB2E00049540 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBDatabase; target = 267E9AD363926B254B143B064F9CE7E4 /* RNFBDatabase */; - targetProxy = 46EB2E00049660 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049530 /* PBXContainerItemProxy */; }; - 46EB2E00049690 /* PBXTargetDependency */ = { + 46EB2E00049560 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBFirestore; target = 1AEDCC056FB259475A44E0F2FC168000 /* RNFBFirestore */; - targetProxy = 46EB2E00049680 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049550 /* PBXContainerItemProxy */; }; - 46EB2E000496B0 /* PBXTargetDependency */ = { + 46EB2E00049580 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBMessaging; target = 0CFCC83772CE74C90F09C77D3F09ACAA /* RNFBMessaging */; - targetProxy = 46EB2E000496A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049570 /* PBXContainerItemProxy */; }; - 46EB2E000496D0 /* PBXTargetDependency */ = { + 46EB2E000495A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBRemoteConfig; target = DC1EA8F85F7C53B56B3A77622E7895D9 /* RNFBRemoteConfig */; - targetProxy = 46EB2E000496C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049590 /* PBXContainerItemProxy */; }; - 46EB2E000496F0 /* PBXTargetDependency */ = { + 46EB2E000495C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFastImage; target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 46EB2E000496E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000495B0 /* PBXContainerItemProxy */; }; - 46EB2E00049710 /* PBXTargetDependency */ = { + 46EB2E000495E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNGestureHandler; target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 46EB2E00049700 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000495D0 /* PBXContainerItemProxy */; }; - 46EB2E00049730 /* PBXTargetDependency */ = { + 46EB2E00049600 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNRate; target = 01902010C275AA793ECF6F87A82AE992 /* RNRate */; - targetProxy = 46EB2E00049720 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000495F0 /* PBXContainerItemProxy */; }; - 46EB2E00049750 /* PBXTargetDependency */ = { + 46EB2E00049620 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNReanimated; target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 46EB2E00049740 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049610 /* PBXContainerItemProxy */; }; - 46EB2E00049770 /* PBXTargetDependency */ = { + 46EB2E00049640 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNSVG; target = DE32677FA772BFFD0172EB7EE9E4E7E9 /* RNSVG */; - targetProxy = 46EB2E00049760 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049630 /* PBXContainerItemProxy */; }; - 46EB2E00049790 /* PBXTargetDependency */ = { + 46EB2E00049660 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNScreens; target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 46EB2E00049780 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049650 /* PBXContainerItemProxy */; }; - 46EB2E000497B0 /* PBXTargetDependency */ = { + 46EB2E00049680 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNShare; target = 4C974BC7C0469FEEA85FA823D8870838 /* RNShare */; - targetProxy = 46EB2E000497A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049670 /* PBXContainerItemProxy */; }; - 46EB2E000497D0 /* PBXTargetDependency */ = { + 46EB2E000496A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNVectorIcons; target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 46EB2E000497C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049690 /* PBXContainerItemProxy */; }; - 46EB2E000497F0 /* PBXTargetDependency */ = { + 46EB2E000496C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 46EB2E000497E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000496B0 /* PBXContainerItemProxy */; }; - 46EB2E00049810 /* PBXTargetDependency */ = { + 46EB2E000496E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E00049800 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000496D0 /* PBXContainerItemProxy */; }; - 46EB2E00049830 /* PBXTargetDependency */ = { + 46EB2E00049700 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E00049820 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000496F0 /* PBXContainerItemProxy */; }; - 46EB2E00049850 /* PBXTargetDependency */ = { + 46EB2E00049720 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-CoreModules"; target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 46EB2E00049840 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049710 /* PBXContainerItemProxy */; }; - 46EB2E00049870 /* PBXTargetDependency */ = { + 46EB2E00049740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 46EB2E00049860 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049730 /* PBXContainerItemProxy */; }; - 46EB2E00049890 /* PBXTargetDependency */ = { + 46EB2E00049760 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTAnimation"; target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 46EB2E00049880 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049750 /* PBXContainerItemProxy */; }; - 46EB2E000498B0 /* PBXTargetDependency */ = { + 46EB2E00049780 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 46EB2E000498A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049770 /* PBXContainerItemProxy */; }; - 46EB2E000498D0 /* PBXTargetDependency */ = { + 46EB2E000497A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 46EB2E000498C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049790 /* PBXContainerItemProxy */; }; - 46EB2E000498F0 /* PBXTargetDependency */ = { + 46EB2E000497C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 46EB2E000498E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000497B0 /* PBXContainerItemProxy */; }; - 46EB2E00049910 /* PBXTargetDependency */ = { + 46EB2E000497E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 46EB2E00049900 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000497D0 /* PBXContainerItemProxy */; }; - 46EB2E00049930 /* PBXTargetDependency */ = { + 46EB2E00049800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 46EB2E00049920 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000497F0 /* PBXContainerItemProxy */; }; - 46EB2E00049950 /* PBXTargetDependency */ = { + 46EB2E00049820 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 46EB2E00049940 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049810 /* PBXContainerItemProxy */; }; - 46EB2E00049970 /* PBXTargetDependency */ = { + 46EB2E00049840 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 46EB2E00049960 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049830 /* PBXContainerItemProxy */; }; - 46EB2E00049990 /* PBXTargetDependency */ = { + 46EB2E00049860 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-bridging"; target = 5D49FA97D16E84D298A7C7F5A6F1D615 /* React-bridging */; - targetProxy = 46EB2E00049980 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049850 /* PBXContainerItemProxy */; }; - 46EB2E000499B0 /* PBXTargetDependency */ = { + 46EB2E00049880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 46EB2E000499A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049870 /* PBXContainerItemProxy */; }; - 46EB2E000499D0 /* PBXTargetDependency */ = { + 46EB2E000498A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E000499C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049890 /* PBXContainerItemProxy */; }; - 46EB2E000499F0 /* PBXTargetDependency */ = { + 46EB2E000498C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-hermes"; target = 20F066A71CEA5EECC7463413442F2B77 /* React-hermes */; - targetProxy = 46EB2E000499E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000498B0 /* PBXContainerItemProxy */; }; - 46EB2E00049A10 /* PBXTargetDependency */ = { + 46EB2E000498E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E00049A00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000498D0 /* PBXContainerItemProxy */; }; - 46EB2E00049A30 /* PBXTargetDependency */ = { + 46EB2E00049900 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 46EB2E00049A20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000498F0 /* PBXContainerItemProxy */; }; - 46EB2E00049A50 /* PBXTargetDependency */ = { + 46EB2E00049920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 46EB2E00049A40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049910 /* PBXContainerItemProxy */; }; - 46EB2E00049A70 /* PBXTargetDependency */ = { + 46EB2E00049940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-logger"; target = 083B602EA19B4AD50EC53C0602F29A7D /* React-logger */; - targetProxy = 46EB2E00049A60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049930 /* PBXContainerItemProxy */; }; - 46EB2E00049A90 /* PBXTargetDependency */ = { + 46EB2E00049960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E00049A80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049950 /* PBXContainerItemProxy */; }; - 46EB2E00049AB0 /* PBXTargetDependency */ = { + 46EB2E00049980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-runtimeexecutor"; target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 46EB2E00049AA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049970 /* PBXContainerItemProxy */; }; - 46EB2E00049AD0 /* PBXTargetDependency */ = { + 46EB2E000499A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E00049AC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049990 /* PBXContainerItemProxy */; }; - 46EB2E00049AF0 /* PBXTargetDependency */ = { + 46EB2E000499C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 46EB2E00049AE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000499B0 /* PBXContainerItemProxy */; }; - 46EB2E00049B10 /* PBXTargetDependency */ = { + 46EB2E000499E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 46EB2E00049B00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000499D0 /* PBXContainerItemProxy */; }; - 46EB2E00049B30 /* PBXTargetDependency */ = { + 46EB2E00049A00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SSZipArchive; target = F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */; - targetProxy = 46EB2E00049B20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E000499F0 /* PBXContainerItemProxy */; }; - 46EB2E00049B50 /* PBXTargetDependency */ = { + 46EB2E00049A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SocketRocket; target = 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */; - targetProxy = 46EB2E00049B40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049A10 /* PBXContainerItemProxy */; }; - 46EB2E00049B70 /* PBXTargetDependency */ = { + 46EB2E00049A40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 46EB2E00049B60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049A30 /* PBXContainerItemProxy */; }; - 46EB2E00049B90 /* PBXTargetDependency */ = { + 46EB2E00049A60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 46EB2E00049B80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049A50 /* PBXContainerItemProxy */; }; - 46EB2E00049BB0 /* PBXTargetDependency */ = { + 46EB2E00049A80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = abseil; target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 46EB2E00049BA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049A70 /* PBXContainerItemProxy */; }; - 46EB2E00049BD0 /* PBXTargetDependency */ = { + 46EB2E00049AA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = boost; target = EFEA55B1B776B6EB4B16F363BFE64D1A /* boost */; - targetProxy = 46EB2E00049BC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049A90 /* PBXContainerItemProxy */; }; - 46EB2E00049BF0 /* PBXTargetDependency */ = { + 46EB2E00049AC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = fmt; target = 02B79DFED924FA19CA90EC69614733E1 /* fmt */; - targetProxy = 46EB2E00049BE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049AB0 /* PBXContainerItemProxy */; }; - 46EB2E00049C10 /* PBXTargetDependency */ = { + 46EB2E00049AE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-C++"; target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 46EB2E00049C00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049AD0 /* PBXContainerItemProxy */; }; - 46EB2E00049C30 /* PBXTargetDependency */ = { + 46EB2E00049B00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-Core"; target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 46EB2E00049C20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049AF0 /* PBXContainerItemProxy */; }; - 46EB2E00049C50 /* PBXTargetDependency */ = { + 46EB2E00049B20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E00049C40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049B10 /* PBXContainerItemProxy */; }; - 46EB2E00049C70 /* PBXTargetDependency */ = { + 46EB2E00049B40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "hermes-engine"; target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 46EB2E00049C60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049B30 /* PBXContainerItemProxy */; }; - 46EB2E00049C90 /* PBXTargetDependency */ = { + 46EB2E00049B60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "leveldb-library"; target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 46EB2E00049C80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049B50 /* PBXContainerItemProxy */; }; - 46EB2E00049CB0 /* PBXTargetDependency */ = { + 46EB2E00049B80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libevent; target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 46EB2E00049CA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049B70 /* PBXContainerItemProxy */; }; - 46EB2E00049CD0 /* PBXTargetDependency */ = { + 46EB2E00049BA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 46EB2E00049CC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049B90 /* PBXContainerItemProxy */; }; - 46EB2E00049CF0 /* PBXTargetDependency */ = { + 46EB2E00049BC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E00049CE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049BB0 /* PBXContainerItemProxy */; }; - 46EB2E00049D10 /* PBXTargetDependency */ = { + 46EB2E00049BE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-config"; target = B6422EB0A585557ED42A07B5D023BD98 /* react-native-config */; - targetProxy = 46EB2E00049D00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049BD0 /* PBXContainerItemProxy */; }; - 46EB2E00049D30 /* PBXTargetDependency */ = { + 46EB2E00049C00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-flipper"; target = F133385E353F127F269BD198DA330584 /* react-native-flipper */; - targetProxy = 46EB2E00049D20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049BF0 /* PBXContainerItemProxy */; }; - 46EB2E00049D50 /* PBXTargetDependency */ = { + 46EB2E00049C20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-pdf"; target = 951971F966B90DEAB7D250D9C65A8AC1 /* react-native-pdf */; - targetProxy = 46EB2E00049D40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049C10 /* PBXContainerItemProxy */; }; - 46EB2E00049D70 /* PBXTargetDependency */ = { + 46EB2E00049C40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-safe-area-context"; target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 46EB2E00049D60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049C30 /* PBXContainerItemProxy */; + }; + 46EB2E00049C60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 46EB2E00049C50 /* PBXContainerItemProxy */; }; - 46EB2E00049D90 /* PBXTargetDependency */ = { + 46EB2E00049C80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E00049D80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049C70 /* PBXContainerItemProxy */; }; - 46EB2E00049DB0 /* PBXTargetDependency */ = { + 46EB2E00049CA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E00049DA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049C90 /* PBXContainerItemProxy */; }; - 46EB2E00049DD0 /* PBXTargetDependency */ = { + 46EB2E00049CC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SSZipArchive; target = F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */; - targetProxy = 46EB2E00049DC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049CB0 /* PBXContainerItemProxy */; }; - 46EB2E00049DF0 /* PBXTargetDependency */ = { + 46EB2E00049CE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JWT; target = F95BD6B7EBE4B40A06D0F914262CA972 /* JWT */; - targetProxy = 46EB2E00049DE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049CD0 /* PBXContainerItemProxy */; }; - 46EB2E00049E10 /* PBXTargetDependency */ = { + 46EB2E00049D00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Base64; target = DB2B17EEE15C8E869A37C1514F4D378E /* Base64 */; - targetProxy = 46EB2E00049E00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049CF0 /* PBXContainerItemProxy */; }; - 46EB2E00049E30 /* PBXTargetDependency */ = { + 46EB2E00049D20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E00049E20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049D10 /* PBXContainerItemProxy */; }; - 46EB2E00049E50 /* PBXTargetDependency */ = { + 46EB2E00049D40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E00049E40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049D30 /* PBXContainerItemProxy */; }; - 46EB2E00049E70 /* PBXTargetDependency */ = { + 46EB2E00049D60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E00049E60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049D50 /* PBXContainerItemProxy */; }; - 46EB2E00049E90 /* PBXTargetDependency */ = { + 46EB2E00049D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E00049E80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049D70 /* PBXContainerItemProxy */; }; - 46EB2E00049EB0 /* PBXTargetDependency */ = { + 46EB2E00049DA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E00049EA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049D90 /* PBXContainerItemProxy */; }; - 46EB2E00049ED0 /* PBXTargetDependency */ = { + 46EB2E00049DC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E00049EC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049DB0 /* PBXContainerItemProxy */; }; - 46EB2E00049EF0 /* PBXTargetDependency */ = { + 46EB2E00049DE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAuth; target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; - targetProxy = 46EB2E00049EE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049DD0 /* PBXContainerItemProxy */; }; - 46EB2E00049F10 /* PBXTargetDependency */ = { + 46EB2E00049E00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 46EB2E00049F00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049DF0 /* PBXContainerItemProxy */; }; - 46EB2E00049F30 /* PBXTargetDependency */ = { + 46EB2E00049E20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E00049F20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049E10 /* PBXContainerItemProxy */; }; - 46EB2E00049F50 /* PBXTargetDependency */ = { + 46EB2E00049E40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCrashlytics; target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 46EB2E00049F40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049E30 /* PBXContainerItemProxy */; }; - 46EB2E00049F70 /* PBXTargetDependency */ = { + 46EB2E00049E60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseDatabase; target = 736AF68F6527ACF6B4A4C54728824A1C /* FirebaseDatabase */; - targetProxy = 46EB2E00049F60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049E50 /* PBXContainerItemProxy */; }; - 46EB2E00049F90 /* PBXTargetDependency */ = { + 46EB2E00049E80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseFirestore; target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; - targetProxy = 46EB2E00049F80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049E70 /* PBXContainerItemProxy */; }; - 46EB2E00049FB0 /* PBXTargetDependency */ = { + 46EB2E00049EA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseMessaging; target = 5895B432FE4D2F6826C8FF25A09DB6D2 /* FirebaseMessaging */; - targetProxy = 46EB2E00049FA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049E90 /* PBXContainerItemProxy */; }; - 46EB2E00049FD0 /* PBXTargetDependency */ = { + 46EB2E00049EC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseRemoteConfig; target = 51471EE35F2E9E19E51A74944E5ABB7F /* FirebaseRemoteConfig */; - targetProxy = 46EB2E00049FC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049EB0 /* PBXContainerItemProxy */; }; - 46EB2E00049FF0 /* PBXTargetDependency */ = { + 46EB2E00049EE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E00049FE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049ED0 /* PBXContainerItemProxy */; }; - 46EB2E0004A010 /* PBXTargetDependency */ = { + 46EB2E00049F00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A000 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049EF0 /* PBXContainerItemProxy */; }; - 46EB2E0004A030 /* PBXTargetDependency */ = { + 46EB2E00049F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 46EB2E0004A020 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049F10 /* PBXContainerItemProxy */; }; - 46EB2E0004A050 /* PBXTargetDependency */ = { + 46EB2E00049F40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A040 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049F30 /* PBXContainerItemProxy */; }; - 46EB2E0004A070 /* PBXTargetDependency */ = { + 46EB2E00049F60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A060 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049F50 /* PBXContainerItemProxy */; }; - 46EB2E0004A090 /* PBXTargetDependency */ = { + 46EB2E00049F80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 46EB2E0004A080 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049F70 /* PBXContainerItemProxy */; }; - 46EB2E0004A0B0 /* PBXTargetDependency */ = { + 46EB2E00049FA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A0A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049F90 /* PBXContainerItemProxy */; }; - 46EB2E0004A0D0 /* PBXTargetDependency */ = { + 46EB2E00049FC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A0C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049FB0 /* PBXContainerItemProxy */; }; - 46EB2E0004A0F0 /* PBXTargetDependency */ = { + 46EB2E00049FE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 46EB2E0004A0E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049FD0 /* PBXContainerItemProxy */; }; - 46EB2E0004A110 /* PBXTargetDependency */ = { + 46EB2E0004A000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A100 /* PBXContainerItemProxy */; + targetProxy = 46EB2E00049FF0 /* PBXContainerItemProxy */; }; - 46EB2E0004A130 /* PBXTargetDependency */ = { + 46EB2E0004A020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 46EB2E0004A120 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A010 /* PBXContainerItemProxy */; }; - 46EB2E0004A150 /* PBXTargetDependency */ = { + 46EB2E0004A040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreInternal; target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 46EB2E0004A140 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A030 /* PBXContainerItemProxy */; }; - 46EB2E0004A170 /* PBXTargetDependency */ = { + 46EB2E0004A060 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 46EB2E0004A160 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A050 /* PBXContainerItemProxy */; }; - 46EB2E0004A190 /* PBXTargetDependency */ = { + 46EB2E0004A080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A180 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A070 /* PBXContainerItemProxy */; }; - 46EB2E0004A1B0 /* PBXTargetDependency */ = { + 46EB2E0004A0A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A1A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A090 /* PBXContainerItemProxy */; }; - 46EB2E0004A1D0 /* PBXTargetDependency */ = { + 46EB2E0004A0C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A1C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A0B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A1F0 /* PBXTargetDependency */ = { + 46EB2E0004A0E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A1E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A0D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A210 /* PBXTargetDependency */ = { + 46EB2E0004A100 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A200 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A0F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A230 /* PBXTargetDependency */ = { + 46EB2E0004A120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 46EB2E0004A220 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A110 /* PBXContainerItemProxy */; }; - 46EB2E0004A250 /* PBXTargetDependency */ = { + 46EB2E0004A140 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 46EB2E0004A240 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A130 /* PBXContainerItemProxy */; }; - 46EB2E0004A270 /* PBXTargetDependency */ = { + 46EB2E0004A160 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 46EB2E0004A260 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A150 /* PBXContainerItemProxy */; }; - 46EB2E0004A290 /* PBXTargetDependency */ = { + 46EB2E0004A180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A280 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A170 /* PBXContainerItemProxy */; }; - 46EB2E0004A2B0 /* PBXTargetDependency */ = { + 46EB2E0004A1A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A2A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A190 /* PBXContainerItemProxy */; }; - 46EB2E0004A2D0 /* PBXTargetDependency */ = { + 46EB2E0004A1C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "leveldb-library"; target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 46EB2E0004A2C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A1B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A2F0 /* PBXTargetDependency */ = { + 46EB2E0004A1E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A2E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A1D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A310 /* PBXTargetDependency */ = { + 46EB2E0004A200 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A300 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A1F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A330 /* PBXTargetDependency */ = { + 46EB2E0004A220 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = abseil; target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 46EB2E0004A320 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A210 /* PBXContainerItemProxy */; }; - 46EB2E0004A350 /* PBXTargetDependency */ = { + 46EB2E0004A240 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-C++"; target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 46EB2E0004A340 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A230 /* PBXContainerItemProxy */; }; - 46EB2E0004A370 /* PBXTargetDependency */ = { + 46EB2E0004A260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "leveldb-library"; target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 46EB2E0004A360 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A250 /* PBXContainerItemProxy */; }; - 46EB2E0004A390 /* PBXTargetDependency */ = { + 46EB2E0004A280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A380 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A270 /* PBXContainerItemProxy */; }; - 46EB2E0004A3B0 /* PBXTargetDependency */ = { + 46EB2E0004A2A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A3A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A290 /* PBXContainerItemProxy */; }; - 46EB2E0004A3D0 /* PBXTargetDependency */ = { + 46EB2E0004A2C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 46EB2E0004A3C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A2B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A3F0 /* PBXTargetDependency */ = { + 46EB2E0004A2E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A3E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A2D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A410 /* PBXTargetDependency */ = { + 46EB2E0004A300 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 46EB2E0004A400 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A2F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A430 /* PBXTargetDependency */ = { + 46EB2E0004A320 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A420 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A310 /* PBXContainerItemProxy */; }; - 46EB2E0004A450 /* PBXTargetDependency */ = { + 46EB2E0004A340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A440 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A330 /* PBXContainerItemProxy */; }; - 46EB2E0004A470 /* PBXTargetDependency */ = { + 46EB2E0004A360 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 46EB2E0004A460 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A350 /* PBXContainerItemProxy */; }; - 46EB2E0004A490 /* PBXTargetDependency */ = { + 46EB2E0004A380 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A480 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A370 /* PBXContainerItemProxy */; }; - 46EB2E0004A4B0 /* PBXTargetDependency */ = { + 46EB2E0004A3A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseABTesting; target = 8F68D031908A0059566798048C48F776 /* FirebaseABTesting */; - targetProxy = 46EB2E0004A4A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A390 /* PBXContainerItemProxy */; }; - 46EB2E0004A4D0 /* PBXTargetDependency */ = { + 46EB2E0004A3C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 46EB2E0004A4C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A3B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A4F0 /* PBXTargetDependency */ = { + 46EB2E0004A3E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 46EB2E0004A4E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A3D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A510 /* PBXTargetDependency */ = { + 46EB2E0004A400 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A500 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A3F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A530 /* PBXTargetDependency */ = { + 46EB2E0004A420 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 46EB2E0004A520 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A410 /* PBXContainerItemProxy */; }; - 46EB2E0004A550 /* PBXTargetDependency */ = { + 46EB2E0004A440 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-RSocket"; target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 46EB2E0004A540 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A430 /* PBXContainerItemProxy */; }; - 46EB2E0004A570 /* PBXTargetDependency */ = { + 46EB2E0004A460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Boost-iOSX"; target = CD7E4799597971CE1F9F7BB394E8DDD7 /* Flipper-Boost-iOSX */; - targetProxy = 46EB2E0004A560 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A450 /* PBXContainerItemProxy */; }; - 46EB2E0004A590 /* PBXTargetDependency */ = { + 46EB2E0004A480 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Glog"; target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 46EB2E0004A580 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A470 /* PBXContainerItemProxy */; }; - 46EB2E0004A5B0 /* PBXTargetDependency */ = { + 46EB2E0004A4A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 46EB2E0004A5A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A490 /* PBXContainerItemProxy */; }; - 46EB2E0004A5D0 /* PBXTargetDependency */ = { + 46EB2E0004A4C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 46EB2E0004A5C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A4B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A5F0 /* PBXTargetDependency */ = { + 46EB2E0004A4E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libevent; target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 46EB2E0004A5E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A4D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A610 /* PBXTargetDependency */ = { + 46EB2E0004A500 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Fmt"; target = 0A38628B0123A2EC8A0183D4A2B2747E /* Flipper-Fmt */; - targetProxy = 46EB2E0004A600 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A4F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A630 /* PBXTargetDependency */ = { + 46EB2E0004A520 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 46EB2E0004A620 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A510 /* PBXContainerItemProxy */; }; - 46EB2E0004A650 /* PBXTargetDependency */ = { + 46EB2E0004A540 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flipper; target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 46EB2E0004A640 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A530 /* PBXContainerItemProxy */; }; - 46EB2E0004A670 /* PBXTargetDependency */ = { + 46EB2E0004A560 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SocketRocket; target = 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */; - targetProxy = 46EB2E0004A660 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A550 /* PBXContainerItemProxy */; }; - 46EB2E0004A690 /* PBXTargetDependency */ = { + 46EB2E0004A580 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 46EB2E0004A680 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A570 /* PBXContainerItemProxy */; }; - 46EB2E0004A6B0 /* PBXTargetDependency */ = { + 46EB2E0004A5A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CocoaAsyncSocket; target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 46EB2E0004A6A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A590 /* PBXContainerItemProxy */; }; - 46EB2E0004A6D0 /* PBXTargetDependency */ = { + 46EB2E0004A5C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-PeerTalk"; target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 46EB2E0004A6C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A5B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A6F0 /* PBXTargetDependency */ = { + 46EB2E0004A5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 46EB2E0004A6E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A5D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A710 /* PBXTargetDependency */ = { + 46EB2E0004A600 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A700 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A5F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A730 /* PBXTargetDependency */ = { + 46EB2E0004A620 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A720 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A610 /* PBXContainerItemProxy */; }; - 46EB2E0004A750 /* PBXTargetDependency */ = { + 46EB2E0004A640 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46EB2E0004A740 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A630 /* PBXContainerItemProxy */; }; - 46EB2E0004A770 /* PBXTargetDependency */ = { + 46EB2E0004A660 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 46EB2E0004A760 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A650 /* PBXContainerItemProxy */; }; - 46EB2E0004A790 /* PBXTargetDependency */ = { + 46EB2E0004A680 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 46EB2E0004A780 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A670 /* PBXContainerItemProxy */; }; - 46EB2E0004A7B0 /* PBXTargetDependency */ = { + 46EB2E0004A6A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 46EB2E0004A7A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A690 /* PBXContainerItemProxy */; }; - 46EB2E0004A7D0 /* PBXTargetDependency */ = { + 46EB2E0004A6C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Base64; target = DB2B17EEE15C8E869A37C1514F4D378E /* Base64 */; - targetProxy = 46EB2E0004A7C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A6B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A7F0 /* PBXTargetDependency */ = { + 46EB2E0004A6E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = boost; target = EFEA55B1B776B6EB4B16F363BFE64D1A /* boost */; - targetProxy = 46EB2E0004A7E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A6D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A810 /* PBXTargetDependency */ = { + 46EB2E0004A700 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004A800 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A6F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A830 /* PBXTargetDependency */ = { + 46EB2E0004A720 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004A820 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A710 /* PBXContainerItemProxy */; }; - 46EB2E0004A850 /* PBXTargetDependency */ = { + 46EB2E0004A740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = fmt; target = 02B79DFED924FA19CA90EC69614733E1 /* fmt */; - targetProxy = 46EB2E0004A840 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A730 /* PBXContainerItemProxy */; }; - 46EB2E0004A870 /* PBXTargetDependency */ = { + 46EB2E0004A760 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libevent; target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 46EB2E0004A860 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A750 /* PBXContainerItemProxy */; }; - 46EB2E0004A890 /* PBXTargetDependency */ = { + 46EB2E0004A780 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 46EB2E0004A880 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A770 /* PBXContainerItemProxy */; }; - 46EB2E0004A8B0 /* PBXTargetDependency */ = { + 46EB2E0004A7A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E0004A8A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A790 /* PBXContainerItemProxy */; }; - 46EB2E0004A8D0 /* PBXTargetDependency */ = { + 46EB2E0004A7C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A8C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A7B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A8F0 /* PBXTargetDependency */ = { + 46EB2E0004A7E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A8E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A7D0 /* PBXContainerItemProxy */; }; - 46EB2E0004A910 /* PBXTargetDependency */ = { + 46EB2E0004A800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 46EB2E0004A900 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A7F0 /* PBXContainerItemProxy */; }; - 46EB2E0004A930 /* PBXTargetDependency */ = { + 46EB2E0004A820 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A920 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A810 /* PBXContainerItemProxy */; }; - 46EB2E0004A950 /* PBXTargetDependency */ = { + 46EB2E0004A840 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A940 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A830 /* PBXContainerItemProxy */; }; - 46EB2E0004A970 /* PBXTargetDependency */ = { + 46EB2E0004A860 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A960 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A850 /* PBXContainerItemProxy */; }; - 46EB2E0004A990 /* PBXTargetDependency */ = { + 46EB2E0004A880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004A980 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A870 /* PBXContainerItemProxy */; }; - 46EB2E0004A9B0 /* PBXTargetDependency */ = { + 46EB2E0004A8A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004A9A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A890 /* PBXContainerItemProxy */; }; - 46EB2E0004A9D0 /* PBXTargetDependency */ = { + 46EB2E0004A8C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004A9C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A8B0 /* PBXContainerItemProxy */; }; - 46EB2E0004A9F0 /* PBXTargetDependency */ = { + 46EB2E0004A8E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004A9E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A8D0 /* PBXContainerItemProxy */; }; - 46EB2E0004AA10 /* PBXTargetDependency */ = { + 46EB2E0004A900 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AA00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A8F0 /* PBXContainerItemProxy */; }; - 46EB2E0004AA30 /* PBXTargetDependency */ = { + 46EB2E0004A920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004AA20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A910 /* PBXContainerItemProxy */; }; - 46EB2E0004AA50 /* PBXTargetDependency */ = { + 46EB2E0004A940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004AA40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A930 /* PBXContainerItemProxy */; }; - 46EB2E0004AA70 /* PBXTargetDependency */ = { + 46EB2E0004A960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AA60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A950 /* PBXContainerItemProxy */; }; - 46EB2E0004AA90 /* PBXTargetDependency */ = { + 46EB2E0004A980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004AA80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A970 /* PBXContainerItemProxy */; }; - 46EB2E0004AAB0 /* PBXTargetDependency */ = { + 46EB2E0004A9A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004AAA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A990 /* PBXContainerItemProxy */; }; - 46EB2E0004AAD0 /* PBXTargetDependency */ = { + 46EB2E0004A9C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreExtension; target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; - targetProxy = 46EB2E0004AAC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A9B0 /* PBXContainerItemProxy */; }; - 46EB2E0004AAF0 /* PBXTargetDependency */ = { + 46EB2E0004A9E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AAE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A9D0 /* PBXContainerItemProxy */; }; - 46EB2E0004AB10 /* PBXTargetDependency */ = { + 46EB2E0004AA00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004AB00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004A9F0 /* PBXContainerItemProxy */; }; - 46EB2E0004AB30 /* PBXTargetDependency */ = { + 46EB2E0004AA20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004AB20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AA10 /* PBXContainerItemProxy */; }; - 46EB2E0004AB50 /* PBXTargetDependency */ = { + 46EB2E0004AA40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AB40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AA30 /* PBXContainerItemProxy */; }; - 46EB2E0004AB70 /* PBXTargetDependency */ = { + 46EB2E0004AA60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004AB60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AA50 /* PBXContainerItemProxy */; }; - 46EB2E0004AB90 /* PBXTargetDependency */ = { + 46EB2E0004AA80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004AB80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AA70 /* PBXContainerItemProxy */; }; - 46EB2E0004ABB0 /* PBXTargetDependency */ = { + 46EB2E0004AAA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004ABA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AA90 /* PBXContainerItemProxy */; }; - 46EB2E0004ABD0 /* PBXTargetDependency */ = { + 46EB2E0004AAC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004ABC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AAB0 /* PBXContainerItemProxy */; }; - 46EB2E0004ABF0 /* PBXTargetDependency */ = { + 46EB2E0004AAE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004ABE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AAD0 /* PBXContainerItemProxy */; }; - 46EB2E0004AC10 /* PBXTargetDependency */ = { + 46EB2E0004AB00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AC00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AAF0 /* PBXContainerItemProxy */; }; - 46EB2E0004AC30 /* PBXTargetDependency */ = { + 46EB2E0004AB20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 46EB2E0004AC20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AB10 /* PBXContainerItemProxy */; }; - 46EB2E0004AC50 /* PBXTargetDependency */ = { + 46EB2E0004AB40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 46EB2E0004AC40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AB30 /* PBXContainerItemProxy */; }; - 46EB2E0004AC70 /* PBXTargetDependency */ = { + 46EB2E0004AB60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AC60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AB50 /* PBXContainerItemProxy */; }; - 46EB2E0004AC90 /* PBXTargetDependency */ = { + 46EB2E0004AB80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 46EB2E0004AC80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AB70 /* PBXContainerItemProxy */; }; - 46EB2E0004ACB0 /* PBXTargetDependency */ = { + 46EB2E0004ABA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 46EB2E0004ACA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AB90 /* PBXContainerItemProxy */; }; - 46EB2E0004ACD0 /* PBXTargetDependency */ = { + 46EB2E0004ABC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004ACC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ABB0 /* PBXContainerItemProxy */; }; - 46EB2E0004ACF0 /* PBXTargetDependency */ = { + 46EB2E0004ABE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004ACE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ABD0 /* PBXContainerItemProxy */; }; - 46EB2E0004AD10 /* PBXTargetDependency */ = { + 46EB2E0004AC00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004AD00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ABF0 /* PBXContainerItemProxy */; }; - 46EB2E0004AD30 /* PBXTargetDependency */ = { + 46EB2E0004AC20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 46EB2E0004AD20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AC10 /* PBXContainerItemProxy */; }; - 46EB2E0004AD50 /* PBXTargetDependency */ = { + 46EB2E0004AC40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 46EB2E0004AD40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AC30 /* PBXContainerItemProxy */; }; - 46EB2E0004AD70 /* PBXTargetDependency */ = { + 46EB2E0004AC60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E0004AD60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AC50 /* PBXContainerItemProxy */; }; - 46EB2E0004AD90 /* PBXTargetDependency */ = { + 46EB2E0004AC80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004AD80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AC70 /* PBXContainerItemProxy */; }; - 46EB2E0004ADB0 /* PBXTargetDependency */ = { + 46EB2E0004ACA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-CoreModules"; target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 46EB2E0004ADA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AC90 /* PBXContainerItemProxy */; }; - 46EB2E0004ADD0 /* PBXTargetDependency */ = { + 46EB2E0004ACC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 46EB2E0004ADC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ACB0 /* PBXContainerItemProxy */; }; - 46EB2E0004ADF0 /* PBXTargetDependency */ = { + 46EB2E0004ACE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 46EB2E0004ADE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ACD0 /* PBXContainerItemProxy */; }; - 46EB2E0004AE10 /* PBXTargetDependency */ = { + 46EB2E0004AD00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTAnimation"; target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 46EB2E0004AE00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ACF0 /* PBXContainerItemProxy */; }; - 46EB2E0004AE30 /* PBXTargetDependency */ = { + 46EB2E0004AD20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 46EB2E0004AE20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AD10 /* PBXContainerItemProxy */; }; - 46EB2E0004AE50 /* PBXTargetDependency */ = { + 46EB2E0004AD40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 46EB2E0004AE40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AD30 /* PBXContainerItemProxy */; }; - 46EB2E0004AE70 /* PBXTargetDependency */ = { + 46EB2E0004AD60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 46EB2E0004AE60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AD50 /* PBXContainerItemProxy */; }; - 46EB2E0004AE90 /* PBXTargetDependency */ = { + 46EB2E0004AD80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 46EB2E0004AE80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AD70 /* PBXContainerItemProxy */; }; - 46EB2E0004AEB0 /* PBXTargetDependency */ = { + 46EB2E0004ADA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 46EB2E0004AEA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AD90 /* PBXContainerItemProxy */; }; - 46EB2E0004AED0 /* PBXTargetDependency */ = { + 46EB2E0004ADC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E0004AEC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ADB0 /* PBXContainerItemProxy */; }; - 46EB2E0004AEF0 /* PBXTargetDependency */ = { + 46EB2E0004ADE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004AEE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ADD0 /* PBXContainerItemProxy */; }; - 46EB2E0004AF10 /* PBXTargetDependency */ = { + 46EB2E0004AE00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 46EB2E0004AF00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004ADF0 /* PBXContainerItemProxy */; }; - 46EB2E0004AF30 /* PBXTargetDependency */ = { + 46EB2E0004AE20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 46EB2E0004AF20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AE10 /* PBXContainerItemProxy */; }; - 46EB2E0004AF50 /* PBXTargetDependency */ = { + 46EB2E0004AE40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004AF40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AE30 /* PBXContainerItemProxy */; }; - 46EB2E0004AF70 /* PBXTargetDependency */ = { + 46EB2E0004AE60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 46EB2E0004AF60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AE50 /* PBXContainerItemProxy */; }; - 46EB2E0004AF90 /* PBXTargetDependency */ = { + 46EB2E0004AE80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004AF80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AE70 /* PBXContainerItemProxy */; }; - 46EB2E0004AFB0 /* PBXTargetDependency */ = { + 46EB2E0004AEA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004AFA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AE90 /* PBXContainerItemProxy */; }; - 46EB2E0004AFD0 /* PBXTargetDependency */ = { + 46EB2E0004AEC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 46EB2E0004AFC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AEB0 /* PBXContainerItemProxy */; }; - 46EB2E0004AFF0 /* PBXTargetDependency */ = { + 46EB2E0004AEE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004AFE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AED0 /* PBXContainerItemProxy */; }; - 46EB2E0004B010 /* PBXTargetDependency */ = { + 46EB2E0004AF00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B000 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AEF0 /* PBXContainerItemProxy */; }; - 46EB2E0004B030 /* PBXTargetDependency */ = { + 46EB2E0004AF20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B020 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AF10 /* PBXContainerItemProxy */; }; - 46EB2E0004B050 /* PBXTargetDependency */ = { + 46EB2E0004AF40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 46EB2E0004B040 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AF30 /* PBXContainerItemProxy */; }; - 46EB2E0004B070 /* PBXTargetDependency */ = { + 46EB2E0004AF60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B060 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AF50 /* PBXContainerItemProxy */; }; - 46EB2E0004B090 /* PBXTargetDependency */ = { + 46EB2E0004AF80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B080 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AF70 /* PBXContainerItemProxy */; }; - 46EB2E0004B0B0 /* PBXTargetDependency */ = { + 46EB2E0004AFA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B0A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AF90 /* PBXContainerItemProxy */; }; - 46EB2E0004B0D0 /* PBXTargetDependency */ = { + 46EB2E0004AFC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 46EB2E0004B0C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AFB0 /* PBXContainerItemProxy */; }; - 46EB2E0004B0F0 /* PBXTargetDependency */ = { + 46EB2E0004AFE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTAnimation"; target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 46EB2E0004B0E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AFD0 /* PBXContainerItemProxy */; }; - 46EB2E0004B110 /* PBXTargetDependency */ = { + 46EB2E0004B000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 46EB2E0004B100 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004AFF0 /* PBXContainerItemProxy */; }; - 46EB2E0004B130 /* PBXTargetDependency */ = { + 46EB2E0004B020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 46EB2E0004B120 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B010 /* PBXContainerItemProxy */; }; - 46EB2E0004B150 /* PBXTargetDependency */ = { + 46EB2E0004B040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 46EB2E0004B140 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B030 /* PBXContainerItemProxy */; }; - 46EB2E0004B170 /* PBXTargetDependency */ = { + 46EB2E0004B060 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 46EB2E0004B160 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B050 /* PBXContainerItemProxy */; }; - 46EB2E0004B190 /* PBXTargetDependency */ = { + 46EB2E0004B080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 46EB2E0004B180 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B070 /* PBXContainerItemProxy */; }; - 46EB2E0004B1B0 /* PBXTargetDependency */ = { + 46EB2E0004B0A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 46EB2E0004B1A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B090 /* PBXContainerItemProxy */; }; - 46EB2E0004B1D0 /* PBXTargetDependency */ = { + 46EB2E0004B0C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 46EB2E0004B1C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B0B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B1F0 /* PBXTargetDependency */ = { + 46EB2E0004B0E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 46EB2E0004B1E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B0D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B210 /* PBXTargetDependency */ = { + 46EB2E0004B100 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 46EB2E0004B200 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B0F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B230 /* PBXTargetDependency */ = { + 46EB2E0004B120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B220 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B110 /* PBXContainerItemProxy */; }; - 46EB2E0004B250 /* PBXTargetDependency */ = { + 46EB2E0004B140 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E0004B240 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B130 /* PBXContainerItemProxy */; }; - 46EB2E0004B270 /* PBXTargetDependency */ = { + 46EB2E0004B160 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B260 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B150 /* PBXContainerItemProxy */; }; - 46EB2E0004B290 /* PBXTargetDependency */ = { + 46EB2E0004B180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B280 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B170 /* PBXContainerItemProxy */; }; - 46EB2E0004B2B0 /* PBXTargetDependency */ = { + 46EB2E0004B1A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B2A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B190 /* PBXContainerItemProxy */; }; - 46EB2E0004B2D0 /* PBXTargetDependency */ = { + 46EB2E0004B1C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B2C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B1B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B2F0 /* PBXTargetDependency */ = { + 46EB2E0004B1E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core-AccessibilityResources"; target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; - targetProxy = 46EB2E0004B2E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B1D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B310 /* PBXTargetDependency */ = { + 46EB2E0004B200 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B300 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B1F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B330 /* PBXTargetDependency */ = { + 46EB2E0004B220 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E0004B320 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B210 /* PBXContainerItemProxy */; }; - 46EB2E0004B350 /* PBXTargetDependency */ = { + 46EB2E0004B240 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E0004B340 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B230 /* PBXContainerItemProxy */; }; - 46EB2E0004B370 /* PBXTargetDependency */ = { + 46EB2E0004B260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B360 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B250 /* PBXContainerItemProxy */; }; - 46EB2E0004B390 /* PBXTargetDependency */ = { + 46EB2E0004B280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 46EB2E0004B380 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B270 /* PBXContainerItemProxy */; }; - 46EB2E0004B3B0 /* PBXTargetDependency */ = { + 46EB2E0004B2A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 46EB2E0004B3A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B290 /* PBXContainerItemProxy */; }; - 46EB2E0004B3D0 /* PBXTargetDependency */ = { + 46EB2E0004B2C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004B3C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B2B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B3F0 /* PBXTargetDependency */ = { + 46EB2E0004B2E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 46EB2E0004B3E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B2D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B410 /* PBXTargetDependency */ = { + 46EB2E0004B300 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B400 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B2F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B430 /* PBXTargetDependency */ = { + 46EB2E0004B320 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B420 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B310 /* PBXContainerItemProxy */; }; - 46EB2E0004B450 /* PBXTargetDependency */ = { + 46EB2E0004B340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B440 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B330 /* PBXContainerItemProxy */; }; - 46EB2E0004B470 /* PBXTargetDependency */ = { + 46EB2E0004B360 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B460 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B350 /* PBXContainerItemProxy */; }; - 46EB2E0004B490 /* PBXTargetDependency */ = { + 46EB2E0004B380 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 46EB2E0004B480 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B370 /* PBXContainerItemProxy */; }; - 46EB2E0004B4B0 /* PBXTargetDependency */ = { + 46EB2E0004B3A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B4A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B390 /* PBXContainerItemProxy */; }; - 46EB2E0004B4D0 /* PBXTargetDependency */ = { + 46EB2E0004B3C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B4C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B3B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B4F0 /* PBXTargetDependency */ = { + 46EB2E0004B3E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B4E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B3D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B510 /* PBXTargetDependency */ = { + 46EB2E0004B400 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B500 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B3F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B530 /* PBXTargetDependency */ = { + 46EB2E0004B420 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B520 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B410 /* PBXContainerItemProxy */; }; - 46EB2E0004B550 /* PBXTargetDependency */ = { + 46EB2E0004B440 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B540 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B430 /* PBXContainerItemProxy */; }; - 46EB2E0004B570 /* PBXTargetDependency */ = { + 46EB2E0004B460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B560 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B450 /* PBXContainerItemProxy */; }; - 46EB2E0004B590 /* PBXTargetDependency */ = { + 46EB2E0004B480 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B580 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B470 /* PBXContainerItemProxy */; }; - 46EB2E0004B5B0 /* PBXTargetDependency */ = { + 46EB2E0004B4A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B5A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B490 /* PBXContainerItemProxy */; }; - 46EB2E0004B5D0 /* PBXTargetDependency */ = { + 46EB2E0004B4C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B5C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B4B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B5F0 /* PBXTargetDependency */ = { + 46EB2E0004B4E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B5E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B4D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B610 /* PBXTargetDependency */ = { + 46EB2E0004B500 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B600 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B4F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B630 /* PBXTargetDependency */ = { + 46EB2E0004B520 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B620 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B510 /* PBXContainerItemProxy */; }; - 46EB2E0004B650 /* PBXTargetDependency */ = { + 46EB2E0004B540 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B640 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B530 /* PBXContainerItemProxy */; }; - 46EB2E0004B670 /* PBXTargetDependency */ = { + 46EB2E0004B560 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 46EB2E0004B660 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B550 /* PBXContainerItemProxy */; }; - 46EB2E0004B690 /* PBXTargetDependency */ = { + 46EB2E0004B580 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B680 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B570 /* PBXContainerItemProxy */; }; - 46EB2E0004B6B0 /* PBXTargetDependency */ = { + 46EB2E0004B5A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B6A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B590 /* PBXContainerItemProxy */; }; - 46EB2E0004B6D0 /* PBXTargetDependency */ = { + 46EB2E0004B5C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B6C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B5B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B6F0 /* PBXTargetDependency */ = { + 46EB2E0004B5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B6E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B5D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B710 /* PBXTargetDependency */ = { + 46EB2E0004B600 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B700 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B5F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B730 /* PBXTargetDependency */ = { + 46EB2E0004B620 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B720 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B610 /* PBXContainerItemProxy */; }; - 46EB2E0004B750 /* PBXTargetDependency */ = { + 46EB2E0004B640 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 46EB2E0004B740 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B630 /* PBXContainerItemProxy */; }; - 46EB2E0004B770 /* PBXTargetDependency */ = { + 46EB2E0004B660 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B760 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B650 /* PBXContainerItemProxy */; }; - 46EB2E0004B790 /* PBXTargetDependency */ = { + 46EB2E0004B680 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B780 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B670 /* PBXContainerItemProxy */; }; - 46EB2E0004B7B0 /* PBXTargetDependency */ = { + 46EB2E0004B6A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B7A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B690 /* PBXContainerItemProxy */; }; - 46EB2E0004B7D0 /* PBXTargetDependency */ = { + 46EB2E0004B6C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B7C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B6B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B7F0 /* PBXTargetDependency */ = { + 46EB2E0004B6E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B7E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B6D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B810 /* PBXTargetDependency */ = { + 46EB2E0004B700 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B800 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B6F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B830 /* PBXTargetDependency */ = { + 46EB2E0004B720 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B820 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B710 /* PBXContainerItemProxy */; }; - 46EB2E0004B850 /* PBXTargetDependency */ = { + 46EB2E0004B740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B840 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B730 /* PBXContainerItemProxy */; }; - 46EB2E0004B870 /* PBXTargetDependency */ = { + 46EB2E0004B760 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B860 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B750 /* PBXContainerItemProxy */; }; - 46EB2E0004B890 /* PBXTargetDependency */ = { + 46EB2E0004B780 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B880 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B770 /* PBXContainerItemProxy */; }; - 46EB2E0004B8B0 /* PBXTargetDependency */ = { + 46EB2E0004B7A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B8A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B790 /* PBXContainerItemProxy */; }; - 46EB2E0004B8D0 /* PBXTargetDependency */ = { + 46EB2E0004B7C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B8C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B7B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B8F0 /* PBXTargetDependency */ = { + 46EB2E0004B7E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004B8E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B7D0 /* PBXContainerItemProxy */; }; - 46EB2E0004B910 /* PBXTargetDependency */ = { + 46EB2E0004B800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B900 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B7F0 /* PBXContainerItemProxy */; }; - 46EB2E0004B930 /* PBXTargetDependency */ = { + 46EB2E0004B820 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B920 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B810 /* PBXContainerItemProxy */; }; - 46EB2E0004B950 /* PBXTargetDependency */ = { + 46EB2E0004B840 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B940 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B830 /* PBXContainerItemProxy */; }; - 46EB2E0004B970 /* PBXTargetDependency */ = { + 46EB2E0004B860 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004B960 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B850 /* PBXContainerItemProxy */; }; - 46EB2E0004B990 /* PBXTargetDependency */ = { + 46EB2E0004B880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004B980 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B870 /* PBXContainerItemProxy */; }; - 46EB2E0004B9B0 /* PBXTargetDependency */ = { + 46EB2E0004B8A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Codegen"; target = 66B8F5758E6F90E16807A85C003CE61F /* React-Codegen */; - targetProxy = 46EB2E0004B9A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B890 /* PBXContainerItemProxy */; }; - 46EB2E0004B9D0 /* PBXTargetDependency */ = { + 46EB2E0004B8C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004B9C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B8B0 /* PBXContainerItemProxy */; }; - 46EB2E0004B9F0 /* PBXTargetDependency */ = { + 46EB2E0004B8E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004B9E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B8D0 /* PBXContainerItemProxy */; }; - 46EB2E0004BA10 /* PBXTargetDependency */ = { + 46EB2E0004B900 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004BA00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B8F0 /* PBXContainerItemProxy */; }; - 46EB2E0004BA30 /* PBXTargetDependency */ = { + 46EB2E0004B920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BA20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B910 /* PBXContainerItemProxy */; }; - 46EB2E0004BA50 /* PBXTargetDependency */ = { + 46EB2E0004B940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BA40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B930 /* PBXContainerItemProxy */; }; - 46EB2E0004BA70 /* PBXTargetDependency */ = { + 46EB2E0004B960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = boost; target = EFEA55B1B776B6EB4B16F363BFE64D1A /* boost */; - targetProxy = 46EB2E0004BA60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B950 /* PBXContainerItemProxy */; }; - 46EB2E0004BA90 /* PBXTargetDependency */ = { + 46EB2E0004B980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004BA80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B970 /* PBXContainerItemProxy */; }; - 46EB2E0004BAB0 /* PBXTargetDependency */ = { + 46EB2E0004B9A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BAA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B990 /* PBXContainerItemProxy */; }; - 46EB2E0004BAD0 /* PBXTargetDependency */ = { + 46EB2E0004B9C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BAC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B9B0 /* PBXContainerItemProxy */; }; - 46EB2E0004BAF0 /* PBXTargetDependency */ = { + 46EB2E0004B9E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 46EB2E0004BAE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B9D0 /* PBXContainerItemProxy */; }; - 46EB2E0004BB10 /* PBXTargetDependency */ = { + 46EB2E0004BA00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 46EB2E0004BB00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004B9F0 /* PBXContainerItemProxy */; }; - 46EB2E0004BB30 /* PBXTargetDependency */ = { + 46EB2E0004BA20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-runtimeexecutor"; target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 46EB2E0004BB20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BA10 /* PBXContainerItemProxy */; }; - 46EB2E0004BB50 /* PBXTargetDependency */ = { + 46EB2E0004BA40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E0004BB40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BA30 /* PBXContainerItemProxy */; }; - 46EB2E0004BB70 /* PBXTargetDependency */ = { + 46EB2E0004BA60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BB60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BA50 /* PBXContainerItemProxy */; }; - 46EB2E0004BB90 /* PBXTargetDependency */ = { + 46EB2E0004BA80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-logger"; target = 083B602EA19B4AD50EC53C0602F29A7D /* React-logger */; - targetProxy = 46EB2E0004BB80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BA70 /* PBXContainerItemProxy */; }; - 46EB2E0004BBB0 /* PBXTargetDependency */ = { + 46EB2E0004BAA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E0004BBA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BA90 /* PBXContainerItemProxy */; }; - 46EB2E0004BBD0 /* PBXTargetDependency */ = { + 46EB2E0004BAC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BBC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BAB0 /* PBXContainerItemProxy */; }; - 46EB2E0004BBF0 /* PBXTargetDependency */ = { + 46EB2E0004BAE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 46EB2E0004BBE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BAD0 /* PBXContainerItemProxy */; }; - 46EB2E0004BC10 /* PBXTargetDependency */ = { + 46EB2E0004BB00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 46EB2E0004BC00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BAF0 /* PBXContainerItemProxy */; }; - 46EB2E0004BC30 /* PBXTargetDependency */ = { + 46EB2E0004BB20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E0004BC20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BB10 /* PBXContainerItemProxy */; }; - 46EB2E0004BC50 /* PBXTargetDependency */ = { + 46EB2E0004BB40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BC40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BB30 /* PBXContainerItemProxy */; }; - 46EB2E0004BC70 /* PBXTargetDependency */ = { + 46EB2E0004BB60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004BC60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BB50 /* PBXContainerItemProxy */; }; - 46EB2E0004BC90 /* PBXTargetDependency */ = { + 46EB2E0004BB80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BC80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BB70 /* PBXContainerItemProxy */; }; - 46EB2E0004BCB0 /* PBXTargetDependency */ = { + 46EB2E0004BBA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "hermes-engine"; target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 46EB2E0004BCA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BB90 /* PBXContainerItemProxy */; }; - 46EB2E0004BCD0 /* PBXTargetDependency */ = { + 46EB2E0004BBC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = boost; target = EFEA55B1B776B6EB4B16F363BFE64D1A /* boost */; - targetProxy = 46EB2E0004BCC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BBB0 /* PBXContainerItemProxy */; }; - 46EB2E0004BCF0 /* PBXTargetDependency */ = { + 46EB2E0004BBE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004BCE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BBD0 /* PBXContainerItemProxy */; }; - 46EB2E0004BD10 /* PBXTargetDependency */ = { + 46EB2E0004BC00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BD00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BBF0 /* PBXContainerItemProxy */; }; - 46EB2E0004BD30 /* PBXTargetDependency */ = { + 46EB2E0004BC20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BD20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BC10 /* PBXContainerItemProxy */; }; - 46EB2E0004BD50 /* PBXTargetDependency */ = { + 46EB2E0004BC40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E0004BD40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BC30 /* PBXContainerItemProxy */; }; - 46EB2E0004BD70 /* PBXTargetDependency */ = { + 46EB2E0004BC60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BD60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BC50 /* PBXContainerItemProxy */; }; - 46EB2E0004BD90 /* PBXTargetDependency */ = { + 46EB2E0004BC80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E0004BD80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BC70 /* PBXContainerItemProxy */; }; - 46EB2E0004BDB0 /* PBXTargetDependency */ = { + 46EB2E0004BCA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BDA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BC90 /* PBXContainerItemProxy */; }; - 46EB2E0004BDD0 /* PBXTargetDependency */ = { + 46EB2E0004BCC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004BDC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BCB0 /* PBXContainerItemProxy */; }; - 46EB2E0004BDF0 /* PBXTargetDependency */ = { + 46EB2E0004BCE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BDE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BCD0 /* PBXContainerItemProxy */; }; - 46EB2E0004BE10 /* PBXTargetDependency */ = { + 46EB2E0004BD00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BE00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BCF0 /* PBXContainerItemProxy */; }; - 46EB2E0004BE30 /* PBXTargetDependency */ = { + 46EB2E0004BD20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BE20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BD10 /* PBXContainerItemProxy */; }; - 46EB2E0004BE50 /* PBXTargetDependency */ = { + 46EB2E0004BD40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-logger"; target = 083B602EA19B4AD50EC53C0602F29A7D /* React-logger */; - targetProxy = 46EB2E0004BE40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BD30 /* PBXContainerItemProxy */; }; - 46EB2E0004BE70 /* PBXTargetDependency */ = { + 46EB2E0004BD60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-bridging"; target = 5D49FA97D16E84D298A7C7F5A6F1D615 /* React-bridging */; - targetProxy = 46EB2E0004BE60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BD50 /* PBXContainerItemProxy */; }; - 46EB2E0004BE90 /* PBXTargetDependency */ = { + 46EB2E0004BD80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 46EB2E0004BE80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BD70 /* PBXContainerItemProxy */; }; - 46EB2E0004BEB0 /* PBXTargetDependency */ = { + 46EB2E0004BDA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 46EB2E0004BEA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BD90 /* PBXContainerItemProxy */; }; - 46EB2E0004BED0 /* PBXTargetDependency */ = { + 46EB2E0004BDC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004BEC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BDB0 /* PBXContainerItemProxy */; }; - 46EB2E0004BEF0 /* PBXTargetDependency */ = { + 46EB2E0004BDE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 46EB2E0004BEE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BDD0 /* PBXContainerItemProxy */; }; - 46EB2E0004BF10 /* PBXTargetDependency */ = { + 46EB2E0004BE00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 46EB2E0004BF00 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BDF0 /* PBXContainerItemProxy */; }; - 46EB2E0004BF30 /* PBXTargetDependency */ = { + 46EB2E0004BE20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004BF20 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BE10 /* PBXContainerItemProxy */; }; - 46EB2E0004BF50 /* PBXTargetDependency */ = { + 46EB2E0004BE40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 46EB2E0004BF40 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BE30 /* PBXContainerItemProxy */; }; - 46EB2E0004BF70 /* PBXTargetDependency */ = { + 46EB2E0004BE60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 46EB2E0004BF60 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BE50 /* PBXContainerItemProxy */; }; - 46EB2E0004BF90 /* PBXTargetDependency */ = { + 46EB2E0004BE80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 46EB2E0004BF80 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BE70 /* PBXContainerItemProxy */; }; - 46EB2E0004BFB0 /* PBXTargetDependency */ = { + 46EB2E0004BEA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 46EB2E0004BFA0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BE90 /* PBXContainerItemProxy */; }; - 46EB2E0004BFD0 /* PBXTargetDependency */ = { + 46EB2E0004BEC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 46EB2E0004BFC0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BEB0 /* PBXContainerItemProxy */; }; - 46EB2E0004BFF0 /* PBXTargetDependency */ = { + 46EB2E0004BEE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-C++-gRPCCertificates-Cpp"; target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; - targetProxy = 46EB2E0004BFE0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BED0 /* PBXContainerItemProxy */; }; - 46EB2E0004C010 /* PBXTargetDependency */ = { + 46EB2E0004BF00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-Core"; target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 46EB2E0004C000 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BEF0 /* PBXContainerItemProxy */; }; - 46EB2E0004C030 /* PBXTargetDependency */ = { + 46EB2E0004BF20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = abseil; target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 46EB2E0004C020 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BF10 /* PBXContainerItemProxy */; }; - 46EB2E0004C050 /* PBXTargetDependency */ = { + 46EB2E0004BF40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "BoringSSL-GRPC"; target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 46EB2E0004C040 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BF30 /* PBXContainerItemProxy */; }; - 46EB2E0004C070 /* PBXTargetDependency */ = { + 46EB2E0004BF60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Libuv-gRPC"; target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; - targetProxy = 46EB2E0004C060 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BF50 /* PBXContainerItemProxy */; }; - 46EB2E0004C090 /* PBXTargetDependency */ = { + 46EB2E0004BF80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = abseil; target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 46EB2E0004C080 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BF70 /* PBXContainerItemProxy */; }; - 46EB2E0004C0B0 /* PBXTargetDependency */ = { + 46EB2E0004BFA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004C0A0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BF90 /* PBXContainerItemProxy */; }; - 46EB2E0004C0D0 /* PBXTargetDependency */ = { + 46EB2E0004BFC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004C0C0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BFB0 /* PBXContainerItemProxy */; }; - 46EB2E0004C0F0 /* PBXTargetDependency */ = { + 46EB2E0004BFE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 46EB2E0004C0E0 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BFD0 /* PBXContainerItemProxy */; }; - 46EB2E0004C110 /* PBXTargetDependency */ = { + 46EB2E0004C000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 46EB2E0004C100 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004BFF0 /* PBXContainerItemProxy */; }; - 46EB2E0004C130 /* PBXTargetDependency */ = { + 46EB2E0004C020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 46EB2E0004C120 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004C010 /* PBXContainerItemProxy */; }; - 46EB2E0004C150 /* PBXTargetDependency */ = { + 46EB2E0004C040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 46EB2E0004C140 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004C030 /* PBXContainerItemProxy */; }; - 46EB2E0004C170 /* PBXTargetDependency */ = { + 46EB2E0004C060 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 46EB2E0004C160 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004C050 /* PBXContainerItemProxy */; }; - 46EB2E0004C190 /* PBXTargetDependency */ = { + 46EB2E0004C080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 46EB2E0004C180 /* PBXContainerItemProxy */; + targetProxy = 46EB2E0004C070 /* PBXContainerItemProxy */; + }; + 46EB2E0004C0A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 46EB2E0004C090 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -49198,15 +49315,16 @@ PRODUCT_NAME = "$(TARGET_NAME)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; STRIP_INSTALLED_PRODUCT = NO; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; }; name = Release; }; - 46EB2E00022B00 /* Release */ = { + 46EB2E00022A20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00022BE0 /* BVLinearGradient.release.xcconfig */; + baseConfigurationReference = 46EB2E00022B00 /* BVLinearGradient.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49229,9 +49347,9 @@ }; name = Release; }; - 46EB2E00022B10 /* Debug */ = { + 46EB2E00022A30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00022BD0 /* BVLinearGradient.debug.xcconfig */; + baseConfigurationReference = 46EB2E00022AF0 /* BVLinearGradient.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49253,9 +49371,9 @@ }; name = Debug; }; - 46EB2E00022C40 /* Release */ = { + 46EB2E00022B60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00022CE0 /* Base64.release.xcconfig */; + baseConfigurationReference = 46EB2E00022C00 /* Base64.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49279,9 +49397,9 @@ }; name = Release; }; - 46EB2E00022C50 /* Debug */ = { + 46EB2E00022B70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00022CD0 /* Base64.debug.xcconfig */; + baseConfigurationReference = 46EB2E00022BF0 /* Base64.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49304,9 +49422,9 @@ }; name = Debug; }; - 46EB2E00022D40 /* Release */ = { + 46EB2E00022C60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024B60 /* BoringSSL-GRPC.release.xcconfig */; + baseConfigurationReference = 46EB2E00024A80 /* BoringSSL-GRPC.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49329,9 +49447,9 @@ }; name = Release; }; - 46EB2E00022D50 /* Debug */ = { + 46EB2E00022C70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024B50 /* BoringSSL-GRPC.debug.xcconfig */; + baseConfigurationReference = 46EB2E00024A70 /* BoringSSL-GRPC.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49353,9 +49471,9 @@ }; name = Debug; }; - 46EB2E00024BC0 /* Release */ = { + 46EB2E00024AE0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024C80 /* CocoaAsyncSocket.release.xcconfig */; + baseConfigurationReference = 46EB2E00024BA0 /* CocoaAsyncSocket.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49378,9 +49496,9 @@ }; name = Release; }; - 46EB2E00024BD0 /* Debug */ = { + 46EB2E00024AF0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024C70 /* CocoaAsyncSocket.debug.xcconfig */; + baseConfigurationReference = 46EB2E00024B90 /* CocoaAsyncSocket.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49402,9 +49520,9 @@ }; name = Debug; }; - 46EB2E00024CE0 /* Release */ = { + 46EB2E00024C00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024E10 /* CodePush.release.xcconfig */; + baseConfigurationReference = 46EB2E00024D30 /* CodePush.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49427,9 +49545,9 @@ }; name = Release; }; - 46EB2E00024CF0 /* Debug */ = { + 46EB2E00024C10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00024E00 /* CodePush.debug.xcconfig */; + baseConfigurationReference = 46EB2E00024D20 /* CodePush.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49451,9 +49569,9 @@ }; name = Debug; }; - 46EB2E00024E70 /* Release */ = { + 46EB2E00024D90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025010 /* DoubleConversion.release.xcconfig */; + baseConfigurationReference = 46EB2E00024F30 /* DoubleConversion.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49477,9 +49595,9 @@ }; name = Release; }; - 46EB2E00024E80 /* Debug */ = { + 46EB2E00024DA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025000 /* DoubleConversion.debug.xcconfig */; + baseConfigurationReference = 46EB2E00024F20 /* DoubleConversion.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49502,9 +49620,9 @@ }; name = Debug; }; - 46EB2E00025070 /* Release */ = { + 46EB2E00024F90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000250B0 /* FBLazyVector.release.xcconfig */; + baseConfigurationReference = 46EB2E00024FD0 /* FBLazyVector.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49518,9 +49636,9 @@ }; name = Release; }; - 46EB2E00025080 /* Debug */ = { + 46EB2E00024FA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000250A0 /* FBLazyVector.debug.xcconfig */; + baseConfigurationReference = 46EB2E00024FC0 /* FBLazyVector.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49533,9 +49651,9 @@ }; name = Debug; }; - 46EB2E000250E0 /* Release */ = { + 46EB2E00025000 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025120 /* FBReactNativeSpec.release.xcconfig */; + baseConfigurationReference = 46EB2E00025040 /* FBReactNativeSpec.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49549,9 +49667,9 @@ }; name = Release; }; - 46EB2E000250F0 /* Debug */ = { + 46EB2E00025010 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025110 /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = 46EB2E00025030 /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49564,9 +49682,9 @@ }; name = Debug; }; - 46EB2E00025150 /* Release */ = { + 46EB2E00025070 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025190 /* Firebase.release.xcconfig */; + baseConfigurationReference = 46EB2E000250B0 /* Firebase.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49580,9 +49698,9 @@ }; name = Release; }; - 46EB2E00025160 /* Debug */ = { + 46EB2E00025080 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025180 /* Firebase.debug.xcconfig */; + baseConfigurationReference = 46EB2E000250A0 /* Firebase.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49595,9 +49713,9 @@ }; name = Debug; }; - 46EB2E000251C0 /* Release */ = { + 46EB2E000250E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000253F0 /* FirebaseABTesting.release.xcconfig */; + baseConfigurationReference = 46EB2E00025310 /* FirebaseABTesting.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49620,9 +49738,9 @@ }; name = Release; }; - 46EB2E000251D0 /* Debug */ = { + 46EB2E000250F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000253E0 /* FirebaseABTesting.debug.xcconfig */; + baseConfigurationReference = 46EB2E00025300 /* FirebaseABTesting.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49644,9 +49762,9 @@ }; name = Debug; }; - 46EB2E00025440 /* Release */ = { + 46EB2E00025360 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025490 /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = 46EB2E000253B0 /* FirebaseAnalytics.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49660,9 +49778,9 @@ }; name = Release; }; - 46EB2E00025450 /* Debug */ = { + 46EB2E00025370 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00025480 /* FirebaseAnalytics.debug.xcconfig */; + baseConfigurationReference = 46EB2E000253A0 /* FirebaseAnalytics.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -49675,9 +49793,9 @@ }; name = Debug; }; - 46EB2E000254C0 /* Release */ = { + 46EB2E000253E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026540 /* FirebaseAuth.release.xcconfig */; + baseConfigurationReference = 46EB2E00026460 /* FirebaseAuth.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49700,9 +49818,9 @@ }; name = Release; }; - 46EB2E000254D0 /* Debug */ = { + 46EB2E000253F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026530 /* FirebaseAuth.debug.xcconfig */; + baseConfigurationReference = 46EB2E00026450 /* FirebaseAuth.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49724,9 +49842,9 @@ }; name = Debug; }; - 46EB2E00026590 /* Release */ = { + 46EB2E000264B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000268B0 /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = 46EB2E000267D0 /* FirebaseCore.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49749,9 +49867,9 @@ }; name = Release; }; - 46EB2E000265A0 /* Debug */ = { + 46EB2E000264C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000268A0 /* FirebaseCore.debug.xcconfig */; + baseConfigurationReference = 46EB2E000267C0 /* FirebaseCore.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49773,9 +49891,9 @@ }; name = Debug; }; - 46EB2E00026930 /* Release */ = { + 46EB2E00026850 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026A10 /* FirebaseCoreDiagnostics.release.xcconfig */; + baseConfigurationReference = 46EB2E00026930 /* FirebaseCoreDiagnostics.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49797,9 +49915,9 @@ }; name = Release; }; - 46EB2E00026940 /* Debug */ = { + 46EB2E00026860 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026A00 /* FirebaseCoreDiagnostics.debug.xcconfig */; + baseConfigurationReference = 46EB2E00026920 /* FirebaseCoreDiagnostics.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49820,9 +49938,9 @@ }; name = Debug; }; - 46EB2E00026A60 /* Release */ = { + 46EB2E00026980 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026BB0 /* FirebaseCoreExtension.release.xcconfig */; + baseConfigurationReference = 46EB2E00026AD0 /* FirebaseCoreExtension.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49845,9 +49963,9 @@ }; name = Release; }; - 46EB2E00026A70 /* Debug */ = { + 46EB2E00026990 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026BA0 /* FirebaseCoreExtension.debug.xcconfig */; + baseConfigurationReference = 46EB2E00026AC0 /* FirebaseCoreExtension.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49869,9 +49987,9 @@ }; name = Debug; }; - 46EB2E00026C10 /* Release */ = { + 46EB2E00026B30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026D40 /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = 46EB2E00026C60 /* FirebaseCoreInternal.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49895,9 +50013,9 @@ }; name = Release; }; - 46EB2E00026C20 /* Debug */ = { + 46EB2E00026B40 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00026D30 /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = 46EB2E00026C50 /* FirebaseCoreInternal.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49920,9 +50038,9 @@ }; name = Debug; }; - 46EB2E00026DE0 /* Release */ = { + 46EB2E00026D00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00027A80 /* FirebaseCrashlytics.release.xcconfig */; + baseConfigurationReference = 46EB2E000279A0 /* FirebaseCrashlytics.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49944,9 +50062,9 @@ }; name = Release; }; - 46EB2E00026DF0 /* Debug */ = { + 46EB2E00026D10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00027A70 /* FirebaseCrashlytics.debug.xcconfig */; + baseConfigurationReference = 46EB2E00027990 /* FirebaseCrashlytics.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -49967,9 +50085,9 @@ }; name = Debug; }; - 46EB2E00027AD0 /* Release */ = { + 46EB2E000279F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00028B60 /* FirebaseDatabase.release.xcconfig */; + baseConfigurationReference = 46EB2E00028A80 /* FirebaseDatabase.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -49992,9 +50110,9 @@ }; name = Release; }; - 46EB2E00027AE0 /* Debug */ = { + 46EB2E00027A00 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00028B50 /* FirebaseDatabase.debug.xcconfig */; + baseConfigurationReference = 46EB2E00028A70 /* FirebaseDatabase.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50016,9 +50134,9 @@ }; name = Debug; }; - 46EB2E00028BB0 /* Release */ = { + 46EB2E00028AD0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00029C20 /* FirebaseFirestore.release.xcconfig */; + baseConfigurationReference = 46EB2E00029B40 /* FirebaseFirestore.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50041,9 +50159,9 @@ }; name = Release; }; - 46EB2E00028BC0 /* Debug */ = { + 46EB2E00028AE0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00029C10 /* FirebaseFirestore.debug.xcconfig */; + baseConfigurationReference = 46EB2E00029B30 /* FirebaseFirestore.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50065,9 +50183,9 @@ }; name = Debug; }; - 46EB2E00029C70 /* Release */ = { + 46EB2E00029B90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002A020 /* FirebaseInstallations.release.xcconfig */; + baseConfigurationReference = 46EB2E00029F40 /* FirebaseInstallations.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50089,9 +50207,9 @@ }; name = Release; }; - 46EB2E00029C80 /* Debug */ = { + 46EB2E00029BA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002A010 /* FirebaseInstallations.debug.xcconfig */; + baseConfigurationReference = 46EB2E00029F30 /* FirebaseInstallations.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50112,9 +50230,9 @@ }; name = Debug; }; - 46EB2E0002A070 /* Release */ = { + 46EB2E00029F90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002A650 /* FirebaseMessaging.release.xcconfig */; + baseConfigurationReference = 46EB2E0002A570 /* FirebaseMessaging.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50137,9 +50255,9 @@ }; name = Release; }; - 46EB2E0002A080 /* Debug */ = { + 46EB2E00029FA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002A640 /* FirebaseMessaging.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002A560 /* FirebaseMessaging.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50161,9 +50279,9 @@ }; name = Debug; }; - 46EB2E0002A6A0 /* Release */ = { + 46EB2E0002A5C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002AA00 /* FirebaseRemoteConfig.release.xcconfig */; + baseConfigurationReference = 46EB2E0002A920 /* FirebaseRemoteConfig.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50186,9 +50304,9 @@ }; name = Release; }; - 46EB2E0002A6B0 /* Debug */ = { + 46EB2E0002A5D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002A9F0 /* FirebaseRemoteConfig.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002A910 /* FirebaseRemoteConfig.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50210,9 +50328,9 @@ }; name = Debug; }; - 46EB2E0002AA50 /* Release */ = { + 46EB2E0002A970 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002AD30 /* Flipper.release.xcconfig */; + baseConfigurationReference = 46EB2E0002AC50 /* Flipper.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50236,9 +50354,9 @@ }; name = Release; }; - 46EB2E0002AA60 /* Debug */ = { + 46EB2E0002A980 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002AD20 /* Flipper.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002AC40 /* Flipper.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50261,9 +50379,9 @@ }; name = Debug; }; - 46EB2E0002AD90 /* Release */ = { + 46EB2E0002ACB0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002AE40 /* Flipper-Boost-iOSX.release.xcconfig */; + baseConfigurationReference = 46EB2E0002AD60 /* Flipper-Boost-iOSX.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50287,9 +50405,9 @@ }; name = Release; }; - 46EB2E0002ADA0 /* Debug */ = { + 46EB2E0002ACC0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002AE30 /* Flipper-Boost-iOSX.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002AD50 /* Flipper-Boost-iOSX.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50312,9 +50430,9 @@ }; name = Debug; }; - 46EB2E0002AEA0 /* Release */ = { + 46EB2E0002ADC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002B040 /* Flipper-DoubleConversion.release.xcconfig */; + baseConfigurationReference = 46EB2E0002AF60 /* Flipper-DoubleConversion.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50337,9 +50455,9 @@ }; name = Release; }; - 46EB2E0002AEB0 /* Debug */ = { + 46EB2E0002ADD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002B030 /* Flipper-DoubleConversion.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002AF50 /* Flipper-DoubleConversion.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50361,9 +50479,9 @@ }; name = Debug; }; - 46EB2E0002B0A0 /* Release */ = { + 46EB2E0002AFC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002B1F0 /* Flipper-Fmt.release.xcconfig */; + baseConfigurationReference = 46EB2E0002B110 /* Flipper-Fmt.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50387,9 +50505,9 @@ }; name = Release; }; - 46EB2E0002B0B0 /* Debug */ = { + 46EB2E0002AFD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002B1E0 /* Flipper-Fmt.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002B100 /* Flipper-Fmt.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50412,9 +50530,9 @@ }; name = Debug; }; - 46EB2E0002B250 /* Release */ = { + 46EB2E0002B170 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002E8C0 /* Flipper-Folly.release.xcconfig */; + baseConfigurationReference = 46EB2E0002E7E0 /* Flipper-Folly.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50438,9 +50556,9 @@ }; name = Release; }; - 46EB2E0002B260 /* Debug */ = { + 46EB2E0002B180 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002E8B0 /* Flipper-Folly.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002E7D0 /* Flipper-Folly.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50463,9 +50581,9 @@ }; name = Debug; }; - 46EB2E0002E920 /* Release */ = { + 46EB2E0002E840 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002E970 /* Flipper-Glog.release.xcconfig */; + baseConfigurationReference = 46EB2E0002E890 /* Flipper-Glog.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50478,9 +50596,9 @@ }; name = Release; }; - 46EB2E0002E930 /* Debug */ = { + 46EB2E0002E850 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002E960 /* Flipper-Glog.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002E880 /* Flipper-Glog.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50492,9 +50610,9 @@ }; name = Debug; }; - 46EB2E0002E9A0 /* Release */ = { + 46EB2E0002E8C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002EAA0 /* Flipper-PeerTalk.release.xcconfig */; + baseConfigurationReference = 46EB2E0002E9C0 /* Flipper-PeerTalk.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50517,9 +50635,9 @@ }; name = Release; }; - 46EB2E0002E9B0 /* Debug */ = { + 46EB2E0002E8D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002EA90 /* Flipper-PeerTalk.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002E9B0 /* Flipper-PeerTalk.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50541,9 +50659,9 @@ }; name = Debug; }; - 46EB2E0002EB00 /* Release */ = { + 46EB2E0002EA20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002F550 /* Flipper-RSocket.release.xcconfig */; + baseConfigurationReference = 46EB2E0002F470 /* Flipper-RSocket.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50567,9 +50685,9 @@ }; name = Release; }; - 46EB2E0002EB10 /* Debug */ = { + 46EB2E0002EA30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002F540 /* Flipper-RSocket.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002F460 /* Flipper-RSocket.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50592,9 +50710,9 @@ }; name = Debug; }; - 46EB2E0002F5B0 /* Release */ = { + 46EB2E0002F4D0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FCB0 /* FlipperKit.release.xcconfig */; + baseConfigurationReference = 46EB2E0002FBD0 /* FlipperKit.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50619,9 +50737,9 @@ }; name = Release; }; - 46EB2E0002F5C0 /* Debug */ = { + 46EB2E0002F4E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FCA0 /* FlipperKit.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002FBC0 /* FlipperKit.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -50645,9 +50763,9 @@ }; name = Debug; }; - 46EB2E0002FD40 /* Release */ = { + 46EB2E0002FC60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FE40 /* GTMSessionFetcher.release.xcconfig */; + baseConfigurationReference = 46EB2E0002FD60 /* GTMSessionFetcher.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50669,9 +50787,9 @@ }; name = Release; }; - 46EB2E0002FD50 /* Debug */ = { + 46EB2E0002FC70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FE30 /* GTMSessionFetcher.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002FD50 /* GTMSessionFetcher.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50692,9 +50810,9 @@ }; name = Debug; }; - 46EB2E0002FE90 /* Release */ = { + 46EB2E0002FDB0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FEE0 /* GoogleAppMeasurement.release.xcconfig */; + baseConfigurationReference = 46EB2E0002FE00 /* GoogleAppMeasurement.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50708,9 +50826,9 @@ }; name = Release; }; - 46EB2E0002FEA0 /* Debug */ = { + 46EB2E0002FDC0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0002FED0 /* GoogleAppMeasurement.debug.xcconfig */; + baseConfigurationReference = 46EB2E0002FDF0 /* GoogleAppMeasurement.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50723,9 +50841,9 @@ }; name = Debug; }; - 46EB2E0002FF10 /* Release */ = { + 46EB2E0002FE30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030330 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 46EB2E00030250 /* GoogleDataTransport.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50747,9 +50865,9 @@ }; name = Release; }; - 46EB2E0002FF20 /* Debug */ = { + 46EB2E0002FE40 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030320 /* GoogleDataTransport.debug.xcconfig */; + baseConfigurationReference = 46EB2E00030240 /* GoogleDataTransport.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50770,9 +50888,9 @@ }; name = Debug; }; - 46EB2E00030380 /* Release */ = { + 46EB2E000302A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030880 /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 46EB2E000307A0 /* GoogleUtilities.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50795,9 +50913,9 @@ }; name = Release; }; - 46EB2E00030390 /* Debug */ = { + 46EB2E000302B0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030870 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = 46EB2E00030790 /* GoogleUtilities.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50819,9 +50937,9 @@ }; name = Debug; }; - 46EB2E00030900 /* Release */ = { + 46EB2E00030820 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030F30 /* JWT.release.xcconfig */; + baseConfigurationReference = 46EB2E00030CC0 /* JWT.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50844,9 +50962,9 @@ }; name = Release; }; - 46EB2E00030910 /* Debug */ = { + 46EB2E00030830 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00030F20 /* JWT.debug.xcconfig */; + baseConfigurationReference = 46EB2E00030CB0 /* JWT.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50868,9 +50986,9 @@ }; name = Debug; }; - 46EB2E00030F90 /* Release */ = { + 46EB2E00030D20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00031300 /* Libuv-gRPC.release.xcconfig */; + baseConfigurationReference = 46EB2E00031090 /* Libuv-gRPC.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50893,9 +51011,9 @@ }; name = Release; }; - 46EB2E00030FA0 /* Debug */ = { + 46EB2E00030D30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000312F0 /* Libuv-gRPC.debug.xcconfig */; + baseConfigurationReference = 46EB2E00031080 /* Libuv-gRPC.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50917,9 +51035,9 @@ }; name = Debug; }; - 46EB2E00031360 /* Release */ = { + 46EB2E000310F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000313B0 /* OpenSSL-Universal.release.xcconfig */; + baseConfigurationReference = 46EB2E00031140 /* OpenSSL-Universal.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50932,9 +51050,9 @@ }; name = Release; }; - 46EB2E00031370 /* Debug */ = { + 46EB2E00031100 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000313A0 /* OpenSSL-Universal.debug.xcconfig */; + baseConfigurationReference = 46EB2E00031130 /* OpenSSL-Universal.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -50946,9 +51064,9 @@ }; name = Debug; }; - 46EB2E000313E0 /* Release */ = { + 46EB2E00031170 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000316E0 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 46EB2E00031470 /* PromisesObjC.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50971,9 +51089,9 @@ }; name = Release; }; - 46EB2E000313F0 /* Debug */ = { + 46EB2E00031180 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000316D0 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = 46EB2E00031460 /* PromisesObjC.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -50995,9 +51113,9 @@ }; name = Debug; }; - 46EB2E00031760 /* Release */ = { + 46EB2E000314F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000343B0 /* RCT-Folly.release.xcconfig */; + baseConfigurationReference = 46EB2E00034140 /* RCT-Folly.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51020,9 +51138,9 @@ }; name = Release; }; - 46EB2E00031770 /* Debug */ = { + 46EB2E00031500 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000343A0 /* RCT-Folly.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034130 /* RCT-Folly.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51044,9 +51162,9 @@ }; name = Debug; }; - 46EB2E00034440 /* Release */ = { + 46EB2E000341D0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034480 /* RCTRequired.release.xcconfig */; + baseConfigurationReference = 46EB2E00034210 /* RCTRequired.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -51060,9 +51178,9 @@ }; name = Release; }; - 46EB2E00034450 /* Debug */ = { + 46EB2E000341E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034470 /* RCTRequired.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034200 /* RCTRequired.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -51075,9 +51193,9 @@ }; name = Debug; }; - 46EB2E000344B0 /* Release */ = { + 46EB2E00034240 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034570 /* RCTTypeSafety.release.xcconfig */; + baseConfigurationReference = 46EB2E00034300 /* RCTTypeSafety.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51102,9 +51220,9 @@ }; name = Release; }; - 46EB2E000344C0 /* Debug */ = { + 46EB2E00034250 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034560 /* RCTTypeSafety.debug.xcconfig */; + baseConfigurationReference = 46EB2E000342F0 /* RCTTypeSafety.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51128,9 +51246,9 @@ }; name = Debug; }; - 46EB2E00034600 /* Release */ = { + 46EB2E00034390 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000346B0 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = 46EB2E00034440 /* RNCAsyncStorage.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51153,9 +51271,9 @@ }; name = Release; }; - 46EB2E00034610 /* Debug */ = { + 46EB2E000343A0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000346A0 /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034430 /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51177,9 +51295,9 @@ }; name = Debug; }; - 46EB2E00034710 /* Release */ = { + 46EB2E000344A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000347D0 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 46EB2E00034560 /* RNCMaskedView.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51202,9 +51320,9 @@ }; name = Release; }; - 46EB2E00034720 /* Debug */ = { + 46EB2E000344B0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000347C0 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034550 /* RNCMaskedView.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51226,9 +51344,9 @@ }; name = Debug; }; - 46EB2E00034830 /* Release */ = { + 46EB2E000345C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034910 /* RNCPicker.release.xcconfig */; + baseConfigurationReference = 46EB2E000346A0 /* RNCPicker.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51251,9 +51369,9 @@ }; name = Release; }; - 46EB2E00034840 /* Debug */ = { + 46EB2E000345D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034900 /* RNCPicker.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034690 /* RNCPicker.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51275,9 +51393,9 @@ }; name = Debug; }; - 46EB2E00034970 /* Release */ = { + 46EB2E00034700 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034A50 /* RNDeviceInfo.release.xcconfig */; + baseConfigurationReference = 46EB2E000347E0 /* RNDeviceInfo.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51300,9 +51418,9 @@ }; name = Release; }; - 46EB2E00034980 /* Debug */ = { + 46EB2E00034710 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034A40 /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 46EB2E000347D0 /* RNDeviceInfo.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51324,9 +51442,9 @@ }; name = Debug; }; - 46EB2E00034AB0 /* Release */ = { + 46EB2E00034840 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034B50 /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 46EB2E000348E0 /* RNFBAnalytics.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51350,9 +51468,9 @@ }; name = Release; }; - 46EB2E00034AC0 /* Debug */ = { + 46EB2E00034850 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034B40 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = 46EB2E000348D0 /* RNFBAnalytics.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51375,9 +51493,9 @@ }; name = Debug; }; - 46EB2E00034BB0 /* Release */ = { + 46EB2E00034940 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034D70 /* RNFBApp.release.xcconfig */; + baseConfigurationReference = 46EB2E00034B00 /* RNFBApp.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51401,9 +51519,9 @@ }; name = Release; }; - 46EB2E00034BC0 /* Debug */ = { + 46EB2E00034950 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034D60 /* RNFBApp.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034AF0 /* RNFBApp.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51426,9 +51544,9 @@ }; name = Debug; }; - 46EB2E00034DD0 /* Release */ = { + 46EB2E00034B60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034E70 /* RNFBAuth.release.xcconfig */; + baseConfigurationReference = 46EB2E00034C00 /* RNFBAuth.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51451,9 +51569,9 @@ }; name = Release; }; - 46EB2E00034DE0 /* Debug */ = { + 46EB2E00034B70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034E60 /* RNFBAuth.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034BF0 /* RNFBAuth.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51475,9 +51593,9 @@ }; name = Debug; }; - 46EB2E00034ED0 /* Release */ = { + 46EB2E00034C60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034FB0 /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = 46EB2E00034D40 /* RNFBCrashlytics.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51501,9 +51619,9 @@ }; name = Release; }; - 46EB2E00034EE0 /* Debug */ = { + 46EB2E00034C70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00034FA0 /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034D30 /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51526,9 +51644,9 @@ }; name = Debug; }; - 46EB2E00035010 /* Release */ = { + 46EB2E00034DA0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035170 /* RNFBDatabase.release.xcconfig */; + baseConfigurationReference = 46EB2E00034F00 /* RNFBDatabase.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51552,9 +51670,9 @@ }; name = Release; }; - 46EB2E00035020 /* Debug */ = { + 46EB2E00034DB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035160 /* RNFBDatabase.debug.xcconfig */; + baseConfigurationReference = 46EB2E00034EF0 /* RNFBDatabase.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51577,9 +51695,9 @@ }; name = Debug; }; - 46EB2E000351D0 /* Release */ = { + 46EB2E00034F60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035350 /* RNFBFirestore.release.xcconfig */; + baseConfigurationReference = 46EB2E000350E0 /* RNFBFirestore.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51603,9 +51721,9 @@ }; name = Release; }; - 46EB2E000351E0 /* Debug */ = { + 46EB2E00034F70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035340 /* RNFBFirestore.debug.xcconfig */; + baseConfigurationReference = 46EB2E000350D0 /* RNFBFirestore.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51628,9 +51746,9 @@ }; name = Debug; }; - 46EB2E000353B0 /* Release */ = { + 46EB2E00035140 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000354F0 /* RNFBMessaging.release.xcconfig */; + baseConfigurationReference = 46EB2E00035280 /* RNFBMessaging.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51654,9 +51772,9 @@ }; name = Release; }; - 46EB2E000353C0 /* Debug */ = { + 46EB2E00035150 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000354E0 /* RNFBMessaging.debug.xcconfig */; + baseConfigurationReference = 46EB2E00035270 /* RNFBMessaging.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51679,9 +51797,9 @@ }; name = Debug; }; - 46EB2E00035550 /* Release */ = { + 46EB2E000352E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000355F0 /* RNFBRemoteConfig.release.xcconfig */; + baseConfigurationReference = 46EB2E00035380 /* RNFBRemoteConfig.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51705,9 +51823,9 @@ }; name = Release; }; - 46EB2E00035560 /* Debug */ = { + 46EB2E000352F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000355E0 /* RNFBRemoteConfig.debug.xcconfig */; + baseConfigurationReference = 46EB2E00035370 /* RNFBRemoteConfig.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -51730,9 +51848,9 @@ }; name = Debug; }; - 46EB2E00035650 /* Release */ = { + 46EB2E000353E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035750 /* RNFastImage.release.xcconfig */; + baseConfigurationReference = 46EB2E000354E0 /* RNFastImage.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51755,9 +51873,9 @@ }; name = Release; }; - 46EB2E00035660 /* Debug */ = { + 46EB2E000353F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035740 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = 46EB2E000354D0 /* RNFastImage.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51779,9 +51897,9 @@ }; name = Debug; }; - 46EB2E000357B0 /* Release */ = { + 46EB2E00035540 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035B10 /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = 46EB2E000358A0 /* RNGestureHandler.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51804,9 +51922,9 @@ }; name = Release; }; - 46EB2E000357C0 /* Debug */ = { + 46EB2E00035550 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035B00 /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = 46EB2E00035890 /* RNGestureHandler.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51828,9 +51946,9 @@ }; name = Debug; }; - 46EB2E00035B70 /* Release */ = { + 46EB2E00035900 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035C10 /* RNRate.release.xcconfig */; + baseConfigurationReference = 46EB2E000359A0 /* RNRate.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51853,9 +51971,9 @@ }; name = Release; }; - 46EB2E00035B80 /* Debug */ = { + 46EB2E00035910 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00035C00 /* RNRate.debug.xcconfig */; + baseConfigurationReference = 46EB2E00035990 /* RNRate.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51877,9 +51995,9 @@ }; name = Debug; }; - 46EB2E00035C70 /* Release */ = { + 46EB2E00035A00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000364D0 /* RNReanimated.release.xcconfig */; + baseConfigurationReference = 46EB2E00036260 /* RNReanimated.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51902,9 +52020,9 @@ }; name = Release; }; - 46EB2E00035C80 /* Debug */ = { + 46EB2E00035A10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000364C0 /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = 46EB2E00036250 /* RNReanimated.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51926,9 +52044,9 @@ }; name = Debug; }; - 46EB2E00036530 /* Release */ = { + 46EB2E000362C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00036E00 /* RNSVG.release.xcconfig */; + baseConfigurationReference = 46EB2E00036B90 /* RNSVG.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51951,9 +52069,9 @@ }; name = Release; }; - 46EB2E00036540 /* Debug */ = { + 46EB2E000362D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00036DF0 /* RNSVG.debug.xcconfig */; + baseConfigurationReference = 46EB2E00036B80 /* RNSVG.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -51975,9 +52093,9 @@ }; name = Debug; }; - 46EB2E00036E60 /* Release */ = { + 46EB2E00036BF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000370D0 /* RNScreens.release.xcconfig */; + baseConfigurationReference = 46EB2E00036E60 /* RNScreens.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52000,9 +52118,9 @@ }; name = Release; }; - 46EB2E00036E70 /* Debug */ = { + 46EB2E00036C00 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000370C0 /* RNScreens.debug.xcconfig */; + baseConfigurationReference = 46EB2E00036E50 /* RNScreens.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52024,9 +52142,9 @@ }; name = Debug; }; - 46EB2E00037130 /* Release */ = { + 46EB2E00036EC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00037330 /* RNShare.release.xcconfig */; + baseConfigurationReference = 46EB2E000370C0 /* RNShare.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52049,9 +52167,9 @@ }; name = Release; }; - 46EB2E00037140 /* Debug */ = { + 46EB2E00036ED0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00037320 /* RNShare.debug.xcconfig */; + baseConfigurationReference = 46EB2E000370B0 /* RNShare.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52073,9 +52191,9 @@ }; name = Debug; }; - 46EB2E00037390 /* Release */ = { + 46EB2E00037120 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00037430 /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = 46EB2E000371C0 /* RNVectorIcons.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52098,9 +52216,9 @@ }; name = Release; }; - 46EB2E000373A0 /* Debug */ = { + 46EB2E00037130 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00037420 /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = 46EB2E000371B0 /* RNVectorIcons.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -52122,9 +52240,9 @@ }; name = Debug; }; - 46EB2E00037490 /* Release */ = { + 46EB2E00037220 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000374D0 /* React.release.xcconfig */; + baseConfigurationReference = 46EB2E00037260 /* React.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52138,9 +52256,9 @@ }; name = Release; }; - 46EB2E000374A0 /* Debug */ = { + 46EB2E00037230 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000374C0 /* React.debug.xcconfig */; + baseConfigurationReference = 46EB2E00037250 /* React.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52153,9 +52271,9 @@ }; name = Debug; }; - 46EB2E00037500 /* Release */ = { + 46EB2E00037290 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000375A0 /* React-Codegen.release.xcconfig */; + baseConfigurationReference = 46EB2E00037330 /* React-Codegen.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52180,9 +52298,9 @@ }; name = Release; }; - 46EB2E00037510 /* Debug */ = { + 46EB2E000372A0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00037590 /* React-Codegen.debug.xcconfig */; + baseConfigurationReference = 46EB2E00037320 /* React-Codegen.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52206,9 +52324,9 @@ }; name = Debug; }; - 46EB2E00037630 /* Release */ = { + 46EB2E000373C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039050 /* React-Core.release.xcconfig */; + baseConfigurationReference = 46EB2E00038DE0 /* React-Core.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52234,9 +52352,9 @@ }; name = Release; }; - 46EB2E00037640 /* Debug */ = { + 46EB2E000373D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039040 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 46EB2E00038DD0 /* React-Core.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52265,9 +52383,9 @@ }; name = Debug; }; - 46EB2E000376B0 /* Release */ = { + 46EB2E00037440 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039050 /* React-Core.release.xcconfig */; + baseConfigurationReference = 46EB2E00038DE0 /* React-Core.release.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; IBSC_MODULE = React; @@ -52281,9 +52399,9 @@ }; name = Release; }; - 46EB2E000376C0 /* Debug */ = { + 46EB2E00037450 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039040 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 46EB2E00038DD0 /* React-Core.debug.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; IBSC_MODULE = React; @@ -52297,9 +52415,9 @@ }; name = Debug; }; - 46EB2E000390E0 /* Release */ = { + 46EB2E00038E70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039330 /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = 46EB2E000390C0 /* React-CoreModules.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52323,9 +52441,9 @@ }; name = Release; }; - 46EB2E000390F0 /* Debug */ = { + 46EB2E00038E80 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039320 /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = 46EB2E000390B0 /* React-CoreModules.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52348,9 +52466,9 @@ }; name = Debug; }; - 46EB2E00039390 /* Release */ = { + 46EB2E00039120 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000393D0 /* React-RCTActionSheet.release.xcconfig */; + baseConfigurationReference = 46EB2E00039160 /* React-RCTActionSheet.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52364,9 +52482,9 @@ }; name = Release; }; - 46EB2E000393A0 /* Debug */ = { + 46EB2E00039130 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000393C0 /* React-RCTActionSheet.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039150 /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52379,9 +52497,9 @@ }; name = Debug; }; - 46EB2E00039400 /* Release */ = { + 46EB2E00039190 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039770 /* React-RCTAnimation.release.xcconfig */; + baseConfigurationReference = 46EB2E00039500 /* React-RCTAnimation.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52405,9 +52523,9 @@ }; name = Release; }; - 46EB2E00039410 /* Debug */ = { + 46EB2E000391A0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039760 /* React-RCTAnimation.debug.xcconfig */; + baseConfigurationReference = 46EB2E000394F0 /* React-RCTAnimation.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52430,9 +52548,9 @@ }; name = Debug; }; - 46EB2E000397D0 /* Release */ = { + 46EB2E00039560 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000398D0 /* React-RCTBlob.release.xcconfig */; + baseConfigurationReference = 46EB2E00039660 /* React-RCTBlob.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52456,9 +52574,9 @@ }; name = Release; }; - 46EB2E000397E0 /* Debug */ = { + 46EB2E00039570 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000398C0 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039650 /* React-RCTBlob.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52481,9 +52599,9 @@ }; name = Debug; }; - 46EB2E00039930 /* Release */ = { + 46EB2E000396C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039AC0 /* React-RCTImage.release.xcconfig */; + baseConfigurationReference = 46EB2E00039850 /* React-RCTImage.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52507,9 +52625,9 @@ }; name = Release; }; - 46EB2E00039940 /* Debug */ = { + 46EB2E000396D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039AB0 /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039840 /* React-RCTImage.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52532,9 +52650,9 @@ }; name = Debug; }; - 46EB2E00039B20 /* Release */ = { + 46EB2E000398B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039BC0 /* React-RCTLinking.release.xcconfig */; + baseConfigurationReference = 46EB2E00039950 /* React-RCTLinking.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52558,9 +52676,9 @@ }; name = Release; }; - 46EB2E00039B30 /* Debug */ = { + 46EB2E000398C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039BB0 /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039940 /* React-RCTLinking.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52583,9 +52701,9 @@ }; name = Debug; }; - 46EB2E00039C20 /* Release */ = { + 46EB2E000399B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039D00 /* React-RCTNetwork.release.xcconfig */; + baseConfigurationReference = 46EB2E00039A90 /* React-RCTNetwork.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52609,9 +52727,9 @@ }; name = Release; }; - 46EB2E00039C30 /* Debug */ = { + 46EB2E000399C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039CF0 /* React-RCTNetwork.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039A80 /* React-RCTNetwork.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52634,9 +52752,9 @@ }; name = Debug; }; - 46EB2E00039D60 /* Release */ = { + 46EB2E00039AF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039E00 /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 46EB2E00039B90 /* React-RCTSettings.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52660,9 +52778,9 @@ }; name = Release; }; - 46EB2E00039D70 /* Debug */ = { + 46EB2E00039B00 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00039DF0 /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039B80 /* React-RCTSettings.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52685,9 +52803,9 @@ }; name = Debug; }; - 46EB2E00039E60 /* Release */ = { + 46EB2E00039BF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A270 /* React-RCTText.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A000 /* React-RCTText.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52711,9 +52829,9 @@ }; name = Release; }; - 46EB2E00039E70 /* Debug */ = { + 46EB2E00039C00 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A260 /* React-RCTText.debug.xcconfig */; + baseConfigurationReference = 46EB2E00039FF0 /* React-RCTText.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52736,9 +52854,9 @@ }; name = Debug; }; - 46EB2E0003A2D0 /* Release */ = { + 46EB2E0003A060 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A370 /* React-RCTVibration.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A100 /* React-RCTVibration.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52762,9 +52880,9 @@ }; name = Release; }; - 46EB2E0003A2E0 /* Debug */ = { + 46EB2E0003A070 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A360 /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003A0F0 /* React-RCTVibration.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52787,9 +52905,9 @@ }; name = Debug; }; - 46EB2E0003A3D0 /* Release */ = { + 46EB2E0003A160 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A550 /* React-bridging.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A2E0 /* React-bridging.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52813,9 +52931,9 @@ }; name = Release; }; - 46EB2E0003A3E0 /* Debug */ = { + 46EB2E0003A170 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A540 /* React-bridging.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003A2D0 /* React-bridging.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52838,9 +52956,9 @@ }; name = Debug; }; - 46EB2E0003A5B0 /* Release */ = { + 46EB2E0003A340 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A5F0 /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A380 /* React-callinvoker.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52854,9 +52972,9 @@ }; name = Release; }; - 46EB2E0003A5C0 /* Debug */ = { + 46EB2E0003A350 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A5E0 /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003A370 /* React-callinvoker.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -52869,9 +52987,9 @@ }; name = Debug; }; - 46EB2E0003A620 /* Release */ = { + 46EB2E0003A3B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A8B0 /* React-cxxreact.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A640 /* React-cxxreact.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52895,9 +53013,9 @@ }; name = Release; }; - 46EB2E0003A630 /* Debug */ = { + 46EB2E0003A3C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003A8A0 /* React-cxxreact.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003A630 /* React-cxxreact.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52920,9 +53038,9 @@ }; name = Debug; }; - 46EB2E0003A910 /* Release */ = { + 46EB2E0003A6A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003ABB0 /* React-hermes.release.xcconfig */; + baseConfigurationReference = 46EB2E0003A940 /* React-hermes.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52946,9 +53064,9 @@ }; name = Release; }; - 46EB2E0003A920 /* Debug */ = { + 46EB2E0003A6B0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003ABA0 /* React-hermes.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003A930 /* React-hermes.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52971,9 +53089,9 @@ }; name = Debug; }; - 46EB2E0003AC10 /* Release */ = { + 46EB2E0003A9A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AD60 /* React-jsi.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AAF0 /* React-jsi.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -52997,9 +53115,9 @@ }; name = Release; }; - 46EB2E0003AC20 /* Debug */ = { + 46EB2E0003A9B0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AD50 /* React-jsi.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AAE0 /* React-jsi.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53022,9 +53140,9 @@ }; name = Debug; }; - 46EB2E0003ADC0 /* Release */ = { + 46EB2E0003AB50 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AE80 /* React-jsiexecutor.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AC10 /* React-jsiexecutor.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53048,9 +53166,9 @@ }; name = Release; }; - 46EB2E0003ADD0 /* Debug */ = { + 46EB2E0003AB60 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AE70 /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AC00 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53073,9 +53191,9 @@ }; name = Debug; }; - 46EB2E0003AEE0 /* Release */ = { + 46EB2E0003AC70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AF80 /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AD10 /* React-jsinspector.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53099,9 +53217,9 @@ }; name = Release; }; - 46EB2E0003AEF0 /* Debug */ = { + 46EB2E0003AC80 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003AF70 /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AD00 /* React-jsinspector.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53124,9 +53242,9 @@ }; name = Debug; }; - 46EB2E0003AFE0 /* Release */ = { + 46EB2E0003AD70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B080 /* React-logger.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AE10 /* React-logger.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53150,9 +53268,9 @@ }; name = Release; }; - 46EB2E0003AFF0 /* Debug */ = { + 46EB2E0003AD80 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B070 /* React-logger.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AE00 /* React-logger.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53175,9 +53293,9 @@ }; name = Debug; }; - 46EB2E0003B0E0 /* Release */ = { + 46EB2E0003AE70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B190 /* React-perflogger.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AF20 /* React-perflogger.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53201,9 +53319,9 @@ }; name = Release; }; - 46EB2E0003B0F0 /* Debug */ = { + 46EB2E0003AE80 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B180 /* React-perflogger.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AF10 /* React-perflogger.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53226,9 +53344,9 @@ }; name = Debug; }; - 46EB2E0003B1F0 /* Release */ = { + 46EB2E0003AF80 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B230 /* React-runtimeexecutor.release.xcconfig */; + baseConfigurationReference = 46EB2E0003AFC0 /* React-runtimeexecutor.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53242,9 +53360,9 @@ }; name = Release; }; - 46EB2E0003B200 /* Debug */ = { + 46EB2E0003AF90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B220 /* React-runtimeexecutor.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003AFB0 /* React-runtimeexecutor.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53257,9 +53375,9 @@ }; name = Debug; }; - 46EB2E0003B260 /* Release */ = { + 46EB2E0003AFF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B3F0 /* ReactCommon.release.xcconfig */; + baseConfigurationReference = 46EB2E0003B180 /* ReactCommon.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53284,9 +53402,9 @@ }; name = Release; }; - 46EB2E0003B270 /* Debug */ = { + 46EB2E0003B000 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003B3E0 /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003B170 /* ReactCommon.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53310,9 +53428,9 @@ }; name = Debug; }; - 46EB2E0003B480 /* Release */ = { + 46EB2E0003B210 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003BDE0 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = 46EB2E0003BB70 /* SDWebImage.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53335,9 +53453,9 @@ }; name = Release; }; - 46EB2E0003B490 /* Debug */ = { + 46EB2E0003B220 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003BDD0 /* SDWebImage.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003BB60 /* SDWebImage.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53359,9 +53477,9 @@ }; name = Debug; }; - 46EB2E0003BE40 /* Release */ = { + 46EB2E0003BBD0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003BF30 /* SDWebImageWebPCoder.release.xcconfig */; + baseConfigurationReference = 46EB2E0003BCC0 /* SDWebImageWebPCoder.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53384,9 +53502,9 @@ }; name = Release; }; - 46EB2E0003BE50 /* Debug */ = { + 46EB2E0003BBE0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003BF20 /* SDWebImageWebPCoder.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003BCB0 /* SDWebImageWebPCoder.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53408,9 +53526,9 @@ }; name = Debug; }; - 46EB2E0003BF90 /* Release */ = { + 46EB2E0003BD20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C220 /* SSZipArchive.release.xcconfig */; + baseConfigurationReference = 46EB2E0003BFB0 /* SSZipArchive.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53434,9 +53552,9 @@ }; name = Release; }; - 46EB2E0003BFA0 /* Debug */ = { + 46EB2E0003BD30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C210 /* SSZipArchive.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003BFA0 /* SSZipArchive.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53459,9 +53577,9 @@ }; name = Debug; }; - 46EB2E0003C2B0 /* Release */ = { + 46EB2E0003C040 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C5C0 /* SocketRocket.release.xcconfig */; + baseConfigurationReference = 46EB2E0003C350 /* SocketRocket.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53484,9 +53602,9 @@ }; name = Release; }; - 46EB2E0003C2C0 /* Debug */ = { + 46EB2E0003C050 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C5B0 /* SocketRocket.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003C340 /* SocketRocket.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53508,9 +53626,9 @@ }; name = Debug; }; - 46EB2E0003C620 /* Release */ = { + 46EB2E0003C3B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C880 /* Yoga.release.xcconfig */; + baseConfigurationReference = 46EB2E0003C610 /* Yoga.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53535,9 +53653,9 @@ }; name = Release; }; - 46EB2E0003C630 /* Debug */ = { + 46EB2E0003C3C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C870 /* Yoga.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003C600 /* Yoga.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53561,9 +53679,9 @@ }; name = Debug; }; - 46EB2E0003C910 /* Release */ = { + 46EB2E0003C6A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C9F0 /* YogaKit.release.xcconfig */; + baseConfigurationReference = 46EB2E0003C780 /* YogaKit.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53587,9 +53705,9 @@ }; name = Release; }; - 46EB2E0003C920 /* Debug */ = { + 46EB2E0003C6B0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003C9E0 /* YogaKit.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003C770 /* YogaKit.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53612,9 +53730,9 @@ }; name = Debug; }; - 46EB2E0003CA90 /* Release */ = { + 46EB2E0003C820 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003DF30 /* abseil.release.xcconfig */; + baseConfigurationReference = 46EB2E0003DCC0 /* abseil.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53637,9 +53755,9 @@ }; name = Release; }; - 46EB2E0003CAA0 /* Debug */ = { + 46EB2E0003C830 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003DF20 /* abseil.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003DCB0 /* abseil.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53661,9 +53779,9 @@ }; name = Debug; }; - 46EB2E0003DF90 /* Release */ = { + 46EB2E0003DD20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003DFD0 /* boost.release.xcconfig */; + baseConfigurationReference = 46EB2E0003DD60 /* boost.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53677,9 +53795,9 @@ }; name = Release; }; - 46EB2E0003DFA0 /* Debug */ = { + 46EB2E0003DD30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003DFC0 /* boost.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003DD50 /* boost.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53692,9 +53810,9 @@ }; name = Debug; }; - 46EB2E0003E000 /* Release */ = { + 46EB2E0003DD90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003E150 /* fmt.release.xcconfig */; + baseConfigurationReference = 46EB2E0003DEE0 /* fmt.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53718,9 +53836,9 @@ }; name = Release; }; - 46EB2E0003E010 /* Debug */ = { + 46EB2E0003DDA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E0003E140 /* fmt.debug.xcconfig */; + baseConfigurationReference = 46EB2E0003DED0 /* fmt.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53743,9 +53861,9 @@ }; name = Debug; }; - 46EB2E0003E1B0 /* Release */ = { + 46EB2E0003DF40 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000416E0 /* gRPC-C++.release.xcconfig */; + baseConfigurationReference = 46EB2E00041470 /* gRPC-C++.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53768,9 +53886,9 @@ }; name = Release; }; - 46EB2E0003E1C0 /* Debug */ = { + 46EB2E0003DF50 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000416D0 /* gRPC-C++.debug.xcconfig */; + baseConfigurationReference = 46EB2E00041460 /* gRPC-C++.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53792,9 +53910,9 @@ }; name = Debug; }; - 46EB2E0003E230 /* Release */ = { + 46EB2E0003DFC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000416E0 /* gRPC-C++.release.xcconfig */; + baseConfigurationReference = 46EB2E00041470 /* gRPC-C++.release.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; IBSC_MODULE = grpcpp; @@ -53808,9 +53926,9 @@ }; name = Release; }; - 46EB2E0003E240 /* Debug */ = { + 46EB2E0003DFD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000416D0 /* gRPC-C++.debug.xcconfig */; + baseConfigurationReference = 46EB2E00041460 /* gRPC-C++.debug.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; IBSC_MODULE = grpcpp; @@ -53824,9 +53942,9 @@ }; name = Debug; }; - 46EB2E00041740 /* Release */ = { + 46EB2E000414D0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00046F10 /* gRPC-Core.release.xcconfig */; + baseConfigurationReference = 46EB2E00046CA0 /* gRPC-Core.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53849,9 +53967,9 @@ }; name = Release; }; - 46EB2E00041750 /* Debug */ = { + 46EB2E000414E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00046F00 /* gRPC-Core.debug.xcconfig */; + baseConfigurationReference = 46EB2E00046C90 /* gRPC-Core.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53873,9 +53991,9 @@ }; name = Debug; }; - 46EB2E00046F70 /* Release */ = { + 46EB2E00046D00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000470B0 /* glog.release.xcconfig */; + baseConfigurationReference = 46EB2E00046E40 /* glog.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53899,9 +54017,9 @@ }; name = Release; }; - 46EB2E00046F80 /* Debug */ = { + 46EB2E00046D10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000470A0 /* glog.debug.xcconfig */; + baseConfigurationReference = 46EB2E00046E30 /* glog.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -53924,9 +54042,9 @@ }; name = Debug; }; - 46EB2E00047110 /* Release */ = { + 46EB2E00046EA0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00047160 /* hermes-engine.release.xcconfig */; + baseConfigurationReference = 46EB2E00046EF0 /* hermes-engine.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53940,9 +54058,9 @@ }; name = Release; }; - 46EB2E00047120 /* Debug */ = { + 46EB2E00046EB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00047150 /* hermes-engine.debug.xcconfig */; + baseConfigurationReference = 46EB2E00046EE0 /* hermes-engine.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -53955,9 +54073,9 @@ }; name = Debug; }; - 46EB2E00047190 /* Release */ = { + 46EB2E00046F20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00047800 /* leveldb-library.release.xcconfig */; + baseConfigurationReference = 46EB2E00047590 /* leveldb-library.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -53980,9 +54098,9 @@ }; name = Release; }; - 46EB2E000471A0 /* Debug */ = { + 46EB2E00046F30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000477F0 /* leveldb-library.debug.xcconfig */; + baseConfigurationReference = 46EB2E00047580 /* leveldb-library.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54004,9 +54122,9 @@ }; name = Debug; }; - 46EB2E00047860 /* Release */ = { + 46EB2E000475F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00047C10 /* libevent.release.xcconfig */; + baseConfigurationReference = 46EB2E000479A0 /* libevent.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -54030,9 +54148,9 @@ }; name = Release; }; - 46EB2E00047870 /* Debug */ = { + 46EB2E00047600 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00047C00 /* libevent.debug.xcconfig */; + baseConfigurationReference = 46EB2E00047990 /* libevent.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -54055,9 +54173,9 @@ }; name = Debug; }; - 46EB2E00047C70 /* Release */ = { + 46EB2E00047A00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000486E0 /* libwebp.release.xcconfig */; + baseConfigurationReference = 46EB2E00048470 /* libwebp.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54080,9 +54198,9 @@ }; name = Release; }; - 46EB2E00047C80 /* Debug */ = { + 46EB2E00047A10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E000486D0 /* libwebp.debug.xcconfig */; + baseConfigurationReference = 46EB2E00048460 /* libwebp.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54104,9 +54222,9 @@ }; name = Debug; }; - 46EB2E00048740 /* Release */ = { + 46EB2E000484D0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 46EB2E000485C0 /* nanopb.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54129,9 +54247,9 @@ }; name = Release; }; - 46EB2E00048750 /* Debug */ = { + 46EB2E000484E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048820 /* nanopb.debug.xcconfig */; + baseConfigurationReference = 46EB2E000485B0 /* nanopb.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54153,9 +54271,9 @@ }; name = Debug; }; - 46EB2E00048890 /* Release */ = { + 46EB2E00048620 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048950 /* react-native-config.release.xcconfig */; + baseConfigurationReference = 46EB2E000486E0 /* react-native-config.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54178,9 +54296,9 @@ }; name = Release; }; - 46EB2E000488A0 /* Debug */ = { + 46EB2E00048630 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048940 /* react-native-config.debug.xcconfig */; + baseConfigurationReference = 46EB2E000486D0 /* react-native-config.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54202,9 +54320,9 @@ }; name = Debug; }; - 46EB2E000489B0 /* Release */ = { + 46EB2E00048740 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048A90 /* react-native-flipper.release.xcconfig */; + baseConfigurationReference = 46EB2E00048820 /* react-native-flipper.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54227,9 +54345,9 @@ }; name = Release; }; - 46EB2E000489C0 /* Debug */ = { + 46EB2E00048750 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048A80 /* react-native-flipper.debug.xcconfig */; + baseConfigurationReference = 46EB2E00048810 /* react-native-flipper.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54251,9 +54369,9 @@ }; name = Debug; }; - 46EB2E00048AF0 /* Release */ = { + 46EB2E00048880 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048C10 /* react-native-pdf.release.xcconfig */; + baseConfigurationReference = 46EB2E000489A0 /* react-native-pdf.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54276,9 +54394,9 @@ }; name = Release; }; - 46EB2E00048B00 /* Debug */ = { + 46EB2E00048890 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048C00 /* react-native-pdf.debug.xcconfig */; + baseConfigurationReference = 46EB2E00048990 /* react-native-pdf.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -54300,9 +54418,9 @@ }; name = Debug; }; - 46EB2E00048C70 /* Release */ = { + 46EB2E00048A00 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048E30 /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = 46EB2E00048BC0 /* react-native-safe-area-context.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -54326,9 +54444,9 @@ }; name = Release; }; - 46EB2E00048C80 /* Debug */ = { + 46EB2E00048A10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048E20 /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = 46EB2E00048BB0 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -54351,9 +54469,58 @@ }; name = Debug; }; - 46EB2E00048E90 /* Release */ = { + 46EB2E00048C20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048F00 /* Pods-Hurt.release.xcconfig */; + baseConfigurationReference = 46EB2E00048D00 /* react-native-webview.release.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 46EB2E00048C30 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 46EB2E00048CF0 /* react-native-webview.debug.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 46EB2E00048D60 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 46EB2E00048DD0 /* Pods-Hurt.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -54375,9 +54542,9 @@ }; name = Release; }; - 46EB2E00048EA0 /* Debug */ = { + 46EB2E00048D70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46EB2E00048F10 /* Pods-Hurt.debug.xcconfig */; + baseConfigurationReference = 46EB2E00048DE0 /* Pods-Hurt.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -54410,992 +54577,1001 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00022AF0 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */ = { + 46EB2E00022A10 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00022B10 /* Debug */, - 46EB2E00022B00 /* Release */, + 46EB2E00022A30 /* Debug */, + 46EB2E00022A20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00022C30 /* Build configuration list for PBXNativeTarget "Base64" */ = { + 46EB2E00022B50 /* Build configuration list for PBXNativeTarget "Base64" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00022C50 /* Debug */, - 46EB2E00022C40 /* Release */, + 46EB2E00022B70 /* Debug */, + 46EB2E00022B60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00022D30 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */ = { + 46EB2E00022C50 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00022D50 /* Debug */, - 46EB2E00022D40 /* Release */, + 46EB2E00022C70 /* Debug */, + 46EB2E00022C60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00024BB0 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */ = { + 46EB2E00024AD0 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00024BD0 /* Debug */, - 46EB2E00024BC0 /* Release */, + 46EB2E00024AF0 /* Debug */, + 46EB2E00024AE0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00024CD0 /* Build configuration list for PBXNativeTarget "CodePush" */ = { + 46EB2E00024BF0 /* Build configuration list for PBXNativeTarget "CodePush" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00024CF0 /* Debug */, - 46EB2E00024CE0 /* Release */, + 46EB2E00024C10 /* Debug */, + 46EB2E00024C00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00024E60 /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { + 46EB2E00024D80 /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00024E80 /* Debug */, - 46EB2E00024E70 /* Release */, + 46EB2E00024DA0 /* Debug */, + 46EB2E00024D90 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00025060 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { + 46EB2E00024F80 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00025080 /* Debug */, - 46EB2E00025070 /* Release */, + 46EB2E00024FA0 /* Debug */, + 46EB2E00024F90 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000250D0 /* Build configuration list for PBXAggregateTarget "FBReactNativeSpec" */ = { + 46EB2E00024FF0 /* Build configuration list for PBXAggregateTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000250F0 /* Debug */, - 46EB2E000250E0 /* Release */, + 46EB2E00025010 /* Debug */, + 46EB2E00025000 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00025140 /* Build configuration list for PBXAggregateTarget "Firebase" */ = { + 46EB2E00025060 /* Build configuration list for PBXAggregateTarget "Firebase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00025160 /* Debug */, - 46EB2E00025150 /* Release */, + 46EB2E00025080 /* Debug */, + 46EB2E00025070 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000251B0 /* Build configuration list for PBXNativeTarget "FirebaseABTesting" */ = { + 46EB2E000250D0 /* Build configuration list for PBXNativeTarget "FirebaseABTesting" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000251D0 /* Debug */, - 46EB2E000251C0 /* Release */, + 46EB2E000250F0 /* Debug */, + 46EB2E000250E0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00025430 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + 46EB2E00025350 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00025450 /* Debug */, - 46EB2E00025440 /* Release */, + 46EB2E00025370 /* Debug */, + 46EB2E00025360 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000254B0 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */ = { + 46EB2E000253D0 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000254D0 /* Debug */, - 46EB2E000254C0 /* Release */, + 46EB2E000253F0 /* Debug */, + 46EB2E000253E0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00026580 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + 46EB2E000264A0 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000265A0 /* Debug */, - 46EB2E00026590 /* Release */, + 46EB2E000264C0 /* Debug */, + 46EB2E000264B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00026920 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { + 46EB2E00026840 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00026940 /* Debug */, - 46EB2E00026930 /* Release */, + 46EB2E00026860 /* Debug */, + 46EB2E00026850 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00026A50 /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension" */ = { + 46EB2E00026970 /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00026A70 /* Debug */, - 46EB2E00026A60 /* Release */, + 46EB2E00026990 /* Debug */, + 46EB2E00026980 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00026C00 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { + 46EB2E00026B20 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00026C20 /* Debug */, - 46EB2E00026C10 /* Release */, + 46EB2E00026B40 /* Debug */, + 46EB2E00026B30 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00026DD0 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { + 46EB2E00026CF0 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00026DF0 /* Debug */, - 46EB2E00026DE0 /* Release */, + 46EB2E00026D10 /* Debug */, + 46EB2E00026D00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00027AC0 /* Build configuration list for PBXNativeTarget "FirebaseDatabase" */ = { + 46EB2E000279E0 /* Build configuration list for PBXNativeTarget "FirebaseDatabase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00027AE0 /* Debug */, - 46EB2E00027AD0 /* Release */, + 46EB2E00027A00 /* Debug */, + 46EB2E000279F0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00028BA0 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */ = { + 46EB2E00028AC0 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00028BC0 /* Debug */, - 46EB2E00028BB0 /* Release */, + 46EB2E00028AE0 /* Debug */, + 46EB2E00028AD0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00029C60 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + 46EB2E00029B80 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00029C80 /* Debug */, - 46EB2E00029C70 /* Release */, + 46EB2E00029BA0 /* Debug */, + 46EB2E00029B90 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002A060 /* Build configuration list for PBXNativeTarget "FirebaseMessaging" */ = { + 46EB2E00029F80 /* Build configuration list for PBXNativeTarget "FirebaseMessaging" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002A080 /* Debug */, - 46EB2E0002A070 /* Release */, + 46EB2E00029FA0 /* Debug */, + 46EB2E00029F90 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002A690 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfig" */ = { + 46EB2E0002A5B0 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfig" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002A6B0 /* Debug */, - 46EB2E0002A6A0 /* Release */, + 46EB2E0002A5D0 /* Debug */, + 46EB2E0002A5C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002AA40 /* Build configuration list for PBXNativeTarget "Flipper" */ = { + 46EB2E0002A960 /* Build configuration list for PBXNativeTarget "Flipper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002AA60 /* Debug */, - 46EB2E0002AA50 /* Release */, + 46EB2E0002A980 /* Debug */, + 46EB2E0002A970 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002AD80 /* Build configuration list for PBXNativeTarget "Flipper-Boost-iOSX" */ = { + 46EB2E0002ACA0 /* Build configuration list for PBXNativeTarget "Flipper-Boost-iOSX" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002ADA0 /* Debug */, - 46EB2E0002AD90 /* Release */, + 46EB2E0002ACC0 /* Debug */, + 46EB2E0002ACB0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002AE90 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { + 46EB2E0002ADB0 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002AEB0 /* Debug */, - 46EB2E0002AEA0 /* Release */, + 46EB2E0002ADD0 /* Debug */, + 46EB2E0002ADC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002B090 /* Build configuration list for PBXNativeTarget "Flipper-Fmt" */ = { + 46EB2E0002AFB0 /* Build configuration list for PBXNativeTarget "Flipper-Fmt" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002B0B0 /* Debug */, - 46EB2E0002B0A0 /* Release */, + 46EB2E0002AFD0 /* Debug */, + 46EB2E0002AFC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002B240 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { + 46EB2E0002B160 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002B260 /* Debug */, - 46EB2E0002B250 /* Release */, + 46EB2E0002B180 /* Debug */, + 46EB2E0002B170 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002E910 /* Build configuration list for PBXAggregateTarget "Flipper-Glog" */ = { + 46EB2E0002E830 /* Build configuration list for PBXAggregateTarget "Flipper-Glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002E930 /* Debug */, - 46EB2E0002E920 /* Release */, + 46EB2E0002E850 /* Debug */, + 46EB2E0002E840 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002E990 /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */ = { + 46EB2E0002E8B0 /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002E9B0 /* Debug */, - 46EB2E0002E9A0 /* Release */, + 46EB2E0002E8D0 /* Debug */, + 46EB2E0002E8C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002EAF0 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { + 46EB2E0002EA10 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002EB10 /* Debug */, - 46EB2E0002EB00 /* Release */, + 46EB2E0002EA30 /* Debug */, + 46EB2E0002EA20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002F5A0 /* Build configuration list for PBXNativeTarget "FlipperKit" */ = { + 46EB2E0002F4C0 /* Build configuration list for PBXNativeTarget "FlipperKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002F5C0 /* Debug */, - 46EB2E0002F5B0 /* Release */, + 46EB2E0002F4E0 /* Debug */, + 46EB2E0002F4D0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002FD30 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { + 46EB2E0002FC50 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002FD50 /* Debug */, - 46EB2E0002FD40 /* Release */, + 46EB2E0002FC70 /* Debug */, + 46EB2E0002FC60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002FE80 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 46EB2E0002FDA0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002FEA0 /* Debug */, - 46EB2E0002FE90 /* Release */, + 46EB2E0002FDC0 /* Debug */, + 46EB2E0002FDB0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0002FF00 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + 46EB2E0002FE20 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0002FF20 /* Debug */, - 46EB2E0002FF10 /* Release */, + 46EB2E0002FE40 /* Debug */, + 46EB2E0002FE30 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00030370 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + 46EB2E00030290 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00030390 /* Debug */, - 46EB2E00030380 /* Release */, + 46EB2E000302B0 /* Debug */, + 46EB2E000302A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000308F0 /* Build configuration list for PBXNativeTarget "JWT" */ = { + 46EB2E00030810 /* Build configuration list for PBXNativeTarget "JWT" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00030910 /* Debug */, - 46EB2E00030900 /* Release */, + 46EB2E00030830 /* Debug */, + 46EB2E00030820 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00030F80 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */ = { + 46EB2E00030D10 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00030FA0 /* Debug */, - 46EB2E00030F90 /* Release */, + 46EB2E00030D30 /* Debug */, + 46EB2E00030D20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00031350 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { + 46EB2E000310E0 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00031370 /* Debug */, - 46EB2E00031360 /* Release */, + 46EB2E00031100 /* Debug */, + 46EB2E000310F0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000313D0 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + 46EB2E00031160 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000313F0 /* Debug */, - 46EB2E000313E0 /* Release */, + 46EB2E00031180 /* Debug */, + 46EB2E00031170 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00031750 /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { + 46EB2E000314E0 /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00031770 /* Debug */, - 46EB2E00031760 /* Release */, + 46EB2E00031500 /* Debug */, + 46EB2E000314F0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034430 /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { + 46EB2E000341C0 /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034450 /* Debug */, - 46EB2E00034440 /* Release */, + 46EB2E000341E0 /* Debug */, + 46EB2E000341D0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000344A0 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { + 46EB2E00034230 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000344C0 /* Debug */, - 46EB2E000344B0 /* Release */, + 46EB2E00034250 /* Debug */, + 46EB2E00034240 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000345F0 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = { + 46EB2E00034380 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034610 /* Debug */, - 46EB2E00034600 /* Release */, + 46EB2E000343A0 /* Debug */, + 46EB2E00034390 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034700 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */ = { + 46EB2E00034490 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034720 /* Debug */, - 46EB2E00034710 /* Release */, + 46EB2E000344B0 /* Debug */, + 46EB2E000344A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034820 /* Build configuration list for PBXNativeTarget "RNCPicker" */ = { + 46EB2E000345B0 /* Build configuration list for PBXNativeTarget "RNCPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034840 /* Debug */, - 46EB2E00034830 /* Release */, + 46EB2E000345D0 /* Debug */, + 46EB2E000345C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034960 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + 46EB2E000346F0 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034980 /* Debug */, - 46EB2E00034970 /* Release */, + 46EB2E00034710 /* Debug */, + 46EB2E00034700 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034AA0 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { + 46EB2E00034830 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034AC0 /* Debug */, - 46EB2E00034AB0 /* Release */, + 46EB2E00034850 /* Debug */, + 46EB2E00034840 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034BA0 /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { + 46EB2E00034930 /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034BC0 /* Debug */, - 46EB2E00034BB0 /* Release */, + 46EB2E00034950 /* Debug */, + 46EB2E00034940 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034DC0 /* Build configuration list for PBXNativeTarget "RNFBAuth" */ = { + 46EB2E00034B50 /* Build configuration list for PBXNativeTarget "RNFBAuth" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034DE0 /* Debug */, - 46EB2E00034DD0 /* Release */, + 46EB2E00034B70 /* Debug */, + 46EB2E00034B60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00034EC0 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */ = { + 46EB2E00034C50 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00034EE0 /* Debug */, - 46EB2E00034ED0 /* Release */, + 46EB2E00034C70 /* Debug */, + 46EB2E00034C60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00035000 /* Build configuration list for PBXNativeTarget "RNFBDatabase" */ = { + 46EB2E00034D90 /* Build configuration list for PBXNativeTarget "RNFBDatabase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00035020 /* Debug */, - 46EB2E00035010 /* Release */, + 46EB2E00034DB0 /* Debug */, + 46EB2E00034DA0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000351C0 /* Build configuration list for PBXNativeTarget "RNFBFirestore" */ = { + 46EB2E00034F50 /* Build configuration list for PBXNativeTarget "RNFBFirestore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000351E0 /* Debug */, - 46EB2E000351D0 /* Release */, + 46EB2E00034F70 /* Debug */, + 46EB2E00034F60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000353A0 /* Build configuration list for PBXNativeTarget "RNFBMessaging" */ = { + 46EB2E00035130 /* Build configuration list for PBXNativeTarget "RNFBMessaging" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000353C0 /* Debug */, - 46EB2E000353B0 /* Release */, + 46EB2E00035150 /* Debug */, + 46EB2E00035140 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00035540 /* Build configuration list for PBXNativeTarget "RNFBRemoteConfig" */ = { + 46EB2E000352D0 /* Build configuration list for PBXNativeTarget "RNFBRemoteConfig" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00035560 /* Debug */, - 46EB2E00035550 /* Release */, + 46EB2E000352F0 /* Debug */, + 46EB2E000352E0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00035640 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { + 46EB2E000353D0 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00035660 /* Debug */, - 46EB2E00035650 /* Release */, + 46EB2E000353F0 /* Debug */, + 46EB2E000353E0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000357A0 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + 46EB2E00035530 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000357C0 /* Debug */, - 46EB2E000357B0 /* Release */, + 46EB2E00035550 /* Debug */, + 46EB2E00035540 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00035B60 /* Build configuration list for PBXNativeTarget "RNRate" */ = { + 46EB2E000358F0 /* Build configuration list for PBXNativeTarget "RNRate" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00035B80 /* Debug */, - 46EB2E00035B70 /* Release */, + 46EB2E00035910 /* Debug */, + 46EB2E00035900 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00035C60 /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { + 46EB2E000359F0 /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00035C80 /* Debug */, - 46EB2E00035C70 /* Release */, + 46EB2E00035A10 /* Debug */, + 46EB2E00035A00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00036520 /* Build configuration list for PBXNativeTarget "RNSVG" */ = { + 46EB2E000362B0 /* Build configuration list for PBXNativeTarget "RNSVG" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00036540 /* Debug */, - 46EB2E00036530 /* Release */, + 46EB2E000362D0 /* Debug */, + 46EB2E000362C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00036E50 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + 46EB2E00036BE0 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00036E70 /* Debug */, - 46EB2E00036E60 /* Release */, + 46EB2E00036C00 /* Debug */, + 46EB2E00036BF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00037120 /* Build configuration list for PBXNativeTarget "RNShare" */ = { + 46EB2E00036EB0 /* Build configuration list for PBXNativeTarget "RNShare" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00037140 /* Debug */, - 46EB2E00037130 /* Release */, + 46EB2E00036ED0 /* Debug */, + 46EB2E00036EC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00037380 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { + 46EB2E00037110 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000373A0 /* Debug */, - 46EB2E00037390 /* Release */, + 46EB2E00037130 /* Debug */, + 46EB2E00037120 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00037480 /* Build configuration list for PBXAggregateTarget "React" */ = { + 46EB2E00037210 /* Build configuration list for PBXAggregateTarget "React" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000374A0 /* Debug */, - 46EB2E00037490 /* Release */, + 46EB2E00037230 /* Debug */, + 46EB2E00037220 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000374F0 /* Build configuration list for PBXNativeTarget "React-Codegen" */ = { + 46EB2E00037280 /* Build configuration list for PBXNativeTarget "React-Codegen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00037510 /* Debug */, - 46EB2E00037500 /* Release */, + 46EB2E000372A0 /* Debug */, + 46EB2E00037290 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00037620 /* Build configuration list for PBXNativeTarget "React-Core" */ = { + 46EB2E000373B0 /* Build configuration list for PBXNativeTarget "React-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00037640 /* Debug */, - 46EB2E00037630 /* Release */, + 46EB2E000373D0 /* Debug */, + 46EB2E000373C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000376A0 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { + 46EB2E00037430 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000376C0 /* Debug */, - 46EB2E000376B0 /* Release */, + 46EB2E00037450 /* Debug */, + 46EB2E00037440 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000390D0 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { + 46EB2E00038E60 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000390F0 /* Debug */, - 46EB2E000390E0 /* Release */, + 46EB2E00038E80 /* Debug */, + 46EB2E00038E70 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039380 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { + 46EB2E00039110 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000393A0 /* Debug */, - 46EB2E00039390 /* Release */, + 46EB2E00039130 /* Debug */, + 46EB2E00039120 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000393F0 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { + 46EB2E00039180 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039410 /* Debug */, - 46EB2E00039400 /* Release */, + 46EB2E000391A0 /* Debug */, + 46EB2E00039190 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000397C0 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { + 46EB2E00039550 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000397E0 /* Debug */, - 46EB2E000397D0 /* Release */, + 46EB2E00039570 /* Debug */, + 46EB2E00039560 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039920 /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { + 46EB2E000396B0 /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039940 /* Debug */, - 46EB2E00039930 /* Release */, + 46EB2E000396D0 /* Debug */, + 46EB2E000396C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039B10 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { + 46EB2E000398A0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039B30 /* Debug */, - 46EB2E00039B20 /* Release */, + 46EB2E000398C0 /* Debug */, + 46EB2E000398B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039C10 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { + 46EB2E000399A0 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039C30 /* Debug */, - 46EB2E00039C20 /* Release */, + 46EB2E000399C0 /* Debug */, + 46EB2E000399B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039D50 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { + 46EB2E00039AE0 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039D70 /* Debug */, - 46EB2E00039D60 /* Release */, + 46EB2E00039B00 /* Debug */, + 46EB2E00039AF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00039E50 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { + 46EB2E00039BE0 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00039E70 /* Debug */, - 46EB2E00039E60 /* Release */, + 46EB2E00039C00 /* Debug */, + 46EB2E00039BF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003A2C0 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { + 46EB2E0003A050 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003A2E0 /* Debug */, - 46EB2E0003A2D0 /* Release */, + 46EB2E0003A070 /* Debug */, + 46EB2E0003A060 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003A3C0 /* Build configuration list for PBXNativeTarget "React-bridging" */ = { + 46EB2E0003A150 /* Build configuration list for PBXNativeTarget "React-bridging" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003A3E0 /* Debug */, - 46EB2E0003A3D0 /* Release */, + 46EB2E0003A170 /* Debug */, + 46EB2E0003A160 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003A5A0 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { + 46EB2E0003A330 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003A5C0 /* Debug */, - 46EB2E0003A5B0 /* Release */, + 46EB2E0003A350 /* Debug */, + 46EB2E0003A340 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003A610 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { + 46EB2E0003A3A0 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003A630 /* Debug */, - 46EB2E0003A620 /* Release */, + 46EB2E0003A3C0 /* Debug */, + 46EB2E0003A3B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003A900 /* Build configuration list for PBXNativeTarget "React-hermes" */ = { + 46EB2E0003A690 /* Build configuration list for PBXNativeTarget "React-hermes" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003A920 /* Debug */, - 46EB2E0003A910 /* Release */, + 46EB2E0003A6B0 /* Debug */, + 46EB2E0003A6A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003AC00 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { + 46EB2E0003A990 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003AC20 /* Debug */, - 46EB2E0003AC10 /* Release */, + 46EB2E0003A9B0 /* Debug */, + 46EB2E0003A9A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003ADB0 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { + 46EB2E0003AB40 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003ADD0 /* Debug */, - 46EB2E0003ADC0 /* Release */, + 46EB2E0003AB60 /* Debug */, + 46EB2E0003AB50 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003AED0 /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { + 46EB2E0003AC60 /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003AEF0 /* Debug */, - 46EB2E0003AEE0 /* Release */, + 46EB2E0003AC80 /* Debug */, + 46EB2E0003AC70 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003AFD0 /* Build configuration list for PBXNativeTarget "React-logger" */ = { + 46EB2E0003AD60 /* Build configuration list for PBXNativeTarget "React-logger" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003AFF0 /* Debug */, - 46EB2E0003AFE0 /* Release */, + 46EB2E0003AD80 /* Debug */, + 46EB2E0003AD70 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003B0D0 /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { + 46EB2E0003AE60 /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003B0F0 /* Debug */, - 46EB2E0003B0E0 /* Release */, + 46EB2E0003AE80 /* Debug */, + 46EB2E0003AE70 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003B1E0 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { + 46EB2E0003AF70 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003B200 /* Debug */, - 46EB2E0003B1F0 /* Release */, + 46EB2E0003AF90 /* Debug */, + 46EB2E0003AF80 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003B250 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { + 46EB2E0003AFE0 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003B270 /* Debug */, - 46EB2E0003B260 /* Release */, + 46EB2E0003B000 /* Debug */, + 46EB2E0003AFF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003B470 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + 46EB2E0003B200 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003B490 /* Debug */, - 46EB2E0003B480 /* Release */, + 46EB2E0003B220 /* Debug */, + 46EB2E0003B210 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003BE30 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + 46EB2E0003BBC0 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003BE50 /* Debug */, - 46EB2E0003BE40 /* Release */, + 46EB2E0003BBE0 /* Debug */, + 46EB2E0003BBD0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003BF80 /* Build configuration list for PBXNativeTarget "SSZipArchive" */ = { + 46EB2E0003BD10 /* Build configuration list for PBXNativeTarget "SSZipArchive" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003BFA0 /* Debug */, - 46EB2E0003BF90 /* Release */, + 46EB2E0003BD30 /* Debug */, + 46EB2E0003BD20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003C2A0 /* Build configuration list for PBXNativeTarget "SocketRocket" */ = { + 46EB2E0003C030 /* Build configuration list for PBXNativeTarget "SocketRocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003C2C0 /* Debug */, - 46EB2E0003C2B0 /* Release */, + 46EB2E0003C050 /* Debug */, + 46EB2E0003C040 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003C610 /* Build configuration list for PBXNativeTarget "Yoga" */ = { + 46EB2E0003C3A0 /* Build configuration list for PBXNativeTarget "Yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003C630 /* Debug */, - 46EB2E0003C620 /* Release */, + 46EB2E0003C3C0 /* Debug */, + 46EB2E0003C3B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003C900 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { + 46EB2E0003C690 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003C920 /* Debug */, - 46EB2E0003C910 /* Release */, + 46EB2E0003C6B0 /* Debug */, + 46EB2E0003C6A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003CA80 /* Build configuration list for PBXNativeTarget "abseil" */ = { + 46EB2E0003C810 /* Build configuration list for PBXNativeTarget "abseil" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003CAA0 /* Debug */, - 46EB2E0003CA90 /* Release */, + 46EB2E0003C830 /* Debug */, + 46EB2E0003C820 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003DF80 /* Build configuration list for PBXAggregateTarget "boost" */ = { + 46EB2E0003DD10 /* Build configuration list for PBXAggregateTarget "boost" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003DFA0 /* Debug */, - 46EB2E0003DF90 /* Release */, + 46EB2E0003DD30 /* Debug */, + 46EB2E0003DD20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003DFF0 /* Build configuration list for PBXNativeTarget "fmt" */ = { + 46EB2E0003DD80 /* Build configuration list for PBXNativeTarget "fmt" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003E010 /* Debug */, - 46EB2E0003E000 /* Release */, + 46EB2E0003DDA0 /* Debug */, + 46EB2E0003DD90 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003E1A0 /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { + 46EB2E0003DF30 /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003E1C0 /* Debug */, - 46EB2E0003E1B0 /* Release */, + 46EB2E0003DF50 /* Debug */, + 46EB2E0003DF40 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E0003E220 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { + 46EB2E0003DFB0 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E0003E240 /* Debug */, - 46EB2E0003E230 /* Release */, + 46EB2E0003DFD0 /* Debug */, + 46EB2E0003DFC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00041730 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { + 46EB2E000414C0 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00041750 /* Debug */, - 46EB2E00041740 /* Release */, + 46EB2E000414E0 /* Debug */, + 46EB2E000414D0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00046F60 /* Build configuration list for PBXNativeTarget "glog" */ = { + 46EB2E00046CF0 /* Build configuration list for PBXNativeTarget "glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00046F80 /* Debug */, - 46EB2E00046F70 /* Release */, + 46EB2E00046D10 /* Debug */, + 46EB2E00046D00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00047100 /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { + 46EB2E00046E90 /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00047120 /* Debug */, - 46EB2E00047110 /* Release */, + 46EB2E00046EB0 /* Debug */, + 46EB2E00046EA0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00047180 /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { + 46EB2E00046F10 /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000471A0 /* Debug */, - 46EB2E00047190 /* Release */, + 46EB2E00046F30 /* Debug */, + 46EB2E00046F20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00047850 /* Build configuration list for PBXNativeTarget "libevent" */ = { + 46EB2E000475E0 /* Build configuration list for PBXNativeTarget "libevent" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00047870 /* Debug */, - 46EB2E00047860 /* Release */, + 46EB2E00047600 /* Debug */, + 46EB2E000475F0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00047C60 /* Build configuration list for PBXNativeTarget "libwebp" */ = { + 46EB2E000479F0 /* Build configuration list for PBXNativeTarget "libwebp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00047C80 /* Debug */, - 46EB2E00047C70 /* Release */, + 46EB2E00047A10 /* Debug */, + 46EB2E00047A00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00048730 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + 46EB2E000484C0 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00048750 /* Debug */, - 46EB2E00048740 /* Release */, + 46EB2E000484E0 /* Debug */, + 46EB2E000484D0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00048880 /* Build configuration list for PBXNativeTarget "react-native-config" */ = { + 46EB2E00048610 /* Build configuration list for PBXNativeTarget "react-native-config" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000488A0 /* Debug */, - 46EB2E00048890 /* Release */, + 46EB2E00048630 /* Debug */, + 46EB2E00048620 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 46EB2E00048730 /* Build configuration list for PBXNativeTarget "react-native-flipper" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 46EB2E00048750 /* Debug */, + 46EB2E00048740 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E000489A0 /* Build configuration list for PBXNativeTarget "react-native-flipper" */ = { + 46EB2E00048870 /* Build configuration list for PBXNativeTarget "react-native-pdf" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E000489C0 /* Debug */, - 46EB2E000489B0 /* Release */, + 46EB2E00048890 /* Debug */, + 46EB2E00048880 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00048AE0 /* Build configuration list for PBXNativeTarget "react-native-pdf" */ = { + 46EB2E000489F0 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00048B00 /* Debug */, - 46EB2E00048AF0 /* Release */, + 46EB2E00048A10 /* Debug */, + 46EB2E00048A00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00048C60 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { + 46EB2E00048C10 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00048C80 /* Debug */, - 46EB2E00048C70 /* Release */, + 46EB2E00048C30 /* Debug */, + 46EB2E00048C20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46EB2E00048E80 /* Build configuration list for PBXNativeTarget "Pods-Hurt" */ = { + 46EB2E00048D50 /* Build configuration list for PBXNativeTarget "Pods-Hurt" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46EB2E00048EA0 /* Debug */, - 46EB2E00048E90 /* Release */, + 46EB2E00048D70 /* Debug */, + 46EB2E00048D60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.markdown index 9f9d019d..1342d771 100644 --- a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.markdown @@ -1,5 +1,4 @@ # Acknowledgements - This application makes use of the following third party libraries: ## BVLinearGradient @@ -26,6 +25,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## BoringSSL-GRPC BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL @@ -48,146 +48,144 @@ openssl-core@openssl.org. The following are Google-internal bug numbers where explicit permission from some authors is recorded for use of their work. (This is purely for our own record keeping.) -27287199 -27287880 -27287883 - -OpenSSL License - ---- - -/\* ==================================================================== - -- Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in -- the documentation and/or other materials provided with the -- distribution. -- -- 3. All advertising materials mentioning features or use of this -- software must display the following acknowledgment: -- "This product includes software developed by the OpenSSL Project -- for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -- -- 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to -- endorse or promote products derived from this software without -- prior written permission. For written permission, please contact -- openssl-core@openssl.org. -- -- 5. Products derived from this software may not be called "OpenSSL" -- nor may "OpenSSL" appear in their names without prior written -- permission of the OpenSSL Project. -- -- 6. Redistributions of any form whatsoever must retain the following -- acknowledgment: -- "This product includes software developed by the OpenSSL Project -- for use in the OpenSSL Toolkit (http://www.openssl.org/)" -- -- THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -- EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -- ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -- OF THE POSSIBILITY OF SUCH DAMAGE. -- ==================================================================== -- -- This product includes cryptographic software written by Eric Young -- (eay@cryptsoft.com). This product includes software written by Tim -- Hudson (tjh@cryptsoft.com). -- \*/ - -Original SSLeay License - ---- - -/\* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - -- All rights reserved. -- -- This package is an SSL implementation written -- by Eric Young (eay@cryptsoft.com). -- The implementation was written so as to conform with Netscapes SSL. -- -- This library is free for commercial and non-commercial use as long as -- the following conditions are aheared to. The following conditions -- apply to all code found in this distribution, be it the RC4, RSA, -- lhash, DES, etc., code; not just the SSL code. The SSL documentation -- included with this distribution is covered by the same copyright terms -- except that the holder is Tim Hudson (tjh@cryptsoft.com). -- -- Copyright remains Eric Young's, and as such any Copyright notices in -- the code are not to be removed. -- If this package is used in a product, Eric Young should be given attribution -- as the author of the parts of the library used. -- This can be in the form of a textual message at program startup or -- in documentation (online or textual) provided with the package. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- 1. Redistributions of source code must retain the copyright -- notice, this list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- 3. All advertising materials mentioning features or use of this software -- must display the following acknowledgement: -- "This product includes cryptographic software written by -- Eric Young (eay@cryptsoft.com)" -- The word 'cryptographic' can be left out if the rouines from the library -- being used are not cryptographic related :-). -- 4. If you include any Windows specific code (or a derivative thereof) from -- the apps directory (application code) you must include an acknowledgement: -- "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" -- -- THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -- SUCH DAMAGE. -- -- The licence and distribution terms for any publically available version or -- derivative of this code cannot be changed. i.e. this code cannot simply be -- copied and put under another distribution licence -- [including the GNU Public Licence.] - \*/ + 27287199 + 27287880 + 27287883 + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + ISC license used for completely new code in BoringSSL: -/\* Copyright (c) 2015, Google Inc. - -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -- SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -- OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \*/ +/* Copyright (c) 2015, Google Inc. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + The code in third_party/fiat carries the MIT license: @@ -212,7 +210,9 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## Licenses for support code + +Licenses for support code +------------------------- Parts of the TLS test suite are under the Go license. This code is not included in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so @@ -224,15 +224,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. -- Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -246,6 +246,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + BoringSSL uses the Chromium test infrastructure to run a continuous build, trybots etc. The scripts which manage this, and the script for generating build metadata, are under the Chromium license. Distributing code linked against @@ -257,15 +258,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. -- Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -279,6 +280,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ## CocoaAsyncSocket Public Domain License @@ -288,13 +290,14 @@ The CocoaAsyncSocket project is in the public domain. The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003. Updated and maintained by Deusty LLC and the Apple development community. + ## CodePush Microsoft CodePush Plugin for React Native Copyright (c) Microsoft Corporation -All rights reserved. +All rights reserved. MIT License @@ -302,7 +305,7 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## DoubleConversion @@ -333,802 +336,188 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ## Firebase + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + 1. Definitions. -Copyright [yyyy] [name of copyright owner] + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. - http://www.apache.org/licenses/LICENSE-2.0 + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -## FirebaseABTesting + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -Copyright [yyyy] [name of copyright owner] + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. - http://www.apache.org/licenses/LICENSE-2.0 + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -## FirebaseAnalytics + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -Copyright 2022 Google + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -## FirebaseAuth + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -Copyright [yyyy] [name of copyright owner] + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. - http://www.apache.org/licenses/LICENSE-2.0 + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -## FirebaseCore + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + END OF TERMS AND CONDITIONS -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -1139,812 +528,202 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseABTesting -## FirebaseCoreDiagnostics Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Copyright [yyyy] [name of copyright owner] + 1. Definitions. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. - http://www.apache.org/licenses/LICENSE-2.0 + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -## FirebaseCoreExtension + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -Copyright [yyyy] [name of copyright owner] + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." - http://www.apache.org/licenses/LICENSE-2.0 + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -## FirebaseCoreInternal + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and -Copyright [yyyy] [name of copyright owner] + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. - http://www.apache.org/licenses/LICENSE-2.0 + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -## FirebaseCrashlytics + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -1955,651 +734,61 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -================================================================================ - -The following copyright from Hewlett-Packard Development Company, L.P. -applies to the dwarf.h file in third_party/libunwind + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -libunwind - a platform-independent unwind library -Copyright (c) 2003-2005 Hewlett-Packard Development Company, L.P. -Contributed by David Mosberger-Tang -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +## FirebaseAnalytics -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Copyright 2022 Google -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## FirebaseAuth -## FirebaseDatabase Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Copyright [yyyy] [name of copyright owner] + 1. Definitions. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. - http://www.apache.org/licenses/LICENSE-2.0 + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. ---- + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -## FImmutableSortedDictionary + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -Copyright (c) 2012 Mads Hartmann Jensen - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ---- - -## Wrap-leveldb - -Created by Adam Preble on 1/23/12. -Copyright (c) 2012 Adam Preble. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -Portions of APLevelDB are based on LevelDB-ObjC: -https:github.com/hoisie/LevelDB-ObjC -Specifically the SliceFromString/StringFromSlice macros, and the structure of -the enumeration methods. License for those potions follows: - -Copyright (c) 2011 Pave Labs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - ---- - -## SocketRocket - -Copyright 2012 Square Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -$OpenBSD: base64.c,v 1.5 2006/10/21 09:55:03 otto Exp $ - -Copyright (c) 1996 by Internet Software Consortium. - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE -CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS -ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. - -Portions Copyright (c) 1995 by International Business Machines, Inc. - -International Business Machines, Inc. (hereinafter called IBM) grants -permission under its copyrights to use, copy, modify, and distribute this -Software with or without fee, provided that the above copyright notice and -all paragraphs of this notice appear in all copies, and that the name of IBM -not be used in connection with the marketing of any product incorporating -the Software or modifications thereof, without specific, written prior -permission. - -To the extent it has a right to do so, IBM grants an immunity from suit -under its patents, if any, for the use, sale or manufacture of products to -the extent that such products are used for performing Domain Name System -dynamic updates in TCP/IP networks by means of the Software. No immunity is -granted for any product per se or for any other function of any product. - -THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, -DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING -OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN -IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - -## FirebaseFirestore - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - ---- - -## nlohmann_json - -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ---- - -## FirestoreEncoder - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a @@ -2632,14 +821,14 @@ SOFTWARE. on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, @@ -2655,7 +844,7 @@ SOFTWARE. granted to You under this License for that Work shall terminate as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: @@ -2696,7 +885,7 @@ SOFTWARE. reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. @@ -2704,12 +893,12 @@ SOFTWARE. the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or @@ -2719,7 +908,7 @@ SOFTWARE. appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be @@ -2731,7 +920,7 @@ SOFTWARE. other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this @@ -2742,9 +931,9 @@ SOFTWARE. incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -2755,615 +944,202 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -## Runtime Library Exception to the Apache 2.0 License: - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. +## FirebaseCore -## FirebaseInstallations Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + 1. Definitions. -Copyright [yyyy] [name of copyright owner] + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. - http://www.apache.org/licenses/LICENSE-2.0 + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -## FirebaseMessaging + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -Copyright [yyyy] [name of copyright owner] + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. - http://www.apache.org/licenses/LICENSE-2.0 + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -## FirebaseRemoteConfig + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -3374,90 +1150,2657 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -## Flipper + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -MIT License -Copyright (c) Facebook, Inc. and its affiliates. +## FirebaseCoreDiagnostics -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -## Flipper-Boost-iOSX + 1. Definitions. -Boost Software License - Version 1.0 - August 17th, 2003 + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -## Flipper-DoubleConversion + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseCoreExtension + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseCoreInternal + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseCrashlytics + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +================================================================================ + +The following copyright from Hewlett-Packard Development Company, L.P. +applies to the dwarf.h file in third_party/libunwind + + libunwind - a platform-independent unwind library + Copyright (c) 2003-2005 Hewlett-Packard Development Company, L.P. + Contributed by David Mosberger-Tang + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +## FirebaseDatabase + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +-------------------------- +FImmutableSortedDictionary +-------------------------- + Copyright (c) 2012 Mads Hartmann Jensen + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------- +Wrap-leveldb +-------------------------- +Created by Adam Preble on 1/23/12. +Copyright (c) 2012 Adam Preble. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +Portions of APLevelDB are based on LevelDB-ObjC: + https:github.com/hoisie/LevelDB-ObjC +Specifically the SliceFromString/StringFromSlice macros, and the structure of +the enumeration methods. License for those potions follows: + +Copyright (c) 2011 Pave Labs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------- +SocketRocket +-------------------------- +Copyright 2012 Square Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +$OpenBSD: base64.c,v 1.5 2006/10/21 09:55:03 otto Exp $ + +Copyright (c) 1996 by Internet Software Consortium. + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS +ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE +CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +SOFTWARE. + +Portions Copyright (c) 1995 by International Business Machines, Inc. + +International Business Machines, Inc. (hereinafter called IBM) grants +permission under its copyrights to use, copy, modify, and distribute this +Software with or without fee, provided that the above copyright notice and +all paragraphs of this notice appear in all copies, and that the name of IBM +not be used in connection with the marketing of any product incorporating +the Software or modifications thereof, without specific, written prior +permission. + +To the extent it has a right to do so, IBM grants an immunity from suit +under its patents, if any, for the use, sale or manufacture of products to +the extent that such products are used for performing Domain Name System +dynamic updates in TCP/IP networks by means of the Software. No immunity is +granted for any product per se or for any other function of any product. + +THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, +DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING +OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN +IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +## FirebaseFirestore + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +-------------------------- +nlohmann_json +-------------------------- +MIT License + +Copyright (c) 2013-2020 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------- +FirestoreEncoder +-------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +## Runtime Library Exception to the Apache 2.0 License: ## + + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. + + + +## FirebaseInstallations + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseMessaging + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## FirebaseRemoteConfig + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## Flipper + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +## Flipper-Boost-iOSX + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +## Flipper-DoubleConversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +## Flipper-Fmt + +Copyright (c) 2012 - present, Victor Zverovich + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- Optional exception to the license --- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into a machine-executable object form of such +source code, you may redistribute such embedded portions in such object form +without including the above copyright and permission notices. + + +## Flipper-Folly + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +Files in folly/external/farmhash licensed as follows + + Copyright (c) 2014 Google, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + +## Flipper-Glog + +Copyright (c) 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +A function gettimeofday in utilities.cc is based on + +http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd + +The license of this code is: + +Copyright (c) 2003-2008, Jouni Malinen and contributors +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name(s) of the above-listed copyright holder(s) nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT @@ -3467,308 +3810,928 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -## Flipper-Fmt -Copyright (c) 2012 - present, Victor Zverovich +## Flipper-PeerTalk + +Copyright (c) 2012 Rasmus Andersson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +## Flipper-RSocket + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +## FlipperKit + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +## GTMSessionFetcher + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## GoogleAppMeasurement + +Copyright 2022 Google + +## GoogleDataTransport + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## GoogleUtilities + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. ---- Optional exception to the license --- + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -## Flipper-Folly + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and -Files in folly/external/farmhash licensed as follows + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and - Copyright (c) 2014 Google, Inc. + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. -## Flipper-Glog + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -Copyright (c) 2008, Google Inc. -All rights reserved. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - * Redistributions of source code must retain the above copyright + END OF TERMS AND CONDITIONS -notice, this list of conditions and the following disclaimer. -_ Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -_ Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + APPENDIX: How to apply the Apache License to your work. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -A function gettimeofday in utilities.cc is based on + Copyright [yyyy] [name of copyright owner] -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -The license of this code is: + http://www.apache.org/licenses/LICENSE-2.0 -Copyright (c) 2003-2008, Jouni Malinen and contributors -All Rights Reserved. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +================================================================================ -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +The following copyright from Landon J. Fuller applies to the isAppEncrypted +function in Environment/third_party/GULAppEnvironmentUtil.m. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. +Copyright (c) 2017 Landon J. Fuller +All rights reserved. -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Comment from +iPhone Dev Wiki +Crack Prevention: App Store binaries are signed by both their developer +and Apple. This encrypts the binary so that decryption keys are needed in order +to make the binary readable. When iOS executes the binary, the decryption keys +are used to decrypt the binary into a readable state where it is then loaded +into memory and executed. iOS can tell the encryption status of a binary via the +cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is +a non-zero value then the binary is encrypted. + +'Cracking' works by letting the kernel decrypt the binary then siphoning the +decrypted data into a new binary file, resigning, and repackaging. This will +only work on jailbroken devices as codesignature validation has been removed. +Resigning takes place because while the codesignature doesn't have to be valid +thanks to the jailbreak, it does have to be in place unless you have AppSync or +similar to disable codesignature checks. + +More information at Landon +Fuller's blog -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -## Flipper-PeerTalk +## JWT -Copyright (c) 2012 Rasmus Andersson +Copyright (c) 2013 Karma Mobility, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -3788,826 +4751,393 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## Flipper-RSocket - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +## Libuv-gRPC -Copyright [yyyy] [name of copyright owner] +libuv is licensed for use as follows: -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +==== +Copyright (c) 2015-present libuv project contributors. - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -## FlipperKit +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +==== -MIT License +This license applies to parts of libuv originating from the +https://github.com/joyent/libuv repository: -Copyright (c) Facebook, Inc. and its affiliates. +==== +Copyright Joyent, Inc. and other Node contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. -## GTMSessionFetcher +==== - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +This license applies to all parts of libuv that are not externally +maintained libraries. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. +The externally maintained libraries used by libuv are: - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. -Copyright [yyyy] [name of copyright owner] + - inet_pton and inet_ntop implementations, contained in src/inet.c, are + copyright the Internet Systems Consortium, Inc., and licensed under the ISC + license. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three + clause BSD license. - http://www.apache.org/licenses/LICENSE-2.0 + - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. + Three clause BSD license. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + - android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design + Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement + n° 289016). Three clause BSD license. -## GoogleAppMeasurement -Copyright 2022 Google +## OpenSSL-Universal + + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + + +## PromisesObjC -## GoogleDataTransport Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + 1. Definitions. -Copyright [yyyy] [name of copyright owner] + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. - http://www.apache.org/licenses/LICENSE-2.0 + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -## GoogleUtilities + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + END OF TERMS AND CONDITIONS -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -4618,673 +5148,201 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -================================================================================ - -The following copyright from Landon J. Fuller applies to the isAppEncrypted -function in Environment/third_party/GULAppEnvironmentUtil.m. - -Copyright (c) 2017 Landon J. Fuller -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Comment from -iPhone Dev Wiki -Crack Prevention: App Store binaries are signed by both their developer -and Apple. This encrypts the binary so that decryption keys are needed in order -to make the binary readable. When iOS executes the binary, the decryption keys -are used to decrypt the binary into a readable state where it is then loaded -into memory and executed. iOS can tell the encryption status of a binary via the -cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is -a non-zero value then the binary is encrypted. - -'Cracking' works by letting the kernel decrypt the binary then siphoning the -decrypted data into a new binary file, resigning, and repackaging. This will -only work on jailbroken devices as codesignature validation has been removed. -Resigning takes place because while the codesignature doesn't have to be valid -thanks to the jailbreak, it does have to be in place unless you have AppSync or -similar to disable codesignature checks. - -More information at Landon -Fuller's blog - -## JWT - -Copyright (c) 2013 Karma Mobility, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -## Libuv-gRPC + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -libuv is licensed for use as follows: -==== -Copyright (c) 2015-present libuv project contributors. +## RCT-Folly -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -==== + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -This license applies to parts of libuv originating from the -https://github.com/joyent/libuv repository: + 1. Definitions. -==== + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -==== + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -This license applies to all parts of libuv that are not externally -maintained libraries. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -The externally maintained libraries used by libuv are: + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -- tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -- inet_pton and inet_ntop implementations, contained in src/inet.c, are - copyright the Internet Systems Consortium, Inc., and licensed under the ISC - license. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -- stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three - clause BSD license. + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -- pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. - Three clause BSD license. + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -- android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design - Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement - n° 289016). Three clause BSD license. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -## OpenSSL-Universal + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -LICENSE ISSUES -============== - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of -the OpenSSL License and the original SSLeay license apply to the toolkit. -See below for the actual license texts. Actually both licenses are BSD-style -Open Source licenses. In case of any license issues related to OpenSSL -please contact openssl-core@openssl.org. - -OpenSSL License - ---- - -/\* ==================================================================== - -- Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- -- 1. Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in -- the documentation and/or other materials provided with the -- distribution. -- -- 3. All advertising materials mentioning features or use of this -- software must display the following acknowledgment: -- "This product includes software developed by the OpenSSL Project -- for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -- -- 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to -- endorse or promote products derived from this software without -- prior written permission. For written permission, please contact -- openssl-core@openssl.org. -- -- 5. Products derived from this software may not be called "OpenSSL" -- nor may "OpenSSL" appear in their names without prior written -- permission of the OpenSSL Project. -- -- 6. Redistributions of any form whatsoever must retain the following -- acknowledgment: -- "This product includes software developed by the OpenSSL Project -- for use in the OpenSSL Toolkit (http://www.openssl.org/)" -- -- THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -- EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -- ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -- OF THE POSSIBILITY OF SUCH DAMAGE. -- ==================================================================== -- -- This product includes cryptographic software written by Eric Young -- (eay@cryptsoft.com). This product includes software written by Tim -- Hudson (tjh@cryptsoft.com). -- \*/ - -Original SSLeay License - ---- - -/\* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - -- All rights reserved. -- -- This package is an SSL implementation written -- by Eric Young (eay@cryptsoft.com). -- The implementation was written so as to conform with Netscapes SSL. -- -- This library is free for commercial and non-commercial use as long as -- the following conditions are aheared to. The following conditions -- apply to all code found in this distribution, be it the RC4, RSA, -- lhash, DES, etc., code; not just the SSL code. The SSL documentation -- included with this distribution is covered by the same copyright terms -- except that the holder is Tim Hudson (tjh@cryptsoft.com). -- -- Copyright remains Eric Young's, and as such any Copyright notices in -- the code are not to be removed. -- If this package is used in a product, Eric Young should be given attribution -- as the author of the parts of the library used. -- This can be in the form of a textual message at program startup or -- in documentation (online or textual) provided with the package. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions -- are met: -- 1. Redistributions of source code must retain the copyright -- notice, this list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- 3. All advertising materials mentioning features or use of this software -- must display the following acknowledgement: -- "This product includes cryptographic software written by -- Eric Young (eay@cryptsoft.com)" -- The word 'cryptographic' can be left out if the rouines from the library -- being used are not cryptographic related :-). -- 4. If you include any Windows specific code (or a derivative thereof) from -- the apps directory (application code) you must include an acknowledgement: -- "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" -- -- THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -- SUCH DAMAGE. -- -- The licence and distribution terms for any publically available version or -- derivative of this code cannot be changed. i.e. this code cannot simply be -- copied and put under another distribution licence -- [including the GNU Public Licence.] - \*/ + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -## PromisesObjC + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -Copyright [yyyy] [name of copyright owner] + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. - http://www.apache.org/licenses/LICENSE-2.0 + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -## RCT-Folly + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + END OF TERMS AND CONDITIONS -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS Files in folly/external/farmhash licensed as follows @@ -5308,6 +5366,7 @@ Files in folly/external/farmhash licensed as follows OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNCAsyncStorage MIT License @@ -5332,6 +5391,31 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## RNCPicker + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## RNDeviceInfo The MIT License (MIT) @@ -5356,9 +5440,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNFBAnalytics -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5375,7 +5461,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5388,9 +5476,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBApp -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited @@ -5407,7 +5497,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited @@ -5420,9 +5512,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBAuth -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5439,7 +5533,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5452,9 +5548,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBCrashlytics -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5471,7 +5569,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5484,9 +5584,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBDatabase -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5503,7 +5605,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5516,9 +5620,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBFirestore -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5535,7 +5641,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5548,9 +5656,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBMessaging -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5567,7 +5677,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5580,9 +5692,11 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFBRemoteConfig -## Apache-2.0 License +Apache-2.0 License +------------------ Copyright (c) 2016-present Invertase Limited & Contributors @@ -5599,7 +5713,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -## Creative Commons Attribution 3.0 License + +Creative Commons Attribution 3.0 License +---------------------------------------- Copyright (c) 2016-present Invertase Limited & Contributors @@ -5612,6 +5728,7 @@ You may obtain a copy of the Creative Commons Attribution 3.0 License at https://creativecommons.org/licenses/by/3.0/ + ## RNFastImage MIT License @@ -5636,6 +5753,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNGestureHandler The MIT License (MIT) @@ -5660,6 +5778,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNReanimated The MIT License (MIT) @@ -5684,6 +5803,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNSVG The MIT License (MIT) @@ -5708,6 +5828,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNScreens The MIT License (MIT) @@ -5732,6 +5853,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## RNShare The MIT License (MIT) @@ -5756,6 +5878,8 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## RNVectorIcons The MIT License (MIT) @@ -5780,6 +5904,8 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## React MIT License @@ -5804,6 +5930,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## React-Core MIT License @@ -5828,20 +5955,21 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## SDWebImage Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com - + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -5850,6 +5978,8 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## SDWebImageWebPCoder Copyright (c) 2018 Bogdan Poplauschi @@ -5872,6 +6002,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## SSZipArchive Copyright (c) 2010-2015, Sam Soffes, https://soff.es @@ -5895,6 +6026,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## SocketRocket BSD License @@ -5906,16 +6038,16 @@ Copyright (c) 2016-present, Facebook, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. -- Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED @@ -5930,208 +6062,210 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ## YogaKit -MIT License +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +## abseil + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -Copyright (c) Facebook, Inc. and its affiliates. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -## abseil + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ + END OF TERMS AND CONDITIONS -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -6142,19 +6276,21 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ## boost @@ -6182,6 +6318,7 @@ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## fmt Copyright (c) 2012 - present, Victor Zverovich @@ -6212,186 +6349,188 @@ of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. + ## gRPC-C++ + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -6402,21 +6541,21 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. ---- +----------------------------------------------------------- BSD 3-Clause License @@ -6426,15 +6565,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. +this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -6448,7 +6587,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---- +----------------------------------------------------------- Mozilla Public License, v. 2.0 @@ -6456,186 +6595,188 @@ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + ## gRPC-Core + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -6646,21 +6787,21 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [yyyy] [name of copyright owner] + Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. ---- +----------------------------------------------------------- BSD 3-Clause License @@ -6670,15 +6811,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. +this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -6692,7 +6833,7 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---- +----------------------------------------------------------- Mozilla Public License, v. 2.0 @@ -6700,6 +6841,7 @@ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + ## glog Copyright (c) 2008, Google Inc. @@ -6710,13 +6852,12 @@ modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -_ Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -_ Neither the name of Google Inc. nor the names of its + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -6732,6 +6873,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + A function gettimeofday in utilities.cc is based on http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd @@ -6768,6 +6910,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ## hermes-engine MIT License @@ -6792,6 +6935,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## leveldb-library Copyright (c) 2011 The LevelDB Authors. All rights reserved. @@ -6800,15 +6944,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. -- Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -6822,6 +6966,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ## libevent Libevent is available for use under the following license, commonly known @@ -6834,7 +6979,6 @@ Copyright (c) 2007-2012 Niels Provos and Nick Mathewson Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright @@ -6856,54 +7000,55 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ============================== Portions of Libevent are based on works by others, also made available by -them under the three-clause BSD license above. The copyright notices are -available in the corresponding source files; the license is as above. Here's +them under the three-clause BSD license above. The copyright notices are +available in the corresponding source files; the license is as above. Here's a list: log.c: -Copyright (c) 2000 Dug Song -Copyright (c) 1993 The Regents of the University of California. + Copyright (c) 2000 Dug Song + Copyright (c) 1993 The Regents of the University of California. strlcpy.c: -Copyright (c) 1998 Todd C. Miller + Copyright (c) 1998 Todd C. Miller win32select.c: -Copyright (c) 2003 Michael A. Davis + Copyright (c) 2003 Michael A. Davis evport.c: -Copyright (c) 2007 Sun Microsystems + Copyright (c) 2007 Sun Microsystems ht-internal.h: -Copyright (c) 2002 Christopher Clark + Copyright (c) 2002 Christopher Clark minheap-internal.h: -Copyright (c) 2006 Maxim Yegorushkin + Copyright (c) 2006 Maxim Yegorushkin ============================== The arc4module is available under the following, sometimes called the "OpenBSD" license: -Copyright (c) 1996, David Mazieres -Copyright (c) 2008, Damien Miller + Copyright (c) 1996, David Mazieres + Copyright (c) 2008, Damien Miller -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ============================== The Windows timer code is based on code from libutp, which is distributed under this license, sometimes called the "MIT" license. + Copyright (c) 2010 BitTorrent, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy @@ -6924,6 +7069,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## libwebp Copyright (c) 2010, Google Inc. All rights reserved. @@ -6932,17 +7078,17 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -- Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -6956,29 +7102,32 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + ## nanopb Copyright (c) 2011 Petteri Aimonen -This software is provided 'as-is', without any express or -implied warranty. In no event will the authors be held liable +This software is provided 'as-is', without any express or +implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. -Permission is granted to anyone to use this software for any -purpose, including commercial applications, and to alter it and +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you use - this software in a product, an acknowledgment in the product +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you use + this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. -2. Altered source versions must be plainly marked as such, and +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source +3. This notice may not be removed or altered from any source distribution. + ## react-native-config The MIT License (MIT) @@ -7003,6 +7152,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## react-native-flipper + +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-pdf MIT License @@ -7027,6 +7202,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + ## react-native-safe-area-context MIT License @@ -7051,4 +7227,29 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## react-native-webview + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.plist index 9a0b5a50..382e32e1 100644 --- a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt-acknowledgements.plist @@ -5630,6 +5630,37 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + RNCPicker + Type + PSGroupSpecifier + FooterText The MIT License (MIT) @@ -7581,6 +7612,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-flipper + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2017 Wonday (@wonday.org) Permission is hereby granted, free of charge, to any person obtaining a copy @@ -7639,6 +7701,37 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-webview + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.debug.xcconfig b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.debug.xcconfig index 8c2e4262..daeeb681 100644 --- a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.debug.xcconfig @@ -3,11 +3,11 @@ CLANG_CXX_LIBRARY = compiler-default CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/Flipper-Glog/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/universal" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal" "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/Base64" "${PODS_ROOT}/Headers/Public/BoringSSL-GRPC" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CodePush" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseABTesting" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreExtension" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseFirestore" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseMessaging" "${PODS_ROOT}/Headers/Public/FirebaseRemoteConfig" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Fmt" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/JWT" "${PODS_ROOT}/Headers/Public/Libuv-gRPC" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBAuth" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFBDatabase" "${PODS_ROOT}/Headers/Public/RNFBFirestore" "${PODS_ROOT}/Headers/Public/RNFBMessaging" "${PODS_ROOT}/Headers/Public/RNFBRemoteConfig" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNRate" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNSVG" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNShare" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Codegen" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-bridging" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-logger" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SSZipArchive" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/abseil" "${PODS_ROOT}/Headers/Public/fmt" "${PODS_ROOT}/Headers/Public/gRPC-C++" "${PODS_ROOT}/Headers/Public/gRPC-Core" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/leveldb-library" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-config" "${PODS_ROOT}/Headers/Public/react-native-pdf" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "$(PODS_ROOT)/DoubleConversion" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/glog" "$(PODS_ROOT)/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/hermes-engine" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/Base64" "${PODS_ROOT}/Headers/Public/BoringSSL-GRPC" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CodePush" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseABTesting" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreExtension" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseFirestore" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseMessaging" "${PODS_ROOT}/Headers/Public/FirebaseRemoteConfig" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Fmt" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/JWT" "${PODS_ROOT}/Headers/Public/Libuv-gRPC" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBAuth" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFBDatabase" "${PODS_ROOT}/Headers/Public/RNFBFirestore" "${PODS_ROOT}/Headers/Public/RNFBMessaging" "${PODS_ROOT}/Headers/Public/RNFBRemoteConfig" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNRate" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNSVG" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNShare" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Codegen" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-bridging" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-logger" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SSZipArchive" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/abseil" "${PODS_ROOT}/Headers/Public/fmt" "${PODS_ROOT}/Headers/Public/gRPC-C++" "${PODS_ROOT}/Headers/Public/gRPC-Core" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/leveldb-library" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-config" "${PODS_ROOT}/Headers/Public/react-native-flipper" "${PODS_ROOT}/Headers/Public/react-native-pdf" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-webview" "$(PODS_ROOT)/DoubleConversion" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/glog" "$(PODS_ROOT)/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/hermes-engine" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/Base64" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/CodePush" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseABTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Boost-iOSX" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Fmt" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/JWT" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAuth" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNRate" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNShare" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-bridging" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-hermes" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-logger" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/fmt" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-config" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-pdf" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/Base64" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/CodePush" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseABTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Boost-iOSX" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Fmt" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/JWT" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAuth" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNRate" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNShare" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-bridging" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-hermes" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-logger" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/fmt" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-config" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-flipper" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-pdf" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" /usr/lib/swift OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FBLPromises/PromisesObjC.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FirebaseCore/FirebaseCore.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/GoogleUtilities/GoogleUtilities.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/ReactCommon/ReactCommon.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React_Codegen/React-Codegen.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/SSZipArchive/SSZipArchive.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/folly/RCT-Folly.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" $(inherited) -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"Base64" -l"BoringSSL-GRPC" -l"CocoaAsyncSocket" -l"CodePush" -l"DoubleConversion" -l"FirebaseABTesting" -l"FirebaseAuth" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCoreExtension" -l"FirebaseCoreInternal" -l"FirebaseCrashlytics" -l"FirebaseDatabase" -l"FirebaseFirestore" -l"FirebaseInstallations" -l"FirebaseMessaging" -l"FirebaseRemoteConfig" -l"Flipper" -l"Flipper-Boost-iOSX" -l"Flipper-DoubleConversion" -l"Flipper-Fmt" -l"Flipper-Folly" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GTMSessionFetcher" -l"GoogleDataTransport" -l"GoogleUtilities" -l"JWT" -l"Libuv-gRPC" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBAuth" -l"RNFBCrashlytics" -l"RNFBDatabase" -l"RNFBFirestore" -l"RNFBMessaging" -l"RNFBRemoteConfig" -l"RNFastImage" -l"RNGestureHandler" -l"RNRate" -l"RNReanimated" -l"RNSVG" -l"RNScreens" -l"RNShare" -l"RNVectorIcons" -l"React-Codegen" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-bridging" -l"React-cxxreact" -l"React-hermes" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-logger" -l"React-perflogger" -l"ReactCommon" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SSZipArchive" -l"SocketRocket" -l"Yoga" -l"YogaKit" -l"abseil" -l"c++" -l"c++abi" -l"fmt" -l"gRPC-C++" -l"gRPC-Core" -l"glog" -l"iconv" -l"icucore" -l"leveldb-library" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-config" -l"react-native-pdf" -l"react-native-safe-area-context" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "glog" -framework "hermes" -weak_framework "LinkPresentation" -weak_framework "UserNotifications" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"Base64" -l"BoringSSL-GRPC" -l"CocoaAsyncSocket" -l"CodePush" -l"DoubleConversion" -l"FirebaseABTesting" -l"FirebaseAuth" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCoreExtension" -l"FirebaseCoreInternal" -l"FirebaseCrashlytics" -l"FirebaseDatabase" -l"FirebaseFirestore" -l"FirebaseInstallations" -l"FirebaseMessaging" -l"FirebaseRemoteConfig" -l"Flipper" -l"Flipper-Boost-iOSX" -l"Flipper-DoubleConversion" -l"Flipper-Fmt" -l"Flipper-Folly" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GTMSessionFetcher" -l"GoogleDataTransport" -l"GoogleUtilities" -l"JWT" -l"Libuv-gRPC" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBAuth" -l"RNFBCrashlytics" -l"RNFBDatabase" -l"RNFBFirestore" -l"RNFBMessaging" -l"RNFBRemoteConfig" -l"RNFastImage" -l"RNGestureHandler" -l"RNRate" -l"RNReanimated" -l"RNSVG" -l"RNScreens" -l"RNShare" -l"RNVectorIcons" -l"React-Codegen" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-bridging" -l"React-cxxreact" -l"React-hermes" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-logger" -l"React-perflogger" -l"ReactCommon" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SSZipArchive" -l"SocketRocket" -l"Yoga" -l"YogaKit" -l"abseil" -l"c++" -l"c++abi" -l"fmt" -l"gRPC-C++" -l"gRPC-Core" -l"glog" -l"iconv" -l"icucore" -l"leveldb-library" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-config" -l"react-native-flipper" -l"react-native-pdf" -l"react-native-safe-area-context" -l"react-native-webview" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "glog" -framework "hermes" -weak_framework "LinkPresentation" -weak_framework "UserNotifications" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FBLPromises/PromisesObjC.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FirebaseCore/FirebaseCore.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/GoogleUtilities/GoogleUtilities.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/ReactCommon/ReactCommon.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React_Codegen/React-Codegen.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/SSZipArchive/SSZipArchive.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/folly/RCT-Folly.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.release.xcconfig b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.release.xcconfig index 2c697525..8858ba3d 100644 --- a/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Hurt/Pods-Hurt.release.xcconfig @@ -3,11 +3,11 @@ CLANG_CXX_LIBRARY = compiler-default CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/universal" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/Base64" "${PODS_ROOT}/Headers/Public/BoringSSL-GRPC" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CodePush" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseABTesting" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreExtension" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseFirestore" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseMessaging" "${PODS_ROOT}/Headers/Public/FirebaseRemoteConfig" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Fmt" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/JWT" "${PODS_ROOT}/Headers/Public/Libuv-gRPC" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBAuth" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFBDatabase" "${PODS_ROOT}/Headers/Public/RNFBFirestore" "${PODS_ROOT}/Headers/Public/RNFBMessaging" "${PODS_ROOT}/Headers/Public/RNFBRemoteConfig" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNRate" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNSVG" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNShare" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Codegen" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-bridging" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-logger" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SSZipArchive" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/abseil" "${PODS_ROOT}/Headers/Public/fmt" "${PODS_ROOT}/Headers/Public/gRPC-C++" "${PODS_ROOT}/Headers/Public/gRPC-Core" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/leveldb-library" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-config" "${PODS_ROOT}/Headers/Public/react-native-pdf" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "$(PODS_ROOT)/DoubleConversion" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/glog" "$(PODS_ROOT)/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/hermes-engine" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/Base64" "${PODS_ROOT}/Headers/Public/BoringSSL-GRPC" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CodePush" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseABTesting" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreExtension" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseFirestore" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseMessaging" "${PODS_ROOT}/Headers/Public/FirebaseRemoteConfig" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Fmt" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/JWT" "${PODS_ROOT}/Headers/Public/Libuv-gRPC" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBAuth" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFBDatabase" "${PODS_ROOT}/Headers/Public/RNFBFirestore" "${PODS_ROOT}/Headers/Public/RNFBMessaging" "${PODS_ROOT}/Headers/Public/RNFBRemoteConfig" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNRate" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNSVG" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNShare" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Codegen" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTAnimation" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-bridging" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-logger" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SSZipArchive" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/abseil" "${PODS_ROOT}/Headers/Public/fmt" "${PODS_ROOT}/Headers/Public/gRPC-C++" "${PODS_ROOT}/Headers/Public/gRPC-Core" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/leveldb-library" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-config" "${PODS_ROOT}/Headers/Public/react-native-flipper" "${PODS_ROOT}/Headers/Public/react-native-pdf" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-webview" "$(PODS_ROOT)/DoubleConversion" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/glog" "$(PODS_ROOT)/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-hermes" "${PODS_ROOT}/Headers/Public/hermes-engine" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/Base64" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/CodePush" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseABTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/JWT" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAuth" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNRate" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNShare" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-bridging" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-hermes" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-logger" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/fmt" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-config" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-pdf" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/Base64" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/CodePush" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseABTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/JWT" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAuth" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBDatabase" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBMessaging" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBRemoteConfig" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNRate" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNSVG" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNShare" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Codegen" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-bridging" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-hermes" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-logger" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/fmt" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-config" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-flipper" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-pdf" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" /usr/lib/swift OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FBLPromises/PromisesObjC.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FirebaseCore/FirebaseCore.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/GoogleUtilities/GoogleUtilities.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/ReactCommon/ReactCommon.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React_Codegen/React-Codegen.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/SSZipArchive/SSZipArchive.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/folly/RCT-Folly.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" $(inherited) -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DRNVERSION=69 -OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"Base64" -l"BoringSSL-GRPC" -l"CocoaAsyncSocket" -l"CodePush" -l"DoubleConversion" -l"FirebaseABTesting" -l"FirebaseAuth" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCoreExtension" -l"FirebaseCoreInternal" -l"FirebaseCrashlytics" -l"FirebaseDatabase" -l"FirebaseFirestore" -l"FirebaseInstallations" -l"FirebaseMessaging" -l"FirebaseRemoteConfig" -l"GTMSessionFetcher" -l"GoogleDataTransport" -l"GoogleUtilities" -l"JWT" -l"Libuv-gRPC" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBAuth" -l"RNFBCrashlytics" -l"RNFBDatabase" -l"RNFBFirestore" -l"RNFBMessaging" -l"RNFBRemoteConfig" -l"RNFastImage" -l"RNGestureHandler" -l"RNRate" -l"RNReanimated" -l"RNSVG" -l"RNScreens" -l"RNShare" -l"RNVectorIcons" -l"React-Codegen" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-bridging" -l"React-cxxreact" -l"React-hermes" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-logger" -l"React-perflogger" -l"ReactCommon" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SSZipArchive" -l"SocketRocket" -l"Yoga" -l"YogaKit" -l"abseil" -l"c++" -l"c++abi" -l"fmt" -l"gRPC-C++" -l"gRPC-Core" -l"glog" -l"iconv" -l"icucore" -l"leveldb-library" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-config" -l"react-native-pdf" -l"react-native-safe-area-context" -l"sqlite3" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" -weak_framework "LinkPresentation" -weak_framework "UserNotifications" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"Base64" -l"BoringSSL-GRPC" -l"CocoaAsyncSocket" -l"CodePush" -l"DoubleConversion" -l"FirebaseABTesting" -l"FirebaseAuth" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCoreExtension" -l"FirebaseCoreInternal" -l"FirebaseCrashlytics" -l"FirebaseDatabase" -l"FirebaseFirestore" -l"FirebaseInstallations" -l"FirebaseMessaging" -l"FirebaseRemoteConfig" -l"GTMSessionFetcher" -l"GoogleDataTransport" -l"GoogleUtilities" -l"JWT" -l"Libuv-gRPC" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBAuth" -l"RNFBCrashlytics" -l"RNFBDatabase" -l"RNFBFirestore" -l"RNFBMessaging" -l"RNFBRemoteConfig" -l"RNFastImage" -l"RNGestureHandler" -l"RNRate" -l"RNReanimated" -l"RNSVG" -l"RNScreens" -l"RNShare" -l"RNVectorIcons" -l"React-Codegen" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-bridging" -l"React-cxxreact" -l"React-hermes" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-logger" -l"React-perflogger" -l"ReactCommon" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SSZipArchive" -l"SocketRocket" -l"Yoga" -l"YogaKit" -l"abseil" -l"c++" -l"c++abi" -l"fmt" -l"gRPC-C++" -l"gRPC-Core" -l"glog" -l"iconv" -l"icucore" -l"leveldb-library" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-config" -l"react-native-flipper" -l"react-native-pdf" -l"react-native-safe-area-context" -l"react-native-webview" -l"sqlite3" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" -weak_framework "LinkPresentation" -weak_framework "UserNotifications" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FBLPromises/PromisesObjC.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FirebaseCore/FirebaseCore.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/GoogleUtilities/GoogleUtilities.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/ReactCommon/ReactCommon.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React_Codegen/React-Codegen.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/SSZipArchive/SSZipArchive.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/folly/RCT-Folly.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Swift.swift b/ios/Swift.swift index 25c11ea7..78dbf5ba 100644 --- a/ios/Swift.swift +++ b/ios/Swift.swift @@ -1,6 +1,6 @@ // // Swift.swift -// Hurt +// Apply // // Created by Max on 30/11/2020. // Copyright © 2020 Facebook. All rights reserved. diff --git a/ios/link-assets-manifest.json b/ios/link-assets-manifest.json new file mode 100644 index 00000000..dae35c9e --- /dev/null +++ b/ios/link-assets-manifest.json @@ -0,0 +1,33 @@ +{ + "migIndex": 1, + "data": [ + { + "path": "src/assets/fonts/AvenirLTStd-Black.otf", + "sha1": "eb534ac4079db239cdd489df7a1aa2b874b5b599" + }, + { + "path": "src/assets/fonts/AvenirLTStd-Book.otf", + "sha1": "db6bfde1c5f1f6d8129df5dce9484d88d3646f0d" + }, + { + "path": "src/assets/fonts/AvenirLTStd-Roman.otf", + "sha1": "a614776d8ee6be9ed01ccc136ac5daed16ba604b" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Black.otf", + "sha1": "dfbebfd75b5a746d431ada72d429ace293e56aba" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Bold.otf", + "sha1": "dfb4ada4e66bbbd4b4b87e9f8e1c09e151ea1c47" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Light.otf", + "sha1": "cc166b979b2296ad4138f137766dba771ba886b8" + }, + { + "path": "src/assets/fonts/TiemposHeadline-Regular.otf", + "sha1": "96c55b97053f962ccc2210d4279caec484074c97" + } + ] +} diff --git a/package.json b/package.json index abc8f16c..f7ace8ec 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "prettier": "prettier -c \"./src/**/*.{js,ts,tsx}\"", "prettier:fix": "yarn prettier --write", "clean-up": "yarn prettier --write && yarn tsc && yarn lint --fix", - "codePushIos": "appcenter codepush release-react -a Hurt/Hurt-iOS --plist-file ios/MindfulChef/Info.plist --description \"$(git log HEAD~1..HEAD)\"", - "codePushAndroid": "appcenter codepush release-react -a Hurt/Hurt-Android --description \"$(git log HEAD~1..HEAD)\"" + "codePushIos": "appcenter codepush release-react -a Apply/Apply-iOS --plist-file ios/MindfulChef/Info.plist --description \"$(git log HEAD~1..HEAD)\"", + "codePushAndroid": "appcenter codepush release-react -a Apply/Apply-Android --description \"$(git log HEAD~1..HEAD)\"" }, "jest": { "preset": "react-native", @@ -61,6 +61,7 @@ "react-native-svg": "^12.4.0", "react-native-uuid": "^2.0.1", "react-native-vector-icons": "^9.2.0", + "react-native-webview": "^11.23.0", "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-persist": "^6.0.0", @@ -69,6 +70,7 @@ }, "devDependencies": { "@babel/core": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/runtime": "^7.18.6", "@react-native-community/eslint-config": "^3.0.3", "@types/jest": "^28.1.5", @@ -84,6 +86,7 @@ "@typescript-eslint/parser": "^5.30.6", "babel-eslint": "^10.1.0", "babel-jest": "^28.1.3", + "babel-plugin-module-resolver": "^4.1.0", "eslint": "^8.20.0", "eslint-config-prettier": "^8.5.0", "eslint-config-standard": "^17.0.0", @@ -91,6 +94,7 @@ "eslint-plugin-fp": "^2.3.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.6.1", + "eslint-plugin-module-resolver": "^1.4.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.0.0", diff --git a/react-native.config.js b/react-native.config.js new file mode 100644 index 00000000..e2b362ae --- /dev/null +++ b/react-native.config.js @@ -0,0 +1,7 @@ +module.exports = { + project: { + ios:{}, + android:{} + }, + assets:['./src/assets/fonts/'], +} \ No newline at end of file diff --git a/resources.d.ts b/resources.d.ts new file mode 100644 index 00000000..efaf1881 --- /dev/null +++ b/resources.d.ts @@ -0,0 +1,21 @@ +declare module "*.svg?inline" { + const content: any; + export default content; +} + +declare module "*.svg" { + const content: any; + export default content; +} + +declare module "*.png?inline" { + const content: any; + export default content; +} + +declare module "*.png" { + const content: any; + export default content; +} + +declare module "*.json"; diff --git a/src/api/auth/firebase-auth.ts b/src/api/auth/firebase-auth.ts index 0daf3644..81c830dc 100644 --- a/src/api/auth/firebase-auth.ts +++ b/src/api/auth/firebase-auth.ts @@ -7,45 +7,14 @@ import { Alert } from "react-native"; import DeviceInfo from "react-native-device-info"; import uuid from "react-native-uuid"; -export type UserPayload = { - additionalUserInfo: { - isNewUser: boolean; - profile: unknown; - providerId: string; - username: string | null; - }; - user: { - displayName: string | null; - email: string; - emailVerified: boolean; - isAnonymous: boolean; - metadata: unknown; - phoneNumber: string | null; - photoURL: string | null; - providerData: unknown; - providerId: string; - refreshToken: string; - tenantId: string | null; - uid: string; - }; -}; +import { logError } from "../logger"; -export type NewUserData = { - id: string; - email: string; - firstName: string; - lastName: string; - uuid: string; - platform: string; - version: string; - osVersion: string; - createdAt: string; -}; +import { FirebaseUser, UserData } from "../../types/api-types"; export const login = ( username: string, password: string, -): Promise => { +): Promise => { return auth() .signInWithEmailAndPassword(username, password) .then(user => user) @@ -56,7 +25,10 @@ export const logout = (): Promise => { return auth() .signOut() .then(() => true) - .catch(_error => false); + .catch(error => { + logError("Logout error", error); + return false; + }); }; export const register = async ( @@ -64,7 +36,7 @@ export const register = async ( lastName: string, email: string, password: string, -): Promise => { +): Promise => { return auth() .createUserWithEmailAndPassword(email, password) .then(response => { @@ -101,14 +73,17 @@ export const register = async ( }) .catch(error => { if (error.code === "auth/email-already-in-use") { - console.log("That email address is already in use!"); + logError("Registration", "Email address is already in use"); + } + + if (error.code === "auth/invalid-email") { + logError("Registration", "Email address is already in use"); } if (error.code === "auth/invalid-email") { - console.log("That email address is invalid!"); + logError("Registration", "Email address is invalid"); } - console.error(error); Alert.alert(error.code); return error.code; }); @@ -137,6 +112,18 @@ export const getUser = async (userId: string) => { return null; } - const user = doc.data() as NewUserData; + const user = doc.data() as UserData; return user; }; + +export const deleteUser = async () => { + const { currentUser } = auth(); + + try { + await currentUser?.delete(); + return true; + } catch (error: unknown) { + logError("Delete user", error); + return false; + } +}; diff --git a/src/api/logger.ts b/src/api/logger.ts new file mode 100644 index 00000000..f69a9030 --- /dev/null +++ b/src/api/logger.ts @@ -0,0 +1,29 @@ +import crashlytics from "@react-native-firebase/crashlytics"; + +import { FirebaseUser } from "../types/api-types"; + +export const logError = (name: string, error?: string | unknown) => { + if (name && typeof error === "string") { + console.log(`Event: ${name}: ${error}`); + } else { + console.log(`Event: ${name}:`, error); + } +}; + +export const log = (message: string) => { + crashlytics().log(message); +}; + +export const recordError = (error: unknown) => { + crashlytics().recordError(error as Error); +}; + +export const setUser = ({ user }: FirebaseUser, loggedIn: boolean) => { + if (user) { + crashlytics().setUserId(String(user.uid)); + crashlytics().setAttributes({ + loggedIn: String(loggedIn), + userUuid: String(user.uid), + }); + } +}; diff --git a/src/api/networkingApi.ts b/src/api/networkingApi.ts index 7ee26f5c..f4fc982f 100644 --- a/src/api/networkingApi.ts +++ b/src/api/networkingApi.ts @@ -1,9 +1,14 @@ -export const _doPost = async (url: string, body: string) => { +export const makePostRequest = async ( + url: string, + body?: string, + extraHeaders?: object, +) => { return fetch(url, { method: "POST", headers: { Accept: "application/json", "Content-Type": "application/json", + ...extraHeaders, }, body, }) @@ -16,7 +21,7 @@ export const _doPost = async (url: string, body: string) => { }); }; -export const _doGet = async ( +export const makeGetRequest = async ( url: string, headers?: object, payload?: unknown, diff --git a/src/assets/fonts/AvenirLTStd-Black.otf b/src/assets/fonts/AvenirLTStd-Black.otf new file mode 100644 index 00000000..714fdfb9 Binary files /dev/null and b/src/assets/fonts/AvenirLTStd-Black.otf differ diff --git a/src/assets/fonts/AvenirLTStd-Book.otf b/src/assets/fonts/AvenirLTStd-Book.otf new file mode 100644 index 00000000..52ab53e8 Binary files /dev/null and b/src/assets/fonts/AvenirLTStd-Book.otf differ diff --git a/src/assets/fonts/AvenirLTStd-Roman.otf b/src/assets/fonts/AvenirLTStd-Roman.otf new file mode 100644 index 00000000..de238e6b Binary files /dev/null and b/src/assets/fonts/AvenirLTStd-Roman.otf differ diff --git a/src/assets/fonts/TiemposHeadline-Black.otf b/src/assets/fonts/TiemposHeadline-Black.otf new file mode 100644 index 00000000..d1934bf4 Binary files /dev/null and b/src/assets/fonts/TiemposHeadline-Black.otf differ diff --git a/src/assets/fonts/TiemposHeadline-Bold.otf b/src/assets/fonts/TiemposHeadline-Bold.otf new file mode 100644 index 00000000..0531681d Binary files /dev/null and b/src/assets/fonts/TiemposHeadline-Bold.otf differ diff --git a/src/assets/fonts/TiemposHeadline-Light.otf b/src/assets/fonts/TiemposHeadline-Light.otf new file mode 100644 index 00000000..843c8b17 Binary files /dev/null and b/src/assets/fonts/TiemposHeadline-Light.otf differ diff --git a/src/assets/fonts/TiemposHeadline-Regular.otf b/src/assets/fonts/TiemposHeadline-Regular.otf new file mode 100644 index 00000000..52280c56 Binary files /dev/null and b/src/assets/fonts/TiemposHeadline-Regular.otf differ diff --git a/src/components/Article.tsx b/src/components/Article.tsx index ebef5b52..5f151ef4 100644 --- a/src/components/Article.tsx +++ b/src/components/Article.tsx @@ -11,16 +11,16 @@ import { DateTime } from "luxon"; import { ImagePlaceholder } from "./ImagePlaceholder"; import { BodyText } from "./BodyText"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; -import { NewsArticle } from "../store/reducers/data"; +import { NewsArticle } from "../types/api-types"; interface Props { item: NewsArticle; } const styles = StyleSheet.create({ container: { - borderColor: Colors.grey, + borderColor: colors.grey, borderWidth: 1, borderRadius: 6, marginBottom: 12, @@ -43,20 +43,20 @@ const styles = StyleSheet.create({ title: { fontSize: 16, fontWeight: "bold", - color: Colors.black, + color: colors.black, overflow: "hidden", }, date: { fontWeight: "bold", - color: Colors.darkGrey, + color: colors["grey-500"], marginVertical: 8, }, source: { fontStyle: "italic", - color: Colors.darkGrey, + color: colors["grey-500"], }, summary: { - color: Colors.black, + color: colors.black, overflow: "hidden", paddingTop: 12, }, diff --git a/src/components/BodyText.tsx b/src/components/BodyText.tsx index 6672c3ab..8e8b81c1 100644 --- a/src/components/BodyText.tsx +++ b/src/components/BodyText.tsx @@ -1,11 +1,42 @@ -import React from "react"; -import { Text, TextProps, StyleProp, TextStyle } from "react-native"; +import React, { memo } from "react"; -interface Props { - children: T; - style?: StyleProp; +import { + BodyTextFontFamilyToken, + BodyTextSizingToken, + BodyTextLetterSpacingToken, + theme, +} from "../theme"; +import { Text, TextProps } from "./Text"; + +export interface BodyTextProps extends TextProps { + size?: BodyTextSizingToken; + fontWeight?: BodyTextFontFamilyToken; + capitalized?: boolean; + spacingSize?: BodyTextLetterSpacingToken; } -export const BodyText = (props: Props & TextProps) => { - return ; -}; +export const BodyText = memo( + ({ + style, + fontWeight = "light", + capitalized = false, + size = "medium", + spacingSize = "regular", + ...rest + }: BodyTextProps) => ( + + ), +); diff --git a/src/components/Box.tsx b/src/components/Box.tsx new file mode 100644 index 00000000..8159908b --- /dev/null +++ b/src/components/Box.tsx @@ -0,0 +1,171 @@ +import React, { memo } from "react"; +import { StyleSheet, View, ViewProps } from "react-native"; + +import { ColorToken, SpacingToken, theme, ZIndicesToken } from "../theme"; + +export interface BoxProps extends ViewProps { + flex?: number; + flexDirection?: "row" | "column"; + flexWrap?: "wrap" | "nowrap" | "wrap-reverse"; + justifyContent?: + | "flex-start" + | "center" + | "space-between" + | "space-around" + | "space-evenly" + | "flex-end"; + alignItems?: "center" | "flex-start" | "flex-end" | "baseline" | "stretch"; + spacing?: SpacingToken; + paddingTop?: SpacingToken; + paddingBottom?: SpacingToken; + paddingRight?: SpacingToken; + paddingLeft?: SpacingToken; + marginTop?: SpacingToken; + marginLeft?: SpacingToken; + marginBottom?: SpacingToken; + marginRight?: SpacingToken; + backgroundColor?: ColorToken; + zIndex?: ZIndicesToken; + Separator?: React.ElementType; +} + +export const Box = memo( + ({ + flex, + flexDirection, + flexWrap, + alignItems, + justifyContent, + paddingTop, + paddingBottom, + paddingRight, + paddingLeft, + spacing, + marginTop, + marginLeft, + marginBottom, + marginRight, + backgroundColor, + zIndex, + children, + style, + Separator, + ...rest + }: BoxProps) => { + let spacedChildren = children; + + const isWrapped = + flexWrap === "wrap" || + flexWrap === "wrap-reverse" || + (style && + ["wrap", "wrap-reverse"].includes( + StyleSheet.flatten(style).flexWrap || "", + )); + + const isRow = + flexDirection === "row" || + (style && StyleSheet.flatten(style).flexDirection === "row"); + + // Apply some spacing between this component's children if the "spacing" prop exists + if (spacing || !!Separator) { + // Required to remove "null" from children + const childArray = React.Children.toArray(children); + + // Go through each of the child elements... + spacedChildren = React.Children.map(childArray, (child, index) => { + if (!child) return null; + + // Apply bottom margin if the container is not flex row or wrapping content + const childMarginBottom = + isWrapped || (!isRow && index < childArray.length - 1) + ? spacing + : undefined; + + // Apply right margin if the container is flex row or wrapping content + const childMarginRight = + isWrapped || (isRow && index < childArray.length - 1) + ? spacing + : undefined; + + // Determine wether we need to display a seperator component + const shouldAddSeperator = !!Separator && index < childArray.length - 1; + + // Add the margins directly to the child if it is a Box element + if ((child as React.ReactElement).type === Box) { + return ( + <> + {React.cloneElement(child as React.ReactElement, { + marginBottom: childMarginBottom, + marginRight: childMarginRight, + })} + {shouldAddSeperator ? ( + + + + ) : null} + + ); + } + + // Otherwise, create a new Box element around the child component + return ( + <> + + {child} + + {shouldAddSeperator ? ( + + + + ) : null} + + ); + }); + } + + return ( + + {spacedChildren} + + ); + }, +); diff --git a/src/components/Button.tsx b/src/components/Button.tsx index b61d4682..de99c54a 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -1,8 +1,9 @@ import React from "react"; -import { StyleSheet, Text, View } from "react-native"; -import { RectButton } from "react-native-gesture-handler"; +import { StyleSheet, View, TouchableOpacity } from "react-native"; -import { Colors } from "../constants/Colors"; +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; type Props = { title: string; @@ -12,12 +13,16 @@ type Props = { export const Button = ({ title, onPress, disabled }: Props) => { return !disabled ? ( - - {title} - + + + {title} + + ) : ( - {title} + + {title} + ); }; @@ -28,20 +33,13 @@ const styles = StyleSheet.create({ alignItems: "center", borderBottomWidth: 0, paddingHorizontal: 15, - backgroundColor: Colors.gold, + backgroundColor: colors.purple, }, disabledButtonContainer: { paddingVertical: 15, alignItems: "center", borderBottomWidth: 0, paddingHorizontal: 15, - backgroundColor: Colors.grey, - }, - title: { - fontSize: 12, - color: Colors.white, - alignSelf: "center", - letterSpacing: 4, - fontWeight: "bold", + backgroundColor: colors.grey, }, }); diff --git a/src/components/ButtonWithIcon.tsx b/src/components/ButtonWithIcon.tsx index 2b174bd0..136a1fc2 100644 --- a/src/components/ButtonWithIcon.tsx +++ b/src/components/ButtonWithIcon.tsx @@ -1,9 +1,12 @@ import React from "react"; -import { StyleSheet, Text, View } from "react-native"; +import { TouchableOpacity, StyleSheet } from "react-native"; import Icon from "react-native-vector-icons/Ionicons"; -import { RectButton } from "react-native-gesture-handler"; -import { Colors } from "../constants/Colors"; +import { Box } from "./Box"; +import { BodyText } from "./BodyText"; +import { Separator } from "./Separator"; + +import { colors } from "../theme"; type Props = { label: string; @@ -13,37 +16,28 @@ type Props = { export const ButtonWithIcon = ({ label, icon, onPress }: Props) => { return ( - - - - - - {label} - - + + + + + + + {label} + + ); }; const styles = StyleSheet.create({ - buttonContainer: { - flexDirection: "row", - }, - iconContainer: { - marginRight: 12, - }, - option: { - paddingVertical: 15, - paddingHorizontal: 15, - borderColor: Colors.grey, - borderWidth: StyleSheet.hairlineWidth, - marginTop: -1, - marginBottom: 1, - }, - optionText: { - marginTop: 1, - fontSize: 12, - letterSpacing: 4, - alignSelf: "flex-start", + text: { + letterSpacing: 2, textTransform: "uppercase", }, }); diff --git a/src/components/Carousel.tsx b/src/components/Carousel.tsx index fc1a0a8d..e75a8797 100644 --- a/src/components/Carousel.tsx +++ b/src/components/Carousel.tsx @@ -9,7 +9,7 @@ import { import FastImage from "react-native-fast-image"; import Icon from "react-native-vector-icons/Ionicons"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; interface Props { data: string[]; @@ -29,7 +29,7 @@ const WIDTH = Dimensions.get("window").width; const keyExtractor = (item: string, index: number) => `${item} ${index}`; const ImagePlaceholder = (props: ImageHeight) => ( - + ); @@ -121,14 +121,14 @@ const styles = StyleSheet.create({ height: 8, borderRadius: 4, marginHorizontal: 3, - backgroundColor: Colors.grey, + backgroundColor: colors.grey, }, inactive: { opacity: 0.4, }, imagePlaceholder: { width: WIDTH, - backgroundColor: Colors.lightGrey, + backgroundColor: colors["grey-100"], flexDirection: "row", alignItems: "center", justifyContent: "center", diff --git a/src/components/CustomButton.tsx b/src/components/CustomButton.tsx new file mode 100644 index 00000000..0d81c01d --- /dev/null +++ b/src/components/CustomButton.tsx @@ -0,0 +1,73 @@ +import React, { memo } from "react"; +import { + Linking, + NativeSyntheticEvent, + NativeTouchEvent, + TouchableOpacity, + TouchableOpacityProps, +} from "react-native"; +import { useLinkTo } from "@react-navigation/native"; +import { logError } from "../api/logger"; + +export interface CustomButtonProps extends TouchableOpacityProps { + accessibilityLabel: string; + to?: string; + url?: string; + wrapWithTouchableOpacity?: boolean; + children: React.ReactElement; +} + +export const CustomButton = memo( + ({ + wrapWithTouchableOpacity = true, + children, + url, + to, + onPress, + ...rest + }: CustomButtonProps) => { + const linkTo = useLinkTo(); + + const handleLinkPress = async ( + e: NativeSyntheticEvent, + ) => { + if (onPress) { + onPress(e); + } + + if (to) { + linkTo(to); + } + + if (url) { + try { + if (await Linking.canOpenURL(url)) { + await Linking.openURL(url); + } else { + throw new Error("Can't open URL " + url); + } + } catch (error) { + logError("CustomButton - handleLinkPress", error); + } + } + }; + + if (!wrapWithTouchableOpacity) { + return React.cloneElement(children, { + accessible: true, + accessibilityRole: typeof url !== "undefined" ? "link" : "button", + onPress: handleLinkPress, + }); + } + + return ( + + {children} + + ); + }, +); diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx deleted file mode 100644 index d8fe1c74..00000000 --- a/src/components/Divider.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from "react"; -import { StyleSheet, View, ViewProps } from "react-native"; - -import { Colors } from "../constants/Colors"; - -interface OwnProps { - margin?: number; -} - -type Props = ViewProps & OwnProps; - -export const Divider = ({ margin, ...props }: Props) => ( - -); - -const styles = StyleSheet.create({ - container: { - borderTopWidth: StyleSheet.hairlineWidth, - borderRightWidth: 0, - borderBottomWidth: 0, - borderLeftWidth: 0, - borderColor: Colors.gold, - }, -}); diff --git a/src/components/Dropdown.tsx b/src/components/Dropdown.tsx index 74a139ed..b1601eed 100644 --- a/src/components/Dropdown.tsx +++ b/src/components/Dropdown.tsx @@ -3,7 +3,6 @@ import { Modal, StyleProp, StyleSheet, - Text, TextInput, TouchableOpacity, View, @@ -13,7 +12,10 @@ import { Picker } from "@react-native-picker/picker"; import Icon from "react-native-vector-icons/FontAwesome"; import { PhoneNumberPrefix } from "."; -import { Colors } from "../constants/Colors"; + +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; interface CountryCodeValueType { name: string; @@ -22,7 +24,7 @@ interface CountryCodeValueType { dialCode: string; } -interface PickerElement { +export interface PickerElement { key: string; value: string; } @@ -93,7 +95,7 @@ export const Dropdown = (props: Props) => { return ( - + { styleInput, styles.textInput, value - ? { fontSize: 20, color: Colors.black } - : { fontSize: 16, color: Colors.grey }, - required && !value - ? { borderBottomColor: Colors.required } - : null, + ? { fontSize: 20, color: colors.black } + : { fontSize: 16, color: colors.grey }, + required && !value ? { borderBottomColor: colors.error } : null, ]} /> - + @@ -117,12 +117,10 @@ export const Dropdown = (props: Props) => { {pickerData && renderPicker ? ( - - + + - - Done - + Done { + const isFocused = useIsFocused(); + return isFocused ? ( + + ) : null; +}; diff --git a/src/components/GenericModal.tsx b/src/components/GenericModal.tsx index cd9bb830..51a0e3a6 100644 --- a/src/components/GenericModal.tsx +++ b/src/components/GenericModal.tsx @@ -3,14 +3,15 @@ import { Modal, StyleProp, StyleSheet, - Text, TextStyle, TouchableOpacity, View, ViewStyle, } from "react-native"; -import { Colors } from "../constants/Colors"; +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; export type ButtonOptions = { title: string; @@ -49,17 +50,21 @@ export const GenericModal = (props: Props) => { - + {title} - + {body ? ( - + {body} - + ) : null} {children || null} @@ -69,29 +74,29 @@ export const GenericModal = (props: Props) => { - {secondaryButton.title} - + ) : null} - {primaryButton.title} - + diff --git a/src/components/Header.tsx b/src/components/Header.tsx new file mode 100644 index 00000000..8a96575f --- /dev/null +++ b/src/components/Header.tsx @@ -0,0 +1,43 @@ +import React, { memo } from "react"; +import { ColorSchemeName } from "react-native"; +import { useNavigation } from "@react-navigation/native"; + +import { Subheading, Box, CustomButton } from "."; + +export interface HeaderProps { + colorScheme?: ColorSchemeName; + backButtonLabel: string; + handleBackButtonPress?: () => void; +} + +export const Header = memo( + ({ backButtonLabel, colorScheme, handleBackButtonPress }: HeaderProps) => { + const navigation = useNavigation(); + + const textColor = colorScheme === "dark" ? "purple" : "white"; + + return ( + { + if (handleBackButtonPress) { + handleBackButtonPress(); + } else { + navigation.goBack(); + } + }}> + + {/* */} + + {backButtonLabel} + + + + ); + }, +); + +export const headerTestIds = { + backButton: "header-back-button", +}; diff --git a/src/components/Heading.tsx b/src/components/Heading.tsx new file mode 100644 index 00000000..83c69a04 --- /dev/null +++ b/src/components/Heading.tsx @@ -0,0 +1,25 @@ +import React, { memo } from "react"; + +import { HeadingSizingToken, theme } from "../theme"; +import { Text, TextProps } from "./Text"; + +export interface HeadingProps extends TextProps { + size?: HeadingSizingToken; +} + +export const Heading = memo( + ({ style, color = "primary", size = "large", ...rest }: HeadingProps) => ( + + ), +); diff --git a/src/components/HyperLink.tsx b/src/components/HyperLink.tsx index 4913dc27..a71bb41d 100644 --- a/src/components/HyperLink.tsx +++ b/src/components/HyperLink.tsx @@ -1,13 +1,7 @@ -import React from "react"; -import { - Alert, - Linking, - StyleSheet, - Text, - TouchableOpacity, -} from "react-native"; +import React, { memo } from "react"; +import { Alert, Linking, TouchableOpacity } from "react-native"; -import { Colors } from "../constants/Colors"; +import { BodyText, BodyTextProps } from "./BodyText"; type Props = { text: string; @@ -16,21 +10,20 @@ type Props = { const openUrl = (url: string) => Linking.openURL(url).catch(() => - Alert.alert(`Error:, ${url} could not be opened!`)); + Alert.alert(`Error:, ${url} could not be opened!`), + ); -export const HyperLink = ({ text, url }: Props) => ( - openUrl(url)}> - {text} - +export const HyperLink = memo( + ({ text, url, ...rest }: BodyTextProps & Props) => ( + openUrl(url)}> + + {text} + + + ), ); - -const styles = StyleSheet.create({ - linkContainer: { - alignSelf: "center", - }, - linkText: { - fontSize: 14, - color: Colors.link, - textDecorationLine: "underline", - }, -}); diff --git a/src/components/ImagePlaceholder.tsx b/src/components/ImagePlaceholder.tsx index f62e9d9e..ceb9f3c8 100644 --- a/src/components/ImagePlaceholder.tsx +++ b/src/components/ImagePlaceholder.tsx @@ -2,7 +2,7 @@ import React from "react"; import { StyleSheet, View } from "react-native"; import Icon from "react-native-vector-icons/Ionicons"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; interface Props { size?: number; @@ -19,7 +19,7 @@ export const ImagePlaceholder = (props: Props) => { const styles = StyleSheet.create({ container: { flex: 1, - backgroundColor: Colors.veryLightGrey, + backgroundColor: colors["grey-50"], width: 100, height: 100, alignItems: "center", @@ -29,6 +29,6 @@ const styles = StyleSheet.create({ padding: 0, margin: 0, alignSelf: "center", - color: Colors.grey, + color: colors.grey, }, }); diff --git a/src/components/InputWithLabel.tsx b/src/components/InputWithLabel.tsx index a258938f..af63b4d1 100644 --- a/src/components/InputWithLabel.tsx +++ b/src/components/InputWithLabel.tsx @@ -2,14 +2,15 @@ import React, { useState } from "react"; import { StyleProp, StyleSheet, - Text, TextInput, TextStyle, View, ViewStyle, KeyboardTypeOptions, } from "react-native"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; + +import { BodyText } from "./BodyText"; interface Props { value: string; @@ -55,7 +56,7 @@ export const InputWithLabel = (props: Props) => { const labelStyle: TextStyle = { position: "absolute", left: 10, - color: Colors.black, + color: colors.white, top: isSmallLabel ? 4 : 14, fontSize: isSmallLabel ? 12 : 16, }; @@ -65,20 +66,24 @@ export const InputWithLabel = (props: Props) => { return ( {hideLabelWhenFocused ? ( - {label} + {label} + ) : null} + {!hideLabelWhenFocused ? ( + {label} ) : null} - {!hideLabelWhenFocused ? {label} : null} {showRequired ? ( - Required + Required ) : null} - {error ? {error} : null} + {error ? ( + {error} + ) : null} {maxLength ? ( - + {value.length}/{maxLength} - + ) : null} { isFocused ? styles.focused : null, hideLabelWhenFocused ? styles.textInputWithNoLabel : null, maxLength ? styles.textInputWithCounter : null, - showRequired ? { borderBottomColor: Colors.required } : null, + showRequired ? { borderBottomColor: colors.error } : null, ]} onFocus={onFocus} onBlur={onBlur} @@ -112,12 +117,12 @@ const styles = StyleSheet.create({ paddingRight: 8, marginBottom: 16, paddingBottom: 6, - color: Colors.black, - borderColor: Colors.darkGrey, + color: colors.primary, + borderColor: colors.primary, borderWidth: 1, }, focused: { - borderColor: Colors.gold, + borderColor: colors.purple, }, textInputWithCounter: { paddingRight: 45, @@ -131,19 +136,19 @@ const styles = StyleSheet.create({ top: 4, right: 10, fontSize: 12, - color: Colors.required, + color: colors.error, }, maxLength: { position: "absolute", bottom: 4, right: 10, fontSize: 12, - color: Colors.black, + color: colors.primary, }, outsideLabel: { marginBottom: 6, - color: Colors.darkGrey, - fontSize: 10, + color: colors.primary, + fontSize: 12, textTransform: "uppercase", }, }); diff --git a/src/components/Loader.tsx b/src/components/Loader.tsx index 2c269fef..460487d9 100644 --- a/src/components/Loader.tsx +++ b/src/components/Loader.tsx @@ -1,18 +1,20 @@ import React from "react"; -import { StyleSheet, View, Text } from "react-native"; +import { StyleSheet, View } from "react-native"; import * as Progress from "react-native-progress"; +import { BodyText } from "./BodyText"; + import { StringValues } from "../constants/StringValues"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; export const Loader = () => ( - {StringValues.loading} + {StringValues.loading} diff --git a/src/components/NavigationLink.tsx b/src/components/NavigationLink.tsx index 1e03a740..f5248f13 100644 --- a/src/components/NavigationLink.tsx +++ b/src/components/NavigationLink.tsx @@ -1,26 +1,29 @@ -import React from "react"; -import { StyleSheet, Text, TouchableOpacity } from "react-native"; +import React, { memo } from "react"; -import { Colors } from "../constants/Colors"; +import { TouchableOpacity } from "react-native"; + +import { BodyText, BodyTextProps } from "./BodyText"; + +export interface NavigationLinkProps extends BodyTextProps {} type Props = { text: string; + capitalized?: boolean; onPress: () => void; }; -export const NavigationLink = ({ text, onPress }: Props) => ( - - {text} - +export const NavigationLink = memo( + ({ text, capitalized, onPress, ...rest }: BodyTextProps & Props) => ( + + + {text} + + + ), ); - -const styles = StyleSheet.create({ - linkContainer: { - paddingVertical: 12, - alignSelf: "center", - }, - linkText: { - fontSize: 14, - color: Colors.gold, - }, -}); diff --git a/src/components/OptionSwitch.tsx b/src/components/OptionSwitch.tsx index 84487b10..fd697b05 100644 --- a/src/components/OptionSwitch.tsx +++ b/src/components/OptionSwitch.tsx @@ -1,7 +1,9 @@ import React from "react"; -import { StyleSheet, Text, TouchableOpacity, View } from "react-native"; +import { StyleSheet, TouchableOpacity, View } from "react-native"; -import { Colors } from "../constants/Colors"; +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; interface Props { value: boolean | null; @@ -14,19 +16,21 @@ export const OptionSwitch = ({ value, onValueChange, required }: Props) => ( style={[ styles.container, required - ? { borderBottomColor: Colors.required, borderBottomWidth: 1 } + ? { borderBottomColor: colors.error, borderBottomWidth: 1 } : null, ]}> onValueChange(true)}> - + Yes - + onValueChange(false)}> - + No - + ); @@ -45,17 +49,17 @@ const styles = StyleSheet.create({ padding: 12, paddingHorizontal: 24, fontSize: 16, - color: Colors.black, + color: colors.black, borderWidth: 1, - borderColor: Colors.grey, - backgroundColor: Colors.lightGrey, + borderColor: colors.grey, + backgroundColor: colors["grey-100"], borderRadius: 6, }, active: { fontWeight: "600", borderWidth: 1, - borderColor: Colors.lightGrey, - backgroundColor: Colors.white, - color: Colors.black, + borderColor: colors["grey-100"], + backgroundColor: colors.white, + color: colors.black, }, }); diff --git a/src/components/PhoneNumberPrefix.tsx b/src/components/PhoneNumberPrefix.tsx index 197d8598..43ac0548 100644 --- a/src/components/PhoneNumberPrefix.tsx +++ b/src/components/PhoneNumberPrefix.tsx @@ -1,8 +1,10 @@ import React, { useState } from "react"; -import { StyleSheet, Text, TouchableOpacity, View } from "react-native"; +import { StyleSheet, TouchableOpacity, View } from "react-native"; import { Picker } from "@react-native-picker/picker"; -import { Colors } from "../constants/Colors"; +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; import { data } from "../utils/countries"; interface CountryCodeValueType { @@ -36,12 +38,14 @@ export const PhoneNumberPrefix = ({ onValueChange }: Props) => { const itemValue = data[itemIndex]; return ( - - + + onValueChange(itemValue)} style={styles.button}> - Done + + Done + void; + icon: string; + title?: string; +}; + +export const RoundButtonWithIcon = ({ title, onPress, icon }: Props) => ( + + + + + {title ? ( + + + {title} + + + ) : null} + +); + +const styles = StyleSheet.create({ + roundButton: { + width: 50, + height: 50, + borderRadius: 25, + backgroundColor: "black", + alignContent: "center", + alignItems: "center", + justifyContent: "center", + }, +}); diff --git a/src/components/Screen.tsx b/src/components/Screen.tsx index bca0888b..6f79c652 100644 --- a/src/components/Screen.tsx +++ b/src/components/Screen.tsx @@ -2,19 +2,25 @@ import React from "react"; import { StyleSheet, View } from "react-native"; import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; type Props = { children: React.ReactNode; noHorizontalPadding?: boolean; + transparent?: boolean; }; -export const Screen = ({ children, noHorizontalPadding }: Props) => ( +export const Screen = ({ + children, + noHorizontalPadding, + transparent, +}: Props) => ( { + const r = parseInt(color.substring(1, 3), 16); + const g = parseInt(color.substring(3, 5), 16); + const b = parseInt(color.substring(5, 7), 16); + const yiq = (r * 299 + g * 587 + b * 114) / 1000; + return yiq >= 128 ? "dark" : "light"; +}; + +const ScrollWrapper = ({ + children, + useScrollView, + hasStickyHeader, +}: ScrollWrapperProps) => + useScrollView ? ( + + {children} + + ) : ( + children + ); + +type BackButtonOnly = { + backButtonLabel?: string; + title?: never; +}; + +type TitleOnly = { + backButtonLabel?: never; + title?: string; +}; + +type ScreenWrapperProps = BoxProps & { + padding?: SpacingToken; + backgroundColor?: ColorToken; + backButtonLabel?: string; + noBottomNav?: boolean; + title?: string; + footerContent?: React.ElementType; + useScrollView?: boolean; +} & (BackButtonOnly | TitleOnly); + +export const ScreenWrapper = memo( + ({ + backgroundColor = "white", + backButtonLabel, + children, + padding = "large", + noBottomNav = false, + title, + footerContent, + useScrollView = true, + ...rest + }: ScreenWrapperProps) => { + const colorScheme = getColorSchemeForColor(theme.colors[backgroundColor]); + + return ( + <> + {colorScheme ? ( + + ) : null} + + + + + + {/* Back button */} + {backButtonLabel ? ( + +
+ + + ) : null} + + {/* Main content */} + + {!!title && {title}} + {children} + + + + {footerContent && <>{React.createElement(footerContent)}} + + + + ); + }, +); diff --git a/src/components/Separator.tsx b/src/components/Separator.tsx new file mode 100644 index 00000000..b95d4f04 --- /dev/null +++ b/src/components/Separator.tsx @@ -0,0 +1,24 @@ +import React, { memo } from "react"; +import { StyleSheet } from "react-native"; + +import { colors } from "../theme"; +import { Box, BoxProps } from "./Box"; + +export interface SeperatorProps extends BoxProps {} + +export const Separator = memo(({ style, ...rest }: SeperatorProps) => ( + + + +)); + +const styles = StyleSheet.create({ + wrapper: { + height: 1, + overflow: "hidden", + }, + line: { + height: 1, + backgroundColor: colors["grey-100"], + }, +}); diff --git a/src/components/Subheading.tsx b/src/components/Subheading.tsx new file mode 100644 index 00000000..591f3f95 --- /dev/null +++ b/src/components/Subheading.tsx @@ -0,0 +1,9 @@ +import React, { memo } from "react"; + +import { BodyText, BodyTextProps } from "./BodyText"; + +export interface SubheadingProps extends BodyTextProps {} + +export const Subheading = memo(({ ...rest }: BodyTextProps) => ( + +)); diff --git a/src/components/TabBarIcon.tsx b/src/components/TabBarIcon.tsx index 2a5331dd..ea97247f 100644 --- a/src/components/TabBarIcon.tsx +++ b/src/components/TabBarIcon.tsx @@ -1,7 +1,7 @@ import React from "react"; import Icon from "react-native-vector-icons/Ionicons"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; import { TabNavigatorRoutes } from "../navigation/AppNavigator"; @@ -14,8 +14,8 @@ const getIconName = (routeName: string) => { if (routeName === TabNavigatorRoutes.HOME) { return "home-outline"; } - if (routeName === TabNavigatorRoutes.APPS) { - return "phone-portrait-outline"; + if (routeName === TabNavigatorRoutes.NEWS) { + return "newspaper-outline"; } if (routeName === TabNavigatorRoutes.SETTINGS) { return "settings-outline"; @@ -29,7 +29,7 @@ export const TabBarIcon = ({ name, focused }: IconProps) => { ); }; diff --git a/src/components/Text.tsx b/src/components/Text.tsx new file mode 100644 index 00000000..a4749bc0 --- /dev/null +++ b/src/components/Text.tsx @@ -0,0 +1,59 @@ +import React, { memo } from "react"; +import { Text as RNText, TextProps as RNTextProps } from "react-native"; + +import { ColorToken, theme } from "../theme"; + +export interface TextProps extends RNTextProps { + color?: ColorToken; + underline?: boolean; + strikethrough?: boolean; + alignment?: "auto" | "left" | "right" | "center" | "justify"; + hasShadow?: boolean; +} + +type TextDecorationLineType = + | "underline" + | "line-through" + | "none" + | "underline line-through"; + +export const Text = memo( + ({ + style, + color = "black", + underline = false, + strikethrough = false, + alignment = "auto", + hasShadow = false, + ...rest + }: TextProps) => { + let textDecorationLine = ""; + if (underline) textDecorationLine += "underline"; + if (underline && strikethrough) textDecorationLine += " "; + if (strikethrough) textDecorationLine += "line-through"; + if (!textDecorationLine) textDecorationLine = "none"; + + let shadow = {}; + if (hasShadow) { + shadow = { + textShadowColor: theme.colors.primary, + textShadowRadius: 10, + }; + } + + return ( + + ); + }, +); diff --git a/src/components/TextAreaWithLabel.tsx b/src/components/TextAreaWithLabel.tsx index 91ed37c2..536a9b1b 100644 --- a/src/components/TextAreaWithLabel.tsx +++ b/src/components/TextAreaWithLabel.tsx @@ -2,14 +2,15 @@ import React, { useState } from "react"; import { StyleProp, StyleSheet, - Text, TextInput, TextStyle, View, ViewStyle, } from "react-native"; -import { Colors } from "../constants/Colors"; +import { BodyText } from "./BodyText"; + +import { colors } from "../theme"; interface Props { value: string; @@ -39,7 +40,7 @@ export const TextAreaWithLabel = ({ const labelStyle: TextStyle = { position: "absolute", left: 10, - color: Colors.grey, + color: colors.grey, zIndex: 10, elevation: 9, top: isSmallLabel ? 4 : 14, @@ -48,16 +49,16 @@ export const TextAreaWithLabel = ({ return ( - {label} + {label} {required && value === "" ? ( - Required + Required ) : null} {maxLength ? ( - + {value.length}/{maxLength} - + ) : null} ( - - {label} - -); - -const styles = StyleSheet.create({ - container: { - marginVertical: 24, - }, - title: { - fontSize: 24, - fontWeight: "bold", - color: Colors.gold, - }, -}); diff --git a/src/components/index.ts b/src/components/index.ts index 3068452d..78b9ed77 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -11,8 +11,14 @@ export { Dropdown } from "./Dropdown"; export { OptionSwitch } from "./OptionSwitch"; export { TextAreaWithLabel } from "./TextAreaWithLabel"; export { Screen } from "./Screen"; -export { Divider } from "./Divider"; export { GenericModal } from "./GenericModal"; -export { Title } from "./Title"; export { ImagePlaceholder } from "./ImagePlaceholder"; export { Loader } from "./Loader"; +export { Box } from "./Box"; +export { Separator } from "./Separator"; +export { Subheading } from "./Subheading"; +export { Heading } from "./Heading"; +export { TabBarIcon } from "./TabBarIcon"; +export { ScreenWrapper } from "./ScreenWrapper"; +export { CustomButton } from "./CustomButton"; +export { RoundButtonWithIcon } from "./RoundButtonWithIcon"; diff --git a/src/constants/Colors.tsx b/src/constants/Colors.tsx deleted file mode 100644 index c0035ab4..00000000 --- a/src/constants/Colors.tsx +++ /dev/null @@ -1,21 +0,0 @@ -const blue = "#2f95dc"; -const red = "#CE0924"; -const gold = "#D4AF37"; - -export const Colors = { - red, - blue, - gold, - required: red, - link: "#007AFF", - black: "#000", - white: "#FFF", - grey: "#BABABA", - darkGrey: "#666666", - lightGrey: "#F1F1F1", - veryLightGrey: "#f7f7f7", - backgroundColor: "#0099FF", - - tabIconDefault: "#CCC", - tabIconSelected: blue, -}; diff --git a/src/constants/StringValues.tsx b/src/constants/StringValues.tsx index 7d2eae90..63332b1a 100644 --- a/src/constants/StringValues.tsx +++ b/src/constants/StringValues.tsx @@ -3,6 +3,7 @@ export enum StringValues { noDataAvailable = "No data available", login = "Login", email = "Email", + name = "Name", password = "Password", confirmPassword = "Confirm your password", newAccount = "New account", @@ -16,8 +17,12 @@ export enum StringValues { alreadyHaveAccount = "Already have an account? Login", contact = "Contact", logout = "Logout", + deleteAccount = "Delete account", appVersion = "App version", uuid = "UUID", termsAndConditions = "Terms & Conditions", yourDetails = "Your details", + myAccount = "My account", + cancel = "Cancel", + search = "Search", } diff --git a/src/global.d.ts b/src/global.d.ts new file mode 100644 index 00000000..820f21a0 --- /dev/null +++ b/src/global.d.ts @@ -0,0 +1,6 @@ +declare module "*.jpg" { + export default "" as string; +} +declare module "*.png" { + export default "" as string; +} diff --git a/src/navigation/AppNavigator.tsx b/src/navigation/AppNavigator.tsx index 2f369a33..265ca895 100644 --- a/src/navigation/AppNavigator.tsx +++ b/src/navigation/AppNavigator.tsx @@ -1,5 +1,5 @@ import React, { ReactNode } from "react"; -import { StyleSheet, Text } from "react-native"; +import { StyleSheet } from "react-native"; import { BottomTabNavigationOptions, createBottomTabNavigator, @@ -10,21 +10,20 @@ import { RootScreen } from "../screens/RootScreen"; import { LoginScreen } from "../screens/LoginScreen"; import { RegistrationScreen } from "../screens/RegistrationScreen"; import { HomeScreen } from "../screens/HomeScreen"; +import { NewsScreen } from "../screens/NewsScreen"; import { SettingsScreen } from "../screens/SettingsScreen"; -import { AppsScreen } from "../screens/AppsScreen"; -import { TabBarIcon } from "../components/TabBarIcon"; -import { Colors } from "../constants/Colors"; -import { isSmallScreen } from "../utils/dimensions"; +import { BodyText, TabBarIcon } from "../components"; +import { colors } from "../theme"; import { ScreenNames } from "./ScreenNames"; const styles = StyleSheet.create({ title: { - color: Colors.gold, + color: colors.tabIconFocused, }, unfocusedTitle: { - color: Colors.grey, + color: colors.tabIconUnfocused, }, }); @@ -32,15 +31,15 @@ export type NavigatorStackParamList = { [ScreenNames.ROOT]: undefined | object; [ScreenNames.TABS]: undefined | object; [ScreenNames.HOME]: undefined | object; + [ScreenNames.NEWS]: undefined | object; [ScreenNames.SETTINGS]: undefined | object; - [ScreenNames.APPS]: undefined | object; [ScreenNames.REGISTRATION]: undefined | object; [ScreenNames.LOGIN]: undefined | object; }; export const TabNavigatorRoutes = { HOME: ScreenNames.HOME, - APPS: ScreenNames.APPS, + NEWS: ScreenNames.NEWS, SETTINGS: ScreenNames.SETTINGS, } as const; @@ -62,16 +61,16 @@ const renderScreenOptions = ({ return ; }, tabBarLabel: ({ focused }: { focused: boolean }) => ( - + {route.name} - + ), tabBarStyle: { - height: isSmallScreen ? 80 : 100, + height: 100, paddingTop: 10, - paddingBottom: isSmallScreen ? 20 : 40, + paddingBottom: 40, }, - tabBarActiveTintColor: Colors.gold, + tabBarActiveTintColor: colors.tabIconFocused, }); const Tabs = createBottomTabNavigator(); @@ -81,8 +80,12 @@ const TabsNavigator = () => { - - + + ); diff --git a/src/navigation/ScreenNames.tsx b/src/navigation/ScreenNames.tsx index 642d59ae..8d8232df 100644 --- a/src/navigation/ScreenNames.tsx +++ b/src/navigation/ScreenNames.tsx @@ -3,7 +3,7 @@ export const ScreenNames = { LOGIN: "Login", REGISTRATION: "Registration", HOME: "Home", - APPS: "Apps", + NEWS: "News", SETTINGS: "Settings", TABS: "Tabs", } as const; diff --git a/src/screens/AppsScreen.tsx b/src/screens/AppsScreen.tsx deleted file mode 100644 index cce22a11..00000000 --- a/src/screens/AppsScreen.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import * as React from "react"; -import { StyleSheet, View } from "react-native"; - -import { Colors } from "../constants/Colors"; -import { Carousel } from "../components"; - -const styles = StyleSheet.create({ - screenContainer: { - flex: 1, - paddingTop: 12, - paddingBottom: 32, - backgroundColor: Colors.white, - }, -}); - -export const AppsScreen = () => { - const images = ["", ""]; - - return ( - - - - ); -}; diff --git a/src/screens/HomeScreen.tsx b/src/screens/HomeScreen.tsx index d96e9831..c1ae95ab 100644 --- a/src/screens/HomeScreen.tsx +++ b/src/screens/HomeScreen.tsx @@ -8,11 +8,11 @@ import { AppStateStatus, } from "react-native"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; import { BodyText, Article } from "../components"; import { getNewsArticles } from "../store/selectors"; -import { NewsArticle } from "../store/reducers/data"; +import { NewsArticle } from "../types/api-types"; import { appActions } from "../store/actions/app"; import { authActions } from "../store/actions/auth"; @@ -23,7 +23,7 @@ const styles = StyleSheet.create({ screenContainer: { flex: 1, paddingVertical: 12, - backgroundColor: Colors.white, + backgroundColor: colors.white, }, listContainer: { marginHorizontal: 12, @@ -37,7 +37,7 @@ const styles = StyleSheet.create({ export const HomeScreen = () => { const dispatch = useDispatch(); - const restaurants = useSelector(getNewsArticles); + const news = useSelector(getNewsArticles); const appState = useRef(AppState.currentState); @@ -60,7 +60,8 @@ export const HomeScreen = () => { useEffect(() => { const subscription = AppState.addEventListener("change", nextAppState => - handleAppStateChange(nextAppState)); + handleAppStateChange(nextAppState), + ); return () => { subscription.remove(); @@ -71,10 +72,10 @@ export const HomeScreen = () => { return ( - {restaurants.length > 0 ? ( + {news.length > 0 ? ( _id} renderItem={({ item }) => renderItem(item)} style={styles.listContainer} diff --git a/src/screens/LoginScreen.tsx b/src/screens/LoginScreen.tsx index b2a89e47..90d9758f 100644 --- a/src/screens/LoginScreen.tsx +++ b/src/screens/LoginScreen.tsx @@ -1,18 +1,20 @@ import React, { useState, useEffect } from "react"; +import { Alert, StyleSheet } from "react-native"; import { useSelector, useDispatch } from "react-redux"; import { useNavigation } from "@react-navigation/native"; import { StackNavigationProp } from "@react-navigation/stack"; -import { Alert, View, StyleSheet } from "react-native"; import * as Progress from "react-native-progress"; +import LinearGradient from "react-native-linear-gradient"; import { Button, InputWithLabel, NavigationLink, Screen, - Title, + Heading, + Box, } from "../components"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; import { authActions } from "../store/actions/auth"; import { getLoginStatus, getLoginError } from "../store/selectors"; @@ -28,9 +30,8 @@ type LoginScreenProp = StackNavigationProp< >; const styles = StyleSheet.create({ - titleContainer: { - paddingTop: 100, - paddingBottom: 12, + linearGradient: { + flex: 1, }, loader: { paddingVertical: 24, @@ -77,44 +78,51 @@ export const LoginScreen = () => { }; return ( - - - - </View> - - <InputWithLabel - hideLabelWhenFocused - value={email} - onChangeText={onEmailChange} - label={StringValues.email} - /> - <InputWithLabel - hideLabelWhenFocused - value={password} - onChangeText={onPasswordChange} - label={StringValues.password} - secureTextEntry - /> - - <Button - disabled={isSubmitting} - title={StringValues.login.toUpperCase()} - onPress={onLoginPress} - /> - - <NavigationLink - text={StringValues.createAccount} - onPress={onRegistrationLinkPress} - /> - - {isSubmitting ? ( - <Progress.Circle - size={24} - indeterminate - color={Colors.gold} - style={styles.loader} + <LinearGradient + colors={[colors["grey-400"], colors.white]} + style={styles.linearGradient}> + <Screen transparent> + <Box flex={1} marginTop="extraLarge" marginBottom="small"> + <Heading>{StringValues.login}</Heading> + </Box> + + <InputWithLabel + hideLabelWhenFocused + value={email} + onChangeText={onEmailChange} + label={StringValues.email} /> - ) : null} - </Screen> + <InputWithLabel + hideLabelWhenFocused + value={password} + onChangeText={onPasswordChange} + label={StringValues.password} + secureTextEntry + /> + + <Button + disabled={isSubmitting} + title={StringValues.login.toUpperCase()} + onPress={onLoginPress} + /> + + <Box marginTop="large"> + <NavigationLink + text={StringValues.createAccount} + onPress={onRegistrationLinkPress} + capitalized + /> + </Box> + + {isSubmitting ? ( + <Progress.Circle + size={24} + indeterminate + color={colors.purple} + style={styles.loader} + /> + ) : null} + </Screen> + </LinearGradient> ); }; diff --git a/src/screens/NewsScreen.tsx b/src/screens/NewsScreen.tsx new file mode 100644 index 00000000..625e39c3 --- /dev/null +++ b/src/screens/NewsScreen.tsx @@ -0,0 +1,39 @@ +import React from "react"; +import { FlatList } from "react-native"; +import { useSelector } from "react-redux"; + +import { getNewsArticles } from "../store/selectors"; + +import { Box, Carousel, BodyText, Article } from "../components"; + +import { NewsArticle } from "../types/api-types"; + +import { StringValues } from "../constants/StringValues"; + +export const NewsScreen = () => { + const images = ["", ""]; + + const news = useSelector(getNewsArticles); + + const renderItem = (item: NewsArticle) => <Article item={item} />; + + return ( + <Box flex={1} backgroundColor="white"> + <Carousel data={images} height={200} /> + {news.length > 0 ? ( + <Box paddingTop="large" paddingBottom="large"> + <FlatList + data={news} + keyExtractor={({ _id }) => _id} + renderItem={({ item }) => renderItem(item)} + showsVerticalScrollIndicator={false} + /> + </Box> + ) : ( + <Box marginTop="large" alignItems="center"> + <BodyText size="large">{StringValues.noDataAvailable}</BodyText> + </Box> + )} + </Box> + ); +}; diff --git a/src/screens/RegistrationScreen.tsx b/src/screens/RegistrationScreen.tsx index f1159f64..842b1be4 100644 --- a/src/screens/RegistrationScreen.tsx +++ b/src/screens/RegistrationScreen.tsx @@ -10,9 +10,10 @@ import { InputWithLabel, NavigationLink, Screen, - Title, + Heading, + Box, } from "../components"; -import { Colors } from "../constants/Colors"; +import { colors } from "../theme"; import { authActions } from "../store/actions/auth"; import { @@ -91,7 +92,7 @@ export const RegistrationScreen = () => { return ( <Screen> <View style={styles.titleContainer}> - <Title label={StringValues.newAccount} /> + <Heading>{StringValues.newAccount}</Heading> </View> <InputWithLabel @@ -133,16 +134,19 @@ export const RegistrationScreen = () => { onPress={onRegisterPress} /> - <NavigationLink - text={StringValues.alreadyHaveAccount} - onPress={onLoginLinkPress} - /> + <Box marginTop="large"> + <NavigationLink + text={StringValues.alreadyHaveAccount} + onPress={onLoginLinkPress} + capitalized + /> + </Box> {isRegistering ? ( <Progress.Circle size={24} indeterminate - color={Colors.gold} + color={colors.purple} style={styles.loader} /> ) : null} diff --git a/src/screens/RootScreen.tsx b/src/screens/RootScreen.tsx index e57beb68..daacb043 100644 --- a/src/screens/RootScreen.tsx +++ b/src/screens/RootScreen.tsx @@ -1,5 +1,5 @@ import React, { useState, useEffect } from "react"; -import { useDispatch, useSelector } from "react-redux"; +import { useSelector } from "react-redux"; import { useNavigation } from "@react-navigation/native"; import { StackNavigationProp } from "@react-navigation/stack"; import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth"; @@ -8,8 +8,6 @@ import { Screen, Loader } from "../components"; import { getLoginStatus, getUser } from "../store/selectors"; -import { authActions } from "../store/actions/auth"; - import { ScreenNames } from "../navigation/ScreenNames"; import { NavigatorStackParamList } from "../navigation/AppNavigator"; @@ -19,18 +17,18 @@ type RootScreenProp = StackNavigationProp< >; export const RootScreen = () => { - const dispatch = useDispatch(); const navigation = useNavigation<RootScreenProp>(); - const [initializing, setInitializing] = useState(true); - const [user, setUser] = useState<FirebaseAuthTypes.User | null>(null); + const [user, setUser] = useState<FirebaseAuthTypes.User | null>( + auth().currentUser, + ); const onAuthStateChanged = (user: FirebaseAuthTypes.User | null) => { if (user) { - dispatch(authActions.fetchUserDetailsStart({ userId: user.uid })); setUser(user); + } else { + setUser(null); } - if (initializing) setInitializing(false); }; useEffect(() => { @@ -43,6 +41,7 @@ export const RootScreen = () => { useEffect(() => { const isLoggedIn = user || (!isAuthenticating && loginUser); + if (isLoggedIn) { navigation.navigate(ScreenNames.TABS); } else { diff --git a/src/screens/SettingsScreen.tsx b/src/screens/SettingsScreen.tsx index 5872b714..51f0673d 100644 --- a/src/screens/SettingsScreen.tsx +++ b/src/screens/SettingsScreen.tsx @@ -1,46 +1,39 @@ import React, { useState, useEffect } from "react"; import { useSelector, useDispatch } from "react-redux"; -import { Linking, View, StyleSheet } from "react-native"; +import { Alert, Linking } from "react-native"; import DeviceInfo from "react-native-device-info"; import uuid from "react-native-uuid"; +import { useNavigation } from "@react-navigation/native"; +import { StackNavigationProp } from "@react-navigation/stack"; import { + Box, BodyText, ButtonWithIcon, - Divider, - Title, + Heading, Screen, + Subheading, } from "../components"; -import { Colors } from "../constants/Colors"; import { authActions } from "../store/actions/auth"; import { getUser } from "../store/selectors"; import { contact } from "../utils/contact"; +import { ScreenNames } from "../navigation/ScreenNames"; +import { NavigatorStackParamList } from "../navigation/AppNavigator"; + import { StringValues } from "../constants/StringValues"; -const styles = StyleSheet.create({ - container: { - paddingHorizontal: 24, - }, - bodyContainer: { - padding: 24, - }, - textContainer: { - paddingVertical: 10, - }, - headerText: { - paddingBottom: 4, - color: Colors.grey, - }, - contentText: { - color: Colors.gold, - fontWeight: "bold", - }, -}); +import { logError } from "../api/logger"; + +type SettingsScreenProp = StackNavigationProp< + NavigatorStackParamList, + typeof ScreenNames.SETTINGS +>; export const SettingsScreen = () => { + const navigation = useNavigation<SettingsScreenProp>(); const dispatch = useDispatch(); const user = useSelector(getUser); @@ -73,8 +66,8 @@ export const SettingsScreen = () => { setIp(ip); setOsVersion(osVersion); setUuid(uuidVal.toString()); - } catch (err) { - return console.log("getDeviceData error:", err); + } catch (_error) { + logError("Error getting device data"); } }; @@ -82,8 +75,40 @@ export const SettingsScreen = () => { getDeviceData(); }, []); - const onLogout = () => { + const onLogoutConfirmation = () => { dispatch(authActions.logoutStart()); + navigation.navigate(ScreenNames.LOGIN); + }; + + const onLogout = () => { + Alert.alert("", "Are you sure you want to logout?", [ + { + text: "Yes", + onPress: onLogoutConfirmation, + }, + { + text: "No, keep me logged in", + style: "cancel", + }, + ]); + }; + + const onDeleteAccountConfirmation = () => { + dispatch(authActions.deleteAccountStart()); + navigation.navigate(ScreenNames.LOGIN); + }; + + const onDeleteAccount = () => { + Alert.alert("", "Are you sure you want to delete your account?", [ + { + text: "Yes, delete my account", + onPress: onDeleteAccountConfirmation, + }, + { + text: "No, keep my account", + style: "cancel", + }, + ]); }; const onContact = () => { @@ -106,45 +131,46 @@ export const SettingsScreen = () => { const onTermsPress = () => { try { Linking.openURL("http://www.devxldn.com"); - } catch (err) { - console.log("Linking error: ", err); + } catch (error) { + logError("Error opening terms link"); } }; return ( <Screen noHorizontalPadding> - <View style={styles.container}> - <Title label={StringValues.yourDetails} /> - <Divider /> - <View style={styles.bodyContainer}> + <Box + paddingTop="small" + paddingBottom="small" + paddingLeft="small" + paddingRight="small"> + <Heading>{StringValues.myAccount}</Heading> + <Box flex={1} marginTop="medium" marginBottom="large"> {user?.lastName ? ( - <View style={styles.textContainer}> - <BodyText style={styles.headerText}>Name</BodyText> - <BodyText style={styles.contentText}> + <Box marginTop="small"> + <Subheading spacingSize="large">{StringValues.name}</Subheading> + <BodyText fontWeight="bold"> {user?.firstName} {user.lastName} </BodyText> - </View> + </Box> ) : null} {user?.email ? ( - <View style={styles.textContainer}> - <BodyText style={styles.headerText}> - {StringValues.email} - </BodyText> - <BodyText style={styles.contentText}>{user.email}</BodyText> - </View> + <Box marginTop="small"> + <Subheading spacingSize="large">{StringValues.email}</Subheading> + <BodyText fontWeight="bold">{user.email}</BodyText> + </Box> ) : null} - <View style={styles.textContainer}> - <BodyText style={styles.headerText}> + <Box marginTop="small"> + <Subheading spacingSize="large"> {StringValues.appVersion} - </BodyText> - <BodyText style={styles.contentText}>{readableVersion}</BodyText> - </View> - <View style={styles.textContainer}> - <BodyText style={styles.headerText}>{StringValues.uuid}</BodyText> - <BodyText style={styles.contentText}>{uuidValue}</BodyText> - </View> - </View> - </View> + </Subheading> + <BodyText fontWeight="bold">{readableVersion}</BodyText> + </Box> + <Box marginTop="small"> + <Subheading spacingSize="large">{StringValues.uuid}</Subheading> + <BodyText fontWeight="bold">{uuidValue}</BodyText> + </Box> + </Box> + </Box> <ButtonWithIcon icon="link" @@ -156,6 +182,11 @@ export const SettingsScreen = () => { label={StringValues.contact} onPress={onContact} /> + <ButtonWithIcon + icon="trash-outline" + label={StringValues.deleteAccount} + onPress={onDeleteAccount} + /> <ButtonWithIcon icon="log-out-outline" label={StringValues.logout} diff --git a/src/store/actions/auth.ts b/src/store/actions/auth.ts index f317b964..4bf95a75 100644 --- a/src/store/actions/auth.ts +++ b/src/store/actions/auth.ts @@ -4,7 +4,7 @@ import { payloadType, } from "./action-creator-factories"; -import { UserPayload, NewUserData } from "../../api/auth/firebase-auth"; +import { FirebaseUser, UserData } from "../../types/api-types"; export const authActions = { loginStart: actionCreatorWithPayload( @@ -13,7 +13,7 @@ export const authActions = { ), loginSuccess: actionCreatorWithPayload( "LOGIN_SUCCESS", - payloadType<{ user: UserPayload }>(), + payloadType<{ user: FirebaseUser }>(), ), loginFailure: actionCreator("LOGIN_FAILURE"), signupStart: actionCreatorWithPayload( @@ -27,7 +27,7 @@ export const authActions = { ), signupSuccess: actionCreatorWithPayload( "SIGNUP_SUCCESS", - payloadType<NewUserData>(), + payloadType<UserData>(), ), signupFailure: actionCreator("SIGNUP_FAILURE"), logoutStart: actionCreator("LOGOUT_START"), @@ -42,9 +42,12 @@ export const authActions = { ), fetchUserDetailsSuccess: actionCreatorWithPayload( "FETCH_USER_DETAILS_SUCCESS", - payloadType<NewUserData>(), + payloadType<UserData>(), ), fetchUserDetailsFailure: actionCreator("FETCH_USER_DETAILS_FAILURE"), + deleteAccountStart: actionCreator("DELETE_ACCOUNT_START"), + deleteAccountSuccess: actionCreator("DELETE_ACCOUNT_SUCCESS"), + deleteAccountFailure: actionCreator("DELETE_ACCOUNT_FAILURE"), }; export type LoginStart = ReturnType<typeof authActions.loginStart>; @@ -79,6 +82,16 @@ export type FetchUserDetailsFailure = ReturnType< typeof authActions.fetchUserDetailsFailure >; +export type DeleteAccountStart = ReturnType< + typeof authActions.deleteAccountStart +>; +export type DeleteAccountSuccess = ReturnType< + typeof authActions.deleteAccountSuccess +>; +export type DeleteAccountFailure = ReturnType< + typeof authActions.deleteAccountFailure +>; + export type AuthActionTypes = | LoginStart | LoginSuccess @@ -94,4 +107,7 @@ export type AuthActionTypes = | SignupFailure | FetchUserDetailsStart | FetchUserDetailsSuccess - | FetchUserDetailsFailure; + | FetchUserDetailsFailure + | DeleteAccountStart + | DeleteAccountSuccess + | DeleteAccountFailure; diff --git a/src/store/actions/data.ts b/src/store/actions/data.ts index 555bfa8e..649fbbfc 100644 --- a/src/store/actions/data.ts +++ b/src/store/actions/data.ts @@ -4,7 +4,7 @@ import { payloadType, } from "./action-creator-factories"; -import { University, NewsArticle } from "../reducers/data"; +import { NewsArticle } from "../../types/api-types"; export const dataActions = { fetchArticlesStart: actionCreator("ARTICLES_FETCH_START"), @@ -13,36 +13,19 @@ export const dataActions = { payloadType<NewsArticle[]>(), ), fetchArticlesFailure: actionCreator("ARTICLES_FETCH_FAILURE"), - fetchUniversitiesStart: actionCreator("UNIVERSITIES_FETCH_START"), - fetchUniversitiesSuccess: actionCreatorWithPayload( - "UNIVERSITIES_FETCH_SUCCESS", - payloadType<University[]>(), - ), - fetchUniversitiesFailure: actionCreator("UNIVERSITIES_FETCH_FAILURE"), }; -export type FetchDataStart = ReturnType<typeof dataActions.fetchArticlesStart>; -export type FetchDataSuccess = ReturnType< +export type FetchArticleDataStart = ReturnType< + typeof dataActions.fetchArticlesStart +>; +export type FetchArticleDataSuccess = ReturnType< typeof dataActions.fetchArticlesSuccess >; -export type FetchAdvertsFailure = ReturnType< +export type FetchArticleDataFailure = ReturnType< typeof dataActions.fetchArticlesFailure >; -export type FetchUniversitiesStart = ReturnType< - typeof dataActions.fetchUniversitiesStart ->; -export type FetchUniversitiesSuccess = ReturnType< - typeof dataActions.fetchUniversitiesSuccess ->; -export type FetchUniversitiesFailure = ReturnType< - typeof dataActions.fetchUniversitiesFailure ->; - export type DataActionTypes = - | FetchDataStart - | FetchDataSuccess - | FetchAdvertsFailure - | FetchUniversitiesStart - | FetchUniversitiesSuccess - | FetchUniversitiesFailure; + | FetchArticleDataStart + | FetchArticleDataSuccess + | FetchArticleDataFailure; diff --git a/src/store/configureStore.ts b/src/store/configureStore.ts index e3b8edfa..a213df25 100644 --- a/src/store/configureStore.ts +++ b/src/store/configureStore.ts @@ -10,6 +10,7 @@ const persistConfig = { key: "root", version: 0, storage: AsyncStorage, + whitelist: ["accounts"], blacklist: ["auth"], }; diff --git a/src/store/reducers/__tests__/data.spec.tsx b/src/store/reducers/__tests__/data.spec.tsx deleted file mode 100644 index 3758b252..00000000 --- a/src/store/reducers/__tests__/data.spec.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { dataActions } from "../../actions/data"; -import { data, University } from "../data"; - -describe("Data reducer", () => { - it("fetch - start", () => { - const state = data(undefined, { - type: dataActions.fetchUniversitiesStart.type, - }); - - expect(state).toEqual({ - news: [], - universities: [], - }); - }); - - it("fetch - success", () => { - const payload: University[] = [{ name: "mock", url: "mock" }]; - - const state = data(undefined, { - type: dataActions.fetchUniversitiesSuccess.type, - payload, - }); - - expect(state).toEqual({ - universities: [{ name: "mock", url: "mock" }], - news: [], - }); - }); - - it("fetch - failure", () => { - const state = data(undefined, { - type: dataActions.fetchUniversitiesFailure.type, - }); - - expect(state).toEqual({ universities: [], news: [] }); - }); -}); diff --git a/src/store/reducers/auth.ts b/src/store/reducers/auth.ts index da5def35..d0aa9f5a 100644 --- a/src/store/reducers/auth.ts +++ b/src/store/reducers/auth.ts @@ -2,19 +2,14 @@ import { Reducer } from "redux"; import { authActions, AuthActionTypes } from "../actions/auth"; -export type User = { - id: string; - email: string; - firstName?: string; - lastName?: string; -}; +import { UserData } from "../../types/api-types"; export type AuthState = { isLoginInProgress: boolean; loginError?: boolean; isRegistrationInProgress: boolean; registeringError?: boolean; - user: User | null; + user: UserData | null; }; export const DEFAULT_STATE: AuthState = { @@ -83,12 +78,14 @@ export const auth: Reducer<AuthState, AuthActionTypes> = ( ...state, isLoginInProgress: false, loginError: false, + user: null, }; case authActions.logoutFailure.type: return { ...state, isLoginInProgress: false, loginError: true, + user: null, }; case authActions.validateTokenStart.type: return { diff --git a/src/store/reducers/data.ts b/src/store/reducers/data.ts index 1f1d250e..584f3586 100644 --- a/src/store/reducers/data.ts +++ b/src/store/reducers/data.ts @@ -2,49 +2,14 @@ import { Reducer } from "redux"; import { dataActions, DataActionTypes } from "../actions/data"; -export type University = { - name: string; - url: string; - imageUrl?: string; - geo?: { - address: { - streetAddress: string; - postalCode: string; - addressLocality: string; - }; - }; -}; - -export type NewsArticle = { - _id: string; - _score: number; - author: string; - authors: string; - clean_url: string; - country: string; - excerpt: string; - is_opinion: boolean; - language: string; - link: string; - media: string; - published_date: string; - published_date_precision: string; - rank: number; - rights: string; - summary: string; - title: string; - topic: string; - twitter_account: string; -}; +import { NewsArticle } from "../../types/api-types"; export type DataState = { news: NewsArticle[] | []; - universities: University[] | []; }; export const DEFAULT_STATE: DataState = { news: [], - universities: [], }; export const data: Reducer<DataState, DataActionTypes> = ( @@ -57,11 +22,5 @@ export const data: Reducer<DataState, DataActionTypes> = ( case dataActions.fetchArticlesFailure.type: return { ...state, news: [] }; } - switch (action.type) { - case dataActions.fetchUniversitiesSuccess.type: - return { ...state, universities: action.payload }; - case dataActions.fetchUniversitiesFailure.type: - return { ...state, universities: [] }; - } return state; }; diff --git a/src/store/sagas/__tests__/data.spec.tsx b/src/store/sagas/__tests__/data.spec.tsx deleted file mode 100644 index 77fb736e..00000000 --- a/src/store/sagas/__tests__/data.spec.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import { cloneableGenerator } from "@redux-saga/testing-utils"; - -import { dataActions } from "../../actions/data"; -import { onFetchUniversityList } from "../data"; - -jest.mock("react-native-config"); - -describe("Data sagas", () => { - describe("fetchData", () => { - it("should dispatch UNIVERSITIES_FETCH_FAILURE", () => { - const action = dataActions.fetchUniversitiesFailure(); - - // @ts-ignore - const generator = cloneableGenerator(onFetchUniversityList)(action); - - generator.next(); - - expect(generator.next({ payload: { data: [] } }).value).toEqual({ - "@@redux-saga/IO": true, - combinator: false, - payload: { - action: { - type: "UNIVERSITIES_FETCH_FAILURE", - }, - channel: undefined, - }, - type: "PUT", - }); - }); - - it("should dispatch UNIVERSITIES_FETCH_SUCCESS", () => { - const action = dataActions.fetchUniversitiesSuccess([ - { name: "mock", url: "mock" }, - ]); - - // @ts-ignore - const generator = cloneableGenerator(onFetchUniversityList)(action); - - let next = generator.next(); - next = generator.next({ - success: true, - payload: { data: [{ name: "mock", url: "mock" }] }, - }); - - expect(next.value).toEqual({ - "@@redux-saga/IO": true, - combinator: false, - payload: { - action: { - payload: { data: [{ name: "mock", url: "mock" }] }, - type: "UNIVERSITIES_FETCH_SUCCESS", - }, - channel: undefined, - }, - type: "PUT", - }); - }); - }); -}); diff --git a/src/store/sagas/auth.ts b/src/store/sagas/auth.ts index 01eefa4d..62fa138d 100644 --- a/src/store/sagas/auth.ts +++ b/src/store/sagas/auth.ts @@ -3,6 +3,10 @@ import { put, all, call, takeEvery } from "redux-saga/effects"; import AsyncStorage from "@react-native-community/async-storage"; import jwt_decode from "jwt-decode"; import { DateTime } from "luxon"; +import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth"; + +// TODO: Used for testing +// AsyncStorage.clear() import { LoginStart, @@ -18,17 +22,19 @@ import { register, getUser, getToken, + deleteUser, } from "../../api/auth/firebase-auth"; import { navigate } from "../../navigation/RootNavigation"; import { ScreenNames } from "../../navigation/ScreenNames"; +import { logError } from "../../api/logger"; + const onError = () => { - // Remove the local storage items try { AsyncStorage.removeItem("token"); } catch (error) { - console.log(`onError - error: ${error}`); + logError("Auth - onError"); } Alert.alert( @@ -39,6 +45,15 @@ const onError = () => { ); }; +const onLoginFailed = () => { + Alert.alert( + "Login failed", + "Please try to login again", + [{ text: "OK", onPress: () => {} }], + { cancelable: false }, + ); +}; + export const onLogin = function* (action: LoginStart) { const { payload: { email, password }, @@ -56,21 +71,26 @@ export const onLogin = function* (action: LoginStart) { try { yield AsyncStorage.setItem("token", token); } catch (error) { - console.log("onLogin - AsyncStorage.set error: ", error); + logError("Auth - onLogin - AsyncStorage.set error"); } } if (userPayload && userPayload.user.uid) { yield put(authActions.loginSuccess({ user: userPayload })); - + yield put( + authActions.fetchUserDetailsStart({ userId: userPayload.user.uid }), + ); yield put(dataActions.fetchArticlesStart()); navigate(ScreenNames.TABS, { screen: ScreenNames.HOME }); } else { yield put(authActions.loginFailure()); + onLoginFailed(); } } catch (error) { - console.log("onLogin error:", error); + logError("Auth - onLogin", error); + yield put(authActions.loginFailure()); + onLoginFailed(); } }; @@ -90,23 +110,23 @@ export const onRegister = function* (action: SignupStart) { if (res && res.id) { yield put(authActions.signupSuccess(res)); - navigate(ScreenNames.LOGIN); + navigate(ScreenNames.HOME); } else { yield put(authActions.signupFailure()); } } catch (error) { - console.log("onRegister error:", error); + logError("Auth - onRegister", error); } }; export const onLogout = function* () { try { - const res: Awaited<ReturnType<typeof logout>> = yield logout(); + const res: Awaited<ReturnType<typeof logout>> = yield call(logout); try { yield AsyncStorage.removeItem("token"); } catch (error) { - console.log("onLogout: AsyncStorage.removeItem error: ", error); + logError("Auth - onLogout - AsyncStorage.removeItem error"); } if (res) { @@ -115,10 +135,10 @@ export const onLogout = function* () { yield put(authActions.logoutFailure()); } - // Navigate to the login screen - yield call(navigate, "Login", {}); + // Navigate to the LOGIN screen + yield call(navigate, ScreenNames.LOGIN); } catch (error) { - console.log("onLogout error:", error); + logError("Auth - onLogout", error); } }; @@ -172,25 +192,51 @@ export const onFetchUser = function* (action: FetchUserDetailsStart) { ); if (userPayload) { - yield put(authActions.signupSuccess(userPayload)); + yield put(authActions.fetchUserDetailsSuccess(userPayload)); } else { yield put(authActions.fetchUserDetailsFailure()); } } catch (error) { - console.log("onFetchUser error:", error); + logError("Auth - onFetchUser", error); yield put(authActions.fetchUserDetailsFailure()); } }; +export const onDeleteUser = function* () { + try { + const res: Awaited<ReturnType<typeof deleteUser>> = yield call(deleteUser); + + if (res) { + yield put(authActions.deleteAccountSuccess()); + } else { + yield put(authActions.deleteAccountFailure()); + } + } catch (error) { + logError("Auth - onDeleteUser", error); + yield put(authActions.deleteAccountFailure()); + } +}; + +export const onCheckIfUserIsLoggedIn = function* () { + try { + const user: FirebaseAuthTypes.User | null = auth().currentUser; + if (user) { + yield put(authActions.fetchUserDetailsStart({ userId: user.uid })); + } + } catch (error) { + logError("Auth - onCheckIfUserIsLoggedIn", error); + } +}; + export function* authSaga() { yield all([ - // Verify token at app startup + call(onCheckIfUserIsLoggedIn), takeEvery(authActions.loginStart.type, onLogin), takeEvery(authActions.signupStart.type, onRegister), - takeEvery(authActions.loginFailure.type, onLogout), takeEvery(authActions.logoutStart.type, onLogout), - // Validate token at app state change - takeEvery(authActions.validateTokenStart.type, onValidateToken), + // TODO: Remove if will use Firebase Auth in production + // takeEvery(authActions.validateTokenStart.type, onValidateToken), takeEvery(authActions.fetchUserDetailsStart.type, onFetchUser), + takeEvery(authActions.deleteAccountStart.type, onDeleteUser), ]); } diff --git a/src/store/sagas/data.ts b/src/store/sagas/data.ts index c939aae7..08264181 100644 --- a/src/store/sagas/data.ts +++ b/src/store/sagas/data.ts @@ -3,9 +3,11 @@ import Config from "react-native-config"; import { dataActions } from "../actions/data"; -import { _doGet } from "../../api/networkingApi"; +import { makeGetRequest } from "../../api/networkingApi"; -import { NewsArticle, University } from "../reducers/data"; +import { NewsArticle } from "../../types/api-types"; + +import { logError } from "../../api/logger"; type NewsResponse = { payload: { @@ -14,22 +16,14 @@ type NewsResponse = { success?: boolean; }; -type UniversitiesResponse = { - payload: University[]; - success?: boolean; -}; - export const fetchNewsArticles = async (url: string): Promise<unknown> => { const headers = { "x-api-key": Config.NEWSCATCHER_API_KEY, }; - return _doGet(url, headers); + return makeGetRequest(url, headers); }; -export const fetchUniversitiesData = async (url: string): Promise<unknown> => - _doGet(url); - export const onFetchNewsArticles = function* () { try { const fetchData: NewsResponse = yield call( @@ -43,29 +37,11 @@ export const onFetchNewsArticles = function* () { yield put(dataActions.fetchArticlesFailure()); } } catch (error) { - console.log("onFetchNewsArticles error:", error); + logError("Data - onFetchNewsArticles", error); yield put(dataActions.fetchArticlesFailure()); } }; -export const onFetchUniversityList = function* () { - try { - const fetchData: UniversitiesResponse = yield call( - fetchUniversitiesData, - Config.UNIVERSITIES_API_URL, - ); - - if (fetchData && fetchData.success) { - yield put(dataActions.fetchUniversitiesSuccess(fetchData.payload)); - } else { - yield put(dataActions.fetchUniversitiesFailure()); - } - } catch (error) { - console.log("onFetchUniversityList error:", error); - yield put(dataActions.fetchUniversitiesFailure()); - } -}; - export function* dataSaga() { - yield all([call(onFetchNewsArticles), call(onFetchUniversityList)]); + yield all([call(onFetchNewsArticles)]); } diff --git a/src/store/selectors/data.ts b/src/store/selectors/data.ts index 1b402f4b..d1e04be8 100644 --- a/src/store/selectors/data.ts +++ b/src/store/selectors/data.ts @@ -1,10 +1,4 @@ -// TODO: In production use createSelector for Memoized Selectors -// import { createSelector } from "reselect"; - import { RootState } from "../reducers/root-reducer-factory"; export const getNewsArticles = (state: RootState) => state.data && state.data.news ? state.data.news : []; - -export const getUniversities = (state: RootState) => - state.data && state.data.universities ? state.data.universities : []; diff --git a/src/theme/colors.ts b/src/theme/colors.ts new file mode 100644 index 00000000..4eeb05e9 --- /dev/null +++ b/src/theme/colors.ts @@ -0,0 +1,40 @@ +const white = "#ffffff"; +const black = "#000000"; + +const primary = "#242529"; +const salmon = "#FCDDE8"; +const babyBlue = "#0099FF"; +const purple = "#3B1F86"; +const error = "#CE0924"; +const gold = "#FBC99A"; // "#D4AF37"; +const moneyGold = "#FEF1E5"; +const pink = "#F3A8DB"; +const grey = "#BABABA"; + +export const colors = { + white, + black, + + primary, + gold, + moneyGold, + pink, + salmon, + babyBlue, + purple, + error, + + // Grey shades + grey, + "grey-50": "#F7F7F7", + "grey-100": "#F6F6F6", + "grey-200": "#F5F5F5", + "grey-300": "#F4F4F4", + "grey-400": "#F1F1F1", + "grey-500": "#666666", + + tabIconUnfocused: black, + tabIconFocused: purple, +} as const; + +export type ColorToken = keyof typeof colors; diff --git a/src/theme/index.ts b/src/theme/index.ts new file mode 100644 index 00000000..f93cc60e --- /dev/null +++ b/src/theme/index.ts @@ -0,0 +1,18 @@ +import { colors } from "./colors"; +import { spacing } from "./spacing"; +import { zIndices } from "./zIndices"; +import { typography } from "./typography"; + +export const theme = { + colors, + spacing, + zIndices, + typography, +}; + +export type ThemeType = typeof theme; + +export * from "./colors"; +export * from "./spacing"; +export * from "./zIndices"; +export * from "./typography"; diff --git a/src/theme/spacing.ts b/src/theme/spacing.ts new file mode 100644 index 00000000..978739ab --- /dev/null +++ b/src/theme/spacing.ts @@ -0,0 +1,12 @@ +export const spacing = { + none: 0, + xxs: 4, + extraSmall: 8, + small: 12, + medium: 16, + large: 24, + extraLarge: 32, + xxl: 48, +}; + +export type SpacingToken = keyof typeof spacing; diff --git a/src/theme/typography.ts b/src/theme/typography.ts new file mode 100644 index 00000000..4c3ef658 --- /dev/null +++ b/src/theme/typography.ts @@ -0,0 +1,81 @@ +export const headings = { + fontFamilies: { + regular: "TiemposHeadline-Regular", + bold: "TiemposHeadline-Bold", + light: "TiemposHeadline-Light", + black: "TiemposHeadline-Black", + }, + sizing: { + extraSmall: { + fontSize: 14, + lineHeight: 18, + }, + small: { + fontSize: 22, + lineHeight: 32, + }, + medium: { + fontSize: 26, + lineHeight: 36, + }, + large: { + fontSize: 32, + lineHeight: 44, + }, + extraLarge: { + fontSize: 38, + lineHeight: 52, + }, + }, +}; + +export const bodyText = { + fontFamilies: { + bold: "AvenirLTStd-Black", + regular: "AvenirLTStd-Roman", + light: "AvenirLTStd-Book", + }, + sizing: { + extraSmall: { + fontSize: 12, + lineHeight: 16, + }, + small: { + fontSize: 14, + lineHeight: 18, + }, + medium: { + fontSize: 16, + lineHeight: 22, + }, + large: { + fontSize: 18, + lineHeight: 24, + }, + extraLarge: { + fontSize: 20, + lineHeight: 28, + }, + }, + spacing: { + regular: { + letterSpacing: 0, + }, + large: { + letterSpacing: 2, + }, + extraLarge: { + letterSpacing: 4, + }, + }, +}; + +export type HeadingSizingToken = keyof typeof headings.sizing; +export type BodyTextFontFamilyToken = keyof typeof bodyText.fontFamilies; +export type BodyTextSizingToken = keyof typeof bodyText.sizing; +export type BodyTextLetterSpacingToken = keyof typeof bodyText.spacing; + +export const typography = { + headings, + bodyText, +}; diff --git a/src/theme/zIndices.ts b/src/theme/zIndices.ts new file mode 100644 index 00000000..b26c02d0 --- /dev/null +++ b/src/theme/zIndices.ts @@ -0,0 +1,8 @@ +export const zIndices = { + header: 3, + modal: 4, + modalCloseButton: 5, + toastStack: 6, +}; + +export type ZIndicesToken = keyof typeof zIndices; diff --git a/src/types/api-types.ts b/src/types/api-types.ts new file mode 100644 index 00000000..b5f63aa2 --- /dev/null +++ b/src/types/api-types.ts @@ -0,0 +1,58 @@ +// Auth +export type FirebaseUser = { + additionalUserInfo: { + isNewUser: boolean; + profile: unknown; + providerId: string; + username: string | null; + }; + user: { + displayName: string | null; + email: string; + emailVerified: boolean; + isAnonymous: boolean; + metadata: unknown; + phoneNumber: string | null; + photoURL: string | null; + providerData: unknown; + providerId: string; + refreshToken: string; + tenantId: string | null; + uid: string; + }; +}; + +export type UserData = { + id: string; + email: string; + firstName: string; + lastName: string; + uuid: string; + platform: string; + version: string; + osVersion: string; + createdAt: string; +}; + +// Articles +export type NewsArticle = { + _id: string; + _score: number; + author: string; + authors: string; + clean_url: string; + country: string; + excerpt: string; + is_opinion: boolean; + language: string; + link: string; + media: string; + published_date: string; + published_date_precision: string; + rank: number; + rights: string; + summary: string; + title: string; + topic: string; + twitter_account: string; +}; diff --git a/src/utils/dimensions.ts b/src/utils/dimensions.ts deleted file mode 100644 index 7fa49e36..00000000 --- a/src/utils/dimensions.ts +++ /dev/null @@ -1,70 +0,0 @@ -import { Dimensions, PixelRatio } from "react-native"; - -export const IPHONE_SE_HEIGHT = 667; -export const IPHONE_11_HEIGHT = 812; - -export const isSmallScreen = Dimensions.get("screen").height < IPHONE_SE_HEIGHT; -export const isBigScreen = Dimensions.get("screen").height >= IPHONE_11_HEIGHT; - -export const normalizeText = (size: number) => { - const { height, width } = Dimensions.get("screen"); - const pixelRatio = PixelRatio.get(); - - if (pixelRatio >= 2 && pixelRatio < 3) { - // iPhone SE and smaller Android devices - if (width < 667) { - return size * 0.95; - } - - // iPhone SE - if (width < 667) { - return size; - } - - // iPhone 6 / iPhone 7 / iPhone 8 - if (height >= IPHONE_SE_HEIGHT && height <= 735) { - return size * 1.15; - } - - // Tablets - return size * 1.25; - } - - if (pixelRatio >= 3 && pixelRatio < 3.5) { - // Android font scaling - if (width <= 360) { - return size; - } - - // Various Android width - if (height < 667) { - return size * 1.15; - } - - if (height >= 667 && height <= 735) { - return size * 1.2; - } - - // iPhone 6s Plus / 7 Plus - return size * 1.27; - } - - // Android font scaling - if (pixelRatio >= 3.5) { - if (width <= 360) { - return size; - } - - if (height < 667) { - return size * 1.2; - } - - if (height >= 667 && height <= 735) { - return size * 1.25; - } - - return size * 1.4; - } - - return size; -}; diff --git a/tsconfig.json b/tsconfig.json index 1371a44d..8bab1f43 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,15 @@ "moduleResolution": "node", "resolveJsonModule": true, + "paths": { + "@api/*": ["./src/api/*"], + "@components/*": ["./src/components/*"], + "@navigation": ["./src/navigation"], + "@screens/*": ["./src/screens/*"], + "@store": ["./src/store"], + "@utils/*": ["./src/utils/*"], + }, + // Emit "declaration": true, "noEmit": true, @@ -55,14 +64,14 @@ ".eslintrc.js", "__mocks__", "e2e", - "index.d.ts", "react-native.config.d.ts", "react-native.config.js", "scripts", + "build/**/*", + "jest", + "src/global.d.ts", "src/setupTests.d.ts", "src/setupTests.js", "storybook", - "build/**/*", - "jest" ] } diff --git a/yarn.lock b/yarn.lock index efb5fef6..b1486cfc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -195,6 +195,11 @@ resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz#9448974dd4fb1d80fefe72e8a0af37809cd30d6d" integrity sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg== +"@babel/helper-plugin-utils@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f" + integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w== + "@babel/helper-remap-async-to-generator@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz#fa1f81acd19daee9d73de297c0308783cd3cfc23" @@ -314,6 +319,14 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" @@ -2464,6 +2477,17 @@ babel-plugin-jest-hoist@^28.1.3: "@types/babel__core" "^7.1.14" "@types/babel__traverse" "^7.0.6" +babel-plugin-module-resolver@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/babel-plugin-module-resolver/-/babel-plugin-module-resolver-4.1.0.tgz#22a4f32f7441727ec1fbf4967b863e1e3e9f33e2" + integrity sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA== + dependencies: + find-babel-config "^1.2.0" + glob "^7.1.6" + pkg-up "^3.1.0" + reselect "^4.0.0" + resolve "^1.13.1" + babel-plugin-polyfill-corejs2@^0.3.1: version "0.3.1" resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz#440f1b70ccfaabc6b676d196239b138f8a2cfba5" @@ -3600,16 +3624,16 @@ escape-html@~1.0.3: resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== +escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" @@ -3766,6 +3790,11 @@ eslint-plugin-jsx-a11y@^6.6.1: minimatch "^3.1.2" semver "^6.3.0" +eslint-plugin-module-resolver@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/eslint-plugin-module-resolver/-/eslint-plugin-module-resolver-1.4.0.tgz#f491e1a51d9ea9f7267163bb5e58a333e81132ee" + integrity sha512-B3fZRHrB39gkADPAEAhfvSm34qpn5Tq0CGZjWfoFvU0vODa3po3Sx2CTd3XESXUgEUvIbOdn21nhoq7zGX0aPQ== + eslint-plugin-node@^11.1.0: version "11.1.0" resolved "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d" @@ -4189,6 +4218,14 @@ finalhandler@1.1.2: statuses "~1.5.0" unpipe "~1.0.0" +find-babel-config@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/find-babel-config/-/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2" + integrity sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA== + dependencies: + json5 "^0.5.1" + path-exists "^3.0.0" + find-cache-dir@^2.0.0: version "2.1.0" resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" @@ -4461,7 +4498,7 @@ glob@7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.3, glob@^7.1.4, glob@^7.1.7: +glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -4766,7 +4803,7 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" -invariant@^2.2.2, invariant@^2.2.4: +invariant@2.2.4, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -5623,6 +5660,11 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json5@^0.5.1: + version "0.5.1" + resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== + json5@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" @@ -7026,6 +7068,13 @@ pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" +pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" + plist@^3.0.2, plist@^3.0.4, plist@^3.0.5: version "3.0.6" resolved "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3" @@ -7413,6 +7462,14 @@ react-native-vector-icons@^9.2.0: prop-types "^15.7.2" yargs "^16.1.1" +react-native-webview@^11.23.0: + version "11.23.0" + resolved "https://registry.npmjs.org/react-native-webview/-/react-native-webview-11.23.0.tgz#603a584236da2e993906e6a094f165dcac3a1fdb" + integrity sha512-mGrgsMnYcQONvQy59xpBn87sKqkCsSkqIDRo+c2Ov4ISYl1j90wFBs+qViVJRWdoNHVuoCAZ4nZkJ65mhDpHhA== + dependencies: + escape-string-regexp "2.0.0" + invariant "2.2.4" + react-native@^0.69.1: version "0.69.1" resolved "https://registry.npmjs.org/react-native/-/react-native-0.69.1.tgz#093363ea697185b5d8f0e523fce3654b833ad0be" @@ -7693,7 +7750,7 @@ requires-port@^1.0.0: resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -reselect@^4.1.6: +reselect@^4.0.0, reselect@^4.1.6: version "4.1.6" resolved "https://registry.npmjs.org/reselect/-/reselect-4.1.6.tgz#19ca2d3d0b35373a74dc1c98692cdaffb6602656" integrity sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ== @@ -7730,7 +7787,7 @@ resolve.exports@^1.1.0: resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== -resolve@^1.10.1, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.0: +resolve@^1.10.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.0: version "1.22.1" resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==